ETH Price: $3,480.62 (+0.26%)
Gas: 9 Gwei

Token

notBanksyFinale (NBFINALE)
 

Overview

Max Total Supply

845 NBFINALE

Holders

363

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
d00ks.eth
Balance
1 NBFINALE
0xcAD8c8117B8Bc1b1666AF06B402578a34119a9dF
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:
notBanksyFinale

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-11
*/

// SPDX-License-Identifier: MIT
// notBanksy
// Who will be the final winner? BS15HH
// 9741 Nfts
// 0.05 ETH Mint
// Max 2 x Transaction
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  

// File: contracts/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: contracts/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: contracts/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// File: contracts/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: contracts/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: contracts/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: contracts/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: contracts/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: contracts/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: contracts/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/ERC721A.sol


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

pragma solidity ^0.8.0;









contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    uint256 internal immutable maxBatchSize;

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, 'ERC721A: max batch size must be nonzero');
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity <= maxBatchSize, 'ERC721A: quantity to mint too high');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

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

    /**
     * @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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/notBanksyFinale.sol


pragma solidity ^0.8.7;

// notBanksy
// Who will be the final winner? BS15HH
// 9741 Nfts
// 0.05 ETH Mint
// Max 2 x Transaction
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  
// Who will be the final winner BS15HH Who will be the final winner BS15HH Who will be the final winner BS15HH  




contract notBanksyFinale is ERC721A, Ownable {
  using Strings for uint256;

  string private uriPrefix = "ipfs://_______NOTBANKSY____/";
  string private uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public price = 0.05 ether; 
  uint256 public maxSupply = 9741; 
  uint256 public maxMintAmountPerTx = 2; 
  
  bool public paused = true;
  bool public revealed = false;
  mapping(address => uint256) public addressMintedBalance;


  constructor() ERC721A("notBanksyFinale", "NBFINALE", maxMintAmountPerTx) {
    setHiddenMetadataUri("ipfs://QmWpBkD7i1uHA59BGXHf8n1AAN88Hg7mYbqMURgwDUHjvG");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount)
   {
    require(!paused, "The contract is paused!");
    require(msg.value >= price * _mintAmount, "Insufficient funds!");
    
    
    _safeMint(msg.sender, _mintAmount);
  }

   
  function notBanksytoAddress(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_to, _mintAmount);
  }

 
  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 0;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  
  }

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

  }
 
  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }



  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
      _safeMint(_receiver, _mintAmount);
  }

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

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;

  }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;

  }


  // withdrawall addresses
  address t1 = 0xfF1989eEf3a78DB2F55F485423DE00B8f282e128; 
  

  function withdrawall() public onlyOwner {
        uint256 _balance = address(this).balance;
        
        require(payable(t1).send(_balance * 100 / 100 ));
        
    }

  function withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    

 
  }
  
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"notBanksytoAddress","outputs":[],"stateMutability":"nonpayable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","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":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawall","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000805560e0604052601c60a08190527f697066733a2f2f5f5f5f5f5f5f5f4e4f5442414e4b53595f5f5f5f2f0000000060c0908152620000449160089190620002ac565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200007391600991620002ac565b5066b1a2bc2ec50000600b5561260d600c556002600d55600e805461ffff19166001179055601080546001600160a01b03191673ff1989eef3a78db2f55f485423de00b8f282e128179055348015620000cb57600080fd5b506040518060400160405280600f81526020016e6e6f7442616e6b737946696e616c6560881b815250604051806040016040528060088152602001674e4246494e414c4560c01b815250600d54600081116200017e5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b825162000193906001906020860190620002ac565b508151620001a9906002906020850190620002ac565b5060805250620001bb905033620001e5565b620001df60405180606001604052806035815260200162002c0e6035913962000237565b6200038e565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620002935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000175565b8051620002a890600a906020840190620002ac565b5050565b828054620002ba9062000352565b90600052602060002090601f016020900481019282620002de576000855562000329565b82601f10620002f957805160ff191683800117855562000329565b8280016001018555821562000329579182015b82811115620003295782518255916020019190600101906200030c565b50620003379291506200033b565b5090565b5b808211156200033757600081556001016200033c565b600181811c908216806200036757607f821691505b6020821081036200038857634e487b7160e01b600052602260045260246000fd5b50919050565b608051612856620003b860003960008181611a5001528181611a7a0152611eb301526128566000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063a45ba8e7116100ab578063e0a808531161006f578063e0a808531461065f578063e985e9c51461067f578063f2fde38b146106c8578063f3e4ce6d146106e8578063f66c72811461070857600080fd5b8063a45ba8e7146105d4578063b071401b146105e9578063b88d4fde14610609578063c87b56dd14610629578063d5abeb011461064957600080fd5b806394354fd0116100f257806394354fd01461056057806395d89b4114610576578063a035b1fe1461058b578063a0712d68146105a1578063a22cb465146105b457600080fd5b806370a08231146104cd578063715018a6146104ed5780637ec4a659146105025780638da5cb5b1461052257806391b7f5ed1461054057600080fd5b80632f745c59116101bc5780634fdd43cb116101805780634fdd43cb1461043457806351830227146104545780635c975abb146104735780636352211e1461048d5780636f8b44b0146104ad57600080fd5b80632f745c59146103925780633ccfd60b146103b257806342842e0e146103c7578063438b6300146103e75780634f6ccce71461041457600080fd5b806316ba10e01161020357806316ba10e0146102e657806316c38b3c1461030657806318160ddd1461032657806318cae2691461034557806323b872dd1461037257600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b506102556102503660046121d3565b61071d565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61078a565b6040516102619190612248565b34801561029857600080fd5b506102ac6102a736600461225b565b61081c565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004612290565b6108ac565b005b3480156102f257600080fd5b506102e4610301366004612346565b6109c3565b34801561031257600080fd5b506102e461032136600461239f565b610a04565b34801561033257600080fd5b506000545b604051908152602001610261565b34801561035157600080fd5b506103376103603660046123ba565b600f6020526000908152604090205481565b34801561037e57600080fd5b506102e461038d3660046123d5565b610a41565b34801561039e57600080fd5b506103376103ad366004612290565b610a4c565b3480156103be57600080fd5b506102e4610bb8565b3480156103d357600080fd5b506102e46103e23660046123d5565b610c56565b3480156103f357600080fd5b506104076104023660046123ba565b610c71565b6040516102619190612411565b34801561042057600080fd5b5061033761042f36600461225b565b610d50565b34801561044057600080fd5b506102e461044f366004612346565b610db2565b34801561046057600080fd5b50600e5461025590610100900460ff1681565b34801561047f57600080fd5b50600e546102559060ff1681565b34801561049957600080fd5b506102ac6104a836600461225b565b610def565b3480156104b957600080fd5b506102e46104c836600461225b565b610e01565b3480156104d957600080fd5b506103376104e83660046123ba565b610e30565b3480156104f957600080fd5b506102e4610ec1565b34801561050e57600080fd5b506102e461051d366004612346565b610ef7565b34801561052e57600080fd5b506007546001600160a01b03166102ac565b34801561054c57600080fd5b506102e461055b36600461225b565b610f34565b34801561056c57600080fd5b50610337600d5481565b34801561058257600080fd5b5061027f610f63565b34801561059757600080fd5b50610337600b5481565b6102e46105af36600461225b565b610f72565b3480156105c057600080fd5b506102e46105cf366004612455565b6110ce565b3480156105e057600080fd5b5061027f611192565b3480156105f557600080fd5b506102e461060436600461225b565b611220565b34801561061557600080fd5b506102e4610624366004612488565b61124f565b34801561063557600080fd5b5061027f61064436600461225b565b611288565b34801561065557600080fd5b50610337600c5481565b34801561066b57600080fd5b506102e461067a36600461239f565b6113fe565b34801561068b57600080fd5b5061025561069a366004612504565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106d457600080fd5b506102e46106e33660046123ba565b611442565b3480156106f457600080fd5b506102e4610703366004612290565b6114da565b34801561071457600080fd5b506102e46115ba565b60006001600160e01b031982166380ac58cd60e01b148061074e57506001600160e01b03198216635b5e139f60e01b145b8061076957506001600160e01b0319821663780e9d6360e01b145b8061078457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107999061252e565b80601f01602080910402602001604051908101604052809291908181526020018280546107c59061252e565b80156108125780601f106107e757610100808354040283529160200191610812565b820191906000526020600020905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b6000610829826000541190565b6108905760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108b782610def565b9050806001600160a01b0316836001600160a01b0316036109255760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610887565b336001600160a01b03821614806109415750610941813361069a565b6109b35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610887565b6109be83838361162b565b505050565b6007546001600160a01b031633146109ed5760405162461bcd60e51b815260040161088790612568565b8051610a0090600990602084019061212d565b5050565b6007546001600160a01b03163314610a2e5760405162461bcd60e51b815260040161088790612568565b600e805460ff1916911515919091179055565b6109be838383611687565b6000610a5783610e30565b8210610ab05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610887565b600080549080805b83811015610b58576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b0b57805192505b876001600160a01b0316836001600160a01b031603610b4557868403610b375750935061078492505050565b83610b41816125b3565b9450505b5080610b50816125b3565b915050610ab8565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610887565b6007546001600160a01b03163314610be25760405162461bcd60e51b815260040161088790612568565b6000610bf66007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c40576040519150601f19603f3d011682016040523d82523d6000602084013e610c45565b606091505b5050905080610c5357600080fd5b50565b6109be8383836040518060200160405280600081525061124f565b60606000610c7e83610e30565b905060008167ffffffffffffffff811115610c9b57610c9b6122ba565b604051908082528060200260200182016040528015610cc4578160200160208202803683370190505b5090506000805b8381108015610cdc5750600c548211155b15610d46576000610cec83610def565b9050866001600160a01b0316816001600160a01b031603610d335782848381518110610d1a57610d1a6125cc565b602090810291909101015281610d2f816125b3565b9250505b82610d3d816125b3565b93505050610ccb565b5090949350505050565b600080548210610dae5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610887565b5090565b6007546001600160a01b03163314610ddc5760405162461bcd60e51b815260040161088790612568565b8051610a0090600a90602084019061212d565b6000610dfa826119ce565b5192915050565b6007546001600160a01b03163314610e2b5760405162461bcd60e51b815260040161088790612568565b600c55565b60006001600160a01b038216610e9c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610887565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610eeb5760405162461bcd60e51b815260040161088790612568565b610ef56000611b78565b565b6007546001600160a01b03163314610f215760405162461bcd60e51b815260040161088790612568565b8051610a0090600890602084019061212d565b6007546001600160a01b03163314610f5e5760405162461bcd60e51b815260040161088790612568565b600b55565b6060600280546107999061252e565b80600081118015610f855750600d548111155b610fc85760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610887565b600c5481600054610fd991906125e2565b111561101e5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610887565b600e5460ff16156110715760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610887565b81600b5461107f91906125fa565b3410156110c45760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610887565b610a003383611bca565b336001600160a01b038316036111265760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610887565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461119f9061252e565b80601f01602080910402602001604051908101604052809291908181526020018280546111cb9061252e565b80156112185780601f106111ed57610100808354040283529160200191611218565b820191906000526020600020905b8154815290600101906020018083116111fb57829003601f168201915b505050505081565b6007546001600160a01b0316331461124a5760405162461bcd60e51b815260040161088790612568565b600d55565b61125a848484611687565b61126684848484611be4565b6112825760405162461bcd60e51b815260040161088790612619565b50505050565b6060611295826000541190565b6112f95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610887565b600e54610100900460ff16151560000361139f57600a805461131a9061252e565b80601f01602080910402602001604051908101604052809291908181526020018280546113469061252e565b80156113935780601f1061136857610100808354040283529160200191611393565b820191906000526020600020905b81548152906001019060200180831161137657829003601f168201915b50505050509050919050565b60006113a9611ce6565b905060008151116113c957604051806020016040528060008152506113f7565b806113d384611cf5565b60096040516020016113e79392919061266c565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146114285760405162461bcd60e51b815260040161088790612568565b600e80549115156101000261ff0019909216919091179055565b6007546001600160a01b0316331461146c5760405162461bcd60e51b815260040161088790612568565b6001600160a01b0381166114d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610887565b610c5381611b78565b806000811180156114ed5750600d548111155b6115305760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610887565b600c548160005461154191906125e2565b11156115865760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610887565b6007546001600160a01b031633146115b05760405162461bcd60e51b815260040161088790612568565b6109be8383611bca565b6007546001600160a01b031633146115e45760405162461bcd60e51b815260040161088790612568565b60105447906001600160a01b03166108fc606461160184826125fa565b61160b9190612745565b6040518115909202916000818181858888f19350505050610c5357600080fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611692826119ce565b80519091506000906001600160a01b0316336001600160a01b031614806116c95750336116be8461081c565b6001600160a01b0316145b806116db575081516116db903361069a565b9050806117455760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610887565b846001600160a01b031682600001516001600160a01b0316146117b95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610887565b6001600160a01b03841661181d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610887565b61182d600084846000015161162b565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906118f29085906125e2565b6000818152600360205260409020549091506001600160a01b03166119845761191c816000541190565b156119845760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526119ed826000541190565b611a4c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610887565b60007f00000000000000000000000000000000000000000000000000000000000000008310611aad57611a9f7f000000000000000000000000000000000000000000000000000000000000000084612759565b611aaa9060016125e2565b90505b825b818110611b17576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b0457949350505050565b5080611b0f81612770565b915050611aaf565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610887565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a00828260405180602001604052806000815250611df6565b60006001600160a01b0384163b15611cda57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c28903390899088908890600401612787565b6020604051808303816000875af1925050508015611c63575060408051601f3d908101601f19168201909252611c60918101906127c4565b60015b611cc0573d808015611c91576040519150601f19603f3d011682016040523d82523d6000602084013e611c96565b606091505b508051600003611cb85760405162461bcd60e51b815260040161088790612619565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cde565b5060015b949350505050565b6060600880546107999061252e565b606081600003611d1c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d465780611d30816125b3565b9150611d3f9050600a83612745565b9150611d20565b60008167ffffffffffffffff811115611d6157611d616122ba565b6040519080825280601f01601f191660200182016040528015611d8b576020820181803683370190505b5090505b8415611cde57611da0600183612759565b9150611dad600a866127e1565b611db89060306125e2565b60f81b818381518110611dcd57611dcd6125cc565b60200101906001600160f81b031916908160001a905350611def600a86612745565b9450611d8f565b6000546001600160a01b038416611e595760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610887565b611e64816000541190565b15611eb15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610887565b7f0000000000000000000000000000000000000000000000000000000000000000831115611f2c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610887565b60008311611f885760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610887565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fe49087906127f5565b6001600160801b0316815260200185836020015161200291906127f5565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121225760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120e66000888488611be4565b6121025760405162461bcd60e51b815260040161088790612619565b8161210c816125b3565b925050808061211a906125b3565b915050612099565b5060008190556119c6565b8280546121399061252e565b90600052602060002090601f01602090048101928261215b57600085556121a1565b82601f1061217457805160ff19168380011785556121a1565b828001600101855582156121a1579182015b828111156121a1578251825591602001919060010190612186565b50610dae9291505b80821115610dae57600081556001016121a9565b6001600160e01b031981168114610c5357600080fd5b6000602082840312156121e557600080fd5b81356113f7816121bd565b60005b8381101561220b5781810151838201526020016121f3565b838111156112825750506000910152565b600081518084526122348160208601602086016121f0565b601f01601f19169290920160200192915050565b6020815260006113f7602083018461221c565b60006020828403121561226d57600080fd5b5035919050565b80356001600160a01b038116811461228b57600080fd5b919050565b600080604083850312156122a357600080fd5b6122ac83612274565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156122eb576122eb6122ba565b604051601f8501601f19908116603f01168101908282118183101715612313576123136122ba565b8160405280935085815286868601111561232c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561235857600080fd5b813567ffffffffffffffff81111561236f57600080fd5b8201601f8101841361238057600080fd5b611cde848235602084016122d0565b8035801515811461228b57600080fd5b6000602082840312156123b157600080fd5b6113f78261238f565b6000602082840312156123cc57600080fd5b6113f782612274565b6000806000606084860312156123ea57600080fd5b6123f384612274565b925061240160208501612274565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156124495783518352928401929184019160010161242d565b50909695505050505050565b6000806040838503121561246857600080fd5b61247183612274565b915061247f6020840161238f565b90509250929050565b6000806000806080858703121561249e57600080fd5b6124a785612274565b93506124b560208601612274565b925060408501359150606085013567ffffffffffffffff8111156124d857600080fd5b8501601f810187136124e957600080fd5b6124f8878235602084016122d0565b91505092959194509250565b6000806040838503121561251757600080fd5b61252083612274565b915061247f60208401612274565b600181811c9082168061254257607f821691505b60208210810361256257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016125c5576125c561259d565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082198211156125f5576125f561259d565b500190565b60008160001904831182151516156126145761261461259d565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451602061267f8285838a016121f0565b8551918401916126928184848a016121f0565b8554920191600090600181811c90808316806126af57607f831692505b85831081036126cc57634e487b7160e01b85526022600452602485fd5b8080156126e057600181146126f15761271e565b60ff1985168852838801955061271e565b60008b81526020902060005b858110156127165781548a8201529084019088016126fd565b505083880195505b50939b9a5050505050505050505050565b634e487b7160e01b600052601260045260246000fd5b6000826127545761275461272f565b500490565b60008282101561276b5761276b61259d565b500390565b60008161277f5761277f61259d565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127ba9083018461221c565b9695505050505050565b6000602082840312156127d657600080fd5b81516113f7816121bd565b6000826127f0576127f061272f565b500690565b60006001600160801b038083168185168083038211156128175761281761259d565b0194935050505056fea2646970667358221220a73f5de6d16ef72b7ef9aee7c5b1ef67d225df772c4d30fbc119c0a5bfc2ab3c64736f6c634300080d0033697066733a2f2f516d5770426b4437693175484135394247584866386e3141414e38384867376d5962714d555267774455486a7647

Deployed Bytecode

0x6080604052600436106102305760003560e01c806370a082311161012e578063a45ba8e7116100ab578063e0a808531161006f578063e0a808531461065f578063e985e9c51461067f578063f2fde38b146106c8578063f3e4ce6d146106e8578063f66c72811461070857600080fd5b8063a45ba8e7146105d4578063b071401b146105e9578063b88d4fde14610609578063c87b56dd14610629578063d5abeb011461064957600080fd5b806394354fd0116100f257806394354fd01461056057806395d89b4114610576578063a035b1fe1461058b578063a0712d68146105a1578063a22cb465146105b457600080fd5b806370a08231146104cd578063715018a6146104ed5780637ec4a659146105025780638da5cb5b1461052257806391b7f5ed1461054057600080fd5b80632f745c59116101bc5780634fdd43cb116101805780634fdd43cb1461043457806351830227146104545780635c975abb146104735780636352211e1461048d5780636f8b44b0146104ad57600080fd5b80632f745c59146103925780633ccfd60b146103b257806342842e0e146103c7578063438b6300146103e75780634f6ccce71461041457600080fd5b806316ba10e01161020357806316ba10e0146102e657806316c38b3c1461030657806318160ddd1461032657806318cae2691461034557806323b872dd1461037257600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b506102556102503660046121d3565b61071d565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61078a565b6040516102619190612248565b34801561029857600080fd5b506102ac6102a736600461225b565b61081c565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004612290565b6108ac565b005b3480156102f257600080fd5b506102e4610301366004612346565b6109c3565b34801561031257600080fd5b506102e461032136600461239f565b610a04565b34801561033257600080fd5b506000545b604051908152602001610261565b34801561035157600080fd5b506103376103603660046123ba565b600f6020526000908152604090205481565b34801561037e57600080fd5b506102e461038d3660046123d5565b610a41565b34801561039e57600080fd5b506103376103ad366004612290565b610a4c565b3480156103be57600080fd5b506102e4610bb8565b3480156103d357600080fd5b506102e46103e23660046123d5565b610c56565b3480156103f357600080fd5b506104076104023660046123ba565b610c71565b6040516102619190612411565b34801561042057600080fd5b5061033761042f36600461225b565b610d50565b34801561044057600080fd5b506102e461044f366004612346565b610db2565b34801561046057600080fd5b50600e5461025590610100900460ff1681565b34801561047f57600080fd5b50600e546102559060ff1681565b34801561049957600080fd5b506102ac6104a836600461225b565b610def565b3480156104b957600080fd5b506102e46104c836600461225b565b610e01565b3480156104d957600080fd5b506103376104e83660046123ba565b610e30565b3480156104f957600080fd5b506102e4610ec1565b34801561050e57600080fd5b506102e461051d366004612346565b610ef7565b34801561052e57600080fd5b506007546001600160a01b03166102ac565b34801561054c57600080fd5b506102e461055b36600461225b565b610f34565b34801561056c57600080fd5b50610337600d5481565b34801561058257600080fd5b5061027f610f63565b34801561059757600080fd5b50610337600b5481565b6102e46105af36600461225b565b610f72565b3480156105c057600080fd5b506102e46105cf366004612455565b6110ce565b3480156105e057600080fd5b5061027f611192565b3480156105f557600080fd5b506102e461060436600461225b565b611220565b34801561061557600080fd5b506102e4610624366004612488565b61124f565b34801561063557600080fd5b5061027f61064436600461225b565b611288565b34801561065557600080fd5b50610337600c5481565b34801561066b57600080fd5b506102e461067a36600461239f565b6113fe565b34801561068b57600080fd5b5061025561069a366004612504565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106d457600080fd5b506102e46106e33660046123ba565b611442565b3480156106f457600080fd5b506102e4610703366004612290565b6114da565b34801561071457600080fd5b506102e46115ba565b60006001600160e01b031982166380ac58cd60e01b148061074e57506001600160e01b03198216635b5e139f60e01b145b8061076957506001600160e01b0319821663780e9d6360e01b145b8061078457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107999061252e565b80601f01602080910402602001604051908101604052809291908181526020018280546107c59061252e565b80156108125780601f106107e757610100808354040283529160200191610812565b820191906000526020600020905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b6000610829826000541190565b6108905760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108b782610def565b9050806001600160a01b0316836001600160a01b0316036109255760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610887565b336001600160a01b03821614806109415750610941813361069a565b6109b35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610887565b6109be83838361162b565b505050565b6007546001600160a01b031633146109ed5760405162461bcd60e51b815260040161088790612568565b8051610a0090600990602084019061212d565b5050565b6007546001600160a01b03163314610a2e5760405162461bcd60e51b815260040161088790612568565b600e805460ff1916911515919091179055565b6109be838383611687565b6000610a5783610e30565b8210610ab05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610887565b600080549080805b83811015610b58576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b0b57805192505b876001600160a01b0316836001600160a01b031603610b4557868403610b375750935061078492505050565b83610b41816125b3565b9450505b5080610b50816125b3565b915050610ab8565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610887565b6007546001600160a01b03163314610be25760405162461bcd60e51b815260040161088790612568565b6000610bf66007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c40576040519150601f19603f3d011682016040523d82523d6000602084013e610c45565b606091505b5050905080610c5357600080fd5b50565b6109be8383836040518060200160405280600081525061124f565b60606000610c7e83610e30565b905060008167ffffffffffffffff811115610c9b57610c9b6122ba565b604051908082528060200260200182016040528015610cc4578160200160208202803683370190505b5090506000805b8381108015610cdc5750600c548211155b15610d46576000610cec83610def565b9050866001600160a01b0316816001600160a01b031603610d335782848381518110610d1a57610d1a6125cc565b602090810291909101015281610d2f816125b3565b9250505b82610d3d816125b3565b93505050610ccb565b5090949350505050565b600080548210610dae5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610887565b5090565b6007546001600160a01b03163314610ddc5760405162461bcd60e51b815260040161088790612568565b8051610a0090600a90602084019061212d565b6000610dfa826119ce565b5192915050565b6007546001600160a01b03163314610e2b5760405162461bcd60e51b815260040161088790612568565b600c55565b60006001600160a01b038216610e9c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610887565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610eeb5760405162461bcd60e51b815260040161088790612568565b610ef56000611b78565b565b6007546001600160a01b03163314610f215760405162461bcd60e51b815260040161088790612568565b8051610a0090600890602084019061212d565b6007546001600160a01b03163314610f5e5760405162461bcd60e51b815260040161088790612568565b600b55565b6060600280546107999061252e565b80600081118015610f855750600d548111155b610fc85760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610887565b600c5481600054610fd991906125e2565b111561101e5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610887565b600e5460ff16156110715760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610887565b81600b5461107f91906125fa565b3410156110c45760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610887565b610a003383611bca565b336001600160a01b038316036111265760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610887565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461119f9061252e565b80601f01602080910402602001604051908101604052809291908181526020018280546111cb9061252e565b80156112185780601f106111ed57610100808354040283529160200191611218565b820191906000526020600020905b8154815290600101906020018083116111fb57829003601f168201915b505050505081565b6007546001600160a01b0316331461124a5760405162461bcd60e51b815260040161088790612568565b600d55565b61125a848484611687565b61126684848484611be4565b6112825760405162461bcd60e51b815260040161088790612619565b50505050565b6060611295826000541190565b6112f95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610887565b600e54610100900460ff16151560000361139f57600a805461131a9061252e565b80601f01602080910402602001604051908101604052809291908181526020018280546113469061252e565b80156113935780601f1061136857610100808354040283529160200191611393565b820191906000526020600020905b81548152906001019060200180831161137657829003601f168201915b50505050509050919050565b60006113a9611ce6565b905060008151116113c957604051806020016040528060008152506113f7565b806113d384611cf5565b60096040516020016113e79392919061266c565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146114285760405162461bcd60e51b815260040161088790612568565b600e80549115156101000261ff0019909216919091179055565b6007546001600160a01b0316331461146c5760405162461bcd60e51b815260040161088790612568565b6001600160a01b0381166114d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610887565b610c5381611b78565b806000811180156114ed5750600d548111155b6115305760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610887565b600c548160005461154191906125e2565b11156115865760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610887565b6007546001600160a01b031633146115b05760405162461bcd60e51b815260040161088790612568565b6109be8383611bca565b6007546001600160a01b031633146115e45760405162461bcd60e51b815260040161088790612568565b60105447906001600160a01b03166108fc606461160184826125fa565b61160b9190612745565b6040518115909202916000818181858888f19350505050610c5357600080fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611692826119ce565b80519091506000906001600160a01b0316336001600160a01b031614806116c95750336116be8461081c565b6001600160a01b0316145b806116db575081516116db903361069a565b9050806117455760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610887565b846001600160a01b031682600001516001600160a01b0316146117b95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610887565b6001600160a01b03841661181d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610887565b61182d600084846000015161162b565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906118f29085906125e2565b6000818152600360205260409020549091506001600160a01b03166119845761191c816000541190565b156119845760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526119ed826000541190565b611a4c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610887565b60007f00000000000000000000000000000000000000000000000000000000000000028310611aad57611a9f7f000000000000000000000000000000000000000000000000000000000000000284612759565b611aaa9060016125e2565b90505b825b818110611b17576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b0457949350505050565b5080611b0f81612770565b915050611aaf565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610887565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a00828260405180602001604052806000815250611df6565b60006001600160a01b0384163b15611cda57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c28903390899088908890600401612787565b6020604051808303816000875af1925050508015611c63575060408051601f3d908101601f19168201909252611c60918101906127c4565b60015b611cc0573d808015611c91576040519150601f19603f3d011682016040523d82523d6000602084013e611c96565b606091505b508051600003611cb85760405162461bcd60e51b815260040161088790612619565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cde565b5060015b949350505050565b6060600880546107999061252e565b606081600003611d1c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d465780611d30816125b3565b9150611d3f9050600a83612745565b9150611d20565b60008167ffffffffffffffff811115611d6157611d616122ba565b6040519080825280601f01601f191660200182016040528015611d8b576020820181803683370190505b5090505b8415611cde57611da0600183612759565b9150611dad600a866127e1565b611db89060306125e2565b60f81b818381518110611dcd57611dcd6125cc565b60200101906001600160f81b031916908160001a905350611def600a86612745565b9450611d8f565b6000546001600160a01b038416611e595760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610887565b611e64816000541190565b15611eb15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610887565b7f0000000000000000000000000000000000000000000000000000000000000002831115611f2c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610887565b60008311611f885760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610887565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fe49087906127f5565b6001600160801b0316815260200185836020015161200291906127f5565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121225760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120e66000888488611be4565b6121025760405162461bcd60e51b815260040161088790612619565b8161210c816125b3565b925050808061211a906125b3565b915050612099565b5060008190556119c6565b8280546121399061252e565b90600052602060002090601f01602090048101928261215b57600085556121a1565b82601f1061217457805160ff19168380011785556121a1565b828001600101855582156121a1579182015b828111156121a1578251825591602001919060010190612186565b50610dae9291505b80821115610dae57600081556001016121a9565b6001600160e01b031981168114610c5357600080fd5b6000602082840312156121e557600080fd5b81356113f7816121bd565b60005b8381101561220b5781810151838201526020016121f3565b838111156112825750506000910152565b600081518084526122348160208601602086016121f0565b601f01601f19169290920160200192915050565b6020815260006113f7602083018461221c565b60006020828403121561226d57600080fd5b5035919050565b80356001600160a01b038116811461228b57600080fd5b919050565b600080604083850312156122a357600080fd5b6122ac83612274565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156122eb576122eb6122ba565b604051601f8501601f19908116603f01168101908282118183101715612313576123136122ba565b8160405280935085815286868601111561232c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561235857600080fd5b813567ffffffffffffffff81111561236f57600080fd5b8201601f8101841361238057600080fd5b611cde848235602084016122d0565b8035801515811461228b57600080fd5b6000602082840312156123b157600080fd5b6113f78261238f565b6000602082840312156123cc57600080fd5b6113f782612274565b6000806000606084860312156123ea57600080fd5b6123f384612274565b925061240160208501612274565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156124495783518352928401929184019160010161242d565b50909695505050505050565b6000806040838503121561246857600080fd5b61247183612274565b915061247f6020840161238f565b90509250929050565b6000806000806080858703121561249e57600080fd5b6124a785612274565b93506124b560208601612274565b925060408501359150606085013567ffffffffffffffff8111156124d857600080fd5b8501601f810187136124e957600080fd5b6124f8878235602084016122d0565b91505092959194509250565b6000806040838503121561251757600080fd5b61252083612274565b915061247f60208401612274565b600181811c9082168061254257607f821691505b60208210810361256257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016125c5576125c561259d565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082198211156125f5576125f561259d565b500190565b60008160001904831182151516156126145761261461259d565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451602061267f8285838a016121f0565b8551918401916126928184848a016121f0565b8554920191600090600181811c90808316806126af57607f831692505b85831081036126cc57634e487b7160e01b85526022600452602485fd5b8080156126e057600181146126f15761271e565b60ff1985168852838801955061271e565b60008b81526020902060005b858110156127165781548a8201529084019088016126fd565b505083880195505b50939b9a5050505050505050505050565b634e487b7160e01b600052601260045260246000fd5b6000826127545761275461272f565b500490565b60008282101561276b5761276b61259d565b500390565b60008161277f5761277f61259d565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127ba9083018461221c565b9695505050505050565b6000602082840312156127d657600080fd5b81516113f7816121bd565b6000826127f0576127f061272f565b500690565b60006001600160801b038083168185168083038211156128175761281761259d565b0194935050505056fea2646970667358221220a73f5de6d16ef72b7ef9aee7c5b1ef67d225df772c4d30fbc119c0a5bfc2ab3c64736f6c634300080d0033

Deployed Bytecode Sourcemap

42285:3981:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28251:372;;;;;;;;;;-1:-1:-1;28251:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28251:372:0;;;;;;;;30056:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31617:214::-;;;;;;;;;;-1:-1:-1;31617:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;31617:214:0;1528:203:1;31138:413:0;;;;;;;;;;-1:-1:-1;31138:413:0;;;;;:::i;:::-;;:::i;:::-;;45159:100;;;;;;;;;;-1:-1:-1;45159:100:0;;;;;:::i;:::-;;:::i;45265:77::-;;;;;;;;;;-1:-1:-1;45265:77:0;;;;;:::i;:::-;;:::i;26692:100::-;;;;;;;;;;-1:-1:-1;26745:7:0;26772:12;26692:100;;;3894:25:1;;;3882:2;3867:18;26692:100:0;3748:177:1;42694:55:0;;;;;;;;;;-1:-1:-1;42694:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;32493:162;;;;;;;;;;-1:-1:-1;32493:162:0;;;;;:::i;:::-;;:::i;27356:823::-;;;;;;;;;;-1:-1:-1;27356:823:0;;;;;:::i;:::-;;:::i;46111:148::-;;;;;;;;;;;;;:::i;32726:177::-;;;;;;;;;;-1:-1:-1;32726:177:0;;;;;:::i;:::-;;:::i;43592:635::-;;;;;;;;;;-1:-1:-1;43592:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26869:187::-;;;;;;;;;;-1:-1:-1;26869:187:0;;;;;:::i;:::-;;:::i;44911:132::-;;;;;;;;;;-1:-1:-1;44911:132:0;;;;;:::i;:::-;;:::i;42661:28::-;;;;;;;;;;-1:-1:-1;42661:28:0;;;;;;;;;;;42631:25;;;;;;;;;;-1:-1:-1;42631:25:0;;;;;;;;29865:124;;;;;;;;;;-1:-1:-1;29865:124:0;;;;;:::i;:::-;;:::i;45728:96::-;;;;;;;;;;-1:-1:-1;45728:96:0;;;;;:::i;:::-;;:::i;28687:221::-;;;;;;;;;;-1:-1:-1;28687:221:0;;;;;:::i;:::-;;:::i;6407:103::-;;;;;;;;;;;;;:::i;45053:100::-;;;;;;;;;;-1:-1:-1;45053:100:0;;;;;:::i;:::-;;:::i;5756:87::-;;;;;;;;;;-1:-1:-1;5829:6:0;;-1:-1:-1;;;;;5829:6:0;5756:87;;44824:80;;;;;;;;;;-1:-1:-1;44824:80:0;;;;;:::i;:::-;;:::i;42584:37::-;;;;;;;;;;;;;;;;30225:104;;;;;;;;;;;;;:::i;42508:33::-;;;;;;;;;;;;;;;;43163:262;;;;;;:::i;:::-;;:::i;31903:288::-;;;;;;;;;;-1:-1:-1;31903:288:0;;;;;:::i;:::-;;:::i;42468:31::-;;;;;;;;;;;;;:::i;45588:132::-;;;;;;;;;;-1:-1:-1;45588:132:0;;;;;:::i;:::-;;:::i;32974:355::-;;;;;;;;;;-1:-1:-1;32974:355:0;;;;;:::i;:::-;;:::i;44233:494::-;;;;;;;;;;-1:-1:-1;44233:494:0;;;;;:::i;:::-;;:::i;42547:31::-;;;;;;;;;;;;;;;;44733:85;;;;;;;;;;-1:-1:-1;44733:85:0;;;;;:::i;:::-;;:::i;32262:164::-;;;;;;;;;;-1:-1:-1;32262:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32383:25:0;;;32359:4;32383:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32262:164;6665:201;;;;;;;;;;-1:-1:-1;6665:201:0;;;;;:::i;:::-;;:::i;43436:147::-;;;;;;;;;;-1:-1:-1;43436:147:0;;;;;:::i;:::-;;:::i;45927:178::-;;;;;;;;;;;;;:::i;28251:372::-;28353:4;-1:-1:-1;;;;;;28390:40:0;;-1:-1:-1;;;28390:40:0;;:105;;-1:-1:-1;;;;;;;28447:48:0;;-1:-1:-1;;;28447:48:0;28390:105;:172;;;-1:-1:-1;;;;;;;28512:50:0;;-1:-1:-1;;;28512:50:0;28390:172;:225;;;-1:-1:-1;;;;;;;;;;18318:40:0;;;28579:36;28370:245;28251:372;-1:-1:-1;;28251:372:0:o;30056:100::-;30110:13;30143:5;30136:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30056:100;:::o;31617:214::-;31685:7;31713:16;31721:7;33641:4;33675:12;-1:-1:-1;33665:22:0;33584:111;31713:16;31705:74;;;;-1:-1:-1;;;31705:74:0;;6874:2:1;31705:74:0;;;6856:21:1;6913:2;6893:18;;;6886:30;6952:34;6932:18;;;6925:62;-1:-1:-1;;;7003:18:1;;;6996:43;7056:19;;31705:74:0;;;;;;;;;-1:-1:-1;31799:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31799:24:0;;31617:214::o;31138:413::-;31211:13;31227:24;31243:7;31227:15;:24::i;:::-;31211:40;;31276:5;-1:-1:-1;;;;;31270:11:0;:2;-1:-1:-1;;;;;31270:11:0;;31262:58;;;;-1:-1:-1;;;31262:58:0;;7288:2:1;31262:58:0;;;7270:21:1;7327:2;7307:18;;;7300:30;7366:34;7346:18;;;7339:62;-1:-1:-1;;;7417:18:1;;;7410:32;7459:19;;31262:58:0;7086:398:1;31262:58:0;4583:10;-1:-1:-1;;;;;31355:21:0;;;;:62;;-1:-1:-1;31380:37:0;31397:5;4583:10;32262:164;:::i;31380:37::-;31333:169;;;;-1:-1:-1;;;31333:169:0;;7691:2:1;31333:169:0;;;7673:21:1;7730:2;7710:18;;;7703:30;7769:34;7749:18;;;7742:62;7840:27;7820:18;;;7813:55;7885:19;;31333:169:0;7489:421:1;31333:169:0;31515:28;31524:2;31528:7;31537:5;31515:8;:28::i;:::-;31200:351;31138:413;;:::o;45159:100::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4583:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;45231:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45159:100:::0;:::o;45265:77::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4583:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;45321:6:::1;:15:::0;;-1:-1:-1;;45321:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45265:77::o;32493:162::-;32619:28;32629:4;32635:2;32639:7;32619:9;:28::i;27356:823::-;27445:7;27481:16;27491:5;27481:9;:16::i;:::-;27473:5;:24;27465:71;;;;-1:-1:-1;;;27465:71:0;;8478:2:1;27465:71:0;;;8460:21:1;8517:2;8497:18;;;8490:30;8556:34;8536:18;;;8529:62;-1:-1:-1;;;8607:18:1;;;8600:32;8649:19;;27465:71:0;8276:398:1;27465:71:0;27547:22;26772:12;;;27547:22;;27679:426;27703:14;27699:1;:18;27679:426;;;27739:31;27773:14;;;:11;:14;;;;;;;;;27739:48;;;;;;;;;-1:-1:-1;;;;;27739:48:0;;;;;-1:-1:-1;;;27739:48:0;;;;;;;;;;;;27806:28;27802:103;;27875:14;;;-1:-1:-1;27802:103:0;27944:5;-1:-1:-1;;;;;27923:26:0;:17;-1:-1:-1;;;;;27923:26:0;;27919:175;;27989:5;27974:11;:20;27970:77;;-1:-1:-1;28026:1:0;-1:-1:-1;28019:8:0;;-1:-1:-1;;;28019:8:0;27970:77;28065:13;;;;:::i;:::-;;;;27919:175;-1:-1:-1;27719:3:0;;;;:::i;:::-;;;;27679:426;;;-1:-1:-1;28115:56:0;;-1:-1:-1;;;28115:56:0;;9153:2:1;28115:56:0;;;9135:21:1;9192:2;9172:18;;;9165:30;9231:34;9211:18;;;9204:62;-1:-1:-1;;;9282:18:1;;;9275:44;9336:19;;28115:56:0;8951:410:1;46111:148:0;5829:6;;-1:-1:-1;;;;;5829:6:0;4583:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;46156:7:::1;46177;5829:6:::0;;-1:-1:-1;;;;;5829:6:0;;5756:87;46177:7:::1;-1:-1:-1::0;;;;;46169:21:0::1;46198;46169:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46155:69;;;46239:2;46231:11;;;::::0;::::1;;46148:111;46111:148::o:0;32726:177::-;32856:39;32873:4;32879:2;32883:7;32856:39;;;;;;;;;;;;:16;:39::i;43592:635::-;43667:16;43695:23;43721:17;43731:6;43721:9;:17::i;:::-;43695:43;;43745:30;43792:15;43778:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43778:30:0;;43745:63;;43815:22;43848:23;43884:309;43909:15;43891;:33;:64;;;;;43946:9;;43928:14;:27;;43891:64;43884:309;;;43966:25;43994:23;44002:14;43994:7;:23::i;:::-;43966:51;;44053:6;-1:-1:-1;;;;;44032:27:0;:17;-1:-1:-1;;;;;44032:27:0;;44028:131;;44105:14;44072:13;44086:15;44072:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;44132:17;;;;:::i;:::-;;;;44028:131;44169:16;;;;:::i;:::-;;;;43957:236;43884:309;;;-1:-1:-1;44208:13:0;;43592:635;-1:-1:-1;;;;43592:635:0:o;26869:187::-;26936:7;26772:12;;26964:5;:21;26956:69;;;;-1:-1:-1;;;26956:69:0;;9910:2:1;26956:69:0;;;9892:21:1;9949:2;9929:18;;;9922:30;9988:34;9968:18;;;9961:62;-1:-1:-1;;;10039:18:1;;;10032:33;10082:19;;26956:69:0;9708:399:1;26956:69:0;-1:-1:-1;27043:5:0;26869:187::o;44911:132::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4583:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;44999:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;29865:124::-:0;29929:7;29956:20;29968:7;29956:11;:20::i;:::-;:25;;29865:124;-1:-1:-1;;29865:124:0:o;45728:96::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4583:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;45794:9:::1;:22:::0;45728:96::o;28687:221::-;28751:7;-1:-1:-1;;;;;28779:19:0;;28771:75;;;;-1:-1:-1;;;28771:75:0;;10314:2:1;28771:75:0;;;10296:21:1;10353:2;10333:18;;;10326:30;10392:34;10372:18;;;10365:62;-1:-1:-1;;;10443:18:1;;;10436:41;10494:19;;28771:75:0;10112:407:1;28771:75:0;-1:-1:-1;;;;;;28872:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28872:27:0;;28687:221::o;6407:103::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4583:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;6472:30:::1;6499:1;6472:18;:30::i;:::-;6407:103::o:0;45053:100::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4583:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;45125:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;44824:80::-:0;5829:6;;-1:-1:-1;;;;;5829:6:0;4583:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;44882:5:::1;:14:::0;44824:80::o;30225:104::-;30281:13;30314:7;30307:14;;;;;:::i;43163:262::-;43228:11;43001:1;42987:11;:15;:52;;;;;43021:18;;43006:11;:33;;42987:52;42979:85;;;;-1:-1:-1;;;42979:85:0;;10726:2:1;42979:85:0;;;10708:21:1;10765:2;10745:18;;;10738:30;-1:-1:-1;;;10784:18:1;;;10777:50;10844:18;;42979:85:0;10524:344:1;42979:85:0;43109:9;;43094:11;43079:12;;:26;;;;:::i;:::-;:39;;43071:72;;;;-1:-1:-1;;;43071:72:0;;11208:2:1;43071:72:0;;;11190:21:1;11247:2;11227:18;;;11220:30;-1:-1:-1;;;11266:18:1;;;11259:50;11326:18;;43071:72:0;11006:344:1;43071:72:0;43261:6:::1;::::0;::::1;;43260:7;43252:43;;;::::0;-1:-1:-1;;;43252:43:0;;11557:2:1;43252:43:0::1;::::0;::::1;11539:21:1::0;11596:2;11576:18;;;11569:30;11635:25;11615:18;;;11608:53;11678:18;;43252:43:0::1;11355:347:1::0;43252:43:0::1;43331:11;43323:5;;:19;;;;:::i;:::-;43310:9;:32;;43302:64;;;::::0;-1:-1:-1;;;43302:64:0;;12082:2:1;43302:64:0::1;::::0;::::1;12064:21:1::0;12121:2;12101:18;;;12094:30;-1:-1:-1;;;12140:18:1;;;12133:49;12199:18;;43302:64:0::1;11880:343:1::0;43302:64:0::1;43385:34;43395:10;43407:11;43385:9;:34::i;31903:288::-:0;4583:10;-1:-1:-1;;;;;31998:24:0;;;31990:63;;;;-1:-1:-1;;;31990:63:0;;12430:2:1;31990:63:0;;;12412:21:1;12469:2;12449:18;;;12442:30;12508:28;12488:18;;;12481:56;12554:18;;31990:63:0;12228:350:1;31990:63:0;4583:10;32066:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32066:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32066:53:0;;;;;;;;;;32135:48;;540:41:1;;;32066:42:0;;4583:10;32135:48;;513:18:1;32135:48:0;;;;;;;31903:288;;:::o;42468:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45588:132::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4583:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;45672:18:::1;:40:::0;45588:132::o;32974:355::-;33133:28;33143:4;33149:2;33153:7;33133:9;:28::i;:::-;33194:48;33217:4;33223:2;33227:7;33236:5;33194:22;:48::i;:::-;33172:149;;;;-1:-1:-1;;;33172:149:0;;;;;;;:::i;:::-;32974:355;;;;:::o;44233:494::-;44332:13;44373:17;44381:8;33641:4;33675:12;-1:-1:-1;33665:22:0;33584:111;44373:17;44357:98;;;;-1:-1:-1;;;44357:98:0;;13205:2:1;44357:98:0;;;13187:21:1;13244:2;13224:18;;;13217:30;13283:34;13263:18;;;13256:62;-1:-1:-1;;;13334:18:1;;;13327:45;13389:19;;44357:98:0;13003:411:1;44357:98:0;44468:8;;;;;;;:17;;44480:5;44468:17;44464:64;;44503:17;44496:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44233:494;;;:::o;44464:64::-;44536:28;44567:10;:8;:10::i;:::-;44536:41;;44622:1;44597:14;44591:28;:32;:130;;;;;;;;;;;;;;;;;44659:14;44675:19;:8;:17;:19::i;:::-;44696:9;44642:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44591:130;44584:137;44233:494;-1:-1:-1;;;44233:494:0:o;44733:85::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4583:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;44791:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;44791:17:0;;::::1;::::0;;;::::1;::::0;;44733:85::o;6665:201::-;5829:6;;-1:-1:-1;;;;;5829:6:0;4583:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6754:22:0;::::1;6746:73;;;::::0;-1:-1:-1;;;6746:73:0;;15279:2:1;6746:73:0::1;::::0;::::1;15261:21:1::0;15318:2;15298:18;;;15291:30;15357:34;15337:18;;;15330:62;-1:-1:-1;;;15408:18:1;;;15401:36;15454:19;;6746:73:0::1;15077:402:1::0;6746:73:0::1;6830:28;6849:8;6830:18;:28::i;43436:147::-:0;43520:11;43001:1;42987:11;:15;:52;;;;;43021:18;;43006:11;:33;;42987:52;42979:85;;;;-1:-1:-1;;;42979:85:0;;10726:2:1;42979:85:0;;;10708:21:1;10765:2;10745:18;;;10738:30;-1:-1:-1;;;10784:18:1;;;10777:50;10844:18;;42979:85:0;10524:344:1;42979:85:0;43109:9;;43094:11;43079:12;;:26;;;;:::i;:::-;:39;;43071:72;;;;-1:-1:-1;;;43071:72:0;;11208:2:1;43071:72:0;;;11190:21:1;11247:2;11227:18;;;11220:30;-1:-1:-1;;;11266:18:1;;;11259:50;11326:18;;43071:72:0;11006:344:1;43071:72:0;5829:6;;-1:-1:-1;;;;;5829:6:0;4583:10;5976:23:::1;5968:68;;;;-1:-1:-1::0;;;5968:68:0::1;;;;;;;:::i;:::-;43550:27:::2;43560:3;43565:11;43550:9;:27::i;45927:178::-:0;5829:6;;-1:-1:-1;;;;;5829:6:0;4583:10;5976:23;5968:68;;;;-1:-1:-1;;;5968:68:0;;;;;;;:::i;:::-;46055:2:::1;::::0;45997:21:::1;::::0;-1:-1:-1;;;;;46055:2:0::1;46047:39;46081:3;46064:14;45997:21:::0;46081:3;46064:14:::1;:::i;:::-;:20;;;;:::i;:::-;46047:39;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;46039:48;;;::::0;::::1;37710:196:::0;37825:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37825:29:0;-1:-1:-1;;;;;37825:29:0;;;;;;;;;37870:28;;37825:24;;37870:28;;;;;;;37710:196;;;:::o;35809:1783::-;35924:35;35962:20;35974:7;35962:11;:20::i;:::-;36037:18;;35924:58;;-1:-1:-1;35995:22:0;;-1:-1:-1;;;;;36021:34:0;4583:10;-1:-1:-1;;;;;36021:34:0;;:87;;;-1:-1:-1;4583:10:0;36072:20;36084:7;36072:11;:20::i;:::-;-1:-1:-1;;;;;36072:36:0;;36021:87;:154;;;-1:-1:-1;36142:18:0;;36125:50;;4583:10;32262:164;:::i;36125:50::-;35995:181;;36197:17;36189:80;;;;-1:-1:-1;;;36189:80:0;;15943:2:1;36189:80:0;;;15925:21:1;15982:2;15962:18;;;15955:30;16021:34;16001:18;;;15994:62;-1:-1:-1;;;16072:18:1;;;16065:48;16130:19;;36189:80:0;15741:414:1;36189:80:0;36312:4;-1:-1:-1;;;;;36290:26:0;:13;:18;;;-1:-1:-1;;;;;36290:26:0;;36282:77;;;;-1:-1:-1;;;36282:77:0;;16362:2:1;36282:77:0;;;16344:21:1;16401:2;16381:18;;;16374:30;16440:34;16420:18;;;16413:62;-1:-1:-1;;;16491:18:1;;;16484:36;16537:19;;36282:77:0;16160:402:1;36282:77:0;-1:-1:-1;;;;;36378:16:0;;36370:66;;;;-1:-1:-1;;;36370:66:0;;16769:2:1;36370:66:0;;;16751:21:1;16808:2;16788:18;;;16781:30;16847:34;16827:18;;;16820:62;-1:-1:-1;;;16898:18:1;;;16891:35;16943:19;;36370:66:0;16567:401:1;36370:66:0;36557:49;36574:1;36578:7;36587:13;:18;;;36557:8;:49::i;:::-;-1:-1:-1;;;;;36811:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36811:31:0;;;-1:-1:-1;;;;;36811:31:0;;;-1:-1:-1;;36811:31:0;;;;;;;36857:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36857:29:0;;;;;;;;;;;;;36933:43;;;;;;;;;;36959:15;36933:43;;;;;;;;;;36910:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;36910:66:0;;;;;;;-1:-1:-1;;;36910:66:0;;;;;;;;;;;;36811:18;37238:11;;36910:20;;37238:11;:::i;:::-;37305:1;37264:24;;;:11;:24;;;;;:29;37216:33;;-1:-1:-1;;;;;;37264:29:0;37260:227;;37328:20;37336:11;33641:4;33675:12;-1:-1:-1;33665:22:0;33584:111;37328:20;37324:152;;;37396:64;;;;;;;;37411:18;;-1:-1:-1;;;;;37396:64:0;;;;;;37431:28;;;;37396:64;;;;;;;;;;-1:-1:-1;37369:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;37369:91:0;-1:-1:-1;;;;;;37369:91:0;;;;;;;;;;;;37324:152;37523:7;37519:2;-1:-1:-1;;;;;37504:27:0;37513:4;-1:-1:-1;;;;;37504:27:0;;;;;;;;;;;37542:42;35913:1679;;;35809:1783;;;:::o;29153:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;29256:16:0;29264:7;33641:4;33675:12;-1:-1:-1;33665:22:0;33584:111;29256:16;29248:71;;;;-1:-1:-1;;;29248:71:0;;17175:2:1;29248:71:0;;;17157:21:1;17214:2;17194:18;;;17187:30;17253:34;17233:18;;;17226:62;-1:-1:-1;;;17304:18:1;;;17297:40;17354:19;;29248:71:0;16973:406:1;29248:71:0;29332:26;29384:12;29373:7;:23;29369:103;;29434:22;29444:12;29434:7;:22;:::i;:::-;:26;;29459:1;29434:26;:::i;:::-;29413:47;;29369:103;29504:7;29484:242;29521:18;29513:4;:26;29484:242;;29564:31;29598:17;;;:11;:17;;;;;;;;;29564:51;;;;;;;;;-1:-1:-1;;;;;29564:51:0;;;;;-1:-1:-1;;;29564:51:0;;;;;;;;;;;;29634:28;29630:85;;29690:9;29153:650;-1:-1:-1;;;;29153:650:0:o;29630:85::-;-1:-1:-1;29541:6:0;;;;:::i;:::-;;;;29484:242;;;-1:-1:-1;29738:57:0;;-1:-1:-1;;;29738:57:0;;17857:2:1;29738:57:0;;;17839:21:1;17896:2;17876:18;;;17869:30;17935:34;17915:18;;;17908:62;-1:-1:-1;;;17986:18:1;;;17979:45;18041:19;;29738:57:0;17655:411:1;7026:191:0;7119:6;;;-1:-1:-1;;;;;7136:17:0;;;-1:-1:-1;;;;;;7136:17:0;;;;;;;7169:40;;7119:6;;;7136:17;7119:6;;7169:40;;7100:16;;7169:40;7089:128;7026:191;:::o;33703:104::-;33772:27;33782:2;33786:8;33772:27;;;;;;;;;;;;:9;:27::i;38471:804::-;38626:4;-1:-1:-1;;;;;38647:13:0;;8730:19;:23;38643:625;;38683:72;;-1:-1:-1;;;38683:72:0;;-1:-1:-1;;;;;38683:36:0;;;;;:72;;4583:10;;38734:4;;38740:7;;38749:5;;38683:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38683:72:0;;;;;;;;-1:-1:-1;;38683:72:0;;;;;;;;;;;;:::i;:::-;;;38679:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38929:6;:13;38946:1;38929:18;38925:273;;38972:61;;-1:-1:-1;;;38972:61:0;;;;;;;:::i;38925:273::-;39148:6;39142:13;39133:6;39129:2;39125:15;39118:38;38679:534;-1:-1:-1;;;;;;38806:55:0;-1:-1:-1;;;38806:55:0;;-1:-1:-1;38799:62:0;;38643:625;-1:-1:-1;39252:4:0;38643:625;38471:804;;;;;;:::o;45470:110::-;45530:13;45559:9;45552:16;;;;;:::i;2087:723::-;2143:13;2364:5;2373:1;2364:10;2360:53;;-1:-1:-1;;2391:10:0;;;;;;;;;;;;-1:-1:-1;;;2391:10:0;;;;;2087:723::o;2360:53::-;2438:5;2423:12;2479:78;2486:9;;2479:78;;2512:8;;;;:::i;:::-;;-1:-1:-1;2535:10:0;;-1:-1:-1;2543:2:0;2535:10;;:::i;:::-;;;2479:78;;;2567:19;2599:6;2589:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2589:17:0;;2567:39;;2617:154;2624:10;;2617:154;;2651:11;2661:1;2651:11;;:::i;:::-;;-1:-1:-1;2720:10:0;2728:2;2720:5;:10;:::i;:::-;2707:24;;:2;:24;:::i;:::-;2694:39;;2677:6;2684;2677:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2677:56:0;;;;;;;;-1:-1:-1;2748:11:0;2757:2;2748:11;;:::i;:::-;;;2617:154;;34084:1471;34207:20;34230:12;-1:-1:-1;;;;;34261:16:0;;34253:62;;;;-1:-1:-1;;;34253:62:0;;19138:2:1;34253:62:0;;;19120:21:1;19177:2;19157:18;;;19150:30;19216:34;19196:18;;;19189:62;-1:-1:-1;;;19267:18:1;;;19260:31;19308:19;;34253:62:0;18936:397:1;34253:62:0;34460:21;34468:12;33641:4;33675:12;-1:-1:-1;33665:22:0;33584:111;34460:21;34459:22;34451:64;;;;-1:-1:-1;;;34451:64:0;;19540:2:1;34451:64:0;;;19522:21:1;19579:2;19559:18;;;19552:30;19618:31;19598:18;;;19591:59;19667:18;;34451:64:0;19338:353:1;34451:64:0;34546:12;34534:8;:24;;34526:71;;;;-1:-1:-1;;;34526:71:0;;19898:2:1;34526:71:0;;;19880:21:1;19937:2;19917:18;;;19910:30;19976:34;19956:18;;;19949:62;-1:-1:-1;;;20027:18:1;;;20020:32;20069:19;;34526:71:0;19696:398:1;34526:71:0;34627:1;34616:8;:12;34608:60;;;;-1:-1:-1;;;34608:60:0;;20301:2:1;34608:60:0;;;20283:21:1;20340:2;20320:18;;;20313:30;20379:34;20359:18;;;20352:62;-1:-1:-1;;;20430:18:1;;;20423:33;20473:19;;34608:60:0;20099:399:1;34608:60:0;-1:-1:-1;;;;;34788:16:0;;34755:30;34788:16;;;:12;:16;;;;;;;;;34755:49;;;;;;;;;-1:-1:-1;;;;;34755:49:0;;;;;-1:-1:-1;;;34755:49:0;;;;;;;;;;;34834:135;;;;;;;;34860:19;;34755:49;;34834:135;;;34860:39;;34890:8;;34860:39;:::i;:::-;-1:-1:-1;;;;;34834:135:0;;;;;34949:8;34914:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34834:135:0;;;;;;-1:-1:-1;;;;;34815:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;34815:154:0;;;;;;;;;;;;35008:43;;;;;;;;;;;35034:15;35008:43;;;;;;;;34980:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34980:71:0;-1:-1:-1;;;;;;34980:71:0;;;;;;;;;;;;;;;;;;34992:12;;35112:325;35136:8;35132:1;:12;35112:325;;;35171:38;;35196:12;;-1:-1:-1;;;;;35171:38:0;;;35188:1;;35171:38;;35188:1;;35171:38;35250:59;35281:1;35285:2;35289:12;35303:5;35250:22;:59::i;:::-;35224:172;;;;-1:-1:-1;;;35224:172:0;;;;;;;:::i;:::-;35411:14;;;;:::i;:::-;;;;35146:3;;;;;:::i;:::-;;;;35112:325;;;-1:-1:-1;35449:12:0;:27;;;35487:60;32974:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;2400:18;2441:2;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:1;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:451::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;3153:18;3145:6;3142:30;3139:50;;;3185:1;3182;3175:12;3139:50;3208:22;;3261:4;3253:13;;3249:27;-1:-1:-1;3239:55:1;;3290:1;3287;3280:12;3239:55;3313:74;3379:7;3374:2;3361:16;3356:2;3352;3348:11;3313:74;:::i;3398:160::-;3463:20;;3519:13;;3512:21;3502:32;;3492:60;;3548:1;3545;3538:12;3563:180;3619:6;3672:2;3660:9;3651:7;3647:23;3643:32;3640:52;;;3688:1;3685;3678:12;3640:52;3711:26;3727:9;3711:26;:::i;3930:186::-;3989:6;4042:2;4030:9;4021:7;4017:23;4013:32;4010:52;;;4058:1;4055;4048:12;4010:52;4081:29;4100:9;4081:29;:::i;4121:328::-;4198:6;4206;4214;4267:2;4255:9;4246:7;4242:23;4238:32;4235:52;;;4283:1;4280;4273:12;4235:52;4306:29;4325:9;4306:29;:::i;:::-;4296:39;;4354:38;4388:2;4377:9;4373:18;4354:38;:::i;:::-;4344:48;;4439:2;4428:9;4424:18;4411:32;4401:42;;4121:328;;;;;:::o;4454:632::-;4625:2;4677:21;;;4747:13;;4650:18;;;4769:22;;;4596:4;;4625:2;4848:15;;;;4822:2;4807:18;;;4596:4;4891:169;4905:6;4902:1;4899:13;4891:169;;;4966:13;;4954:26;;5035:15;;;;5000:12;;;;4927:1;4920:9;4891:169;;;-1:-1:-1;5077:3:1;;4454:632;-1:-1:-1;;;;;;4454:632:1:o;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:380::-;6366:1;6362:12;;;;6409;;;6430:61;;6484:4;6476:6;6472:17;6462:27;;6430:61;6537:2;6529:6;6526:14;6506:18;6503:38;6500:161;;6583:10;6578:3;6574:20;6571:1;6564:31;6618:4;6615:1;6608:15;6646:4;6643:1;6636:15;6500:161;;6287:380;;;:::o;7915:356::-;8117:2;8099:21;;;8136:18;;;8129:30;8195:34;8190:2;8175:18;;8168:62;8262:2;8247:18;;7915:356::o;8679:127::-;8740:10;8735:3;8731:20;8728:1;8721:31;8771:4;8768:1;8761:15;8795:4;8792:1;8785:15;8811:135;8850:3;8871:17;;;8868:43;;8891:18;;:::i;:::-;-1:-1:-1;8938:1:1;8927:13;;8811:135::o;9576:127::-;9637:10;9632:3;9628:20;9625:1;9618:31;9668:4;9665:1;9658:15;9692:4;9689:1;9682:15;10873:128;10913:3;10944:1;10940:6;10937:1;10934:13;10931:39;;;10950:18;;:::i;:::-;-1:-1:-1;10986:9:1;;10873:128::o;11707:168::-;11747:7;11813:1;11809;11805:6;11801:14;11798:1;11795:21;11790:1;11783:9;11776:17;11772:45;11769:71;;;11820:18;;:::i;:::-;-1:-1:-1;11860:9:1;;11707:168::o;12583:415::-;12785:2;12767:21;;;12824:2;12804:18;;;12797:30;12863:34;12858:2;12843:18;;12836:62;-1:-1:-1;;;12929:2:1;12914:18;;12907:49;12988:3;12973:19;;12583:415::o;13545:1527::-;13769:3;13807:6;13801:13;13833:4;13846:51;13890:6;13885:3;13880:2;13872:6;13868:15;13846:51;:::i;:::-;13960:13;;13919:16;;;;13982:55;13960:13;13919:16;14004:15;;;13982:55;:::i;:::-;14126:13;;14059:20;;;14099:1;;14186;14208:18;;;;14261;;;;14288:93;;14366:4;14356:8;14352:19;14340:31;;14288:93;14429:2;14419:8;14416:16;14396:18;14393:40;14390:167;;-1:-1:-1;;;14456:33:1;;14512:4;14509:1;14502:15;14542:4;14463:3;14530:17;14390:167;14573:18;14600:110;;;;14724:1;14719:328;;;;14566:481;;14600:110;-1:-1:-1;;14635:24:1;;14621:39;;14680:20;;;;-1:-1:-1;14600:110:1;;14719:328;13492:1;13485:14;;;13529:4;13516:18;;14814:1;14828:169;14842:8;14839:1;14836:15;14828:169;;;14924:14;;14909:13;;;14902:37;14967:16;;;;14859:10;;14828:169;;;14832:3;;15028:8;15021:5;15017:20;15010:27;;14566:481;-1:-1:-1;15063:3:1;;13545:1527;-1:-1:-1;;;;;;;;;;;13545:1527:1:o;15484:127::-;15545:10;15540:3;15536:20;15533:1;15526:31;15576:4;15573:1;15566:15;15600:4;15597:1;15590:15;15616:120;15656:1;15682;15672:35;;15687:18;;:::i;:::-;-1:-1:-1;15721:9:1;;15616:120::o;17384:125::-;17424:4;17452:1;17449;17446:8;17443:34;;;17457:18;;:::i;:::-;-1:-1:-1;17494:9:1;;17384:125::o;17514:136::-;17553:3;17581:5;17571:39;;17590:18;;:::i;:::-;-1:-1:-1;;;17626:18:1;;17514:136::o;18071:489::-;-1:-1:-1;;;;;18340:15:1;;;18322:34;;18392:15;;18387:2;18372:18;;18365:43;18439:2;18424:18;;18417:34;;;18487:3;18482:2;18467:18;;18460:31;;;18265:4;;18508:46;;18534:19;;18526:6;18508:46;:::i;:::-;18500:54;18071:489;-1:-1:-1;;;;;;18071:489:1:o;18565:249::-;18634:6;18687:2;18675:9;18666:7;18662:23;18658:32;18655:52;;;18703:1;18700;18693:12;18655:52;18735:9;18729:16;18754:30;18778:5;18754:30;:::i;18819:112::-;18851:1;18877;18867:35;;18882:18;;:::i;:::-;-1:-1:-1;18916:9:1;;18819:112::o;20503:253::-;20543:3;-1:-1:-1;;;;;20632:2:1;20629:1;20625:10;20662:2;20659:1;20655:10;20693:3;20689:2;20685:12;20680:3;20677:21;20674:47;;;20701:18;;:::i;:::-;20737:13;;20503:253;-1:-1:-1;;;;20503:253:1:o

Swarm Source

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