ETH Price: $3,399.52 (+6.32%)
Gas: 26 Gwei

Token

Goblin Birds (GB.wtf)
 

Overview

Max Total Supply

2,437 GB.wtf

Holders

1,668

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mafeoza.eth
Balance
1 GB.wtf
0x55ee617c98986440c8dc43094ea0a0e745226f89
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:
GoblinBirds

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
//Developer Info:
//Written by Ghazanfar Perdakh
//Email: [email protected]
//Whatsapp NO.: +923331578650
//fiverr: fiverr.com/ghazanfarperdakh


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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: contracts/new.sol




pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

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

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);
    }
}
    pragma solidity ^0.8.7;
    
    contract GoblinBirds is ERC721A, Ownable {
    using Strings for uint256;


  string private uriPrefix = "ipfs://QmbaAQM2UmzG3GAoYZ6cA5NDcu4ABUhWK9gWNGf7UQ6s6h/" ;
  string private uriSuffix = ".json";
  string public hiddenURL= "ipfs://Qmboq1R5fX7xWMn6MRSmXqRyrhdir5hvRHo74297k9rC2z";

  

  uint16 public constant maxSupply = 6666;
  uint8 public maxMintAmountPerWallet = 5;
  uint public cost = 0.0069 ether;
                                                             
 
  bool public paused = true;
  bool public reveal =false;
  mapping (address => uint8) public NFTPerAddress;

  
  
 
  

  constructor() ERC721A("Goblin Birds", "GB.wtf") {
  }

  
 
  function mint(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    uint8 nft = NFTPerAddress[msg.sender];
    require(_mintAmount + nft  <= maxMintAmountPerWallet, "Exceeds max Nft allowed per Wallet.");
    
    require(!paused, "The contract is paused!");
   if(nft >= 1 )
   {
       require(msg.value >= cost * _mintAmount , "Insufficient Funds");
   }
   else
{
       require(msg.value >= cost * (_mintAmount - 1) , "Insufficient Funds");
}


    _safeMint(msg.sender , _mintAmount);

     NFTPerAddress[msg.sender] =_mintAmount + nft ;
     delete totalSupply;
  
  }
  
  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

 

   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

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


 
  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }


  function setPaused() external onlyOwner {
    paused = !paused;
   
  }
  
  function setCost(uint _Cost) external onlyOwner {
    cost = _Cost;
   
  }


 

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

  function setMaxMintAmountPerWallet(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerWallet = _maxtx;

  }

 

  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(msg.sender).transfer(_balance ); 
       
  }


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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526036608081815290620022a360a0398051620000299160099160209091019062000191565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005891600a9162000191565b506040518060600160405280603581526020016200226e6035913980516200008991600b9160209091019062000191565b50600c805460ff191660051790556618838370f34000600d55600e805461ffff19166001179055348015620000bd57600080fd5b50604080518082018252600c81526b476f626c696e20426972647360a01b60208083019182528351808501909452600684526523a1173bba3360d11b908401528151919291620001109160029162000191565b5080516200012690600390602084019062000191565b505060016000555062000139336200013f565b62000274565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019f9062000237565b90600052602060002090601f016020900481019282620001c357600085556200020e565b82601f10620001de57805160ff19168380011785556200020e565b828001600101855582156200020e579182015b828111156200020e578251825591602001919060010190620001f1565b506200021c92915062000220565b5090565b5b808211156200021c576000815560010162000221565b600181811c908216806200024c57607f821691505b602082108114156200026e57634e487b7160e01b600052602260045260246000fd5b50919050565b611fea80620002846000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a475b5dd116100a0578063d5abeb011161006f578063d5abeb0114610564578063dbd37cf41461058d578063e985e9c5146105bd578063eef440af14610606578063f2fde38b1461061b57600080fd5b8063a475b5dd146104d9578063b88d4fde146104f8578063bc951b9114610518578063c87b56dd1461054457600080fd5b80637ec4a659116100dc5780637ec4a659146104665780638da5cb5b1461048657806395d89b41146104a4578063a22cb465146104b957600080fd5b80636352211e146103fe5780636ecd23061461041e57806370a0823114610431578063715018a61461045157600080fd5b806328b60d15116101855780633ccfd60b116101545780633ccfd60b1461038f57806342842e0e146103a457806344a0d68a146103c45780635c975abb146103e457600080fd5b806328b60d15146103255780632f6f98e11461034557806337a66d85146103655780633bd649681461037a57600080fd5b80631067fcc7116101c15780631067fcc7146102a457806313faede6146102c457806318160ddd146102e857806323b872dd1461030557600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611b87565b61063b565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61068d565b60405161021f9190611d98565b34801561025657600080fd5b5061026a610265366004611c2f565b61071f565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611b5d565b610763565b005b3480156102b057600080fd5b506102a26102bf366004611bc1565b6107f1565b3480156102d057600080fd5b506102da600d5481565b60405190815260200161021f565b3480156102f457600080fd5b5060015460005403600019016102da565b34801561031157600080fd5b506102a2610320366004611a69565b61083b565b34801561033157600080fd5b506102a2610340366004611c48565b610846565b34801561035157600080fd5b506102a2610360366004611c0a565b610886565b34801561037157600080fd5b506102a261092a565b34801561038657600080fd5b506102a2610968565b34801561039b57600080fd5b506102a26109af565b3480156103b057600080fd5b506102a26103bf366004611a69565b610a08565b3480156103d057600080fd5b506102a26103df366004611c2f565b610a23565b3480156103f057600080fd5b50600e546102139060ff1681565b34801561040a57600080fd5b5061026a610419366004611c2f565b610a52565b6102a261042c366004611c48565b610a64565b34801561043d57600080fd5b506102da61044c366004611a1b565b610ca8565b34801561045d57600080fd5b506102a2610cf7565b34801561047257600080fd5b506102a2610481366004611bc1565b610d2d565b34801561049257600080fd5b506008546001600160a01b031661026a565b3480156104b057600080fd5b5061023d610d6a565b3480156104c557600080fd5b506102a26104d4366004611b21565b610d79565b3480156104e557600080fd5b50600e5461021390610100900460ff1681565b34801561050457600080fd5b506102a2610513366004611aa5565b610e0f565b34801561052457600080fd5b50600c546105329060ff1681565b60405160ff909116815260200161021f565b34801561055057600080fd5b5061023d61055f366004611c2f565b610e60565b34801561057057600080fd5b5061057a611a0a81565b60405161ffff909116815260200161021f565b34801561059957600080fd5b506105326105a8366004611a1b565b600f6020526000908152604090205460ff1681565b3480156105c957600080fd5b506102136105d8366004611a36565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561061257600080fd5b5061023d610fcf565b34801561062757600080fd5b506102a2610636366004611a1b565b61105d565b60006001600160e01b031982166380ac58cd60e01b148061066c57506001600160e01b03198216635b5e139f60e01b145b8061068757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461069c90611edc565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890611edc565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b600061072a826110f8565b610747576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061076e82610a52565b9050806001600160a01b0316836001600160a01b031614156107a35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107c357506107c181336105d8565b155b156107e1576040516367d9dca160e11b815260040160405180910390fd5b6107ec838383611131565b505050565b6008546001600160a01b031633146108245760405162461bcd60e51b815260040161081b90611dab565b60405180910390fd5b805161083790600b9060208401906118f0565b5050565b6107ec83838361118d565b6008546001600160a01b031633146108705760405162461bcd60e51b815260040161081b90611dab565b600c805460ff191660ff92909216919091179055565b6008546001600160a01b031633146108b05760405162461bcd60e51b815260040161081b90611dab565b60006108c56001546000546000199190030190565b9050611a0a6108d48483611de0565b61ffff16111561091c5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161081b565b6107ec828461ffff1661137d565b6008546001600160a01b031633146109545760405162461bcd60e51b815260040161081b90611dab565b600e805460ff19811660ff90911615179055565b6008546001600160a01b031633146109925760405162461bcd60e51b815260040161081b90611dab565b600e805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146109d95760405162461bcd60e51b815260040161081b90611dab565b6040514790339082156108fc029083906000818181858888f19350505050158015610837573d6000803e3d6000fd5b6107ec83838360405180602001604052806000815250610e0f565b6008546001600160a01b03163314610a4d5760405162461bcd60e51b815260040161081b90611dab565b600d55565b6000610a5d82611397565b5192915050565b6000610a796001546000546000199190030190565b9050611a0a610a8b60ff841683611de0565b61ffff161115610ad35760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161081b565b336000908152600f6020526040902054600c5460ff9182169116610af78285611e1e565b60ff161115610b545760405162461bcd60e51b815260206004820152602360248201527f45786365656473206d6178204e667420616c6c6f776564207065722057616c6c60448201526232ba1760e91b606482015260840161081b565b600e5460ff1615610ba75760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161081b565b60018160ff1610610c0c578260ff16600d54610bc39190611e57565b341015610c075760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b604482015260640161081b565b610c6b565b610c17600184611e8d565b60ff16600d54610c279190611e57565b341015610c6b5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b604482015260640161081b565b610c78338460ff1661137d565b610c828184611e1e565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610cd1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d215760405162461bcd60e51b815260040161081b90611dab565b610d2b60006114c0565b565b6008546001600160a01b03163314610d575760405162461bcd60e51b815260040161081b90611dab565b80516108379060099060208401906118f0565b60606003805461069c90611edc565b6001600160a01b038216331415610da35760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e1a84848461118d565b6001600160a01b0383163b15158015610e3c5750610e3a84848484611512565b155b15610e5a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e6b826110f8565b610ecf5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081b565b600e54610100900460ff16610f7057600b8054610eeb90611edc565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1790611edc565b8015610f645780601f10610f3957610100808354040283529160200191610f64565b820191906000526020600020905b815481529060010190602001808311610f4757829003601f168201915b50505050509050919050565b6000610f7a61160a565b90506000815111610f9a5760405180602001604052806000815250610fc8565b80610fa484611619565b600a604051602001610fb893929190611c97565b6040516020818303038152906040525b9392505050565b600b8054610fdc90611edc565b80601f016020809104026020016040519081016040528092919081815260200182805461100890611edc565b80156110555780601f1061102a57610100808354040283529160200191611055565b820191906000526020600020905b81548152906001019060200180831161103857829003601f168201915b505050505081565b6008546001600160a01b031633146110875760405162461bcd60e51b815260040161081b90611dab565b6001600160a01b0381166110ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081b565b6110f5816114c0565b50565b60008160011115801561110c575060005482105b8015610687575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061119882611397565b9050836001600160a01b031681600001516001600160a01b0316146111cf5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111ed57506111ed85336105d8565b806112085750336111fd8461071f565b6001600160a01b0316145b90508061122857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661124f57604051633a954ecd60e21b815260040160405180910390fd5b61125b60008487611131565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611331576000548214611331578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610837828260405180602001604052806000815250611717565b604080516060810182526000808252602082018190529181019190915281806001111580156113c7575060005481105b156114a757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114a55780516001600160a01b03161561143b579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156114a0579392505050565b61143b565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611547903390899088908890600401611d5b565b602060405180830381600087803b15801561156157600080fd5b505af1925050508015611591575060408051601f3d908101601f1916820190925261158e91810190611ba4565b60015b6115ec573d8080156115bf576040519150601f19603f3d011682016040523d82523d6000602084013e6115c4565b606091505b5080516115e4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461069c90611edc565b60608161163d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611667578061165181611f17565b91506116609050600a83611e43565b9150611641565b60008167ffffffffffffffff81111561168257611682611f88565b6040519080825280601f01601f1916602001820160405280156116ac576020820181803683370190505b5090505b8415611602576116c1600183611e76565b91506116ce600a86611f32565b6116d9906030611e06565b60f81b8183815181106116ee576116ee611f72565b60200101906001600160f81b031916908160001a905350611710600a86611e43565b94506116b0565b6107ec83838360016000546001600160a01b03851661174857604051622e076360e81b815260040160405180910390fd5b836117665760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561181857506001600160a01b0387163b15155b156118a1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118696000888480600101955088611512565b611886576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561181e57826000541461189c57600080fd5b6118e7565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156118a2575b50600055611376565b8280546118fc90611edc565b90600052602060002090601f01602090048101928261191e5760008555611964565b82601f1061193757805160ff1916838001178555611964565b82800160010185558215611964579182015b82811115611964578251825591602001919060010190611949565b50611970929150611974565b5090565b5b808211156119705760008155600101611975565b600067ffffffffffffffff808411156119a4576119a4611f88565b604051601f8501601f19908116603f011681019082821181831017156119cc576119cc611f88565b816040528093508581528686860111156119e557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a1657600080fd5b919050565b600060208284031215611a2d57600080fd5b610fc8826119ff565b60008060408385031215611a4957600080fd5b611a52836119ff565b9150611a60602084016119ff565b90509250929050565b600080600060608486031215611a7e57600080fd5b611a87846119ff565b9250611a95602085016119ff565b9150604084013590509250925092565b60008060008060808587031215611abb57600080fd5b611ac4856119ff565b9350611ad2602086016119ff565b925060408501359150606085013567ffffffffffffffff811115611af557600080fd5b8501601f81018713611b0657600080fd5b611b1587823560208401611989565b91505092959194509250565b60008060408385031215611b3457600080fd5b611b3d836119ff565b915060208301358015158114611b5257600080fd5b809150509250929050565b60008060408385031215611b7057600080fd5b611b79836119ff565b946020939093013593505050565b600060208284031215611b9957600080fd5b8135610fc881611f9e565b600060208284031215611bb657600080fd5b8151610fc881611f9e565b600060208284031215611bd357600080fd5b813567ffffffffffffffff811115611bea57600080fd5b8201601f81018413611bfb57600080fd5b61160284823560208401611989565b60008060408385031215611c1d57600080fd5b823561ffff81168114611a5257600080fd5b600060208284031215611c4157600080fd5b5035919050565b600060208284031215611c5a57600080fd5b813560ff81168114610fc857600080fd5b60008151808452611c83816020860160208601611eb0565b601f01601f19169290920160200192915050565b600084516020611caa8285838a01611eb0565b855191840191611cbd8184848a01611eb0565b8554920191600090600181811c9080831680611cda57607f831692505b858310811415611cf857634e487b7160e01b85526022600452602485fd5b808015611d0c5760018114611d1d57611d4a565b60ff19851688528388019550611d4a565b60008b81526020902060005b85811015611d425781548a820152908401908801611d29565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d8e90830184611c6b565b9695505050505050565b602081526000610fc86020830184611c6b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff808316818516808303821115611dfd57611dfd611f46565b01949350505050565b60008219821115611e1957611e19611f46565b500190565b600060ff821660ff84168060ff03821115611e3b57611e3b611f46565b019392505050565b600082611e5257611e52611f5c565b500490565b6000816000190483118215151615611e7157611e71611f46565b500290565b600082821015611e8857611e88611f46565b500390565b600060ff821660ff841680821015611ea757611ea7611f46565b90039392505050565b60005b83811015611ecb578181015183820152602001611eb3565b83811115610e5a5750506000910152565b600181811c90821680611ef057607f821691505b60208210811415611f1157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f2b57611f2b611f46565b5060010190565b600082611f4157611f41611f5c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110f557600080fdfea2646970667358221220636a78ad62fff756d7fb75579a3fda321f0e6cc4c5cc0d98e653c4e0d9b7721f64736f6c63430008070033697066733a2f2f516d626f7131523566583778574d6e364d52536d58715279726864697235687652486f37343239376b397243327a697066733a2f2f516d626141514d32556d7a473347416f595a366341354e4463753441425568574b3967574e4766375551367336682f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a475b5dd116100a0578063d5abeb011161006f578063d5abeb0114610564578063dbd37cf41461058d578063e985e9c5146105bd578063eef440af14610606578063f2fde38b1461061b57600080fd5b8063a475b5dd146104d9578063b88d4fde146104f8578063bc951b9114610518578063c87b56dd1461054457600080fd5b80637ec4a659116100dc5780637ec4a659146104665780638da5cb5b1461048657806395d89b41146104a4578063a22cb465146104b957600080fd5b80636352211e146103fe5780636ecd23061461041e57806370a0823114610431578063715018a61461045157600080fd5b806328b60d15116101855780633ccfd60b116101545780633ccfd60b1461038f57806342842e0e146103a457806344a0d68a146103c45780635c975abb146103e457600080fd5b806328b60d15146103255780632f6f98e11461034557806337a66d85146103655780633bd649681461037a57600080fd5b80631067fcc7116101c15780631067fcc7146102a457806313faede6146102c457806318160ddd146102e857806323b872dd1461030557600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611b87565b61063b565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61068d565b60405161021f9190611d98565b34801561025657600080fd5b5061026a610265366004611c2f565b61071f565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611b5d565b610763565b005b3480156102b057600080fd5b506102a26102bf366004611bc1565b6107f1565b3480156102d057600080fd5b506102da600d5481565b60405190815260200161021f565b3480156102f457600080fd5b5060015460005403600019016102da565b34801561031157600080fd5b506102a2610320366004611a69565b61083b565b34801561033157600080fd5b506102a2610340366004611c48565b610846565b34801561035157600080fd5b506102a2610360366004611c0a565b610886565b34801561037157600080fd5b506102a261092a565b34801561038657600080fd5b506102a2610968565b34801561039b57600080fd5b506102a26109af565b3480156103b057600080fd5b506102a26103bf366004611a69565b610a08565b3480156103d057600080fd5b506102a26103df366004611c2f565b610a23565b3480156103f057600080fd5b50600e546102139060ff1681565b34801561040a57600080fd5b5061026a610419366004611c2f565b610a52565b6102a261042c366004611c48565b610a64565b34801561043d57600080fd5b506102da61044c366004611a1b565b610ca8565b34801561045d57600080fd5b506102a2610cf7565b34801561047257600080fd5b506102a2610481366004611bc1565b610d2d565b34801561049257600080fd5b506008546001600160a01b031661026a565b3480156104b057600080fd5b5061023d610d6a565b3480156104c557600080fd5b506102a26104d4366004611b21565b610d79565b3480156104e557600080fd5b50600e5461021390610100900460ff1681565b34801561050457600080fd5b506102a2610513366004611aa5565b610e0f565b34801561052457600080fd5b50600c546105329060ff1681565b60405160ff909116815260200161021f565b34801561055057600080fd5b5061023d61055f366004611c2f565b610e60565b34801561057057600080fd5b5061057a611a0a81565b60405161ffff909116815260200161021f565b34801561059957600080fd5b506105326105a8366004611a1b565b600f6020526000908152604090205460ff1681565b3480156105c957600080fd5b506102136105d8366004611a36565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561061257600080fd5b5061023d610fcf565b34801561062757600080fd5b506102a2610636366004611a1b565b61105d565b60006001600160e01b031982166380ac58cd60e01b148061066c57506001600160e01b03198216635b5e139f60e01b145b8061068757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461069c90611edc565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890611edc565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b600061072a826110f8565b610747576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061076e82610a52565b9050806001600160a01b0316836001600160a01b031614156107a35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107c357506107c181336105d8565b155b156107e1576040516367d9dca160e11b815260040160405180910390fd5b6107ec838383611131565b505050565b6008546001600160a01b031633146108245760405162461bcd60e51b815260040161081b90611dab565b60405180910390fd5b805161083790600b9060208401906118f0565b5050565b6107ec83838361118d565b6008546001600160a01b031633146108705760405162461bcd60e51b815260040161081b90611dab565b600c805460ff191660ff92909216919091179055565b6008546001600160a01b031633146108b05760405162461bcd60e51b815260040161081b90611dab565b60006108c56001546000546000199190030190565b9050611a0a6108d48483611de0565b61ffff16111561091c5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161081b565b6107ec828461ffff1661137d565b6008546001600160a01b031633146109545760405162461bcd60e51b815260040161081b90611dab565b600e805460ff19811660ff90911615179055565b6008546001600160a01b031633146109925760405162461bcd60e51b815260040161081b90611dab565b600e805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146109d95760405162461bcd60e51b815260040161081b90611dab565b6040514790339082156108fc029083906000818181858888f19350505050158015610837573d6000803e3d6000fd5b6107ec83838360405180602001604052806000815250610e0f565b6008546001600160a01b03163314610a4d5760405162461bcd60e51b815260040161081b90611dab565b600d55565b6000610a5d82611397565b5192915050565b6000610a796001546000546000199190030190565b9050611a0a610a8b60ff841683611de0565b61ffff161115610ad35760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161081b565b336000908152600f6020526040902054600c5460ff9182169116610af78285611e1e565b60ff161115610b545760405162461bcd60e51b815260206004820152602360248201527f45786365656473206d6178204e667420616c6c6f776564207065722057616c6c60448201526232ba1760e91b606482015260840161081b565b600e5460ff1615610ba75760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161081b565b60018160ff1610610c0c578260ff16600d54610bc39190611e57565b341015610c075760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b604482015260640161081b565b610c6b565b610c17600184611e8d565b60ff16600d54610c279190611e57565b341015610c6b5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b604482015260640161081b565b610c78338460ff1661137d565b610c828184611e1e565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610cd1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d215760405162461bcd60e51b815260040161081b90611dab565b610d2b60006114c0565b565b6008546001600160a01b03163314610d575760405162461bcd60e51b815260040161081b90611dab565b80516108379060099060208401906118f0565b60606003805461069c90611edc565b6001600160a01b038216331415610da35760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e1a84848461118d565b6001600160a01b0383163b15158015610e3c5750610e3a84848484611512565b155b15610e5a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e6b826110f8565b610ecf5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081b565b600e54610100900460ff16610f7057600b8054610eeb90611edc565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1790611edc565b8015610f645780601f10610f3957610100808354040283529160200191610f64565b820191906000526020600020905b815481529060010190602001808311610f4757829003601f168201915b50505050509050919050565b6000610f7a61160a565b90506000815111610f9a5760405180602001604052806000815250610fc8565b80610fa484611619565b600a604051602001610fb893929190611c97565b6040516020818303038152906040525b9392505050565b600b8054610fdc90611edc565b80601f016020809104026020016040519081016040528092919081815260200182805461100890611edc565b80156110555780601f1061102a57610100808354040283529160200191611055565b820191906000526020600020905b81548152906001019060200180831161103857829003601f168201915b505050505081565b6008546001600160a01b031633146110875760405162461bcd60e51b815260040161081b90611dab565b6001600160a01b0381166110ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081b565b6110f5816114c0565b50565b60008160011115801561110c575060005482105b8015610687575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061119882611397565b9050836001600160a01b031681600001516001600160a01b0316146111cf5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111ed57506111ed85336105d8565b806112085750336111fd8461071f565b6001600160a01b0316145b90508061122857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661124f57604051633a954ecd60e21b815260040160405180910390fd5b61125b60008487611131565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611331576000548214611331578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610837828260405180602001604052806000815250611717565b604080516060810182526000808252602082018190529181019190915281806001111580156113c7575060005481105b156114a757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114a55780516001600160a01b03161561143b579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156114a0579392505050565b61143b565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611547903390899088908890600401611d5b565b602060405180830381600087803b15801561156157600080fd5b505af1925050508015611591575060408051601f3d908101601f1916820190925261158e91810190611ba4565b60015b6115ec573d8080156115bf576040519150601f19603f3d011682016040523d82523d6000602084013e6115c4565b606091505b5080516115e4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461069c90611edc565b60608161163d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611667578061165181611f17565b91506116609050600a83611e43565b9150611641565b60008167ffffffffffffffff81111561168257611682611f88565b6040519080825280601f01601f1916602001820160405280156116ac576020820181803683370190505b5090505b8415611602576116c1600183611e76565b91506116ce600a86611f32565b6116d9906030611e06565b60f81b8183815181106116ee576116ee611f72565b60200101906001600160f81b031916908160001a905350611710600a86611e43565b94506116b0565b6107ec83838360016000546001600160a01b03851661174857604051622e076360e81b815260040160405180910390fd5b836117665760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561181857506001600160a01b0387163b15155b156118a1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118696000888480600101955088611512565b611886576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561181e57826000541461189c57600080fd5b6118e7565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156118a2575b50600055611376565b8280546118fc90611edc565b90600052602060002090601f01602090048101928261191e5760008555611964565b82601f1061193757805160ff1916838001178555611964565b82800160010185558215611964579182015b82811115611964578251825591602001919060010190611949565b50611970929150611974565b5090565b5b808211156119705760008155600101611975565b600067ffffffffffffffff808411156119a4576119a4611f88565b604051601f8501601f19908116603f011681019082821181831017156119cc576119cc611f88565b816040528093508581528686860111156119e557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a1657600080fd5b919050565b600060208284031215611a2d57600080fd5b610fc8826119ff565b60008060408385031215611a4957600080fd5b611a52836119ff565b9150611a60602084016119ff565b90509250929050565b600080600060608486031215611a7e57600080fd5b611a87846119ff565b9250611a95602085016119ff565b9150604084013590509250925092565b60008060008060808587031215611abb57600080fd5b611ac4856119ff565b9350611ad2602086016119ff565b925060408501359150606085013567ffffffffffffffff811115611af557600080fd5b8501601f81018713611b0657600080fd5b611b1587823560208401611989565b91505092959194509250565b60008060408385031215611b3457600080fd5b611b3d836119ff565b915060208301358015158114611b5257600080fd5b809150509250929050565b60008060408385031215611b7057600080fd5b611b79836119ff565b946020939093013593505050565b600060208284031215611b9957600080fd5b8135610fc881611f9e565b600060208284031215611bb657600080fd5b8151610fc881611f9e565b600060208284031215611bd357600080fd5b813567ffffffffffffffff811115611bea57600080fd5b8201601f81018413611bfb57600080fd5b61160284823560208401611989565b60008060408385031215611c1d57600080fd5b823561ffff81168114611a5257600080fd5b600060208284031215611c4157600080fd5b5035919050565b600060208284031215611c5a57600080fd5b813560ff81168114610fc857600080fd5b60008151808452611c83816020860160208601611eb0565b601f01601f19169290920160200192915050565b600084516020611caa8285838a01611eb0565b855191840191611cbd8184848a01611eb0565b8554920191600090600181811c9080831680611cda57607f831692505b858310811415611cf857634e487b7160e01b85526022600452602485fd5b808015611d0c5760018114611d1d57611d4a565b60ff19851688528388019550611d4a565b60008b81526020902060005b85811015611d425781548a820152908401908801611d29565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d8e90830184611c6b565b9695505050505050565b602081526000610fc86020830184611c6b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff808316818516808303821115611dfd57611dfd611f46565b01949350505050565b60008219821115611e1957611e19611f46565b500190565b600060ff821660ff84168060ff03821115611e3b57611e3b611f46565b019392505050565b600082611e5257611e52611f5c565b500490565b6000816000190483118215151615611e7157611e71611f46565b500290565b600082821015611e8857611e88611f46565b500390565b600060ff821660ff841680821015611ea757611ea7611f46565b90039392505050565b60005b83811015611ecb578181015183820152602001611eb3565b83811115610e5a5750506000910152565b600181811c90821680611ef057607f821691505b60208210811415611f1157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f2b57611f2b611f46565b5060010190565b600082611f4157611f41611f5c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110f557600080fdfea2646970667358221220636a78ad62fff756d7fb75579a3fda321f0e6cc4c5cc0d98e653c4e0d9b7721f64736f6c63430008070033

