ETH Price: $3,302.53 (-3.60%)
Gas: 7 Gwei

Token

Bankrupt FTX Yacht Club (BFTX)
 

Overview

Max Total Supply

6,969 BFTX

Holders

2,170

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nftdripping.eth
Balance
2 BFTX
0xdefaaa0cdab0fed1ee6b590556dd3da23e3943ea
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:
BankruptFTXYachtClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

 /$$$$$$$                      /$$                                       /$$           /$$$$$$$$ /$$$$$$$$ /$$   /$$
| $$__  $$                    | $$                                      | $$          | $$_____/|__  $$__/| $$  / $$
| $$  \ $$  /$$$$$$  /$$$$$$$ | $$   /$$  /$$$$$$  /$$   /$$  /$$$$$$  /$$$$$$        | $$         | $$   |  $$/ $$/
| $$$$$$$  |____  $$| $$__  $$| $$  /$$/ /$$__  $$| $$  | $$ /$$__  $$|_  $$_/        | $$$$$      | $$    \  $$$$/ 
| $$__  $$  /$$$$$$$| $$  \ $$| $$$$$$/ | $$  \__/| $$  | $$| $$  \ $$  | $$          | $$__/      | $$     >$$  $$ 
| $$  \ $$ /$$__  $$| $$  | $$| $$_  $$ | $$      | $$  | $$| $$  | $$  | $$ /$$      | $$         | $$    /$$/\  $$
| $$$$$$$/|  $$$$$$$| $$  | $$| $$ \  $$| $$      |  $$$$$$/| $$$$$$$/  |  $$$$/      | $$         | $$   | $$  \ $$
|_______/  \_______/|__/  |__/|__/  \__/|__/       \______/ | $$____/    \___/        |__/         |__/   |__/  |__/
                                                            | $$                                                    
                                                            | $$                                                    
                                                            |__/                                                    
 /$$     /$$                  /$$         /$$            /$$$$$$  /$$           /$$                                 
|  $$   /$$/                 | $$        | $$           /$$__  $$| $$          | $$                                 
 \  $$ /$$//$$$$$$   /$$$$$$$| $$$$$$$  /$$$$$$        | $$  \__/| $$ /$$   /$$| $$$$$$$                            
  \  $$$$/|____  $$ /$$_____/| $$__  $$|_  $$_/        | $$      | $$| $$  | $$| $$__  $$                           
   \  $$/  /$$$$$$$| $$      | $$  \ $$  | $$          | $$      | $$| $$  | $$| $$  \ $$                           
    | $$  /$$__  $$| $$      | $$  | $$  | $$ /$$      | $$    $$| $$| $$  | $$| $$  | $$                           
    | $$ |  $$$$$$$|  $$$$$$$| $$  | $$  |  $$$$/      |  $$$$$$/| $$|  $$$$$$/| $$$$$$$/                           
    |__/  \_______/ \_______/|__/  |__/   \___/         \______/ |__/ \______/ |_______/                            
                                                                                                                    
                                                                                                                    
                                                                                                                    

 */