Deployed Bytecode Sourcemap

44276:3099:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24600:305;;;;;;;;;;-1:-1:-1;24600:305:0;;;;;:::i;:::-;;:::i;:::-;;;7328:14:1;;7321:22;7303:41;;7291:2;7276:18;24600:305:0;;;;;;;;27713:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29216:204::-;;;;;;;;;;-1:-1:-1;29216:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6626:32:1;;;6608:51;;6596:2;6581:18;29216:204:0;6462:203:1;28779:371:0;;;;;;;;;;-1:-1:-1;28779:371:0;;;;;:::i;:::-;;:::i;:::-;;46639:102;;;;;;;;;;-1:-1:-1;46639:102:0;;;;;:::i;:::-;;:::i;44667:31::-;;;;;;;;;;;;;;;;;;;10901:25:1;;;10889:2;10874:18;44667:31:0;10755:177:1;23849:303:0;;;;;;;;;;-1:-1:-1;23706:1:0;24103:12;23893:7;24087:13;:28;-1:-1:-1;;24087:46:0;23849:303;;30081:170;;;;;;;;;;-1:-1:-1;30081:170:0;;;;;:::i;:::-;;:::i;46997:115::-;;;;;;;;;;-1:-1:-1;46997:115:0;;;;;:::i;:::-;;:::i;45686:326::-;;;;;;;;;;-1:-1:-1;45686:326:0;;;;;:::i;:::-;;:::i;46749:74::-;;;;;;;;;;;;;:::i;46921:70::-;;;;;;;;;;;;;:::i;47123:144::-;;;;;;;;;;;;;:::i;30322:185::-;;;;;;;;;;-1:-1:-1;30322:185:0;;;;;:::i;:::-;;:::i;46831:78::-;;;;;;;;;;-1:-1:-1;46831:78:0;;;;;:::i;:::-;;:::i;44769:25::-;;;;;;;;;;-1:-1:-1;44769:25:0;;;;;;;;27521:125;;;;;;;;;;-1:-1:-1;27521:125:0;;;;;:::i;:::-;;:::i;44967:711::-;;;;;;:::i;:::-;;:::i;24969:206::-;;;;;;;;;;-1:-1:-1;24969:206:0;;;;;:::i;:::-;;:::i;43422:103::-;;;;;;;;;;;;;:::i;46532:102::-;;;;;;;;;;-1:-1:-1;46532:102:0;;;;;:::i;:::-;;:::i;42770:87::-;;;;;;;;;;-1:-1:-1;42843:6:0;;-1:-1:-1;;;;;42843:6:0;42770:87;;27882:104;;;;;;;;;;;;;:::i;29492:287::-;;;;;;;;;;-1:-1:-1;29492:287:0;;;;;:::i;:::-;;:::i;44799:25::-;;;;;;;;;;-1:-1:-1;44799:25:0;;;;;;;;;;;30578:369;;;;;;;;;;-1:-1:-1;30578:369:0;;;;;:::i;:::-;;:::i;44623:39::-;;;;;;;;;;-1:-1:-1;44623:39:0;;;;;;;;;;;11109:4:1;11097:17;;;11079:36;;11067:2;11052:18;44623:39:0;10937:184:1;46028:490:0;;;;;;;;;;-1:-1:-1;46028:490:0;;;;;:::i;:::-;;:::i;44579:39::-;;;;;;;;;;;;44614:4;44579:39;;;;;10736:6:1;10724:19;;;10706:38;;10694:2;10679:18;44579:39:0;10562:188:1;44829:47:0;;;;;;;;;;-1:-1:-1;44829:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29850:164;;;;;;;;;;-1:-1:-1;29850:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29971:25:0;;;29947:4;29971:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29850:164;44486:80;;;;;;;;;;;;;:::i;43680:201::-;;;;;;;;;;-1:-1:-1;43680:201:0;;;;;:::i;:::-;;:::i;24600:305::-;24702:4;-1:-1:-1;;;;;;24739:40:0;;-1:-1:-1;;;24739:40:0;;:105;;-1:-1:-1;;;;;;;24796:48:0;;-1:-1:-1;;;24796:48:0;24739:105;:158;;;-1:-1:-1;;;;;;;;;;14634:40:0;;;24861:36;24719:178;24600:305;-1:-1:-1;;24600:305:0:o;27713:100::-;27767:13;27800:5;27793:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27713:100;:::o;29216:204::-;29284:7;29309:16;29317:7;29309;:16::i;:::-;29304:64;;29334:34;;-1:-1:-1;;;29334:34:0;;;;;;;;;;;29304:64;-1:-1:-1;29388:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29388:24:0;;29216:204::o;28779:371::-;28852:13;28868:24;28884:7;28868:15;:24::i;:::-;28852:40;;28913:5;-1:-1:-1;;;;;28907:11:0;:2;-1:-1:-1;;;;;28907:11:0;;28903:48;;;28927:24;;-1:-1:-1;;;28927:24:0;;;;;;;;;;;28903:48;3075:10;-1:-1:-1;;;;;28968:21:0;;;;;;:63;;-1:-1:-1;28994:37:0;29011:5;3075:10;29850:164;:::i;28994:37::-;28993:38;28968:63;28964:138;;;29055:35;;-1:-1:-1;;;29055:35:0;;;;;;;;;;;28964:138;29114:28;29123:2;29127:7;29136:5;29114:8;:28::i;:::-;28841:309;28779:371;;:::o;46639:102::-;42843:6;;-1:-1:-1;;;;;42843:6:0;3075:10;42990:23;42982:69;;;;-1:-1:-1;;;42982:69:0;;;;;;;:::i;:::-;;;;;;;;;46713:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46639:102:::0;:::o;30081:170::-;30215:28;30225:4;30231:2;30235:7;30215:9;:28::i;46997:115::-;42843:6;;-1:-1:-1;;;;;42843:6:0;3075:10;42990:23;42982:69;;;;-1:-1:-1;;;42982:69:0;;;;;;;:::i;:::-;47073:22:::1;:31:::0;;-1:-1:-1;;47073:31:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;46997:115::o;45686:326::-;42843:6;;-1:-1:-1;;;;;42843:6:0;3075:10;42990:23;42982:69;;;;-1:-1:-1;;;42982:69:0;;;;;;;:::i;:::-;45769:18:::1;45797:13;23706:1:::0;24103:12;23893:7;24087:13;-1:-1:-1;;24087:28:0;;;:46;;23849:303;45797:13:::1;45769:42:::0;-1:-1:-1;44614:4:0::1;45826:25;45840:11:::0;45769:42;45826:25:::1;:::i;:::-;:38;;;;45818:70;;;::::0;-1:-1:-1;;;45818:70:0;;7781:2:1;45818:70:0::1;::::0;::::1;7763:21:1::0;7820:2;7800:18;;;7793:30;-1:-1:-1;;;7839:18:1;;;7832:49;7898:18;;45818:70:0::1;7579:343:1::0;45818:70:0::1;45896:34;45906:9;45918:11;45896:34;;:9;:34::i;46749:74::-:0;42843:6;;-1:-1:-1;;;;;42843:6:0;3075:10;42990:23;42982:69;;;;-1:-1:-1;;;42982:69:0;;;;;;;:::i;:::-;46806:6:::1;::::0;;-1:-1:-1;;46796:16:0;::::1;46806:6;::::0;;::::1;46805:7;46796:16;::::0;;46749:74::o;46921:70::-;42843:6;;-1:-1:-1;;;;;42843:6:0;3075:10;42990:23;42982:69;;;;-1:-1:-1;;;42982:69:0;;;;;;;:::i;:::-;46980:6:::1;::::0;;-1:-1:-1;;46970:16:0;::::1;46980:6;::::0;;;::::1;;;46979:7;46970:16:::0;;::::1;;::::0;;46921:70::o;47123:144::-;42843:6;;-1:-1:-1;;;;;42843:6:0;3075:10;42990:23;42982:69;;;;-1:-1:-1;;;42982:69:0;;;;;;;:::i;:::-;47212:39:::1;::::0;47183:21:::1;::::0;47220:10:::1;::::0;47212:39;::::1;;;::::0;47183:21;;47167:13:::1;47212:39:::0;47167:13;47212:39;47183:21;47220:10;47212:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;30322:185:::0;30460:39;30477:4;30483:2;30487:7;30460:39;;;;;;;;;;;;:16;:39::i;46831:78::-;42843:6;;-1:-1:-1;;;;;42843:6:0;3075:10;42990:23;42982:69;;;;-1:-1:-1;;;42982:69:0;;;;;;;:::i;:::-;46886:4:::1;:12:::0;46831:78::o;27521:125::-;27585:7;27612:21;27625:7;27612:12;:21::i;:::-;:26;;27521:125;-1:-1:-1;;27521:125:0:o;44967:711::-;45026:18;45054:13;23706:1;24103:12;23893:7;24087:13;-1:-1:-1;;24087:28:0;;;:46;;23849:303;45054:13;45026:42;-1:-1:-1;44614:4:0;45083:25;;;;45026:42;45083:25;:::i;:::-;:38;;;;45075:70;;;;-1:-1:-1;;;45075:70:0;;10012:2:1;45075:70:0;;;9994:21:1;10051:2;10031:18;;;10024:30;-1:-1:-1;;;10070:18:1;;;10063:49;10129:18;;45075:70:0;9810:343:1;45075:70:0;45178:10;45152:9;45164:25;;;:13;:25;;;;;;45226:22;;45164:25;;;;;45226:22;45204:17;45164:25;45204:11;:17;:::i;:::-;:44;;;;45196:92;;;;-1:-1:-1;;;45196:92:0;;10360:2:1;45196:92:0;;;10342:21:1;10399:2;10379:18;;;10372:30;10438:34;10418:18;;;10411:62;-1:-1:-1;;;10489:18:1;;;10482:33;10532:19;;45196:92:0;10158:399:1;45196:92:0;45310:6;;;;45309:7;45301:43;;;;-1:-1:-1;;;45301:43:0;;9244:2:1;45301:43:0;;;9226:21:1;9283:2;9263:18;;;9256:30;9322:25;9302:18;;;9295:53;9365:18;;45301:43:0;9042:347:1;45301:43:0;45360:1;45353:3;:8;;;45350:192;;45406:11;45399:18;;:4;;:18;;;;:::i;:::-;45386:9;:31;;45378:63;;;;-1:-1:-1;;;45378:63:0;;8536:2:1;45378:63:0;;;8518:21:1;8575:2;8555:18;;;8548:30;-1:-1:-1;;;8594:18:1;;;8587:48;8652:18;;45378:63:0;8334:342:1;45378:63:0;45350:192;;;45498:15;45512:1;45498:11;:15;:::i;:::-;45490:24;;:4;;:24;;;;:::i;:::-;45477:9;:37;;45469:69;;;;-1:-1:-1;;;45469:69:0;;8536:2:1;45469:69:0;;;8518:21:1;8575:2;8555:18;;;8548:30;-1:-1:-1;;;8594:18:1;;;8587:48;8652:18;;45469:69:0;8334:342:1;45469:69:0;45552:35;45562:10;45575:11;45552:35;;:9;:35::i;:::-;45624:17;45638:3;45624:11;:17;:::i;:::-;45611:10;45597:25;;;;:13;:25;;;;;:44;;-1:-1:-1;;45597:44:0;;;;;;;;;;;;-1:-1:-1;;;44967:711:0:o;24969:206::-;25033:7;-1:-1:-1;;;;;25057:19:0;;25053:60;;25085:28;;-1:-1:-1;;;25085:28:0;;;;;;;;;;;25053:60;-1:-1:-1;;;;;;25139:19:0;;;;;:12;:19;;;;;:27;;;;24969:206::o;43422:103::-;42843:6;;-1:-1:-1;;;;;42843:6:0;3075:10;42990:23;42982:69;;;;-1:-1:-1;;;42982:69:0;;;;;;;:::i;:::-;43487:30:::1;43514:1;43487:18;:30::i;:::-;43422:103::o:0;46532:102::-;42843:6;;-1:-1:-1;;;;;42843:6:0;3075:10;42990:23;42982:69;;;;-1:-1:-1;;;42982:69:0;;;;;;;:::i;:::-;46606:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27882:104::-:0;27938:13;27971:7;27964:14;;;;;:::i;29492:287::-;-1:-1:-1;;;;;29591:24:0;;3075:10;29591:24;29587:54;;;29624:17;;-1:-1:-1;;;29624:17:0;;;;;;;;;;;29587:54;3075:10;29654:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29654:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29654:53:0;;;;;;;;;;29723:48;;7303:41:1;;;29654:42:0;;3075:10;29723:48;;7276:18:1;29723:48:0;;;;;;;29492:287;;:::o;30578:369::-;30745:28;30755:4;30761:2;30765:7;30745:9;:28::i;:::-;-1:-1:-1;;;;;30788:13:0;;4737:19;:23;;30788:76;;;;;30808:56;30839:4;30845:2;30849:7;30858:5;30808:30;:56::i;:::-;30807:57;30788:76;30784:156;;;30888:40;;-1:-1:-1;;;30888:40:0;;;;;;;;;;;30784:156;30578:369;;;;:::o;46028:490::-;46127:13;46168:17;46176:8;46168:7;:17::i;:::-;46152:98;;;;-1:-1:-1;;;46152:98:0;;9596:2:1;46152:98:0;;;9578:21:1;9635:2;9615:18;;;9608:30;9674:34;9654:18;;;9647:62;-1:-1:-1;;;9725:18:1;;;9718:45;9780:19;;46152:98:0;9394:411:1;46152:98:0;46268:6;;;;;;;46263:50;;46300:9;46293:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46028:490;;;:::o;46263:50::-;46327:28;46358:10;:8;:10::i;:::-;46327:41;;46413:1;46388:14;46382:28;:32;:130;;;;;;;;;;;;;;;;;46450:14;46466:19;:8;:17;:19::i;:::-;46487:9;46433:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46382:130;46375:137;46028:490;-1:-1:-1;;;46028:490:0:o;44486:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43680:201::-;42843:6;;-1:-1:-1;;;;;42843:6:0;3075:10;42990:23;42982:69;;;;-1:-1:-1;;;42982:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43769:22:0;::::1;43761:73;;;::::0;-1:-1:-1;;;43761:73:0;;8129:2:1;43761:73:0::1;::::0;::::1;8111:21:1::0;8168:2;8148:18;;;8141:30;8207:34;8187:18;;;8180:62;-1:-1:-1;;;8258:18:1;;;8251:36;8304:19;;43761:73:0::1;7927:402:1::0;43761:73:0::1;43845:28;43864:8;43845:18;:28::i;:::-;43680:201:::0;:::o;31202:187::-;31259:4;31302:7;23706:1;31283:26;;:53;;;;;31323:13;;31313:7;:23;31283:53;:98;;;;-1:-1:-1;;31354:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31354:27:0;;;;31353:28;;31202:187::o;39372:196::-;39487:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39487:29:0;-1:-1:-1;;;;;39487:29:0;;;;;;;;;39532:28;;39487:24;;39532:28;;;;;;;39372:196;;;:::o;34315:2130::-;34430:35;34468:21;34481:7;34468:12;:21::i;:::-;34430:59;;34528:4;-1:-1:-1;;;;;34506:26:0;:13;:18;;;-1:-1:-1;;;;;34506:26:0;;34502:67;;34541:28;;-1:-1:-1;;;34541:28:0;;;;;;;;;;;34502:67;34582:22;3075:10;-1:-1:-1;;;;;34608:20:0;;;;:73;;-1:-1:-1;34645:36:0;34662:4;3075:10;29850:164;:::i;34645:36::-;34608:126;;;-1:-1:-1;3075:10:0;34698:20;34710:7;34698:11;:20::i;:::-;-1:-1:-1;;;;;34698:36:0;;34608:126;34582:153;;34753:17;34748:66;;34779:35;;-1:-1:-1;;;34779:35:0;;;;;;;;;;;34748:66;-1:-1:-1;;;;;34829:16:0;;34825:52;;34854:23;;-1:-1:-1;;;34854:23:0;;;;;;;;;;;34825:52;34998:35;35015:1;35019:7;35028:4;34998:8;:35::i;:::-;-1:-1:-1;;;;;35329:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35329:31:0;;;;;;;-1:-1:-1;;35329:31:0;;;;;;;35375:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35375:29:0;;;;;;;;;;;35455:20;;;:11;:20;;;;;;35490:18;;-1:-1:-1;;;;;;35523:49:0;;;;-1:-1:-1;;;35556:15:0;35523:49;;;;;;;;;;35846:11;;35906:24;;;;;35949:13;;35455:20;;35906:24;;35949:13;35945:384;;36159:13;;36144:11;:28;36140:174;;36197:20;;36266:28;;;;36240:54;;-1:-1:-1;;;36240:54:0;-1:-1:-1;;;;;;36240:54:0;;;-1:-1:-1;;;;;36197:20:0;;36240:54;;;;36140:174;35304:1036;;;36376:7;36372:2;-1:-1:-1;;;;;36357:27:0;36366:4;-1:-1:-1;;;;;36357:27:0;;;;;;;;;;;36395:42;34419:2026;;34315:2130;;;:::o;31397:104::-;31466:27;31476:2;31480:8;31466:27;;;;;;;;;;;;:9;:27::i;26350:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26461:7:0;;23706:1;26510:23;;:47;;;;;26544:13;;26537:4;:20;26510:47;26506:886;;;26578:31;26612:17;;;:11;:17;;;;;;;;;26578:51;;;;;;;;;-1:-1:-1;;;;;26578:51:0;;;;-1:-1:-1;;;26578:51:0;;;;;;;;;;;-1:-1:-1;;;26578:51:0;;;;;;;;;;;;;;26648:729;;26698:14;;-1:-1:-1;;;;;26698:28:0;;26694:101;;26762:9;26350:1109;-1:-1:-1;;;26350:1109:0:o;26694:101::-;-1:-1:-1;;;27137:6:0;27182:17;;;;:11;:17;;;;;;;;;27170:29;;;;;;;;;-1:-1:-1;;;;;27170:29:0;;;;;-1:-1:-1;;;27170:29:0;;;;;;;;;;;-1:-1:-1;;;27170:29:0;;;;;;;;;;;;;27230:28;27226:109;;27298:9;26350:1109;-1:-1:-1;;;26350:1109:0:o;27226:109::-;27097:261;;;26559:833;26506:886;27420:31;;-1:-1:-1;;;27420:31:0;;;;;;;;;;;44041:191;44134:6;;;-1:-1:-1;;;;;44151:17:0;;;-1:-1:-1;;;;;;44151:17:0;;;;;;;44184:40;;44134:6;;;44151:17;44134:6;;44184:40;;44115:16;;44184:40;44104:128;44041:191;:::o;40060:667::-;40244:72;;-1:-1:-1;;;40244:72:0;;40223:4;;-1:-1:-1;;;;;40244:36:0;;;;;:72;;3075:10;;40295:4;;40301:7;;40310:5;;40244:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40244:72:0;;;;;;;;-1:-1:-1;;40244:72:0;;;;;;;;;;;;:::i;:::-;;;40240:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40478:13:0;;40474:235;;40524:40;;-1:-1:-1;;;40524:40:0;;;;;;;;;;;40474:235;40667:6;40661:13;40652:6;40648:2;40644:15;40637:38;40240:480;-1:-1:-1;;;;;;40363:55:0;-1:-1:-1;;;40363:55:0;;-1:-1:-1;40240:480:0;40060:667;;;;;;:::o;47275:97::-;47328:13;47357:9;47350:16;;;;;:::i;557:723::-;613:13;834:10;830:53;;-1:-1:-1;;861:10:0;;;;;;;;;;;;-1:-1:-1;;;861:10:0;;;;;557:723::o;830:53::-;908:5;893:12;949:78;956:9;;949:78;;982:8;;;;:::i;:::-;;-1:-1:-1;1005:10:0;;-1:-1:-1;1013:2:0;1005:10;;:::i;:::-;;;949:78;;;1037:19;1069:6;1059:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1059:17:0;;1037:39;;1087:154;1094:10;;1087:154;;1121:11;1131:1;1121:11;;:::i;:::-;;-1:-1:-1;1190:10:0;1198:2;1190:5;:10;:::i;:::-;1177:24;;:2;:24;:::i;:::-;1164:39;;1147:6;1154;1147:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1147:56:0;;;;;;;;-1:-1:-1;1218:11:0;1227:2;1218:11;;:::i;:::-;;;1087:154;;31864:163;31987:32;31993:2;31997:8;32007:5;32014:4;32425:20;32448:13;-1:-1:-1;;;;;32476:16:0;;32472:48;;32501:19;;-1:-1:-1;;;32501:19:0;;;;;;;;;;;32472:48;32535:13;32531:44;;32557:18;;-1:-1:-1;;;32557:18:0;;;;;;;;;;;32531:44;-1:-1:-1;;;;;32926:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32985:49:0;;32926:44;;;;;;;;32985:49;;;;-1:-1:-1;;32926:44:0;;;;;;32985:49;;;;;;;;;;;;;;;;33051:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33101:66:0;;;;-1:-1:-1;;;33151:15:0;33101:66;;;;;;;;;;33051:25;33248:23;;;33292:4;:23;;;;-1:-1:-1;;;;;;33300:13:0;;4737:19;:23;;33300:15;33288:641;;;33336:314;33367:38;;33392:12;;-1:-1:-1;;;;;33367:38:0;;;33384:1;;33367:38;;33384:1;;33367:38;33433:69;33472:1;33476:2;33480:14;;;;;;33496:5;33433:30;:69::i;:::-;33428:174;;33538:40;;-1:-1:-1;;;33538:40:0;;;;;;;;;;;33428:174;33645:3;33629:12;:19;;33336:314;;33731:12;33714:13;;:29;33710:43;;33745:8;;;33710:43;33288:641;;;33794:120;33825:40;;33850:14;;;;;-1:-1:-1;;;;;33825:40:0;;;33842:1;;33825:40;;33842:1;;33825:40;33909:3;33893:12;:19;;33794:120;;33288:641;-1:-1:-1;33943:13:0;:28;33993:60;30578:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:346::-;3925:6;3933;3986:2;3974:9;3965:7;3961:23;3957:32;3954:52;;;4002:1;3999;3992:12;3954:52;4041:9;4028:23;4091:6;4084:5;4080:18;4073:5;4070:29;4060:57;;4113:1;4110;4103:12;4209:180;4268:6;4321:2;4309:9;4300:7;4296:23;4292:32;4289:52;;;4337:1;4334;4327:12;4289:52;-1:-1:-1;4360:23:1;;4209:180;-1:-1:-1;4209:180:1:o;4394:269::-;4451:6;4504:2;4492:9;4483:7;4479:23;4475:32;4472:52;;;4520:1;4517;4510:12;4472:52;4559:9;4546:23;4609:4;4602:5;4598:16;4591:5;4588:27;4578:55;;4629:1;4626;4619:12;4668:257;4709:3;4747:5;4741:12;4774:6;4769:3;4762:19;4790:63;4846:6;4839:4;4834:3;4830:14;4823:4;4816:5;4812:16;4790:63;:::i;:::-;4907:2;4886:15;-1:-1:-1;;4882:29:1;4873:39;;;;4914:4;4869:50;;4668:257;-1:-1:-1;;4668:257:1:o;4930:1527::-;5154:3;5192:6;5186:13;5218:4;5231:51;5275:6;5270:3;5265:2;5257:6;5253:15;5231:51;:::i;:::-;5345:13;;5304:16;;;;5367:55;5345:13;5304:16;5389:15;;;5367:55;:::i;:::-;5511:13;;5444:20;;;5484:1;;5571;5593:18;;;;5646;;;;5673:93;;5751:4;5741:8;5737:19;5725:31;;5673:93;5814:2;5804:8;5801:16;5781:18;5778:40;5775:167;;;-1:-1:-1;;;5841:33:1;;5897:4;5894:1;5887:15;5927:4;5848:3;5915:17;5775:167;5958:18;5985:110;;;;6109:1;6104:328;;;;5951:481;;5985:110;-1:-1:-1;;6020:24:1;;6006:39;;6065:20;;;;-1:-1:-1;5985:110:1;;6104:328;11199:1;11192:14;;;11236:4;11223:18;;6199:1;6213:169;6227:8;6224:1;6221:15;6213:169;;;6309:14;;6294:13;;;6287:37;6352:16;;;;6244:10;;6213:169;;;6217:3;;6413:8;6406:5;6402:20;6395:27;;5951:481;-1:-1:-1;6448:3:1;;4930:1527;-1:-1:-1;;;;;;;;;;;4930:1527:1:o;6670:488::-;-1:-1:-1;;;;;6939:15:1;;;6921:34;;6991:15;;6986:2;6971:18;;6964:43;7038:2;7023:18;;7016:34;;;7086:3;7081:2;7066:18;;7059:31;;;6864:4;;7107:45;;7132:19;;7124:6;7107:45;:::i;:::-;7099:53;6670:488;-1:-1:-1;;;;;;6670:488:1:o;7355:219::-;7504:2;7493:9;7486:21;7467:4;7524:44;7564:2;7553:9;7549:18;7541:6;7524:44;:::i;8681:356::-;8883:2;8865:21;;;8902:18;;;8895:30;8961:34;8956:2;8941:18;;8934:62;9028:2;9013:18;;8681:356::o;11252:224::-;11291:3;11319:6;11352:2;11349:1;11345:10;11382:2;11379:1;11375:10;11413:3;11409:2;11405:12;11400:3;11397:21;11394:47;;;11421:18;;:::i;:::-;11457:13;;11252:224;-1:-1:-1;;;;11252:224:1:o;11481:128::-;11521:3;11552:1;11548:6;11545:1;11542:13;11539:39;;;11558:18;;:::i;:::-;-1:-1:-1;11594:9:1;;11481:128::o;11614:204::-;11652:3;11688:4;11685:1;11681:12;11720:4;11717:1;11713:12;11755:3;11749:4;11745:14;11740:3;11737:23;11734:49;;;11763:18;;:::i;:::-;11799:13;;11614:204;-1:-1:-1;;;11614:204:1:o;11823:120::-;11863:1;11889;11879:35;;11894:18;;:::i;:::-;-1:-1:-1;11928:9:1;;11823:120::o;11948:168::-;11988:7;12054:1;12050;12046:6;12042:14;12039:1;12036:21;12031:1;12024:9;12017:17;12013:45;12010:71;;;12061:18;;:::i;:::-;-1:-1:-1;12101:9:1;;11948:168::o;12121:125::-;12161:4;12189:1;12186;12183:8;12180:34;;;12194:18;;:::i;:::-;-1:-1:-1;12231:9:1;;12121:125::o;12251:195::-;12289:4;12326;12323:1;12319:12;12358:4;12355:1;12351:12;12383:3;12378;12375:12;12372:38;;;12390:18;;:::i;:::-;12427:13;;;12251:195;-1:-1:-1;;;12251:195:1:o;12451:258::-;12523:1;12533:113;12547:6;12544:1;12541:13;12533:113;;;12623:11;;;12617:18;12604:11;;;12597:39;12569:2;12562:10;12533:113;;;12664:6;12661:1;12658:13;12655:48;;;-1:-1:-1;;12699:1:1;12681:16;;12674:27;12451:258::o;12714:380::-;12793:1;12789:12;;;;12836;;;12857:61;;12911:4;12903:6;12899:17;12889:27;;12857:61;12964:2;12956:6;12953:14;12933:18;12930:38;12927:161;;;13010:10;13005:3;13001:20;12998:1;12991:31;13045:4;13042:1;13035:15;13073:4;13070:1;13063:15;12927:161;;12714:380;;;:::o;13099:135::-;13138:3;-1:-1:-1;;13159:17:1;;13156:43;;;13179:18;;:::i;:::-;-1:-1:-1;13226:1:1;13215:13;;13099:135::o;13239:112::-;13271:1;13297;13287:35;;13302:18;;:::i;:::-;-1:-1:-1;13336:9:1;;13239:112::o;13356:127::-;13417:10;13412:3;13408:20;13405:1;13398:31;13448:4;13445:1;13438:15;13472:4;13469:1;13462:15;13488:127;13549:10;13544:3;13540:20;13537:1;13530:31;13580:4;13577:1;13570:15;13604:4;13601:1;13594:15;13620:127;13681:10;13676:3;13672:20;13669:1;13662:31;13712:4;13709:1;13702:15;13736:4;13733:1;13726:15;13752:127;13813:10;13808:3;13804:20;13801:1;13794:31;13844:4;13841:1;13834:15;13868:4;13865:1;13858:15;13884:131;-1:-1:-1;;;;;;13958:32:1;;13948:43;;13938:71;;14005:1;14002;13995:12

Swarm Source

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