// SPDX-License-Identifier: MIT
//Developer Info:



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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
    pragma solidity ^0.8.7;
    
    contract BankruptFTXYachtClub is ERC721A, Ownable {
    using Strings for uint256;


  string private uriPrefix ;
  string private uriSuffix = ".json";
  string public hiddenURL;

  
  

  uint256 public cost = 0.0025 ether;
 
  

  uint16 public maxSupply = 6969;
  uint8 public maxMintAmountPerTx = 21;
    uint8 public maxFreeMintAmountPerWallet = 1;
                                                             
 
  bool public paused = true;
  bool public reveal =false;

   mapping (address => uint8) public NFTPerPublicAddress;

 
  
  
 
  

  constructor() ERC721A("Bankrupt FTX Yacht Club", "BFTX") {
  }


  
 
  function mint(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
     uint8 nft = NFTPerPublicAddress[msg.sender];
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction.");

    require(!paused, "The contract is paused!");
    
      if(nft >= maxFreeMintAmountPerWallet)
    {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    else {
         uint8 costAmount = _mintAmount + nft;
        if(costAmount > maxFreeMintAmountPerWallet)
       {
        costAmount = costAmount - maxFreeMintAmountPerWallet;
        require(msg.value >= cost * costAmount, "Insufficient funds!");
       }
       
         
    }
    


    _safeMint(msg.sender , _mintAmount);

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

  function  Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Exceeds max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }

     delete _amountPerAddress;
     delete totalSupply;
  }

 

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }



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

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


 function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
    maxFreeMintAmountPerWallet = _limit;
   delete _limit;

}

    
  

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


  function setPaused() external onlyOwner {
    paused = !paused;
   
  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

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

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 

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


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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000139565b506608e1bc9bf04000600c55600d805465ffffffffffff1916640101151b391790553480156200005757600080fd5b50604080518082018252601781527f42616e6b727570742046545820596163687420436c75620000000000000000006020808301918252835180850190945260048452630848ca8b60e31b908401528151919291620000b99160029162000139565b508051620000cf90600390602084019062000139565b50506000805550620000e133620000e7565b6200021c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014790620001df565b90600052602060002090601f0160209004810192826200016b5760008555620001b6565b82601f106200018657805160ff1916838001178555620001b6565b82800160010185558215620001b6579182015b82811115620001b657825182559160200191906001019062000199565b50620001c4929150620001c8565b5090565b5b80821115620001c45760008155600101620001c9565b600181811c90821680620001f457607f821691505b602082108114156200021657634e487b7160e01b600052602260045260246000fd5b50919050565b6122f4806200022c6000396000f3fe60806040526004361061021a5760003560e01c80636ecd230611610123578063aa062290116100ab578063e94053c71161006f578063e94053c71461062c578063e985e9c51461065c578063eef440af146106a5578063f2fde38b146106ba578063f8bf5172146106da57600080fd5b8063aa0622901461057e578063b88d4fde1461059e578063c87b56dd146105be578063cffb6e20146105de578063d5abeb01146105fe57600080fd5b80638da5cb5b116100f25780638da5cb5b146104d657806394354fd0146104f457806395d89b4114610526578063a22cb4651461053b578063a475b5dd1461055b57600080fd5b80636ecd23061461046e57806370a0823114610481578063715018a6146104a15780637ec4a659146104b657600080fd5b80632f6f98e1116101a657806342842e0e1161017557806342842e0e146103cc57806344a0d68a146103ec5780634d9c18481461040c5780635c975abb1461042c5780636352211e1461044e57600080fd5b80632f6f98e11461036d57806337a66d851461038d5780633bd64968146103a25780633ccfd60b146103b757600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780631067fcc7146102f057806313faede61461031057806318160ddd1461033457806323b872dd1461034d57600080fd5b806301ffc9a71461021f57806306421c2f1461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611dd4565b6106fb565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611e57565b61074d565b005b34801561028257600080fd5b5061028b610798565b60405161024b9190612075565b3480156102a457600080fd5b506102b86102b3366004611e8e565b61082a565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb366004611daa565b61086e565b3480156102fc57600080fd5b5061027461030b366004611e0e565b6108fc565b34801561031c57600080fd5b50610326600c5481565b60405190815260200161024b565b34801561034057600080fd5b5060015460005403610326565b34801561035957600080fd5b50610274610368366004611cb6565b61093d565b34801561037957600080fd5b50610274610388366004611e72565b610948565b34801561039957600080fd5b506102746109c5565b3480156103ae57600080fd5b50610274610a12565b3480156103c357600080fd5b50610274610a61565b3480156103d857600080fd5b506102746103e7366004611cb6565b610aba565b3480156103f857600080fd5b50610274610407366004611e8e565b610ad5565b34801561041857600080fd5b50610274610427366004611ea7565b610b04565b34801561043857600080fd5b50600d5461023f90640100000000900460ff1681565b34801561045a57600080fd5b506102b8610469366004611e8e565b610b4e565b61027461047c366004611ea7565b610b60565b34801561048d57600080fd5b5061032661049c366004611c68565b610dc7565b3480156104ad57600080fd5b50610274610e16565b3480156104c257600080fd5b506102746104d1366004611e0e565b610e4c565b3480156104e257600080fd5b506008546001600160a01b03166102b8565b34801561050057600080fd5b50600d546105149062010000900460ff1681565b60405160ff909116815260200161024b565b34801561053257600080fd5b5061028b610e89565b34801561054757600080fd5b50610274610556366004611d6e565b610e98565b34801561056757600080fd5b50600d5461023f9065010000000000900460ff1681565b34801561058a57600080fd5b50610274610599366004611ea7565b610f2e565b3480156105aa57600080fd5b506102746105b9366004611cf2565b610f76565b3480156105ca57600080fd5b5061028b6105d9366004611e8e565b610fc7565b3480156105ea57600080fd5b506102746105f9366004611ec2565b61113a565b34801561060a57600080fd5b50600d546106199061ffff1681565b60405161ffff909116815260200161024b565b34801561063857600080fd5b50610514610647366004611c68565b600e6020526000908152604090205460ff1681565b34801561066857600080fd5b5061023f610677366004611c83565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106b157600080fd5b5061028b611214565b3480156106c657600080fd5b506102746106d5366004611c68565b6112a2565b3480156106e657600080fd5b50600d54610514906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061072c57506001600160e01b03198216635b5e139f60e01b145b8061074757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107805760405162461bcd60e51b815260040161077790612088565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b6060600280546107a7906121e6565b80601f01602080910402602001604051908101604052809291908181526020018280546107d3906121e6565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b60006108358261133d565b610852576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087982610b4e565b9050806001600160a01b0316836001600160a01b031614156108ae5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ce57506108cc8133610677565b155b156108ec576040516367d9dca160e11b815260040160405180910390fd5b6108f7838383611368565b505050565b6008546001600160a01b031633146109265760405162461bcd60e51b815260040161077790612088565b805161093990600b906020840190611b1a565b5050565b6108f78383836113c4565b6008546001600160a01b031633146109725760405162461bcd60e51b815260040161077790612088565b60006109816001546000540390565b600d5490915061ffff1661099584836120ea565b61ffff1611156109b75760405162461bcd60e51b8152600401610777906120bd565b6108f7828461ffff166115b4565b6008546001600160a01b031633146109ef5760405162461bcd60e51b815260040161077790612088565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a3c5760405162461bcd60e51b815260040161077790612088565b600d805465ff0000000000198116650100000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a8b5760405162461bcd60e51b815260040161077790612088565b6040514790339082156108fc029083906000818181858888f19350505050158015610939573d6000803e3d6000fd5b6108f783838360405180602001604052806000815250610f76565b6008546001600160a01b03163314610aff5760405162461bcd60e51b815260040161077790612088565b600c55565b6008546001600160a01b03163314610b2e5760405162461bcd60e51b815260040161077790612088565b600d805460ff90921663010000000263ff00000019909216919091179055565b6000610b59826115ce565b5192915050565b6000610b6f6001546000540390565b336000908152600e6020526040902054600d5491925060ff9081169161ffff1690610b9c908516846120ea565b61ffff161115610bbe5760405162461bcd60e51b8152600401610777906120bd565b600d5462010000900460ff16610bd48285612128565b60ff161115610c255760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610777565b600d54640100000000900460ff1615610c805760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610777565b600d5460ff6301000000909104811690821610610cf2578260ff16600c54610ca89190612161565b341015610ced5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b610d8a565b6000610cfe8285612128565b600d5490915060ff630100000090910481169082161115610d8857600d54610d30906301000000900460ff1682612197565b90508060ff16600c54610d439190612161565b341015610d885760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b505b610d97338460ff166115b4565b610da18184612128565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610df0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e405760405162461bcd60e51b815260040161077790612088565b610e4a60006116ea565b565b6008546001600160a01b03163314610e765760405162461bcd60e51b815260040161077790612088565b8051610939906009906020840190611b1a565b6060600380546107a7906121e6565b6001600160a01b038216331415610ec25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f585760405162461bcd60e51b815260040161077790612088565b600d805460ff909216620100000262ff000019909216919091179055565b610f818484846113c4565b6001600160a01b0383163b15158015610fa35750610fa18484848461173c565b155b15610fc1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fd28261133d565b6110365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610777565b600d5465010000000000900460ff166110db57600b8054611056906121e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611082906121e6565b80156110cf5780601f106110a4576101008083540402835291602001916110cf565b820191906000526020600020905b8154815290600101906020018083116110b257829003601f168201915b50505050509050919050565b60006110e5611834565b905060008151116111055760405180602001604052806000815250611133565b8061110f84611843565b600a60405160200161112393929190611f74565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111645760405162461bcd60e51b815260040161077790612088565b60006111736001546000540390565b905060006111848360ff8716612161565b600d5490915061ffff9081169061119e9083908516612110565b11156111bc5760405162461bcd60e51b8152600401610777906120bd565b60005b8381101561120c576111fa8585838181106111dc576111dc61227c565b90506020020160208101906111f19190611c68565b8760ff166115b4565b8061120481612221565b9150506111bf565b505050505050565b600b8054611221906121e6565b80601f016020809104026020016040519081016040528092919081815260200182805461124d906121e6565b801561129a5780601f1061126f5761010080835404028352916020019161129a565b820191906000526020600020905b81548152906001019060200180831161127d57829003601f168201915b505050505081565b6008546001600160a01b031633146112cc5760405162461bcd60e51b815260040161077790612088565b6001600160a01b0381166113315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b61133a816116ea565b50565b6000805482108015610747575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113cf826115ce565b9050836001600160a01b031681600001516001600160a01b0316146114065760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061142457506114248533610677565b8061143f5750336114348461082a565b6001600160a01b0316145b90508061145f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661148657604051633a954ecd60e21b815260040160405180910390fd5b61149260008487611368565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611568576000548214611568578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610939828260405180602001604052806000815250611941565b6040805160608101825260008082526020820181905291810191909152816000548110156116d157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116cf5780516001600160a01b031615611665579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156116ca579392505050565b611665565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611771903390899088908890600401612038565b602060405180830381600087803b15801561178b57600080fd5b505af19250505080156117bb575060408051601f3d908101601f191682019092526117b891810190611df1565b60015b611816573d8080156117e9576040519150601f19603f3d011682016040523d82523d6000602084013e6117ee565b606091505b50805161180e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107a7906121e6565b6060816118675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611891578061187b81612221565b915061188a9050600a8361214d565b915061186b565b60008167ffffffffffffffff8111156118ac576118ac612292565b6040519080825280601f01601f1916602001820160405280156118d6576020820181803683370190505b5090505b841561182c576118eb600183612180565b91506118f8600a8661223c565b611903906030612110565b60f81b8183815181106119185761191861227c565b60200101906001600160f81b031916908160001a90535061193a600a8661214d565b94506118da565b6108f783838360016000546001600160a01b03851661197257604051622e076360e81b815260040160405180910390fd5b836119905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a4257506001600160a01b0387163b15155b15611acb575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a93600088848060010195508861173c565b611ab0576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a48578260005414611ac657600080fd5b611b11565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611acc575b506000556115ad565b828054611b26906121e6565b90600052602060002090601f016020900481019282611b485760008555611b8e565b82601f10611b6157805160ff1916838001178555611b8e565b82800160010185558215611b8e579182015b82811115611b8e578251825591602001919060010190611b73565b50611b9a929150611b9e565b5090565b5b80821115611b9a5760008155600101611b9f565b600067ffffffffffffffff80841115611bce57611bce612292565b604051601f8501601f19908116603f01168101908282118183101715611bf657611bf6612292565b81604052809350858152868686011115611c0f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c4057600080fd5b919050565b803561ffff81168114611c4057600080fd5b803560ff81168114611c4057600080fd5b600060208284031215611c7a57600080fd5b61113382611c29565b60008060408385031215611c9657600080fd5b611c9f83611c29565b9150611cad60208401611c29565b90509250929050565b600080600060608486031215611ccb57600080fd5b611cd484611c29565b9250611ce260208501611c29565b9150604084013590509250925092565b60008060008060808587031215611d0857600080fd5b611d1185611c29565b9350611d1f60208601611c29565b925060408501359150606085013567ffffffffffffffff811115611d4257600080fd5b8501601f81018713611d5357600080fd5b611d6287823560208401611bb3565b91505092959194509250565b60008060408385031215611d8157600080fd5b611d8a83611c29565b915060208301358015158114611d9f57600080fd5b809150509250929050565b60008060408385031215611dbd57600080fd5b611dc683611c29565b946020939093013593505050565b600060208284031215611de657600080fd5b8135611133816122a8565b600060208284031215611e0357600080fd5b8151611133816122a8565b600060208284031215611e2057600080fd5b813567ffffffffffffffff811115611e3757600080fd5b8201601f81018413611e4857600080fd5b61182c84823560208401611bb3565b600060208284031215611e6957600080fd5b61113382611c45565b60008060408385031215611e8557600080fd5b611c9f83611c45565b600060208284031215611ea057600080fd5b5035919050565b600060208284031215611eb957600080fd5b61113382611c57565b600080600060408486031215611ed757600080fd5b611ee084611c57565b9250602084013567ffffffffffffffff80821115611efd57600080fd5b818601915086601f830112611f1157600080fd5b813581811115611f2057600080fd5b8760208260051b8501011115611f3557600080fd5b6020830194508093505050509250925092565b60008151808452611f608160208601602086016121ba565b601f01601f19169290920160200192915050565b600084516020611f878285838a016121ba565b855191840191611f9a8184848a016121ba565b8554920191600090600181811c9080831680611fb757607f831692505b858310811415611fd557634e487b7160e01b85526022600452602485fd5b808015611fe95760018114611ffa57612027565b60ff19851688528388019550612027565b60008b81526020902060005b8581101561201f5781548a820152908401908801612006565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206b90830184611f48565b9695505050505050565b6020815260006111336020830184611f48565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600061ffff80831681851680830382111561210757612107612250565b01949350505050565b6000821982111561212357612123612250565b500190565b600060ff821660ff84168060ff0382111561214557612145612250565b019392505050565b60008261215c5761215c612266565b500490565b600081600019048311821515161561217b5761217b612250565b500290565b60008282101561219257612192612250565b500390565b600060ff821660ff8416808210156121b1576121b1612250565b90039392505050565b60005b838110156121d55781810151838201526020016121bd565b83811115610fc15750506000910152565b600181811c908216806121fa57607f821691505b6020821081141561221b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223557612235612250565b5060010190565b60008261224b5761224b612266565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133a57600080fdfea264697066735822122045598fae47de73aaaefe23085d79748744a723aa202fca9b848aadad370bba0d64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636ecd230611610123578063aa062290116100ab578063e94053c71161006f578063e94053c71461062c578063e985e9c51461065c578063eef440af146106a5578063f2fde38b146106ba578063f8bf5172146106da57600080fd5b8063aa0622901461057e578063b88d4fde1461059e578063c87b56dd146105be578063cffb6e20146105de578063d5abeb01146105fe57600080fd5b80638da5cb5b116100f25780638da5cb5b146104d657806394354fd0146104f457806395d89b4114610526578063a22cb4651461053b578063a475b5dd1461055b57600080fd5b80636ecd23061461046e57806370a0823114610481578063715018a6146104a15780637ec4a659146104b657600080fd5b80632f6f98e1116101a657806342842e0e1161017557806342842e0e146103cc57806344a0d68a146103ec5780634d9c18481461040c5780635c975abb1461042c5780636352211e1461044e57600080fd5b80632f6f98e11461036d57806337a66d851461038d5780633bd64968146103a25780633ccfd60b146103b757600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780631067fcc7146102f057806313faede61461031057806318160ddd1461033457806323b872dd1461034d57600080fd5b806301ffc9a71461021f57806306421c2f1461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611dd4565b6106fb565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611e57565b61074d565b005b34801561028257600080fd5b5061028b610798565b60405161024b9190612075565b3480156102a457600080fd5b506102b86102b3366004611e8e565b61082a565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb366004611daa565b61086e565b3480156102fc57600080fd5b5061027461030b366004611e0e565b6108fc565b34801561031c57600080fd5b50610326600c5481565b60405190815260200161024b565b34801561034057600080fd5b5060015460005403610326565b34801561035957600080fd5b50610274610368366004611cb6565b61093d565b34801561037957600080fd5b50610274610388366004611e72565b610948565b34801561039957600080fd5b506102746109c5565b3480156103ae57600080fd5b50610274610a12565b3480156103c357600080fd5b50610274610a61565b3480156103d857600080fd5b506102746103e7366004611cb6565b610aba565b3480156103f857600080fd5b50610274610407366004611e8e565b610ad5565b34801561041857600080fd5b50610274610427366004611ea7565b610b04565b34801561043857600080fd5b50600d5461023f90640100000000900460ff1681565b34801561045a57600080fd5b506102b8610469366004611e8e565b610b4e565b61027461047c366004611ea7565b610b60565b34801561048d57600080fd5b5061032661049c366004611c68565b610dc7565b3480156104ad57600080fd5b50610274610e16565b3480156104c257600080fd5b506102746104d1366004611e0e565b610e4c565b3480156104e257600080fd5b506008546001600160a01b03166102b8565b34801561050057600080fd5b50600d546105149062010000900460ff1681565b60405160ff909116815260200161024b565b34801561053257600080fd5b5061028b610e89565b34801561054757600080fd5b50610274610556366004611d6e565b610e98565b34801561056757600080fd5b50600d5461023f9065010000000000900460ff1681565b34801561058a57600080fd5b50610274610599366004611ea7565b610f2e565b3480156105aa57600080fd5b506102746105b9366004611cf2565b610f76565b3480156105ca57600080fd5b5061028b6105d9366004611e8e565b610fc7565b3480156105ea57600080fd5b506102746105f9366004611ec2565b61113a565b34801561060a57600080fd5b50600d546106199061ffff1681565b60405161ffff909116815260200161024b565b34801561063857600080fd5b50610514610647366004611c68565b600e6020526000908152604090205460ff1681565b34801561066857600080fd5b5061023f610677366004611c83565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106b157600080fd5b5061028b611214565b3480156106c657600080fd5b506102746106d5366004611c68565b6112a2565b3480156106e657600080fd5b50600d54610514906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061072c57506001600160e01b03198216635b5e139f60e01b145b8061074757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107805760405162461bcd60e51b815260040161077790612088565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b6060600280546107a7906121e6565b80601f01602080910402602001604051908101604052809291908181526020018280546107d3906121e6565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b60006108358261133d565b610852576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087982610b4e565b9050806001600160a01b0316836001600160a01b031614156108ae5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ce57506108cc8133610677565b155b156108ec576040516367d9dca160e11b815260040160405180910390fd5b6108f7838383611368565b505050565b6008546001600160a01b031633146109265760405162461bcd60e51b815260040161077790612088565b805161093990600b906020840190611b1a565b5050565b6108f78383836113c4565b6008546001600160a01b031633146109725760405162461bcd60e51b815260040161077790612088565b60006109816001546000540390565b600d5490915061ffff1661099584836120ea565b61ffff1611156109b75760405162461bcd60e51b8152600401610777906120bd565b6108f7828461ffff166115b4565b6008546001600160a01b031633146109ef5760405162461bcd60e51b815260040161077790612088565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a3c5760405162461bcd60e51b815260040161077790612088565b600d805465ff0000000000198116650100000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a8b5760405162461bcd60e51b815260040161077790612088565b6040514790339082156108fc029083906000818181858888f19350505050158015610939573d6000803e3d6000fd5b6108f783838360405180602001604052806000815250610f76565b6008546001600160a01b03163314610aff5760405162461bcd60e51b815260040161077790612088565b600c55565b6008546001600160a01b03163314610b2e5760405162461bcd60e51b815260040161077790612088565b600d805460ff90921663010000000263ff00000019909216919091179055565b6000610b59826115ce565b5192915050565b6000610b6f6001546000540390565b336000908152600e6020526040902054600d5491925060ff9081169161ffff1690610b9c908516846120ea565b61ffff161115610bbe5760405162461bcd60e51b8152600401610777906120bd565b600d5462010000900460ff16610bd48285612128565b60ff161115610c255760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610777565b600d54640100000000900460ff1615610c805760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610777565b600d5460ff6301000000909104811690821610610cf2578260ff16600c54610ca89190612161565b341015610ced5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b610d8a565b6000610cfe8285612128565b600d5490915060ff630100000090910481169082161115610d8857600d54610d30906301000000900460ff1682612197565b90508060ff16600c54610d439190612161565b341015610d885760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b505b610d97338460ff166115b4565b610da18184612128565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610df0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e405760405162461bcd60e51b815260040161077790612088565b610e4a60006116ea565b565b6008546001600160a01b03163314610e765760405162461bcd60e51b815260040161077790612088565b8051610939906009906020840190611b1a565b6060600380546107a7906121e6565b6001600160a01b038216331415610ec25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f585760405162461bcd60e51b815260040161077790612088565b600d805460ff909216620100000262ff000019909216919091179055565b610f818484846113c4565b6001600160a01b0383163b15158015610fa35750610fa18484848461173c565b155b15610fc1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fd28261133d565b6110365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610777565b600d5465010000000000900460ff166110db57600b8054611056906121e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611082906121e6565b80156110cf5780601f106110a4576101008083540402835291602001916110cf565b820191906000526020600020905b8154815290600101906020018083116110b257829003601f168201915b50505050509050919050565b60006110e5611834565b905060008151116111055760405180602001604052806000815250611133565b8061110f84611843565b600a60405160200161112393929190611f74565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111645760405162461bcd60e51b815260040161077790612088565b60006111736001546000540390565b905060006111848360ff8716612161565b600d5490915061ffff9081169061119e9083908516612110565b11156111bc5760405162461bcd60e51b8152600401610777906120bd565b60005b8381101561120c576111fa8585838181106111dc576111dc61227c565b90506020020160208101906111f19190611c68565b8760ff166115b4565b8061120481612221565b9150506111bf565b505050505050565b600b8054611221906121e6565b80601f016020809104026020016040519081016040528092919081815260200182805461124d906121e6565b801561129a5780601f1061126f5761010080835404028352916020019161129a565b820191906000526020600020905b81548152906001019060200180831161127d57829003601f168201915b505050505081565b6008546001600160a01b031633146112cc5760405162461bcd60e51b815260040161077790612088565b6001600160a01b0381166113315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b61133a816116ea565b50565b6000805482108015610747575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113cf826115ce565b9050836001600160a01b031681600001516001600160a01b0316146114065760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061142457506114248533610677565b8061143f5750336114348461082a565b6001600160a01b0316145b90508061145f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661148657604051633a954ecd60e21b815260040160405180910390fd5b61149260008487611368565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611568576000548214611568578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610939828260405180602001604052806000815250611941565b6040805160608101825260008082526020820181905291810191909152816000548110156116d157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116cf5780516001600160a01b031615611665579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156116ca579392505050565b611665565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611771903390899088908890600401612038565b602060405180830381600087803b15801561178b57600080fd5b505af19250505080156117bb575060408051601f3d908101601f191682019092526117b891810190611df1565b60015b611816573d8080156117e9576040519150601f19603f3d011682016040523d82523d6000602084013e6117ee565b606091505b50805161180e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107a7906121e6565b6060816118675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611891578061187b81612221565b915061188a9050600a8361214d565b915061186b565b60008167ffffffffffffffff8111156118ac576118ac612292565b6040519080825280601f01601f1916602001820160405280156118d6576020820181803683370190505b5090505b841561182c576118eb600183612180565b91506118f8600a8661223c565b611903906030612110565b60f81b8183815181106119185761191861227c565b60200101906001600160f81b031916908160001a90535061193a600a8661214d565b94506118da565b6108f783838360016000546001600160a01b03851661197257604051622e076360e81b815260040160405180910390fd5b836119905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a4257506001600160a01b0387163b15155b15611acb575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a93600088848060010195508861173c565b611ab0576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a48578260005414611ac657600080fd5b611b11565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611acc575b506000556115ad565b828054611b26906121e6565b90600052602060002090601f016020900481019282611b485760008555611b8e565b82601f10611b6157805160ff1916838001178555611b8e565b82800160010185558215611b8e579182015b82811115611b8e578251825591602001919060010190611b73565b50611b9a929150611b9e565b5090565b5b80821115611b9a5760008155600101611b9f565b600067ffffffffffffffff80841115611bce57611bce612292565b604051601f8501601f19908116603f01168101908282118183101715611bf657611bf6612292565b81604052809350858152868686011115611c0f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c4057600080fd5b919050565b803561ffff81168114611c4057600080fd5b803560ff81168114611c4057600080fd5b600060208284031215611c7a57600080fd5b61113382611c29565b60008060408385031215611c9657600080fd5b611c9f83611c29565b9150611cad60208401611c29565b90509250929050565b600080600060608486031215611ccb57600080fd5b611cd484611c29565b9250611ce260208501611c29565b9150604084013590509250925092565b60008060008060808587031215611d0857600080fd5b611d1185611c29565b9350611d1f60208601611c29565b925060408501359150606085013567ffffffffffffffff811115611d4257600080fd5b8501601f81018713611d5357600080fd5b611d6287823560208401611bb3565b91505092959194509250565b60008060408385031215611d8157600080fd5b611d8a83611c29565b915060208301358015158114611d9f57600080fd5b809150509250929050565b60008060408385031215611dbd57600080fd5b611dc683611c29565b946020939093013593505050565b600060208284031215611de657600080fd5b8135611133816122a8565b600060208284031215611e0357600080fd5b8151611133816122a8565b600060208284031215611e2057600080fd5b813567ffffffffffffffff811115611e3757600080fd5b8201601f81018413611e4857600080fd5b61182c84823560208401611bb3565b600060208284031215611e6957600080fd5b61113382611c45565b60008060408385031215611e8557600080fd5b611c9f83611c45565b600060208284031215611ea057600080fd5b5035919050565b600060208284031215611eb957600080fd5b61113382611c57565b600080600060408486031215611ed757600080fd5b611ee084611c57565b9250602084013567ffffffffffffffff80821115611efd57600080fd5b818601915086601f830112611f1157600080fd5b813581811115611f2057600080fd5b8760208260051b8501011115611f3557600080fd5b6020830194508093505050509250925092565b60008151808452611f608160208601602086016121ba565b601f01601f19169290920160200192915050565b600084516020611f878285838a016121ba565b855191840191611f9a8184848a016121ba565b8554920191600090600181811c9080831680611fb757607f831692505b858310811415611fd557634e487b7160e01b85526022600452602485fd5b808015611fe95760018114611ffa57612027565b60ff19851688528388019550612027565b60008b81526020902060005b8581101561201f5781548a820152908401908801612006565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206b90830184611f48565b9695505050505050565b6020815260006111336020830184611f48565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600061ffff80831681851680830382111561210757612107612250565b01949350505050565b6000821982111561212357612123612250565b500190565b600060ff821660ff84168060ff0382111561214557612145612250565b019392505050565b60008261215c5761215c612266565b500490565b600081600019048311821515161561217b5761217b612250565b500290565b60008282101561219257612192612250565b500390565b600060ff821660ff8416808210156121b1576121b1612250565b90039392505050565b60005b838110156121d55781810151838201526020016121bd565b83811115610fc15750506000910152565b600181811c908216806121fa57607f821691505b6020821081141561221b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223557612235612250565b5060010190565b60008261224b5761224b612266565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133a57600080fdfea264697066735822122045598fae47de73aaaefe23085d79748744a723aa202fca9b848aadad370bba0d64736f6c63430008070033

Deployed Bytecode Sourcemap

46750:4052:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27074:305;;;;;;;;;;-1:-1:-1;27074:305:0;;;;;:::i;:::-;;:::i;:::-;;;8357:14:1;;8350:22;8332:41;;8320:2;8305:18;27074:305:0;;;;;;;;49211:97;;;;;;;;;;-1:-1:-1;49211:97:0;;;;;:::i;:::-;;:::i;:::-;;30187:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31690:204::-;;;;;;;;;;-1:-1:-1;31690:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7655:32:1;;;7637:51;;7625:2;7610:18;31690:204:0;7491:203:1;31253:371:0;;;;;;;;;;-1:-1:-1;31253:371:0;;;;;:::i;:::-;;:::i;50085:102::-;;;;;;;;;;-1:-1:-1;50085:102:0;;;;;:::i;:::-;;:::i;46950:34::-;;;;;;;;;;;;;;;;;;;11536:25:1;;;11524:2;11509:18;46950:34:0;11390:177:1;26323:303:0;;;;;;;;;;-1:-1:-1;26577:12:0;;26367:7;26561:13;:28;26323:303;;32555:170;;;;;;;;;;-1:-1:-1;32555:170:0;;;;;:::i;:::-;;:::i;48395:326::-;;;;;;;;;;-1:-1:-1;48395:326:0;;;;;:::i;:::-;;:::i;50195:74::-;;;;;;;;;;;;;:::i;50356:70::-;;;;;;;;;;;;;:::i;50550:144::-;;;;;;;;;;;;;:::i;32796:185::-;;;;;;;;;;-1:-1:-1;32796:185:0;;;;;:::i;:::-;;:::i;50275:76::-;;;;;;;;;;-1:-1:-1;50275:76:0;;;;;:::i;:::-;;:::i;49826:134::-;;;;;;;;;;-1:-1:-1;49826:134:0;;;;;:::i;:::-;;:::i;47190:25::-;;;;;;;;;;-1:-1:-1;47190:25:0;;;;;;;;;;;29995:125;;;;;;;;;;-1:-1:-1;29995:125:0;;;;;:::i;:::-;;:::i;47411:976::-;;;;;;:::i;:::-;;:::i;27443:206::-;;;;;;;;;;-1:-1:-1;27443:206:0;;;;;:::i;:::-;;:::i;45896:103::-;;;;;;;;;;;;;:::i;49978:102::-;;;;;;;;;;-1:-1:-1;49978:102:0;;;;;:::i;:::-;;:::i;45244:87::-;;;;;;;;;;-1:-1:-1;45317:6:0;;-1:-1:-1;;;;;45317:6:0;45244:87;;47033:36;;;;;;;;;;-1:-1:-1;47033:36:0;;;;;;;;;;;;;;11744:4:1;11732:17;;;11714:36;;11702:2;11687:18;47033:36:0;11572:184:1;30356:104:0;;;;;;;;;;;;;:::i;31966:287::-;;;;;;;;;;-1:-1:-1;31966:287:0;;;;;:::i;:::-;;:::i;47220:25::-;;;;;;;;;;-1:-1:-1;47220:25:0;;;;;;;;;;;50432:107;;;;;;;;;;-1:-1:-1;50432:107:0;;;;;:::i;:::-;;:::i;33052:369::-;;;;;;;;;;-1:-1:-1;33052:369:0;;;;;:::i;:::-;;:::i;49323:490::-;;;;;;;;;;-1:-1:-1;49323:490:0;;;;;:::i;:::-;;:::i;48727:473::-;;;;;;;;;;-1:-1:-1;48727:473:0;;;;;:::i;:::-;;:::i;46998:30::-;;;;;;;;;;-1:-1:-1;46998:30:0;;;;;;;;;;;11371:6:1;11359:19;;;11341:38;;11329:2;11314:18;46998:30:0;11197:188:1;47253:53:0;;;;;;;;;;-1:-1:-1;47253:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32324:164;;;;;;;;;;-1:-1:-1;32324:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32445:25:0;;;32421:4;32445:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32324:164;46910:23;;;;;;;;;;;;;:::i;46154:201::-;;;;;;;;;;-1:-1:-1;46154:201:0;;;;;:::i;:::-;;:::i;47076:43::-;;;;;;;;;;-1:-1:-1;47076:43:0;;;;;;;;;;;27074:305;27176:4;-1:-1:-1;;;;;;27213:40:0;;-1:-1:-1;;;27213:40:0;;:105;;-1:-1:-1;;;;;;;27270:48:0;;-1:-1:-1;;;27270:48:0;27213:105;:158;;;-1:-1:-1;;;;;;;;;;17108:40:0;;;27335:36;27193:178;27074:305;-1:-1:-1;;27074:305:0:o;49211:97::-;45317:6;;-1:-1:-1;;;;;45317:6:0;5549:10;45464:23;45456:69;;;;-1:-1:-1;;;45456:69:0;;;;;;;:::i;:::-;;;;;;;;;49280:9:::1;:22:::0;;-1:-1:-1;;49280:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;49211:97::o;30187:100::-;30241:13;30274:5;30267:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30187:100;:::o;31690:204::-;31758:7;31783:16;31791:7;31783;:16::i;:::-;31778:64;;31808:34;;-1:-1:-1;;;31808:34:0;;;;;;;;;;;31778:64;-1:-1:-1;31862:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31862:24:0;;31690:204::o;31253:371::-;31326:13;31342:24;31358:7;31342:15;:24::i;:::-;31326:40;;31387:5;-1:-1:-1;;;;;31381:11:0;:2;-1:-1:-1;;;;;31381:11:0;;31377:48;;;31401:24;;-1:-1:-1;;;31401:24:0;;;;;;;;;;;31377:48;5549:10;-1:-1:-1;;;;;31442:21:0;;;;;;:63;;-1:-1:-1;31468:37:0;31485:5;5549:10;32324:164;:::i;31468:37::-;31467:38;31442:63;31438:138;;;31529:35;;-1:-1:-1;;;31529:35:0;;;;;;;;;;;31438:138;31588:28;31597:2;31601:7;31610:5;31588:8;:28::i;:::-;31315:309;31253:371;;:::o;50085:102::-;45317:6;;-1:-1:-1;;;;;45317:6:0;5549:10;45464:23;45456:69;;;;-1:-1:-1;;;45456:69:0;;;;;;;:::i;:::-;50159:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50085:102:::0;:::o;32555:170::-;32689:28;32699:4;32705:2;32709:7;32689:9;:28::i;48395:326::-;45317:6;;-1:-1:-1;;;;;45317:6:0;5549:10;45464:23;45456:69;;;;-1:-1:-1;;;45456:69:0;;;;;;;:::i;:::-;48478:18:::1;48506:13;26577:12:::0;;26367:7;26561:13;:28;;26323:303;48506:13:::1;48564:9;::::0;48478:42;;-1:-1:-1;48564:9:0::1;;48535:25;48549:11:::0;48478:42;48535:25:::1;:::i;:::-;:38;;;;48527:70;;;;-1:-1:-1::0;;;48527:70:0::1;;;;;;;:::i;:::-;48605:34;48615:9;48627:11;48605:34;;:9;:34::i;50195:74::-:0;45317:6;;-1:-1:-1;;;;;45317:6:0;5549:10;45464:23;45456:69;;;;-1:-1:-1;;;45456:69:0;;;;;;;:::i;:::-;50252:6:::1;::::0;;-1:-1:-1;;50242:16:0;::::1;50252:6:::0;;;;::::1;;;50251:7;50242:16:::0;;::::1;;::::0;;50195:74::o;50356:70::-;45317:6;;-1:-1:-1;;;;;45317:6:0;5549:10;45464:23;45456:69;;;;-1:-1:-1;;;45456:69:0;;;;;;;:::i;:::-;50415:6:::1;::::0;;-1:-1:-1;;50405:16:0;::::1;50415:6:::0;;;;::::1;;;50414:7;50405:16:::0;;::::1;;::::0;;50356:70::o;50550:144::-;45317:6;;-1:-1:-1;;;;;45317:6:0;5549:10;45464:23;45456:69;;;;-1:-1:-1;;;45456:69:0;;;;;;;:::i;:::-;50639:39:::1;::::0;50610:21:::1;::::0;50647:10:::1;::::0;50639:39;::::1;;;::::0;50610:21;;50594:13:::1;50639:39:::0;50594:13;50639:39;50610:21;50647:10;50639:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;32796:185:::0;32934:39;32951:4;32957:2;32961:7;32934:39;;;;;;;;;;;;:16;:39::i;50275:76::-;45317:6;;-1:-1:-1;;;;;45317:6:0;5549:10;45464:23;45456:69;;;;-1:-1:-1;;;45456:69:0;;;;;;;:::i;:::-;50331:4:::1;:12:::0;50275:76::o;49826:134::-;45317:6;;-1:-1:-1;;;;;45317:6:0;5549:10;45464:23;45456:69;;;;-1:-1:-1;;;45456:69:0;;;;;;;:::i;:::-;49900:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;49900:35:0;;::::1;::::0;;;::::1;::::0;;49826:134::o;29995:125::-;30059:7;30086:21;30099:7;30086:12;:21::i;:::-;:26;;29995:125;-1:-1:-1;;29995:125:0:o;47411:976::-;47470:18;47498:13;26577:12;;26367:7;26561:13;:28;;26323:303;47498:13;47552:10;47520:9;47532:31;;;:19;:31;;;;;;47607:9;;47470:42;;-1:-1:-1;47532:31:0;;;;;47607:9;;;47578:25;;;;47470:42;47578:25;:::i;:::-;:38;;;;47570:70;;;;-1:-1:-1;;;47570:70:0;;;;;;;:::i;:::-;47676:18;;;;;;;47655:17;47669:3;47655:11;:17;:::i;:::-;:39;;;;47647:80;;;;-1:-1:-1;;;47647:80:0;;10694:2:1;47647:80:0;;;10676:21:1;10733:2;10713:18;;;10706:30;10772;10752:18;;;10745:58;10820:18;;47647:80:0;10492:352:1;47647:80:0;47745:6;;;;;;;47744:7;47736:43;;;;-1:-1:-1;;;47736:43:0;;9578:2:1;47736:43:0;;;9560:21:1;9617:2;9597:18;;;9590:30;9656:25;9636:18;;;9629:53;9699:18;;47736:43:0;9376:347:1;47736:43:0;47804:26;;;;;;;;;47797:33;;;;47794:417;;47872:11;47865:18;;:4;;:18;;;;:::i;:::-;47852:9;:31;;47844:63;;;;-1:-1:-1;;;47844:63:0;;11051:2:1;47844:63:0;;;11033:21:1;11090:2;11070:18;;;11063:30;-1:-1:-1;;;11109:18:1;;;11102:49;11168:18;;47844:63:0;10849:343:1;47844:63:0;47794:417;;;47938:16;47957:17;47971:3;47957:11;:17;:::i;:::-;48001:26;;47938:36;;-1:-1:-1;48001:26:0;;;;;;;47988:39;;;;47985:199;;;48074:26;;48061:39;;48074:26;;;;;48061:10;:39;:::i;:::-;48048:52;;48139:10;48132:17;;:4;;:17;;;;:::i;:::-;48119:9;:30;;48111:62;;;;-1:-1:-1;;;48111:62:0;;11051:2:1;48111:62:0;;;11033:21:1;11090:2;11070:18;;;11063:30;-1:-1:-1;;;11109:18:1;;;11102:49;11168:18;;48111:62:0;10849:343:1;48111:62:0;47926:285;47794:417;48227:35;48237:10;48250:11;48227:35;;:9;:35::i;:::-;48305:17;48319:3;48305:11;:17;:::i;:::-;48291:10;48271:31;;;;:19;:31;;;;;:51;;-1:-1:-1;;48271:51:0;;;;;;;;;;;;-1:-1:-1;;;47411:976:0:o;27443:206::-;27507:7;-1:-1:-1;;;;;27531:19:0;;27527:60;;27559:28;;-1:-1:-1;;;27559:28:0;;;;;;;;;;;27527:60;-1:-1:-1;;;;;;27613:19:0;;;;;:12;:19;;;;;:27;;;;27443:206::o;45896:103::-;45317:6;;-1:-1:-1;;;;;45317:6:0;5549:10;45464:23;45456:69;;;;-1:-1:-1;;;45456:69:0;;;;;;;:::i;:::-;45961:30:::1;45988:1;45961:18;:30::i;:::-;45896:103::o:0;49978:102::-;45317:6;;-1:-1:-1;;;;;45317:6:0;5549:10;45464:23;45456:69;;;;-1:-1:-1;;;45456:69:0;;;;;;;:::i;:::-;50052:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;30356:104::-:0;30412:13;30445:7;30438:14;;;;;:::i;31966:287::-;-1:-1:-1;;;;;32065:24:0;;5549:10;32065:24;32061:54;;;32098:17;;-1:-1:-1;;;32098:17:0;;;;;;;;;;;32061:54;5549:10;32128:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32128:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32128:53:0;;;;;;;;;;32197:48;;8332:41:1;;;32128:42:0;;5549:10;32197:48;;8305:18:1;32197:48:0;;;;;;;31966:287;;:::o;50432:107::-;45317:6;;-1:-1:-1;;;;;45317:6:0;5549:10;45464:23;45456:69;;;;-1:-1:-1;;;45456:69:0;;;;;;;:::i;:::-;50504:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;50504:27:0;;::::1;::::0;;;::::1;::::0;;50432:107::o;33052:369::-;33219:28;33229:4;33235:2;33239:7;33219:9;:28::i;:::-;-1:-1:-1;;;;;33262:13:0;;7211:19;:23;;33262:76;;;;;33282:56;33313:4;33319:2;33323:7;33332:5;33282:30;:56::i;:::-;33281:57;33262:76;33258:156;;;33362:40;;-1:-1:-1;;;33362:40:0;;;;;;;;;;;33258:156;33052:369;;;;:::o;49323:490::-;49422:13;49463:17;49471:8;49463:7;:17::i;:::-;49447:98;;;;-1:-1:-1;;;49447:98:0;;9930:2:1;49447:98:0;;;9912:21:1;9969:2;9949:18;;;9942:30;10008:34;9988:18;;;9981:62;-1:-1:-1;;;10059:18:1;;;10052:45;10114:19;;49447:98:0;9728:411:1;49447:98:0;49563:6;;;;;;;49558:50;;49595:9;49588:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49323:490;;;:::o;49558:50::-;49622:28;49653:10;:8;:10::i;:::-;49622:41;;49708:1;49683:14;49677:28;:32;:130;;;;;;;;;;;;;;;;;49745:14;49761:19;:8;:17;:19::i;:::-;49782:9;49728:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49677:130;49670:137;49323:490;-1:-1:-1;;;49323:490:0:o;48727:473::-;45317:6;;-1:-1:-1;;;;;45317:6:0;5549:10;45464:23;45456:69;;;;-1:-1:-1;;;45456:69:0;;;;;;;:::i;:::-;48827:18:::1;48855:13;26577:12:::0;;26367:7;26561:13;:28;;26323:303;48855:13:::1;48827:42:::0;-1:-1:-1;48877:16:0::1;48898:36;48918:9:::0;48898:36:::1;::::0;::::1;;:::i;:::-;48978:9;::::0;48877:57;;-1:-1:-1;48978:9:0::1;::::0;;::::1;::::0;48949:25:::1;::::0;48877:57;;48949:25;::::1;;:::i;:::-;:38;;48941:70;;;;-1:-1:-1::0;;;48941:70:0::1;;;;;;;:::i;:::-;49024:9;49019:116;49039:20:::0;;::::1;49019:116;;;49081:42;49091:9;;49101:1;49091:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;49105:17;49081:42;;:9;:42::i;:::-;49061:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49019:116;;;-1:-1:-1::0;;;;;;48727:473:0:o;46910:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46154:201::-;45317:6;;-1:-1:-1;;;;;45317:6:0;5549:10;45464:23;45456:69;;;;-1:-1:-1;;;45456:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46243:22:0;::::1;46235:73;;;::::0;-1:-1:-1;;;46235:73:0;;8810:2:1;46235:73:0::1;::::0;::::1;8792:21:1::0;8849:2;8829:18;;;8822:30;8888:34;8868:18;;;8861:62;-1:-1:-1;;;8939:18:1;;;8932:36;8985:19;;46235:73:0::1;8608:402:1::0;46235:73:0::1;46319:28;46338:8;46319:18;:28::i;:::-;46154:201:::0;:::o;33676:187::-;33733:4;33797:13;;33787:7;:23;33757:98;;;;-1:-1:-1;;33828:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33828:27:0;;;;33827:28;;33676:187::o;41846:196::-;41961:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41961:29:0;-1:-1:-1;;;;;41961:29:0;;;;;;;;;42006:28;;41961:24;;42006:28;;;;;;;41846:196;;;:::o;36789:2130::-;36904:35;36942:21;36955:7;36942:12;:21::i;:::-;36904:59;;37002:4;-1:-1:-1;;;;;36980:26:0;:13;:18;;;-1:-1:-1;;;;;36980:26:0;;36976:67;;37015:28;;-1:-1:-1;;;37015:28:0;;;;;;;;;;;36976:67;37056:22;5549:10;-1:-1:-1;;;;;37082:20:0;;;;:73;;-1:-1:-1;37119:36:0;37136:4;5549:10;32324:164;:::i;37119:36::-;37082:126;;;-1:-1:-1;5549:10:0;37172:20;37184:7;37172:11;:20::i;:::-;-1:-1:-1;;;;;37172:36:0;;37082:126;37056:153;;37227:17;37222:66;;37253:35;;-1:-1:-1;;;37253:35:0;;;;;;;;;;;37222:66;-1:-1:-1;;;;;37303:16:0;;37299:52;;37328:23;;-1:-1:-1;;;37328:23:0;;;;;;;;;;;37299:52;37472:35;37489:1;37493:7;37502:4;37472:8;:35::i;:::-;-1:-1:-1;;;;;37803:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37803:31:0;;;;;;;-1:-1:-1;;37803:31:0;;;;;;;37849:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37849:29:0;;;;;;;;;;;37929:20;;;:11;:20;;;;;;37964:18;;-1:-1:-1;;;;;;37997:49:0;;;;-1:-1:-1;;;38030:15:0;37997:49;;;;;;;;;;38320:11;;38380:24;;;;;38423:13;;37929:20;;38380:24;;38423:13;38419:384;;38633:13;;38618:11;:28;38614:174;;38671:20;;38740:28;;;;38714:54;;-1:-1:-1;;;38714:54:0;-1:-1:-1;;;;;;38714:54:0;;;-1:-1:-1;;;;;38671:20:0;;38714:54;;;;38614:174;37778:1036;;;38850:7;38846:2;-1:-1:-1;;;;;38831:27:0;38840:4;-1:-1:-1;;;;;38831:27:0;;;;;;;;;;;38869:42;36893:2026;;36789:2130;;;:::o;33871:104::-;33940:27;33950:2;33954:8;33940:27;;;;;;;;;;;;:9;:27::i;28824:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28935:7:0;29018:13;;29011:4;:20;28980:886;;;29052:31;29086:17;;;:11;:17;;;;;;;;;29052:51;;;;;;;;;-1:-1:-1;;;;;29052:51:0;;;;-1:-1:-1;;;29052:51:0;;;;;;;;;;;-1:-1:-1;;;29052:51:0;;;;;;;;;;;;;;29122:729;;29172:14;;-1:-1:-1;;;;;29172:28:0;;29168:101;;29236:9;28824:1109;-1:-1:-1;;;28824:1109:0:o;29168:101::-;-1:-1:-1;;;29611:6:0;29656:17;;;;:11;:17;;;;;;;;;29644:29;;;;;;;;;-1:-1:-1;;;;;29644:29:0;;;;;-1:-1:-1;;;29644:29:0;;;;;;;;;;;-1:-1:-1;;;29644:29:0;;;;;;;;;;;;;29704:28;29700:109;;29772:9;28824:1109;-1:-1:-1;;;28824:1109:0:o;29700:109::-;29571:261;;;29033:833;28980:886;29894:31;;-1:-1:-1;;;29894:31:0;;;;;;;;;;;46515:191;46608:6;;;-1:-1:-1;;;;;46625:17:0;;;-1:-1:-1;;;;;;46625:17:0;;;;;;;46658:40;;46608:6;;;46625:17;46608:6;;46658:40;;46589:16;;46658:40;46578:128;46515:191;:::o;42534:667::-;42718:72;;-1:-1:-1;;;42718:72:0;;42697:4;;-1:-1:-1;;;;;42718:36:0;;;;;:72;;5549:10;;42769:4;;42775:7;;42784:5;;42718:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42718:72:0;;;;;;;;-1:-1:-1;;42718:72:0;;;;;;;;;;;;:::i;:::-;;;42714:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42952:13:0;;42948:235;;42998:40;;-1:-1:-1;;;42998:40:0;;;;;;;;;;;42948:235;43141:6;43135:13;43126:6;43122:2;43118:15;43111:38;42714:480;-1:-1:-1;;;;;;42837:55:0;-1:-1:-1;;;42837:55:0;;-1:-1:-1;42714:480:0;42534:667;;;;;;:::o;50702:97::-;50755:13;50784:9;50777:16;;;;;:::i;3031:723::-;3087:13;3308:10;3304:53;;-1:-1:-1;;3335:10:0;;;;;;;;;;;;-1:-1:-1;;;3335:10:0;;;;;3031:723::o;3304:53::-;3382:5;3367:12;3423:78;3430:9;;3423:78;;3456:8;;;;:::i;:::-;;-1:-1:-1;3479:10:0;;-1:-1:-1;3487:2:0;3479:10;;:::i;:::-;;;3423:78;;;3511:19;3543:6;3533:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3533:17:0;;3511:39;;3561:154;3568:10;;3561:154;;3595:11;3605:1;3595:11;;:::i;:::-;;-1:-1:-1;3664:10:0;3672:2;3664:5;:10;:::i;:::-;3651:24;;:2;:24;:::i;:::-;3638:39;;3621:6;3628;3621:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3621:56:0;;;;;;;;-1:-1:-1;3692:11:0;3701:2;3692:11;;:::i;:::-;;;3561:154;;34338:163;34461:32;34467:2;34471:8;34481:5;34488:4;34899:20;34922:13;-1:-1:-1;;;;;34950:16:0;;34946:48;;34975:19;;-1:-1:-1;;;34975:19:0;;;;;;;;;;;34946:48;35009:13;35005:44;;35031:18;;-1:-1:-1;;;35031:18:0;;;;;;;;;;;35005:44;-1:-1:-1;;;;;35400:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35459:49:0;;35400:44;;;;;;;;35459:49;;;;-1:-1:-1;;35400:44:0;;;;;;35459:49;;;;;;;;;;;;;;;;35525:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35575:66:0;;;;-1:-1:-1;;;35625:15:0;35575:66;;;;;;;;;;35525:25;35722:23;;;35766:4;:23;;;;-1:-1:-1;;;;;;35774:13:0;;7211:19;:23;;35774:15;35762:641;;;35810:314;35841:38;;35866:12;;-1:-1:-1;;;;;35841:38:0;;;35858:1;;35841:38;;35858:1;;35841:38;35907:69;35946:1;35950:2;35954:14;;;;;;35970:5;35907:30;:69::i;:::-;35902:174;;36012:40;;-1:-1:-1;;;36012:40:0;;;;;;;;;;;35902:174;36119:3;36103:12;:19;;35810:314;;36205:12;36188:13;;:29;36184:43;;36219:8;;;36184:43;35762:641;;;36268:120;36299:40;;36324:14;;;;;-1:-1:-1;;;;;36299:40:0;;;36316:1;;36299:40;;36316:1;;36299:40;36383:3;36367:12;:19;;36268:120;;35762:641;-1:-1:-1;36417:13:0;:28;36467:60;33052:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:159::-;895:20;;955:6;944:18;;934:29;;924:57;;977:1;974;967:12;992:156;1058:20;;1118:4;1107:16;;1097:27;;1087:55;;1138:1;1135;1128:12;1153:186;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;1304:29;1323:9;1304:29;:::i;1344:260::-;1412:6;1420;1473:2;1461:9;1452:7;1448:23;1444:32;1441:52;;;1489:1;1486;1479:12;1441:52;1512:29;1531:9;1512:29;:::i;:::-;1502:39;;1560:38;1594:2;1583:9;1579:18;1560:38;:::i;:::-;1550:48;;1344:260;;;;;:::o;1609:328::-;1686:6;1694;1702;1755:2;1743:9;1734:7;1730:23;1726:32;1723:52;;;1771:1;1768;1761:12;1723:52;1794:29;1813:9;1794:29;:::i;:::-;1784:39;;1842:38;1876:2;1865:9;1861:18;1842:38;:::i;:::-;1832:48;;1927:2;1916:9;1912:18;1899:32;1889:42;;1609:328;;;;;:::o;1942:666::-;2037:6;2045;2053;2061;2114:3;2102:9;2093:7;2089:23;2085:33;2082:53;;;2131:1;2128;2121:12;2082:53;2154:29;2173:9;2154:29;:::i;:::-;2144:39;;2202:38;2236:2;2225:9;2221:18;2202:38;:::i;:::-;2192:48;;2287:2;2276:9;2272:18;2259:32;2249:42;;2342:2;2331:9;2327:18;2314:32;2369:18;2361:6;2358:30;2355:50;;;2401:1;2398;2391:12;2355:50;2424:22;;2477:4;2469:13;;2465:27;-1:-1:-1;2455:55:1;;2506:1;2503;2496:12;2455:55;2529:73;2594:7;2589:2;2576:16;2571:2;2567;2563:11;2529:73;:::i;:::-;2519:83;;;1942:666;;;;;;;:::o;2613:347::-;2678:6;2686;2739:2;2727:9;2718:7;2714:23;2710:32;2707:52;;;2755:1;2752;2745:12;2707:52;2778:29;2797:9;2778:29;:::i;:::-;2768:39;;2857:2;2846:9;2842:18;2829:32;2904:5;2897:13;2890:21;2883:5;2880:32;2870:60;;2926:1;2923;2916:12;2870:60;2949:5;2939:15;;;2613:347;;;;;:::o;2965:254::-;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:52;;;3110:1;3107;3100:12;3062:52;3133:29;3152:9;3133:29;:::i;:::-;3123:39;3209:2;3194:18;;;;3181:32;;-1:-1:-1;;;2965:254:1:o;3224:245::-;3282:6;3335:2;3323:9;3314:7;3310:23;3306:32;3303:52;;;3351:1;3348;3341:12;3303:52;3390:9;3377:23;3409:30;3433:5;3409:30;:::i;3474:249::-;3543:6;3596:2;3584:9;3575:7;3571:23;3567:32;3564:52;;;3612:1;3609;3602:12;3564:52;3644:9;3638:16;3663:30;3687:5;3663:30;:::i;3728:450::-;3797:6;3850:2;3838:9;3829:7;3825:23;3821:32;3818:52;;;3866:1;3863;3856:12;3818:52;3906:9;3893:23;3939:18;3931:6;3928:30;3925:50;;;3971:1;3968;3961:12;3925:50;3994:22;;4047:4;4039:13;;4035:27;-1:-1:-1;4025:55:1;;4076:1;4073;4066:12;4025:55;4099:73;4164:7;4159:2;4146:16;4141:2;4137;4133:11;4099:73;:::i;4183:184::-;4241:6;4294:2;4282:9;4273:7;4269:23;4265:32;4262:52;;;4310:1;4307;4300:12;4262:52;4333:28;4351:9;4333:28;:::i;4372:258::-;4439:6;4447;4500:2;4488:9;4479:7;4475:23;4471:32;4468:52;;;4516:1;4513;4506:12;4468:52;4539:28;4557:9;4539:28;:::i;4635:180::-;4694:6;4747:2;4735:9;4726:7;4722:23;4718:32;4715:52;;;4763:1;4760;4753:12;4715:52;-1:-1:-1;4786:23:1;;4635:180;-1:-1:-1;4635:180:1:o;4820:182::-;4877:6;4930:2;4918:9;4909:7;4905:23;4901:32;4898:52;;;4946:1;4943;4936:12;4898:52;4969:27;4986:9;4969:27;:::i;5007:685::-;5100:6;5108;5116;5169:2;5157:9;5148:7;5144:23;5140:32;5137:52;;;5185:1;5182;5175:12;5137:52;5208:27;5225:9;5208:27;:::i;:::-;5198:37;;5286:2;5275:9;5271:18;5258:32;5309:18;5350:2;5342:6;5339:14;5336:34;;;5366:1;5363;5356:12;5336:34;5404:6;5393:9;5389:22;5379:32;;5449:7;5442:4;5438:2;5434:13;5430:27;5420:55;;5471:1;5468;5461:12;5420:55;5511:2;5498:16;5537:2;5529:6;5526:14;5523:34;;;5553:1;5550;5543:12;5523:34;5606:7;5601:2;5591:6;5588:1;5584:14;5580:2;5576:23;5572:32;5569:45;5566:65;;;5627:1;5624;5617:12;5566:65;5658:2;5654;5650:11;5640:21;;5680:6;5670:16;;;;;5007:685;;;;;:::o;5697:257::-;5738:3;5776:5;5770:12;5803:6;5798:3;5791:19;5819:63;5875:6;5868:4;5863:3;5859:14;5852:4;5845:5;5841:16;5819:63;:::i;:::-;5936:2;5915:15;-1:-1:-1;;5911:29:1;5902:39;;;;5943:4;5898:50;;5697:257;-1:-1:-1;;5697:257:1:o;5959:1527::-;6183:3;6221:6;6215:13;6247:4;6260:51;6304:6;6299:3;6294:2;6286:6;6282:15;6260:51;:::i;:::-;6374:13;;6333:16;;;;6396:55;6374:13;6333:16;6418:15;;;6396:55;:::i;:::-;6540:13;;6473:20;;;6513:1;;6600;6622:18;;;;6675;;;;6702:93;;6780:4;6770:8;6766:19;6754:31;;6702:93;6843:2;6833:8;6830:16;6810:18;6807:40;6804:167;;;-1:-1:-1;;;6870:33:1;;6926:4;6923:1;6916:15;6956:4;6877:3;6944:17;6804:167;6987:18;7014:110;;;;7138:1;7133:328;;;;6980:481;;7014:110;-1:-1:-1;;7049:24:1;;7035:39;;7094:20;;;;-1:-1:-1;7014:110:1;;7133:328;11834:1;11827:14;;;11871:4;11858:18;;7228:1;7242:169;7256:8;7253:1;7250:15;7242:169;;;7338:14;;7323:13;;;7316:37;7381:16;;;;7273:10;;7242:169;;;7246:3;;7442:8;7435:5;7431:20;7424:27;;6980:481;-1:-1:-1;7477:3:1;;5959:1527;-1:-1:-1;;;;;;;;;;;5959:1527:1:o;7699:488::-;-1:-1:-1;;;;;7968:15:1;;;7950:34;;8020:15;;8015:2;8000:18;;7993:43;8067:2;8052:18;;8045:34;;;8115:3;8110:2;8095:18;;8088:31;;;7893:4;;8136:45;;8161:19;;8153:6;8136:45;:::i;:::-;8128:53;7699:488;-1:-1:-1;;;;;;7699:488:1:o;8384:219::-;8533:2;8522:9;8515:21;8496:4;8553:44;8593:2;8582:9;8578:18;8570:6;8553:44;:::i;9015:356::-;9217:2;9199:21;;;9236:18;;;9229:30;9295:34;9290:2;9275:18;;9268:62;9362:2;9347:18;;9015:356::o;10144:343::-;10346:2;10328:21;;;10385:2;10365:18;;;10358:30;-1:-1:-1;;;10419:2:1;10404:18;;10397:49;10478:2;10463:18;;10144:343::o;11887:224::-;11926:3;11954:6;11987:2;11984:1;11980:10;12017:2;12014:1;12010:10;12048:3;12044:2;12040:12;12035:3;12032:21;12029:47;;;12056:18;;:::i;:::-;12092:13;;11887:224;-1:-1:-1;;;;11887:224:1:o;12116:128::-;12156:3;12187:1;12183:6;12180:1;12177:13;12174:39;;;12193:18;;:::i;:::-;-1:-1:-1;12229:9:1;;12116:128::o;12249:204::-;12287:3;12323:4;12320:1;12316:12;12355:4;12352:1;12348:12;12390:3;12384:4;12380:14;12375:3;12372:23;12369:49;;;12398:18;;:::i;:::-;12434:13;;12249:204;-1:-1:-1;;;12249:204:1:o;12458:120::-;12498:1;12524;12514:35;;12529:18;;:::i;:::-;-1:-1:-1;12563:9:1;;12458:120::o;12583:168::-;12623:7;12689:1;12685;12681:6;12677:14;12674:1;12671:21;12666:1;12659:9;12652:17;12648:45;12645:71;;;12696:18;;:::i;:::-;-1:-1:-1;12736:9:1;;12583:168::o;12756:125::-;12796:4;12824:1;12821;12818:8;12815:34;;;12829:18;;:::i;:::-;-1:-1:-1;12866:9:1;;12756:125::o;12886:195::-;12924:4;12961;12958:1;12954:12;12993:4;12990:1;12986:12;13018:3;13013;13010:12;13007:38;;;13025:18;;:::i;:::-;13062:13;;;12886:195;-1:-1:-1;;;12886:195:1:o;13086:258::-;13158:1;13168:113;13182:6;13179:1;13176:13;13168:113;;;13258:11;;;13252:18;13239:11;;;13232:39;13204:2;13197:10;13168:113;;;13299:6;13296:1;13293:13;13290:48;;;-1:-1:-1;;13334:1:1;13316:16;;13309:27;13086:258::o;13349:380::-;13428:1;13424:12;;;;13471;;;13492:61;;13546:4;13538:6;13534:17;13524:27;;13492:61;13599:2;13591:6;13588:14;13568:18;13565:38;13562:161;;;13645:10;13640:3;13636:20;13633:1;13626:31;13680:4;13677:1;13670:15;13708:4;13705:1;13698:15;13562:161;;13349:380;;;:::o;13734:135::-;13773:3;-1:-1:-1;;13794:17:1;;13791:43;;;13814:18;;:::i;:::-;-1:-1:-1;13861:1:1;13850:13;;13734:135::o;13874:112::-;13906:1;13932;13922:35;;13937:18;;:::i;:::-;-1:-1:-1;13971:9:1;;13874:112::o;13991:127::-;14052:10;14047:3;14043:20;14040:1;14033:31;14083:4;14080:1;14073:15;14107:4;14104:1;14097:15;14123:127;14184:10;14179:3;14175:20;14172:1;14165:31;14215:4;14212:1;14205:15;14239:4;14236:1;14229:15;14255:127;14316:10;14311:3;14307:20;14304:1;14297:31;14347:4;14344:1;14337:15;14371:4;14368:1;14361:15;14387:127;14448:10;14443:3;14439:20;14436:1;14429:31;14479:4;14476:1;14469:15;14503:4;14500:1;14493:15;14519:131;-1:-1:-1;;;;;;14593:32:1;;14583:43;;14573:71;;14640:1;14637;14630:12

Swarm Source

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