ETH Price: $3,117.96 (+1.01%)
Gas: 3 Gwei

Token

Banana Ballers (BANANAB)
 

Overview

Max Total Supply

5,007 BANANAB

Holders

1,811

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BANANAB
0x9f82fca6fa33f4da2acbd87ceda56cf4f8ba9996
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Banana Ballers are the coolest bananas in the metaverse. Ruling over a vast Meta Banana Beach, these cool guys work hard and play harder. 5,007 unique hand drawn 3D 1 of 1 NFTS on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BananaBallers

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// 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/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

// 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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @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/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// 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/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: contracts/BananaBallers.sol


pragma solidity ^0.8.7;










// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol

pragma solidity ^0.8.4;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(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 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * 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 {}
}

contract BananaBallers is ERC721A, Ownable {
    using Strings for uint256;
    
    uint256 public MAX_SUPPLY = 5007;
    
    string private BASE_URI;
    string private UNREVEAL_URI;

    bytes32 public PLATINUM_WHITELIST_ROOT;
    bytes32 public GOLD_WHITELIST_ROOT;
    bytes32 public SILVER_WHITELIST_ROOT;

    uint256 public PLATINUM_PRICE = 0.05 ether;
    uint256 public GOLD_PRICE = 0.07 ether;
    uint256 public SILVER_PRICE = 0.09 ether;
    uint256 public PUBLIC_PRICE = 0.2 ether;

    uint256 public PLATINUM_MINT_LIMIT = 10;
    uint256 public GOLD_MINT_LIMIT = 10;
    uint256 public SILVER_MINT_LIMIT = 10;

    mapping(address=>uint256) public MAP_PLATINUM_MINTED;
    mapping(address=>uint256) public MAP_GOLD_MINTED;
    mapping(address=>uint256) public MAP_SILVER_MINTED;

    uint256 public SALE_STEP = 0; // 0 => NONE, 1 => PLATINUM, 2 => GOLD, 3 => SILVER, 4 => PUBLIC

    address public PAYMENT_WALLET;
    address public DEV_WALLET;

    constructor() ERC721A("Banana Ballers", "BANANAB") {
        PAYMENT_WALLET = 0x7352F978247cBD11e0795EAddc9C1BF482d8125A;
        DEV_WALLET = 0x94975746ec91ab00E5C18384C6288D248e66321C;
    }

    function setPlatinumPrice(uint256 _price) external onlyOwner {
        PLATINUM_PRICE = _price;
    }
    function setGoldPrice(uint256 _price) external onlyOwner {
        GOLD_PRICE = _price;
    }
    function setSilverPrice(uint256 _price) external onlyOwner {
        SILVER_PRICE = _price;
    }
    function setPublicPrice(uint256 _price) external onlyOwner {
        PUBLIC_PRICE = _price;
    }
    
    function setPaymentWallet(address _paymentWallet) external onlyOwner {
        PAYMENT_WALLET = _paymentWallet;
    }

    function setWhitelistRootForPlatinum(bytes32 _root) external onlyOwner {
        PLATINUM_WHITELIST_ROOT = _root;
    }
    function setWhitelistRootForGold(bytes32 _root) external onlyOwner {
        GOLD_WHITELIST_ROOT = _root;
    }
    function setWhitelistRootForSilver(bytes32 _root) external onlyOwner {
        SILVER_WHITELIST_ROOT = _root;
    }
    
    function setMintLimitForPlatinum(uint256 _mintLimit) external onlyOwner {
        PLATINUM_MINT_LIMIT = _mintLimit;
    }
    function setMintLimitForGold(uint256 _mintLimit) external onlyOwner {
        GOLD_MINT_LIMIT = _mintLimit;
    }
    function setMintLimitForSilver(uint256 _mintLimit) external onlyOwner {
        SILVER_MINT_LIMIT = _mintLimit;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        MAX_SUPPLY = _maxSupply;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        BASE_URI = _newBaseURI;
    }

    function setUnrevealURI(string memory _newUnrevealURI) external onlyOwner {
        UNREVEAL_URI = _newUnrevealURI;
    }

    function setSaleStep(uint256 _saleStep) external onlyOwner {
        SALE_STEP = _saleStep;
    }

    function getMintLimit() public view returns(uint256) {
        if (SALE_STEP == 1) {
            return PLATINUM_MINT_LIMIT;
        } else if (SALE_STEP == 2) {
            return GOLD_MINT_LIMIT;
        } else if (SALE_STEP == 3) {
            return SILVER_MINT_LIMIT;
        }
        return PLATINUM_MINT_LIMIT;
    }
    function getMintPrice() public view returns(uint256) {
        if (SALE_STEP == 1) {
            return PLATINUM_PRICE;
        } else if (SALE_STEP == 2) {
            return GOLD_PRICE;
        } else if (SALE_STEP == 3) {
            return SILVER_PRICE;
        } else if (SALE_STEP == 4) {
            return PUBLIC_PRICE;
        }
        return PLATINUM_PRICE;
    }

    function isWhiteListed(bytes32 _leafNode, bytes32[] memory _proof) public view returns (bool) {
        if (SALE_STEP == 1) {
            return MerkleProof.verify(_proof, PLATINUM_WHITELIST_ROOT, _leafNode);
        } else if (SALE_STEP == 2) {
            return MerkleProof.verify(_proof, GOLD_WHITELIST_ROOT, _leafNode);
        } else if (SALE_STEP == 3) {
            return MerkleProof.verify(_proof, SILVER_WHITELIST_ROOT, _leafNode);
        } else {
            return false;
        }
    }
    function toLeaf(address account, uint256 index, uint256 amount) public pure returns (bytes32) {
        return keccak256(abi.encodePacked(index, account, amount));
    }
    
    function numberMinted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function mintWhitelist(uint256 _mintAmount, uint256 _index, uint256 _amount, bytes32[] calldata _proof) external payable {
        require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");

        require(SALE_STEP >= 1 && SALE_STEP <= 3, "Whitelist Sale is not opened");

        require(isWhiteListed(toLeaf(msg.sender, _index, _amount), _proof), "Invalid proof");

        if (SALE_STEP == 1) {
            MAP_PLATINUM_MINTED[msg.sender] = MAP_PLATINUM_MINTED[msg.sender] + _mintAmount;
            require(MAP_PLATINUM_MINTED[msg.sender] <= PLATINUM_MINT_LIMIT, "Exceeds Max Mint Amount");
        } else if (SALE_STEP == 2) {
            MAP_GOLD_MINTED[msg.sender] = MAP_GOLD_MINTED[msg.sender] + _mintAmount;
            require(MAP_GOLD_MINTED[msg.sender] <= GOLD_MINT_LIMIT, "Exceeds Max Mint Amount");
        } else if (SALE_STEP == 3) {
            MAP_SILVER_MINTED[msg.sender] = MAP_SILVER_MINTED[msg.sender] + _mintAmount;
            require(MAP_SILVER_MINTED[msg.sender] <= SILVER_MINT_LIMIT, "Exceeds Max Mint Amount");
        }

        require(msg.value >= getMintPrice() * _mintAmount, "ETH not enough");

        uint256 devFee = msg.value / 10;
        payable(DEV_WALLET).transfer(devFee);
        payable(PAYMENT_WALLET).transfer(msg.value - devFee);

        _mintLoop(msg.sender, _mintAmount);
    }

    function mintPublic(uint256 _mintAmount, address _to) external payable {
        require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");

        require(SALE_STEP == 4, "Public Sale is not opened");

        require(msg.value >= getMintPrice() * _mintAmount, "ETH not enough");

        uint256 devFee = msg.value / 10;
        payable(DEV_WALLET).transfer(devFee);
        payable(PAYMENT_WALLET).transfer(msg.value - devFee);
        
        _mintLoop(_to, _mintAmount);
    }

    function airdrop(address[] memory _airdropAddresses, uint256 _mintAmount) external onlyOwner {
        require(totalSupply() + _airdropAddresses.length * _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");

        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, _mintAmount);
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : UNREVEAL_URI;
    }

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

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        uint256 devFee = balance / 10;
        payable(DEV_WALLET).transfer(devFee);
        payable(PAYMENT_WALLET).transfer(balance - devFee);
    }
}

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":"MintedQueryForZeroAddress","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":[],"name":"DEV_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GOLD_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GOLD_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GOLD_WHITELIST_ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MAP_GOLD_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MAP_PLATINUM_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MAP_SILVER_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAYMENT_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PLATINUM_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PLATINUM_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PLATINUM_WHITELIST_ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_STEP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SILVER_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SILVER_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SILVER_WHITELIST_ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"airdrop","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":[{"internalType":"bytes32","name":"_leafNode","type":"bytes32"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setGoldPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"setMintLimitForGold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"setMintLimitForPlatinum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"setMintLimitForSilver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_paymentWallet","type":"address"}],"name":"setPaymentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPlatinumPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStep","type":"uint256"}],"name":"setSaleStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSilverPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUnrevealURI","type":"string"}],"name":"setUnrevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistRootForGold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistRootForPlatinum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistRootForSilver","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"toLeaf","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","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"}]

608060405261138f60095566b1a2bc2ec50000600f5566f8b0a10e47000060105567013fbe85edc900006011556702c68af0bb140000601255600a601355600a601455600a60155560006019553480156200005957600080fd5b506040518060400160405280600e81526020016d42616e616e612042616c6c65727360901b815250604051806040016040528060078152602001662120a720a720a160c91b8152508160029081620000b2919062000227565b506003620000c1828262000227565b505050620000de620000d86200012c60201b60201c565b62000130565b601a80546001600160a01b0319908116737352f978247cbd11e0795eaddc9c1bf482d8125a17909155601b80549091167394975746ec91ab00e5c18384c6288d248e66321c179055620002f3565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001ad57607f821691505b602082108103620001ce57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200022257600081815260208120601f850160051c81016020861015620001fd5750805b601f850160051c820191505b818110156200021e5782815560010162000209565b5050505b505050565b81516001600160401b0381111562000243576200024362000182565b6200025b8162000254845462000198565b84620001d4565b602080601f8311600181146200029357600084156200027a5750858301515b600019600386901b1c1916600185901b1785556200021e565b600085815260208120601f198616915b82811015620002c457888601518255948401946001909101908401620002a3565b5085821015620002e35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61294e80620003036000396000f3fe60806040526004361061038c5760003560e01c806373d84b8a116101dc578063b88d4fde11610102578063d5d812f9116100a0578063f943f0651161006f578063f943f06514610a71578063fd6cb61314610a91578063fdaf012514610ab1578063ff63cf0114610ad157600080fd5b8063d5d812f9146109bb578063dc33e681146109e8578063e985e9c514610a08578063f2fde38b14610a5157600080fd5b8063c204642c116100dc578063c204642c14610945578063c627525514610965578063c87b56dd14610985578063d19f2fdc146109a557600080fd5b8063b88d4fde146108e5578063bd64545414610905578063c061f79e1461092557600080fd5b8063900e8b9c1161017a578063a22cb46511610149578063a22cb46514610870578063a3661dd414610890578063a55f6262146108b0578063a7f93ebd146108d057600080fd5b8063900e8b9c146107cf5780639231ab2a146107e557806395d89b411461083b57806397bc411c1461085057600080fd5b80638281b3ac116101b65780638281b3ac1461077257806384b9a4a51461078857806385aa94361461079e5780638da5cb5b146107b157600080fd5b806373d84b8a1461072657806376d6bec81461074657806382159b831461075c57600080fd5b80634492f837116102c15780635dbc6d6c1161025f5780636352211e1161022e5780636352211e146106b15780636f8b44b0146106d157806370a08231146106f1578063715018a61461071157600080fd5b80635dbc6d6c146106455780635f8d085a1461065b5780636081dabf1461067b578063611f3f101461069b57600080fd5b806355f804b31161029b57806355f804b3146105da57806356bda4a2146105fa578063570153ed1461060f5780635c3708e81461062557600080fd5b80634492f8371461057757806349ee58cc1461058d57806353e90cbd146105ba57600080fd5b806323b872dd1161032e5780632d04f820116103085780632d04f8201461050c57806332cb6b0c1461052c5780633ccfd60b1461054257806342842e0e1461055757600080fd5b806323b872dd1461049f578063289de3ab146104bf5780632d02a5b2146104ec57600080fd5b8063095ea7b31161036a578063095ea7b314610420578063129c46581461044257806313cabc7e1461046657806318160ddd1461048657600080fd5b806301ffc9a71461039157806306fdde03146103c6578063081812fc146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac3660046120da565b610ae4565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103db610b36565b6040516103bd9190612147565b3480156103f457600080fd5b5061040861040336600461215a565b610bc8565b6040516001600160a01b0390911681526020016103bd565b34801561042c57600080fd5b5061044061043b36600461218f565b610c0c565b005b34801561044e57600080fd5b5061045860135481565b6040519081526020016103bd565b34801561047257600080fd5b5061044061048136600461215a565b610c99565b34801561049257600080fd5b5060015460005403610458565b3480156104ab57600080fd5b506104406104ba3660046121b9565b610ca6565b3480156104cb57600080fd5b506104586104da3660046121f5565b60186020526000908152604090205481565b3480156104f857600080fd5b5061044061050736600461215a565b610cb1565b34801561051857600080fd5b50601b54610408906001600160a01b031681565b34801561053857600080fd5b5061045860095481565b34801561054e57600080fd5b50610440610cbe565b34801561056357600080fd5b506104406105723660046121b9565b610d51565b34801561058357600080fd5b5061045860145481565b34801561059957600080fd5b506104586105a83660046121f5565b60166020526000908152604090205481565b3480156105c657600080fd5b506104406105d536600461215a565b610d6c565b3480156105e657600080fd5b506104406105f53660046122ad565b610d79565b34801561060657600080fd5b50610458610d91565b34801561061b57600080fd5b50610458600f5481565b34801561063157600080fd5b5061044061064036600461215a565b610dcd565b34801561065157600080fd5b5061045860115481565b34801561066757600080fd5b5061044061067636600461215a565b610dda565b34801561068757600080fd5b50601a54610408906001600160a01b031681565b3480156106a757600080fd5b5061045860125481565b3480156106bd57600080fd5b506104086106cc36600461215a565b610de7565b3480156106dd57600080fd5b506104406106ec36600461215a565b610df9565b3480156106fd57600080fd5b5061045861070c3660046121f5565b610e06565b34801561071d57600080fd5b50610440610e54565b34801561073257600080fd5b5061044061074136600461215a565b610e68565b34801561075257600080fd5b50610458600e5481565b34801561076857600080fd5b5061045860155481565b34801561077e57600080fd5b5061045860105481565b34801561079457600080fd5b5061045860195481565b6104406107ac3660046122f5565b610e75565b3480156107bd57600080fd5b506008546001600160a01b0316610408565b3480156107db57600080fd5b50610458600c5481565b3480156107f157600080fd5b5061080561080036600461215a565b610ff1565b6040805182516001600160a01b031681526020808401516001600160401b031690820152918101511515908201526060016103bd565b34801561084757600080fd5b506103db611017565b34801561085c57600080fd5b5061044061086b3660046122ad565b611026565b34801561087c57600080fd5b5061044061088b366004612321565b61103a565b34801561089c57600080fd5b506104406108ab36600461215a565b6110cf565b3480156108bc57600080fd5b506104406108cb36600461215a565b6110dc565b3480156108dc57600080fd5b506104586110e9565b3480156108f157600080fd5b5061044061090036600461235d565b611136565b34801561091157600080fd5b506103b16109203660046123fb565b611170565b34801561093157600080fd5b5061044061094036600461215a565b6111c7565b34801561095157600080fd5b5061044061096036600461249c565b6111d4565b34801561097157600080fd5b5061044061098036600461215a565b611262565b34801561099157600080fd5b506103db6109a036600461215a565b61126f565b3480156109b157600080fd5b50610458600d5481565b3480156109c757600080fd5b506104586109d63660046121f5565b60176020526000908152604090205481565b3480156109f457600080fd5b50610458610a033660046121f5565b6113b5565b348015610a1457600080fd5b506103b1610a23366004612539565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a5d57600080fd5b50610440610a6c3660046121f5565b6113c0565b348015610a7d57600080fd5b50610440610a8c36600461215a565b611439565b348015610a9d57600080fd5b50610440610aac3660046121f5565b611446565b348015610abd57600080fd5b50610458610acc366004612563565b611470565b610440610adf366004612596565b6114b9565b60006001600160e01b031982166380ac58cd60e01b1480610b1557506001600160e01b03198216635b5e139f60e01b145b80610b3057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610b4590612625565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7190612625565b8015610bbe5780601f10610b9357610100808354040283529160200191610bbe565b820191906000526020600020905b815481529060010190602001808311610ba157829003601f168201915b5050505050905090565b6000610bd3826117d4565b610bf0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c1782610de7565b9050806001600160a01b0316836001600160a01b031603610c4b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610c6b5750610c698133610a23565b155b15610c89576040516367d9dca160e11b815260040160405180910390fd5b610c948383836117ff565b505050565b610ca161185b565b601155565b610c948383836118b5565b610cb961185b565b601055565b610cc661185b565b476000610cd4600a8361268b565b601b546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610d0f573d6000803e3d6000fd5b50601a546001600160a01b03166108fc610d29838561269f565b6040518115909202916000818181858888f19350505050158015610c94573d6000803e3d6000fd5b610c9483838360405180602001604052806000815250611136565b610d7461185b565b601955565b610d8161185b565b600a610d8d82826126f8565b5050565b6000601954600103610da4575060135490565b601954600203610db5575060145490565b601954600303610dc6575060155490565b5060135490565b610dd561185b565b601455565b610de261185b565b601555565b6000610df282611ac9565b5192915050565b610e0161185b565b600955565b60006001600160a01b038216610e2f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610e5c61185b565b610e666000611be2565b565b610e7061185b565b601355565b60095482610e866001546000540390565b610e9091906127b7565b1115610eb75760405162461bcd60e51b8152600401610eae906127ca565b60405180910390fd5b601954600414610f095760405162461bcd60e51b815260206004820152601960248201527f5075626c69632053616c65206973206e6f74206f70656e6564000000000000006044820152606401610eae565b81610f126110e9565b610f1c91906127f6565b341015610f5c5760405162461bcd60e51b815260206004820152600e60248201526d08aa89040dcdee840cadcdeeaced60931b6044820152606401610eae565b6000610f69600a3461268b565b601b546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610fa4573d6000803e3d6000fd5b50601a546001600160a01b03166108fc610fbe833461269f565b6040518115909202916000818181858888f19350505050158015610fe6573d6000803e3d6000fd5b50610c948284611c34565b6040805160608101825260008082526020820181905291810191909152610b3082611ac9565b606060038054610b4590612625565b61102e61185b565b600b610d8d82826126f8565b336001600160a01b038316036110635760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110d761185b565b600e55565b6110e461185b565b600d55565b60006019546001036110fc5750600f5490565b60195460020361110d575060105490565b60195460030361111e575060115490565b60195460040361112f575060125490565b50600f5490565b6111418484846118b5565b61114d84848484611c3e565b61116a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60006019546001036111905761118982600c5485611d41565b9050610b30565b6019546002036111a75761118982600d5485611d41565b6019546003036111be5761118982600e5485611d41565b50600092915050565b6111cf61185b565b600f55565b6111dc61185b565b6009548183516111ec91906127f6565b600154600054036111fd91906127b7565b111561121b5760405162461bcd60e51b8152600401610eae906127ca565b60005b8251811015610c9457600083828151811061123b5761123b612815565b6020026020010151905061124f8184611c34565b508061125a8161282b565b91505061121e565b61126a61185b565b601255565b606061127a826117d4565b6112de5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610eae565b60006112e8611d57565b9050600081511161138357600b805461130090612625565b80601f016020809104026020016040519081016040528092919081815260200182805461132c90612625565b80156113795780601f1061134e57610100808354040283529160200191611379565b820191906000526020600020905b81548152906001019060200180831161135c57829003601f168201915b50505050506113ae565b8061138d84611d66565b60405160200161139e929190612844565b6040516020818303038152906040525b9392505050565b6000610b3082611e66565b6113c861185b565b6001600160a01b03811661142d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610eae565b61143681611be2565b50565b61144161185b565b600c55565b61144e61185b565b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160208082019490945260609490941b6bffffffffffffffffffffffff191684820152605480850192909252805180850390920182526074909301909252815191012090565b600954856114ca6001546000540390565b6114d491906127b7565b11156114f25760405162461bcd60e51b8152600401610eae906127ca565b6001601954101580156115085750600360195411155b6115545760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742053616c65206973206e6f74206f70656e6564000000006044820152606401610eae565b61159b611562338686611470565b83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061117092505050565b6115d75760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610eae565b60195460010361163457336000908152601660205260409020546115fc9086906127b7565b336000908152601660205260409020819055601354101561162f5760405162461bcd60e51b8152600401610eae90612873565b6116e4565b60195460020361168c57336000908152601760205260409020546116599086906127b7565b336000908152601760205260409020819055601454101561162f5760405162461bcd60e51b8152600401610eae90612873565b6019546003036116e457336000908152601860205260409020546116b19086906127b7565b33600090815260186020526040902081905560155410156116e45760405162461bcd60e51b8152600401610eae90612873565b846116ed6110e9565b6116f791906127f6565b3410156117375760405162461bcd60e51b815260206004820152600e60248201526d08aa89040dcdee840cadcdeeaced60931b6044820152606401610eae565b6000611744600a3461268b565b601b546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505015801561177f573d6000803e3d6000fd5b50601a546001600160a01b03166108fc611799833461269f565b6040518115909202916000818181858888f193505050501580156117c1573d6000803e3d6000fd5b506117cc3387611c34565b505050505050565b6000805482108015610b30575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610e665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eae565b60006118c082611ac9565b80519091506000906001600160a01b0316336001600160a01b031614806118ee575081516118ee9033610a23565b806119095750336118fe84610bc8565b6001600160a01b0316145b90508061192957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461195e5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661198557604051633a954ecd60e21b815260040160405180910390fd5b61199560008484600001516117ff565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611a7f57600054811015611a7f57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810182905290548290811015611bc957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611bc75780516001600160a01b031615611b5e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611bc2579392505050565b611b5e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d8d8282611ebb565b60006001600160a01b0384163b15611d3557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c829033908990889088906004016128aa565b6020604051808303816000875af1925050508015611cbd575060408051601f3d908101601f19168201909252611cba918101906128e7565b60015b611d1b573d808015611ceb576040519150601f19603f3d011682016040523d82523d6000602084013e611cf0565b606091505b508051600003611d13576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d39565b5060015b949350505050565b600082611d4e8584611ed5565b14949350505050565b6060600a8054610b4590612625565b606081600003611d8d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611db75780611da18161282b565b9150611db09050600a8361268b565b9150611d91565b6000816001600160401b03811115611dd157611dd1612210565b6040519080825280601f01601f191660200182016040528015611dfb576020820181803683370190505b5090505b8415611d3957611e1060018361269f565b9150611e1d600a86612904565b611e289060306127b7565b60f81b818381518110611e3d57611e3d612815565b60200101906001600160f81b031916908160001a905350611e5f600a8661268b565b9450611dff565b60006001600160a01b038216611e8f576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b610d8d828260405180602001604052806000815250611f22565b600081815b8451811015611f1a57611f0682868381518110611ef957611ef9612815565b6020026020010151611f2f565b915080611f128161282b565b915050611eda565b509392505050565b610c948383836001611f5b565b6000818310611f4b5760008281526020849052604090206113ae565b5060009182526020526040902090565b6000546001600160a01b038516611f8457604051622e076360e81b815260040160405180910390fd5b83600003611fa55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156120bb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015612091575061208f6000888488611c3e565b155b156120af576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161203a565b50600055611ac2565b6001600160e01b03198116811461143657600080fd5b6000602082840312156120ec57600080fd5b81356113ae816120c4565b60005b838110156121125781810151838201526020016120fa565b50506000910152565b600081518084526121338160208601602086016120f7565b601f01601f19169290920160200192915050565b6020815260006113ae602083018461211b565b60006020828403121561216c57600080fd5b5035919050565b80356001600160a01b038116811461218a57600080fd5b919050565b600080604083850312156121a257600080fd5b6121ab83612173565b946020939093013593505050565b6000806000606084860312156121ce57600080fd5b6121d784612173565b92506121e560208501612173565b9150604084013590509250925092565b60006020828403121561220757600080fd5b6113ae82612173565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561224e5761224e612210565b604052919050565b60006001600160401b0383111561226f5761226f612210565b612282601f8401601f1916602001612226565b905082815283838301111561229657600080fd5b828260208301376000602084830101529392505050565b6000602082840312156122bf57600080fd5b81356001600160401b038111156122d557600080fd5b8201601f810184136122e657600080fd5b611d3984823560208401612256565b6000806040838503121561230857600080fd5b8235915061231860208401612173565b90509250929050565b6000806040838503121561233457600080fd5b61233d83612173565b91506020830135801515811461235257600080fd5b809150509250929050565b6000806000806080858703121561237357600080fd5b61237c85612173565b935061238a60208601612173565b92506040850135915060608501356001600160401b038111156123ac57600080fd5b8501601f810187136123bd57600080fd5b6123cc87823560208401612256565b91505092959194509250565b60006001600160401b038211156123f1576123f1612210565b5060051b60200190565b6000806040838503121561240e57600080fd5b823591506020808401356001600160401b0381111561242c57600080fd5b8401601f8101861361243d57600080fd5b803561245061244b826123d8565b612226565b81815260059190911b8201830190838101908883111561246f57600080fd5b928401925b8284101561248d57833582529284019290840190612474565b80955050505050509250929050565b600080604083850312156124af57600080fd5b82356001600160401b038111156124c557600080fd5b8301601f810185136124d657600080fd5b803560206124e661244b836123d8565b82815260059290921b8301810191818101908884111561250557600080fd5b938201935b8385101561252a5761251b85612173565b8252938201939082019061250a565b98969091013596505050505050565b6000806040838503121561254c57600080fd5b61255583612173565b915061231860208401612173565b60008060006060848603121561257857600080fd5b61258184612173565b95602085013595506040909401359392505050565b6000806000806000608086880312156125ae57600080fd5b85359450602086013593506040860135925060608601356001600160401b03808211156125da57600080fd5b818801915088601f8301126125ee57600080fd5b8135818111156125fd57600080fd5b8960208260051b850101111561261257600080fd5b9699959850939650602001949392505050565b600181811c9082168061263957607f821691505b60208210810361265957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008261269a5761269a61265f565b500490565b81810381811115610b3057610b30612675565b601f821115610c9457600081815260208120601f850160051c810160208610156126d95750805b601f850160051c820191505b818110156117cc578281556001016126e5565b81516001600160401b0381111561271157612711612210565b6127258161271f8454612625565b846126b2565b602080601f83116001811461275a57600084156127425750858301515b600019600386901b1c1916600185901b1785556117cc565b600085815260208120601f198616915b828110156127895788860151825594840194600190910190840161276a565b50858210156127a75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610b3057610b30612675565b60208082526012908201527145786365656473204d617820537570706c7960701b604082015260600190565b600081600019048311821515161561281057612810612675565b500290565b634e487b7160e01b600052603260045260246000fd5b60006001820161283d5761283d612675565b5060010190565b600083516128568184602088016120f7565b83519083019061286a8183602088016120f7565b01949350505050565b60208082526017908201527f45786365656473204d6178204d696e7420416d6f756e74000000000000000000604082015260600190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128dd9083018461211b565b9695505050505050565b6000602082840312156128f957600080fd5b81516113ae816120c4565b6000826129135761291361265f565b50069056fea26469706673582212200372c9155dccd05db817cd5d47b05e5fbe83397c6b0db96631c7b4384a726e8c64736f6c63430008100033

Deployed Bytecode

0x60806040526004361061038c5760003560e01c806373d84b8a116101dc578063b88d4fde11610102578063d5d812f9116100a0578063f943f0651161006f578063f943f06514610a71578063fd6cb61314610a91578063fdaf012514610ab1578063ff63cf0114610ad157600080fd5b8063d5d812f9146109bb578063dc33e681146109e8578063e985e9c514610a08578063f2fde38b14610a5157600080fd5b8063c204642c116100dc578063c204642c14610945578063c627525514610965578063c87b56dd14610985578063d19f2fdc146109a557600080fd5b8063b88d4fde146108e5578063bd64545414610905578063c061f79e1461092557600080fd5b8063900e8b9c1161017a578063a22cb46511610149578063a22cb46514610870578063a3661dd414610890578063a55f6262146108b0578063a7f93ebd146108d057600080fd5b8063900e8b9c146107cf5780639231ab2a146107e557806395d89b411461083b57806397bc411c1461085057600080fd5b80638281b3ac116101b65780638281b3ac1461077257806384b9a4a51461078857806385aa94361461079e5780638da5cb5b146107b157600080fd5b806373d84b8a1461072657806376d6bec81461074657806382159b831461075c57600080fd5b80634492f837116102c15780635dbc6d6c1161025f5780636352211e1161022e5780636352211e146106b15780636f8b44b0146106d157806370a08231146106f1578063715018a61461071157600080fd5b80635dbc6d6c146106455780635f8d085a1461065b5780636081dabf1461067b578063611f3f101461069b57600080fd5b806355f804b31161029b57806355f804b3146105da57806356bda4a2146105fa578063570153ed1461060f5780635c3708e81461062557600080fd5b80634492f8371461057757806349ee58cc1461058d57806353e90cbd146105ba57600080fd5b806323b872dd1161032e5780632d04f820116103085780632d04f8201461050c57806332cb6b0c1461052c5780633ccfd60b1461054257806342842e0e1461055757600080fd5b806323b872dd1461049f578063289de3ab146104bf5780632d02a5b2146104ec57600080fd5b8063095ea7b31161036a578063095ea7b314610420578063129c46581461044257806313cabc7e1461046657806318160ddd1461048657600080fd5b806301ffc9a71461039157806306fdde03146103c6578063081812fc146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac3660046120da565b610ae4565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103db610b36565b6040516103bd9190612147565b3480156103f457600080fd5b5061040861040336600461215a565b610bc8565b6040516001600160a01b0390911681526020016103bd565b34801561042c57600080fd5b5061044061043b36600461218f565b610c0c565b005b34801561044e57600080fd5b5061045860135481565b6040519081526020016103bd565b34801561047257600080fd5b5061044061048136600461215a565b610c99565b34801561049257600080fd5b5060015460005403610458565b3480156104ab57600080fd5b506104406104ba3660046121b9565b610ca6565b3480156104cb57600080fd5b506104586104da3660046121f5565b60186020526000908152604090205481565b3480156104f857600080fd5b5061044061050736600461215a565b610cb1565b34801561051857600080fd5b50601b54610408906001600160a01b031681565b34801561053857600080fd5b5061045860095481565b34801561054e57600080fd5b50610440610cbe565b34801561056357600080fd5b506104406105723660046121b9565b610d51565b34801561058357600080fd5b5061045860145481565b34801561059957600080fd5b506104586105a83660046121f5565b60166020526000908152604090205481565b3480156105c657600080fd5b506104406105d536600461215a565b610d6c565b3480156105e657600080fd5b506104406105f53660046122ad565b610d79565b34801561060657600080fd5b50610458610d91565b34801561061b57600080fd5b50610458600f5481565b34801561063157600080fd5b5061044061064036600461215a565b610dcd565b34801561065157600080fd5b5061045860115481565b34801561066757600080fd5b5061044061067636600461215a565b610dda565b34801561068757600080fd5b50601a54610408906001600160a01b031681565b3480156106a757600080fd5b5061045860125481565b3480156106bd57600080fd5b506104086106cc36600461215a565b610de7565b3480156106dd57600080fd5b506104406106ec36600461215a565b610df9565b3480156106fd57600080fd5b5061045861070c3660046121f5565b610e06565b34801561071d57600080fd5b50610440610e54565b34801561073257600080fd5b5061044061074136600461215a565b610e68565b34801561075257600080fd5b50610458600e5481565b34801561076857600080fd5b5061045860155481565b34801561077e57600080fd5b5061045860105481565b34801561079457600080fd5b5061045860195481565b6104406107ac3660046122f5565b610e75565b3480156107bd57600080fd5b506008546001600160a01b0316610408565b3480156107db57600080fd5b50610458600c5481565b3480156107f157600080fd5b5061080561080036600461215a565b610ff1565b6040805182516001600160a01b031681526020808401516001600160401b031690820152918101511515908201526060016103bd565b34801561084757600080fd5b506103db611017565b34801561085c57600080fd5b5061044061086b3660046122ad565b611026565b34801561087c57600080fd5b5061044061088b366004612321565b61103a565b34801561089c57600080fd5b506104406108ab36600461215a565b6110cf565b3480156108bc57600080fd5b506104406108cb36600461215a565b6110dc565b3480156108dc57600080fd5b506104586110e9565b3480156108f157600080fd5b5061044061090036600461235d565b611136565b34801561091157600080fd5b506103b16109203660046123fb565b611170565b34801561093157600080fd5b5061044061094036600461215a565b6111c7565b34801561095157600080fd5b5061044061096036600461249c565b6111d4565b34801561097157600080fd5b5061044061098036600461215a565b611262565b34801561099157600080fd5b506103db6109a036600461215a565b61126f565b3480156109b157600080fd5b50610458600d5481565b3480156109c757600080fd5b506104586109d63660046121f5565b60176020526000908152604090205481565b3480156109f457600080fd5b50610458610a033660046121f5565b6113b5565b348015610a1457600080fd5b506103b1610a23366004612539565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a5d57600080fd5b50610440610a6c3660046121f5565b6113c0565b348015610a7d57600080fd5b50610440610a8c36600461215a565b611439565b348015610a9d57600080fd5b50610440610aac3660046121f5565b611446565b348015610abd57600080fd5b50610458610acc366004612563565b611470565b610440610adf366004612596565b6114b9565b60006001600160e01b031982166380ac58cd60e01b1480610b1557506001600160e01b03198216635b5e139f60e01b145b80610b3057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610b4590612625565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7190612625565b8015610bbe5780601f10610b9357610100808354040283529160200191610bbe565b820191906000526020600020905b815481529060010190602001808311610ba157829003601f168201915b5050505050905090565b6000610bd3826117d4565b610bf0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c1782610de7565b9050806001600160a01b0316836001600160a01b031603610c4b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610c6b5750610c698133610a23565b155b15610c89576040516367d9dca160e11b815260040160405180910390fd5b610c948383836117ff565b505050565b610ca161185b565b601155565b610c948383836118b5565b610cb961185b565b601055565b610cc661185b565b476000610cd4600a8361268b565b601b546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610d0f573d6000803e3d6000fd5b50601a546001600160a01b03166108fc610d29838561269f565b6040518115909202916000818181858888f19350505050158015610c94573d6000803e3d6000fd5b610c9483838360405180602001604052806000815250611136565b610d7461185b565b601955565b610d8161185b565b600a610d8d82826126f8565b5050565b6000601954600103610da4575060135490565b601954600203610db5575060145490565b601954600303610dc6575060155490565b5060135490565b610dd561185b565b601455565b610de261185b565b601555565b6000610df282611ac9565b5192915050565b610e0161185b565b600955565b60006001600160a01b038216610e2f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610e5c61185b565b610e666000611be2565b565b610e7061185b565b601355565b60095482610e866001546000540390565b610e9091906127b7565b1115610eb75760405162461bcd60e51b8152600401610eae906127ca565b60405180910390fd5b601954600414610f095760405162461bcd60e51b815260206004820152601960248201527f5075626c69632053616c65206973206e6f74206f70656e6564000000000000006044820152606401610eae565b81610f126110e9565b610f1c91906127f6565b341015610f5c5760405162461bcd60e51b815260206004820152600e60248201526d08aa89040dcdee840cadcdeeaced60931b6044820152606401610eae565b6000610f69600a3461268b565b601b546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610fa4573d6000803e3d6000fd5b50601a546001600160a01b03166108fc610fbe833461269f565b6040518115909202916000818181858888f19350505050158015610fe6573d6000803e3d6000fd5b50610c948284611c34565b6040805160608101825260008082526020820181905291810191909152610b3082611ac9565b606060038054610b4590612625565b61102e61185b565b600b610d8d82826126f8565b336001600160a01b038316036110635760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110d761185b565b600e55565b6110e461185b565b600d55565b60006019546001036110fc5750600f5490565b60195460020361110d575060105490565b60195460030361111e575060115490565b60195460040361112f575060125490565b50600f5490565b6111418484846118b5565b61114d84848484611c3e565b61116a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60006019546001036111905761118982600c5485611d41565b9050610b30565b6019546002036111a75761118982600d5485611d41565b6019546003036111be5761118982600e5485611d41565b50600092915050565b6111cf61185b565b600f55565b6111dc61185b565b6009548183516111ec91906127f6565b600154600054036111fd91906127b7565b111561121b5760405162461bcd60e51b8152600401610eae906127ca565b60005b8251811015610c9457600083828151811061123b5761123b612815565b6020026020010151905061124f8184611c34565b508061125a8161282b565b91505061121e565b61126a61185b565b601255565b606061127a826117d4565b6112de5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610eae565b60006112e8611d57565b9050600081511161138357600b805461130090612625565b80601f016020809104026020016040519081016040528092919081815260200182805461132c90612625565b80156113795780601f1061134e57610100808354040283529160200191611379565b820191906000526020600020905b81548152906001019060200180831161135c57829003601f168201915b50505050506113ae565b8061138d84611d66565b60405160200161139e929190612844565b6040516020818303038152906040525b9392505050565b6000610b3082611e66565b6113c861185b565b6001600160a01b03811661142d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610eae565b61143681611be2565b50565b61144161185b565b600c55565b61144e61185b565b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160208082019490945260609490941b6bffffffffffffffffffffffff191684820152605480850192909252805180850390920182526074909301909252815191012090565b600954856114ca6001546000540390565b6114d491906127b7565b11156114f25760405162461bcd60e51b8152600401610eae906127ca565b6001601954101580156115085750600360195411155b6115545760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742053616c65206973206e6f74206f70656e6564000000006044820152606401610eae565b61159b611562338686611470565b83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061117092505050565b6115d75760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610eae565b60195460010361163457336000908152601660205260409020546115fc9086906127b7565b336000908152601660205260409020819055601354101561162f5760405162461bcd60e51b8152600401610eae90612873565b6116e4565b60195460020361168c57336000908152601760205260409020546116599086906127b7565b336000908152601760205260409020819055601454101561162f5760405162461bcd60e51b8152600401610eae90612873565b6019546003036116e457336000908152601860205260409020546116b19086906127b7565b33600090815260186020526040902081905560155410156116e45760405162461bcd60e51b8152600401610eae90612873565b846116ed6110e9565b6116f791906127f6565b3410156117375760405162461bcd60e51b815260206004820152600e60248201526d08aa89040dcdee840cadcdeeaced60931b6044820152606401610eae565b6000611744600a3461268b565b601b546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505015801561177f573d6000803e3d6000fd5b50601a546001600160a01b03166108fc611799833461269f565b6040518115909202916000818181858888f193505050501580156117c1573d6000803e3d6000fd5b506117cc3387611c34565b505050505050565b6000805482108015610b30575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610e665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eae565b60006118c082611ac9565b80519091506000906001600160a01b0316336001600160a01b031614806118ee575081516118ee9033610a23565b806119095750336118fe84610bc8565b6001600160a01b0316145b90508061192957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461195e5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661198557604051633a954ecd60e21b815260040160405180910390fd5b61199560008484600001516117ff565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611a7f57600054811015611a7f57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810182905290548290811015611bc957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611bc75780516001600160a01b031615611b5e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611bc2579392505050565b611b5e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d8d8282611ebb565b60006001600160a01b0384163b15611d3557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c829033908990889088906004016128aa565b6020604051808303816000875af1925050508015611cbd575060408051601f3d908101601f19168201909252611cba918101906128e7565b60015b611d1b573d808015611ceb576040519150601f19603f3d011682016040523d82523d6000602084013e611cf0565b606091505b508051600003611d13576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d39565b5060015b949350505050565b600082611d4e8584611ed5565b14949350505050565b6060600a8054610b4590612625565b606081600003611d8d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611db75780611da18161282b565b9150611db09050600a8361268b565b9150611d91565b6000816001600160401b03811115611dd157611dd1612210565b6040519080825280601f01601f191660200182016040528015611dfb576020820181803683370190505b5090505b8415611d3957611e1060018361269f565b9150611e1d600a86612904565b611e289060306127b7565b60f81b818381518110611e3d57611e3d612815565b60200101906001600160f81b031916908160001a905350611e5f600a8661268b565b9450611dff565b60006001600160a01b038216611e8f576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b610d8d828260405180602001604052806000815250611f22565b600081815b8451811015611f1a57611f0682868381518110611ef957611ef9612815565b6020026020010151611f2f565b915080611f128161282b565b915050611eda565b509392505050565b610c948383836001611f5b565b6000818310611f4b5760008281526020849052604090206113ae565b5060009182526020526040902090565b6000546001600160a01b038516611f8457604051622e076360e81b815260040160405180910390fd5b83600003611fa55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156120bb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015612091575061208f6000888488611c3e565b155b156120af576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161203a565b50600055611ac2565b6001600160e01b03198116811461143657600080fd5b6000602082840312156120ec57600080fd5b81356113ae816120c4565b60005b838110156121125781810151838201526020016120fa565b50506000910152565b600081518084526121338160208601602086016120f7565b601f01601f19169290920160200192915050565b6020815260006113ae602083018461211b565b60006020828403121561216c57600080fd5b5035919050565b80356001600160a01b038116811461218a57600080fd5b919050565b600080604083850312156121a257600080fd5b6121ab83612173565b946020939093013593505050565b6000806000606084860312156121ce57600080fd5b6121d784612173565b92506121e560208501612173565b9150604084013590509250925092565b60006020828403121561220757600080fd5b6113ae82612173565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561224e5761224e612210565b604052919050565b60006001600160401b0383111561226f5761226f612210565b612282601f8401601f1916602001612226565b905082815283838301111561229657600080fd5b828260208301376000602084830101529392505050565b6000602082840312156122bf57600080fd5b81356001600160401b038111156122d557600080fd5b8201601f810184136122e657600080fd5b611d3984823560208401612256565b6000806040838503121561230857600080fd5b8235915061231860208401612173565b90509250929050565b6000806040838503121561233457600080fd5b61233d83612173565b91506020830135801515811461235257600080fd5b809150509250929050565b6000806000806080858703121561237357600080fd5b61237c85612173565b935061238a60208601612173565b92506040850135915060608501356001600160401b038111156123ac57600080fd5b8501601f810187136123bd57600080fd5b6123cc87823560208401612256565b91505092959194509250565b60006001600160401b038211156123f1576123f1612210565b5060051b60200190565b6000806040838503121561240e57600080fd5b823591506020808401356001600160401b0381111561242c57600080fd5b8401601f8101861361243d57600080fd5b803561245061244b826123d8565b612226565b81815260059190911b8201830190838101908883111561246f57600080fd5b928401925b8284101561248d57833582529284019290840190612474565b80955050505050509250929050565b600080604083850312156124af57600080fd5b82356001600160401b038111156124c557600080fd5b8301601f810185136124d657600080fd5b803560206124e661244b836123d8565b82815260059290921b8301810191818101908884111561250557600080fd5b938201935b8385101561252a5761251b85612173565b8252938201939082019061250a565b98969091013596505050505050565b6000806040838503121561254c57600080fd5b61255583612173565b915061231860208401612173565b60008060006060848603121561257857600080fd5b61258184612173565b95602085013595506040909401359392505050565b6000806000806000608086880312156125ae57600080fd5b85359450602086013593506040860135925060608601356001600160401b03808211156125da57600080fd5b818801915088601f8301126125ee57600080fd5b8135818111156125fd57600080fd5b8960208260051b850101111561261257600080fd5b9699959850939650602001949392505050565b600181811c9082168061263957607f821691505b60208210810361265957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008261269a5761269a61265f565b500490565b81810381811115610b3057610b30612675565b601f821115610c9457600081815260208120601f850160051c810160208610156126d95750805b601f850160051c820191505b818110156117cc578281556001016126e5565b81516001600160401b0381111561271157612711612210565b6127258161271f8454612625565b846126b2565b602080601f83116001811461275a57600084156127425750858301515b600019600386901b1c1916600185901b1785556117cc565b600085815260208120601f198616915b828110156127895788860151825594840194600190910190840161276a565b50858210156127a75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610b3057610b30612675565b60208082526012908201527145786365656473204d617820537570706c7960701b604082015260600190565b600081600019048311821515161561281057612810612675565b500290565b634e487b7160e01b600052603260045260246000fd5b60006001820161283d5761283d612675565b5060010190565b600083516128568184602088016120f7565b83519083019061286a8183602088016120f7565b01949350505050565b60208082526017908201527f45786365656473204d6178204d696e7420416d6f756e74000000000000000000604082015260600190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128dd9083018461211b565b9695505050505050565b6000602082840312156128f957600080fd5b81516113ae816120c4565b6000826129135761291361265f565b50069056fea26469706673582212200372c9155dccd05db817cd5d47b05e5fbe83397c6b0db96631c7b4384a726e8c64736f6c63430008100033

Deployed Bytecode Sourcemap

57014:7815:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39812:305;;;;;;;;;;-1:-1:-1;39812:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;39812:305:0;;;;;;;;43172:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44675:204::-;;;;;;;;;;-1:-1:-1;44675:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;44675:204:0;1533:203:1;44238:371:0;;;;;;;;;;-1:-1:-1;44238:371:0;;;;;:::i;:::-;;:::i;:::-;;57533:39;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;57533:39:0;2178:177:1;58425:99:0;;;;;;;;;;-1:-1:-1;58425:99:0;;;;;:::i;:::-;;:::i;39469:271::-;;;;;;;;;;-1:-1:-1;39705:12:0;;39513:7;39689:13;:28;39469:271;;45532:170;;;;;;;;;;-1:-1:-1;45532:170:0;;;;;:::i;:::-;;:::i;57781:50::-;;;;;;;;;;-1:-1:-1;57781:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;58324:95;;;;;;;;;;-1:-1:-1;58324:95:0;;;;;:::i;:::-;;:::i;57978:25::-;;;;;;;;;;-1:-1:-1;57978:25:0;;;;-1:-1:-1;;;;;57978:25:0;;;57102:32;;;;;;;;;;;;;;;;64581:245;;;;;;;;;;;;;:::i;45773:185::-;;;;;;;;;;-1:-1:-1;45773:185:0;;;;;:::i;:::-;;:::i;57579:35::-;;;;;;;;;;;;;;;;57667:52;;;;;;;;;;-1:-1:-1;57667:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;59877:99;;;;;;;;;;-1:-1:-1;59877:99:0;;;;;:::i;:::-;;:::i;59631:107::-;;;;;;;;;;-1:-1:-1;59631:107:0;;;;;:::i;:::-;;:::i;59984:333::-;;;;;;;;;;;;;:::i;57344:42::-;;;;;;;;;;;;;;;;59272:115;;;;;;;;;;-1:-1:-1;59272:115:0;;;;;:::i;:::-;;:::i;57438:40::-;;;;;;;;;;;;;;;;59393:119;;;;;;;;;;-1:-1:-1;59393:119:0;;;;;:::i;:::-;;:::i;57942:29::-;;;;;;;;;;-1:-1:-1;57942:29:0;;;;-1:-1:-1;;;;;57942:29:0;;;57485:39;;;;;;;;;;;;;;;;42981:124;;;;;;;;;;-1:-1:-1;42981:124:0;;;;;:::i;:::-;;:::i;59520:103::-;;;;;;;;;;-1:-1:-1;59520:103:0;;;;;:::i;:::-;;:::i;40181:206::-;;;;;;;;;;-1:-1:-1;40181:206:0;;;;;:::i;:::-;;:::i;15422:103::-;;;;;;;;;;;;;:::i;59143:123::-;;;;;;;;;;-1:-1:-1;59143:123:0;;;;;:::i;:::-;;:::i;57299:36::-;;;;;;;;;;;;;;;;57621:37;;;;;;;;;;;;;;;;57393:38;;;;;;;;;;;;;;;;57840:28;;;;;;;;;;;;;;;;62917:510;;;;;;:::i;:::-;;:::i;14774:87::-;;;;;;;;;;-1:-1:-1;14847:6:0;;-1:-1:-1;;;;;14847:6:0;14774:87;;57213:38;;;;;;;;;;;;;;;;64438:135;;;;;;;;;;-1:-1:-1;64438:135:0;;;;;:::i;:::-;;:::i;:::-;;;;4837:13:1;;-1:-1:-1;;;;;4833:39:1;4815:58;;4933:4;4921:17;;;4915:24;-1:-1:-1;;;;;4911:49:1;4889:20;;;4882:79;5019:17;;;5013:24;5006:32;4999:40;4977:20;;;4970:70;4803:2;4788:18;64438:135:0;4605:441:1;43341:104:0;;;;;;;;;;;;;:::i;59746:123::-;;;;;;;;;;-1:-1:-1;59746:123:0;;;;;:::i;:::-;;:::i;44951:279::-;;;;;;;;;;-1:-1:-1;44951:279:0;;;;;:::i;:::-;;:::i;59014:117::-;;;;;;;;;;-1:-1:-1;59014:117:0;;;;;:::i;:::-;;:::i;58895:113::-;;;;;;;;;;-1:-1:-1;58895:113:0;;;;;:::i;:::-;;:::i;60323:385::-;;;;;;;;;;;;;:::i;46029:342::-;;;;;;;;;;-1:-1:-1;46029:342:0;;;;;:::i;:::-;;:::i;60716:511::-;;;;;;;;;;-1:-1:-1;60716:511:0;;;;;:::i;:::-;;:::i;58215:103::-;;;;;;;;;;-1:-1:-1;58215:103:0;;;;;:::i;:::-;;:::i;63435:379::-;;;;;;;;;;-1:-1:-1;63435:379:0;;;;;:::i;:::-;;:::i;58530:99::-;;;;;;;;;;-1:-1:-1;58530:99:0;;;;;:::i;:::-;;:::i;63939:363::-;;;;;;;;;;-1:-1:-1;63939:363:0;;;;;:::i;:::-;;:::i;57258:34::-;;;;;;;;;;;;;;;;57726:48;;;;;;;;;;-1:-1:-1;57726:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;61416:115;;;;;;;;;;-1:-1:-1;61416:115:0;;;;;:::i;:::-;;:::i;45301:164::-;;;;;;;;;;-1:-1:-1;45301:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;45422:25:0;;;45398:4;45422:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45301:164;15680:201;;;;;;;;;;-1:-1:-1;15680:201:0;;;;;:::i;:::-;;:::i;58768:121::-;;;;;;;;;;-1:-1:-1;58768:121:0;;;;;:::i;:::-;;:::i;58641:119::-;;;;;;;;;;-1:-1:-1;58641:119:0;;;;;:::i;:::-;;:::i;61233:171::-;;;;;;;;;;-1:-1:-1;61233:171:0;;;;;:::i;:::-;;:::i;61539:1370::-;;;;;;:::i;:::-;;:::i;39812:305::-;39914:4;-1:-1:-1;;;;;;39951:40:0;;-1:-1:-1;;;39951:40:0;;:105;;-1:-1:-1;;;;;;;40008:48:0;;-1:-1:-1;;;40008:48:0;39951:105;:158;;;-1:-1:-1;;;;;;;;;;11537:40:0;;;40073:36;39931:178;39812:305;-1:-1:-1;;39812:305:0:o;43172:100::-;43226:13;43259:5;43252:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43172:100;:::o;44675:204::-;44743:7;44768:16;44776:7;44768;:16::i;:::-;44763:64;;44793:34;;-1:-1:-1;;;44793:34:0;;;;;;;;;;;44763:64;-1:-1:-1;44847:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44847:24:0;;44675:204::o;44238:371::-;44311:13;44327:24;44343:7;44327:15;:24::i;:::-;44311:40;;44372:5;-1:-1:-1;;;;;44366:11:0;:2;-1:-1:-1;;;;;44366:11:0;;44362:48;;44386:24;;-1:-1:-1;;;44386:24:0;;;;;;;;;;;44362:48;13405:10;-1:-1:-1;;;;;44427:21:0;;;;;;:63;;-1:-1:-1;44453:37:0;44470:5;13405:10;45301:164;:::i;44453:37::-;44452:38;44427:63;44423:138;;;44514:35;;-1:-1:-1;;;44514:35:0;;;;;;;;;;;44423:138;44573:28;44582:2;44586:7;44595:5;44573:8;:28::i;:::-;44300:309;44238:371;;:::o;58425:99::-;14660:13;:11;:13::i;:::-;58495:12:::1;:21:::0;58425:99::o;45532:170::-;45666:28;45676:4;45682:2;45686:7;45666:9;:28::i;58324:95::-;14660:13;:11;:13::i;:::-;58392:10:::1;:19:::0;58324:95::o;64581:245::-;14660:13;:11;:13::i;:::-;64649:21:::1;64631:15;64698:12;64708:2;64649:21:::0;64698:12:::1;:::i;:::-;64729:10;::::0;64721:36:::1;::::0;64681:29;;-1:-1:-1;;;;;;64729:10:0::1;::::0;64721:36;::::1;;;::::0;64681:29;;64729:10:::1;64721:36:::0;64729:10;64721:36;64681:29;64729:10;64721:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;64776:14:0::1;::::0;-1:-1:-1;;;;;64776:14:0::1;64768:50;64801:16;64811:6:::0;64801:7;:16:::1;:::i;:::-;64768:50;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;45773:185:::0;45911:39;45928:4;45934:2;45938:7;45911:39;;;;;;;;;;;;:16;:39::i;59877:99::-;14660:13;:11;:13::i;:::-;59947:9:::1;:21:::0;59877:99::o;59631:107::-;14660:13;:11;:13::i;:::-;59708:8:::1;:22;59719:11:::0;59708:8;:22:::1;:::i;:::-;;59631:107:::0;:::o;59984:333::-;60028:7;60052:9;;60065:1;60052:14;60048:225;;-1:-1:-1;60090:19:0;;;59984:333::o;60048:225::-;60131:9;;60144:1;60131:14;60127:146;;-1:-1:-1;60169:15:0;;;59984:333::o;60127:146::-;60206:9;;60219:1;60206:14;60202:71;;-1:-1:-1;60244:17:0;;;59984:333::o;60202:71::-;-1:-1:-1;60290:19:0;;;59984:333::o;59272:115::-;14660:13;:11;:13::i;:::-;59351:15:::1;:28:::0;59272:115::o;59393:119::-;14660:13;:11;:13::i;:::-;59474:17:::1;:30:::0;59393:119::o;42981:124::-;43045:7;43072:20;43084:7;43072:11;:20::i;:::-;:25;;42981:124;-1:-1:-1;;42981:124:0:o;59520:103::-;14660:13;:11;:13::i;:::-;59592:10:::1;:23:::0;59520:103::o;40181:206::-;40245:7;-1:-1:-1;;;;;40269:19:0;;40265:60;;40297:28;;-1:-1:-1;;;40297:28:0;;;;;;;;;;;40265:60;-1:-1:-1;;;;;;40351:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;40351:27:0;;40181:206::o;15422:103::-;14660:13;:11;:13::i;:::-;15487:30:::1;15514:1;15487:18;:30::i;:::-;15422:103::o:0;59143:123::-;14660:13;:11;:13::i;:::-;59226:19:::1;:32:::0;59143:123::o;62917:510::-;63038:10;;63023:11;63007:13;39705:12;;39513:7;39689:13;:28;;39469:271;63007:13;:27;;;;:::i;:::-;:41;;62999:72;;;;-1:-1:-1;;;62999:72:0;;;;;;;:::i;:::-;;;;;;;;;63092:9;;63105:1;63092:14;63084:52;;;;-1:-1:-1;;;63084:52:0;;13591:2:1;63084:52:0;;;13573:21:1;13630:2;13610:18;;;13603:30;13669:27;13649:18;;;13642:55;13714:18;;63084:52:0;13389:349:1;63084:52:0;63187:11;63170:14;:12;:14::i;:::-;:28;;;;:::i;:::-;63157:9;:41;;63149:68;;;;-1:-1:-1;;;63149:68:0;;14118:2:1;63149:68:0;;;14100:21:1;14157:2;14137:18;;;14130:30;-1:-1:-1;;;14176:18:1;;;14169:44;14230:18;;63149:68:0;13916:338:1;63149:68:0;63230:14;63247;63259:2;63247:9;:14;:::i;:::-;63280:10;;63272:36;;63230:31;;-1:-1:-1;;;;;;63280:10:0;;63272:36;;;;;63230:31;;63280:10;63272:36;63280:10;63272:36;63230:31;63280:10;63272:36;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63327:14:0;;-1:-1:-1;;;;;63327:14:0;63319:52;63352:18;63364:6;63352:9;:18;:::i;:::-;63319:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63392:27;63402:3;63407:11;63392:9;:27::i;64438:135::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;64545:20:0;64557:7;64545:11;:20::i;43341:104::-;43397:13;43430:7;43423:14;;;;;:::i;59746:123::-;14660:13;:11;:13::i;:::-;59831:12:::1;:30;59846:15:::0;59831:12;:30:::1;:::i;44951:279::-:0;13405:10;-1:-1:-1;;;;;45042:24:0;;;45038:54;;45075:17;;-1:-1:-1;;;45075:17:0;;;;;;;;;;;45038:54;13405:10;45105:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;45105:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;45105:53:0;;;;;;;;;;45174:48;;540:41:1;;;45105:42:0;;13405:10;45174:48;;513:18:1;45174:48:0;;;;;;;44951:279;;:::o;59014:117::-;14660:13;:11;:13::i;:::-;59094:21:::1;:29:::0;59014:117::o;58895:113::-;14660:13;:11;:13::i;:::-;58973:19:::1;:27:::0;58895:113::o;60323:385::-;60367:7;60391:9;;60404:1;60391:14;60387:282;;-1:-1:-1;60429:14:0;;;60323:385::o;60387:282::-;60465:9;;60478:1;60465:14;60461:208;;-1:-1:-1;60503:10:0;;;60323:385::o;60461:208::-;60535:9;;60548:1;60535:14;60531:138;;-1:-1:-1;60573:12:0;;;60323:385::o;60531:138::-;60607:9;;60620:1;60607:14;60603:66;;-1:-1:-1;60645:12:0;;;60323:385::o;60603:66::-;-1:-1:-1;60686:14:0;;;60323:385::o;46029:342::-;46196:28;46206:4;46212:2;46216:7;46196:9;:28::i;:::-;46240:48;46263:4;46269:2;46273:7;46282:5;46240:22;:48::i;:::-;46235:129;;46312:40;;-1:-1:-1;;;46312:40:0;;;;;;;;;;;46235:129;46029:342;;;;:::o;60716:511::-;60804:4;60825:9;;60838:1;60825:14;60821:399;;60863:62;60882:6;60890:23;;60915:9;60863:18;:62::i;:::-;60856:69;;;;60821:399;60947:9;;60960:1;60947:14;60943:277;;60985:58;61004:6;61012:19;;61033:9;60985:18;:58::i;60943:277::-;61065:9;;61078:1;61065:14;61061:159;;61103:60;61122:6;61130:21;;61153:9;61103:18;:60::i;61061:159::-;-1:-1:-1;61203:5:0;60716:511;;;;:::o;58215:103::-;14660:13;:11;:13::i;:::-;58287:14:::1;:23:::0;58215:103::o;63435:379::-;14660:13;:11;:13::i;:::-;63605:10:::1;;63590:11;63563:17;:24;:38;;;;:::i;:::-;39705:12:::0;;39513:7;39689:13;:28;63547:54:::1;;;;:::i;:::-;:68;;63539:99;;;;-1:-1:-1::0;;;63539:99:0::1;;;;;;;:::i;:::-;63656:9;63651:156;63675:17;:24;63671:1;:28;63651:156;;;63721:10;63734:17;63752:1;63734:20;;;;;;;;:::i;:::-;;;;;;;63721:33;;63769:26;63779:2;63783:11;63769:9;:26::i;:::-;-1:-1:-1::0;63701:3:0;::::1;::::0;::::1;:::i;:::-;;;;63651:156;;58530:99:::0;14660:13;:11;:13::i;:::-;58600:12:::1;:21:::0;58530:99::o;63939:363::-;64012:13;64046:16;64054:7;64046;:16::i;:::-;64038:76;;;;-1:-1:-1;;;64038:76:0;;14733:2:1;64038:76:0;;;14715:21:1;14772:2;14752:18;;;14745:30;14811:34;14791:18;;;14784:62;-1:-1:-1;;;14862:18:1;;;14855:45;14917:19;;64038:76:0;14531:411:1;64038:76:0;64125:28;64156:10;:8;:10::i;:::-;64125:41;;64215:1;64190:14;64184:28;:32;:110;;64282:12;64184:110;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64243:14;64259:18;:7;:16;:18::i;:::-;64226:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64184:110;64177:117;63939:363;-1:-1:-1;;;63939:363:0:o;61416:115::-;61475:7;61502:21;61516:6;61502:13;:21::i;15680:201::-;14660:13;:11;:13::i;:::-;-1:-1:-1;;;;;15769:22:0;::::1;15761:73;;;::::0;-1:-1:-1;;;15761:73:0;;15650:2:1;15761:73:0::1;::::0;::::1;15632:21:1::0;15689:2;15669:18;;;15662:30;15728:34;15708:18;;;15701:62;-1:-1:-1;;;15779:18:1;;;15772:36;15825:19;;15761:73:0::1;15448:402:1::0;15761:73:0::1;15845:28;15864:8;15845:18;:28::i;:::-;15680:201:::0;:::o;58768:121::-;14660:13;:11;:13::i;:::-;58850:23:::1;:31:::0;58768:121::o;58641:119::-;14660:13;:11;:13::i;:::-;58721:14:::1;:31:::0;;-1:-1:-1;;;;;;58721:31:0::1;-1:-1:-1::0;;;;;58721:31:0;;;::::1;::::0;;;::::1;::::0;;58641:119::o;61233:171::-;61355:40;;;;;;;16040:19:1;;;;16097:2;16093:15;;;;-1:-1:-1;;16089:53:1;16075:12;;;16068:75;16159:12;;;;16152:28;;;;61355:40:0;;;;;;;;;;16196:12:1;;;;61355:40:0;;;61345:51;;;;;;61233:171::o;61539:1370::-;61710:10;;61695:11;61679:13;39705:12;;39513:7;39689:13;:28;;39469:271;61679:13;:27;;;;:::i;:::-;:41;;61671:72;;;;-1:-1:-1;;;61671:72:0;;;;;;;:::i;:::-;61777:1;61764:9;;:14;;:32;;;;;61795:1;61782:9;;:14;;61764:32;61756:73;;;;-1:-1:-1;;;61756:73:0;;16421:2:1;61756:73:0;;;16403:21:1;16460:2;16440:18;;;16433:30;16499;16479:18;;;16472:58;16547:18;;61756:73:0;16219:352:1;61756:73:0;61850:58;61864:35;61871:10;61883:6;61891:7;61864:6;:35::i;:::-;61901:6;;61850:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61850:13:0;;-1:-1:-1;;;61850:58:0:i;:::-;61842:84;;;;-1:-1:-1;;;61842:84:0;;16778:2:1;61842:84:0;;;16760:21:1;16817:2;16797:18;;;16790:30;-1:-1:-1;;;16836:18:1;;;16829:43;16889:18;;61842:84:0;16576:337:1;61842:84:0;61943:9;;61956:1;61943:14;61939:681;;62028:10;62008:31;;;;:19;:31;;;;;;:45;;62042:11;;62008:45;:::i;:::-;61994:10;61974:31;;;;:19;:31;;;;;:79;;;62111:19;;-1:-1:-1;62076:54:0;62068:90;;;;-1:-1:-1;;;62068:90:0;;;;;;;:::i;:::-;61939:681;;;62180:9;;62193:1;62180:14;62176:444;;62257:10;62241:27;;;;:15;:27;;;;;;:41;;62271:11;;62241:41;:::i;:::-;62227:10;62211:27;;;;:15;:27;;;;;:71;;;62336:15;;-1:-1:-1;62305:46:0;62297:82;;;;-1:-1:-1;;;62297:82:0;;;;;;;:::i;62176:444::-;62401:9;;62414:1;62401:14;62397:223;;62482:10;62464:29;;;;:17;:29;;;;;;:43;;62496:11;;62464:43;:::i;:::-;62450:10;62432:29;;;;:17;:29;;;;;:75;;;62563:17;;-1:-1:-1;62530:50:0;62522:86;;;;-1:-1:-1;;;62522:86:0;;;;;;;:::i;:::-;62670:11;62653:14;:12;:14::i;:::-;:28;;;;:::i;:::-;62640:9;:41;;62632:68;;;;-1:-1:-1;;;62632:68:0;;14118:2:1;62632:68:0;;;14100:21:1;14157:2;14137:18;;;14130:30;-1:-1:-1;;;14176:18:1;;;14169:44;14230:18;;62632:68:0;13916:338:1;62632:68:0;62713:14;62730;62742:2;62730:9;:14;:::i;:::-;62763:10;;62755:36;;62713:31;;-1:-1:-1;;;;;;62763:10:0;;62755:36;;;;;62713:31;;62763:10;62755:36;62763:10;62755:36;62713:31;62763:10;62755:36;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62810:14:0;;-1:-1:-1;;;;;62810:14:0;62802:52;62835:18;62847:6;62835:9;:18;:::i;:::-;62802:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62867:34;62877:10;62889:11;62867:9;:34::i;:::-;61660:1249;61539:1370;;;;;:::o;46626:144::-;46683:4;46717:13;;46707:7;:23;:55;;;;-1:-1:-1;;46735:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;46735:27:0;;;;46734:28;;46626:144::o;53832:196::-;53947:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53947:29:0;-1:-1:-1;;;;;53947:29:0;;;;;;;;;53992:28;;53947:24;;53992:28;;;;;;;53832:196;;;:::o;14939:132::-;14847:6;;-1:-1:-1;;;;;14847:6:0;13405:10;15003:23;14995:68;;;;-1:-1:-1;;;14995:68:0;;17472:2:1;14995:68:0;;;17454:21:1;;;17491:18;;;17484:30;17550:34;17530:18;;;17523:62;17602:18;;14995:68:0;17270:356:1;49333:2112:0;49448:35;49486:20;49498:7;49486:11;:20::i;:::-;49561:18;;49448:58;;-1:-1:-1;49519:22:0;;-1:-1:-1;;;;;49545:34:0;13405:10;-1:-1:-1;;;;;49545:34:0;;:101;;;-1:-1:-1;49613:18:0;;49596:50;;13405:10;45301:164;:::i;49596:50::-;49545:154;;;-1:-1:-1;13405:10:0;49663:20;49675:7;49663:11;:20::i;:::-;-1:-1:-1;;;;;49663:36:0;;49545:154;49519:181;;49718:17;49713:66;;49744:35;;-1:-1:-1;;;49744:35:0;;;;;;;;;;;49713:66;49816:4;-1:-1:-1;;;;;49794:26:0;:13;:18;;;-1:-1:-1;;;;;49794:26:0;;49790:67;;49829:28;;-1:-1:-1;;;49829:28:0;;;;;;;;;;;49790:67;-1:-1:-1;;;;;49872:16:0;;49868:52;;49897:23;;-1:-1:-1;;;49897:23:0;;;;;;;;;;;49868:52;50041:49;50058:1;50062:7;50071:13;:18;;;50041:8;:49::i;:::-;-1:-1:-1;;;;;50386:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;50386:31:0;;;-1:-1:-1;;;;;50386:31:0;;;-1:-1:-1;;50386:31:0;;;;;;;50432:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;50432:29:0;;;;;;;;;;;50478:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;50523:61:0;;;;-1:-1:-1;;;50568:15:0;50523:61;;;;;;;;;;;50858:11;;;50888:24;;;;;:29;50858:11;;50888:29;50884:445;;51113:13;;51099:11;:27;51095:219;;;51183:18;;;51151:24;;;:11;:24;;;;;;;;:50;;51266:28;;;;-1:-1:-1;;;;;51224:70:0;-1:-1:-1;;;51224:70:0;-1:-1:-1;;;;;;51224:70:0;;;-1:-1:-1;;;;;51151:50:0;;;51224:70;;;;;;;51095:219;50361:979;51376:7;51372:2;-1:-1:-1;;;;;51357:27:0;51366:4;-1:-1:-1;;;;;51357:27:0;;;;;;;;;;;51395:42;49437:2008;;49333:2112;;;:::o;41836:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;42002:13:0;;41946:7;;41995:20;;41991:861;;;42036:31;42070:17;;;:11;:17;;;;;;;;;42036:51;;;;;;;;;-1:-1:-1;;;;;42036:51:0;;;;-1:-1:-1;;;42036:51:0;;-1:-1:-1;;;;;42036:51:0;;;;;;;;-1:-1:-1;;;42036:51:0;;;;;;;;;;;;;;42106:731;;42156:14;;-1:-1:-1;;;;;42156:28:0;;42152:101;;42220:9;41836:1083;-1:-1:-1;;;41836:1083:0:o;42152:101::-;-1:-1:-1;;;42597:6:0;42642:17;;;;:11;:17;;;;;;;;;42630:29;;;;;;;;;-1:-1:-1;;;;;42630:29:0;;;;;-1:-1:-1;;;42630:29:0;;-1:-1:-1;;;;;42630:29:0;;;;;;;;-1:-1:-1;;;42630:29:0;;;;;;;;;;;;;42690:28;42686:109;;42758:9;41836:1083;-1:-1:-1;;;41836:1083:0:o;42686:109::-;42557:261;;;42017:835;41991:861;42880:31;;-1:-1:-1;;;42880:31:0;;;;;;;;;;;16041:191;16134:6;;;-1:-1:-1;;;;;16151:17:0;;;-1:-1:-1;;;;;;16151:17:0;;;;;;;16184:40;;16134:6;;;16151:17;16134:6;;16184:40;;16115:16;;16184:40;16104:128;16041:191;:::o;64310:120::-;64389:33;64399:9;64410:11;64389:9;:33::i;54593:790::-;54748:4;-1:-1:-1;;;;;54769:13:0;;17767:19;:23;54765:611;;54805:72;;-1:-1:-1;;;54805:72:0;;-1:-1:-1;;;;;54805:36:0;;;;;:72;;13405:10;;54856:4;;54862:7;;54871:5;;54805:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54805:72:0;;;;;;;;-1:-1:-1;;54805:72:0;;;;;;;;;;;;:::i;:::-;;;54801:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55051:6;:13;55068:1;55051:18;55047:259;;55101:40;;-1:-1:-1;;;55101:40:0;;;;;;;;;;;55047:259;55256:6;55250:13;55241:6;55237:2;55233:15;55226:38;54801:520;-1:-1:-1;;;;;;54928:55:0;-1:-1:-1;;;54928:55:0;;-1:-1:-1;54921:62:0;;54765:611;-1:-1:-1;55360:4:0;54765:611;54593:790;;;;;;:::o;28508:190::-;28633:4;28686;28657:25;28670:5;28677:4;28657:12;:25::i;:::-;:33;;28508:190;-1:-1:-1;;;;28508:190:0:o;63822:109::-;63882:13;63915:8;63908:15;;;;;:::i;25222:723::-;25278:13;25499:5;25508:1;25499:10;25495:53;;-1:-1:-1;;25526:10:0;;;;;;;;;;;;-1:-1:-1;;;25526:10:0;;;;;25222:723::o;25495:53::-;25573:5;25558:12;25614:78;25621:9;;25614:78;;25647:8;;;;:::i;:::-;;-1:-1:-1;25670:10:0;;-1:-1:-1;25678:2:0;25670:10;;:::i;:::-;;;25614:78;;;25702:19;25734:6;-1:-1:-1;;;;;25724:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25724:17:0;;25702:39;;25752:154;25759:10;;25752:154;;25786:11;25796:1;25786:11;;:::i;:::-;;-1:-1:-1;25855:10:0;25863:2;25855:5;:10;:::i;:::-;25842:24;;:2;:24;:::i;:::-;25829:39;;25812:6;25819;25812:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;25812:56:0;;;;;;;;-1:-1:-1;25883:11:0;25892:2;25883:11;;:::i;:::-;;;25752:154;;40469:207;40530:7;-1:-1:-1;;;;;40554:19:0;;40550:59;;40582:27;;-1:-1:-1;;;40582:27:0;;;;;;;;;;;40550:59;-1:-1:-1;;;;;;40635:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;40635:32:0;;-1:-1:-1;;;;;40635:32:0;;40469:207::o;46778:104::-;46847:27;46857:2;46861:8;46847:27;;;;;;;;;;;;:9;:27::i;29375:296::-;29458:7;29501:4;29458:7;29516:118;29540:5;:12;29536:1;:16;29516:118;;;29589:33;29599:12;29613:5;29619:1;29613:8;;;;;;;;:::i;:::-;;;;;;;29589:9;:33::i;:::-;29574:48;-1:-1:-1;29554:3:0;;;;:::i;:::-;;;;29516:118;;;-1:-1:-1;29651:12:0;29375:296;-1:-1:-1;;;29375:296:0:o;47245:163::-;47368:32;47374:2;47378:8;47388:5;47395:4;47368:5;:32::i;35582:149::-;35645:7;35676:1;35672;:5;:51;;35807:13;35901:15;;;35937:4;35930:15;;;35984:4;35968:21;;35672:51;;;-1:-1:-1;35807:13:0;35901:15;;;35937:4;35930:15;35984:4;35968:21;;;35582:149::o;47667:1412::-;47806:20;47829:13;-1:-1:-1;;;;;47857:16:0;;47853:48;;47882:19;;-1:-1:-1;;;47882:19:0;;;;;;;;;;;47853:48;47916:8;47928:1;47916:13;47912:44;;47938:18;;-1:-1:-1;;;47938:18:0;;;;;;;;;;;47912:44;-1:-1:-1;;;;;48307:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;48366:49:0;;-1:-1:-1;;;;;48307:44:0;;;;;;;48366:49;;;-1:-1:-1;;;;;48307:44:0;;;;;;48366:49;;;;;;;;;;;;;;;;48432:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;48482:66:0;;;;-1:-1:-1;;;48532:15:0;48482:66;;;;;;;;;;;48432:25;;48617:328;48637:8;48633:1;:12;48617:328;;;48676:38;;48701:12;;-1:-1:-1;;;;;48676:38:0;;;48693:1;;48676:38;;48693:1;;48676:38;48737:4;:68;;;;;48746:59;48777:1;48781:2;48785:12;48799:5;48746:22;:59::i;:::-;48745:60;48737:68;48733:164;;;48837:40;;-1:-1:-1;;;48837:40:0;;;;;;;;;;;48733:164;48915:14;;;;;48647:3;48617:328;;;-1:-1:-1;48961:13:0;:28;49011:60;46029:342;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:127::-;2945:10;2940:3;2936:20;2933:1;2926:31;2976:4;2973:1;2966:15;3000:4;2997:1;2990:15;3016:275;3087:2;3081:9;3152:2;3133:13;;-1:-1:-1;;3129:27:1;3117:40;;-1:-1:-1;;;;;3172:34:1;;3208:22;;;3169:62;3166:88;;;3234:18;;:::i;:::-;3270:2;3263:22;3016:275;;-1:-1:-1;3016:275:1:o;3296:407::-;3361:5;-1:-1:-1;;;;;3387:6:1;3384:30;3381:56;;;3417:18;;:::i;:::-;3455:57;3500:2;3479:15;;-1:-1:-1;;3475:29:1;3506:4;3471:40;3455:57;:::i;:::-;3446:66;;3535:6;3528:5;3521:21;3575:3;3566:6;3561:3;3557:16;3554:25;3551:45;;;3592:1;3589;3582:12;3551:45;3641:6;3636:3;3629:4;3622:5;3618:16;3605:43;3695:1;3688:4;3679:6;3672:5;3668:18;3664:29;3657:40;3296:407;;;;;:::o;3708:451::-;3777:6;3830:2;3818:9;3809:7;3805:23;3801:32;3798:52;;;3846:1;3843;3836:12;3798:52;3886:9;3873:23;-1:-1:-1;;;;;3911:6:1;3908:30;3905:50;;;3951:1;3948;3941:12;3905:50;3974:22;;4027:4;4019:13;;4015:27;-1:-1:-1;4005:55:1;;4056:1;4053;4046:12;4005:55;4079:74;4145:7;4140:2;4127:16;4122:2;4118;4114:11;4079:74;:::i;4346:254::-;4414:6;4422;4475:2;4463:9;4454:7;4450:23;4446:32;4443:52;;;4491:1;4488;4481:12;4443:52;4527:9;4514:23;4504:33;;4556:38;4590:2;4579:9;4575:18;4556:38;:::i;:::-;4546:48;;4346:254;;;;;:::o;5051:347::-;5116:6;5124;5177:2;5165:9;5156:7;5152:23;5148:32;5145:52;;;5193:1;5190;5183:12;5145:52;5216:29;5235:9;5216:29;:::i;:::-;5206:39;;5295:2;5284:9;5280:18;5267:32;5342:5;5335:13;5328:21;5321:5;5318:32;5308:60;;5364:1;5361;5354:12;5308:60;5387:5;5377:15;;;5051:347;;;;;:::o;5588:667::-;5683:6;5691;5699;5707;5760:3;5748:9;5739:7;5735:23;5731:33;5728:53;;;5777:1;5774;5767:12;5728:53;5800:29;5819:9;5800:29;:::i;:::-;5790:39;;5848:38;5882:2;5871:9;5867:18;5848:38;:::i;:::-;5838:48;;5933:2;5922:9;5918:18;5905:32;5895:42;;5988:2;5977:9;5973:18;5960:32;-1:-1:-1;;;;;6007:6:1;6004:30;6001:50;;;6047:1;6044;6037:12;6001:50;6070:22;;6123:4;6115:13;;6111:27;-1:-1:-1;6101:55:1;;6152:1;6149;6142:12;6101:55;6175:74;6241:7;6236:2;6223:16;6218:2;6214;6210:11;6175:74;:::i;:::-;6165:84;;;5588:667;;;;;;;:::o;6260:183::-;6320:4;-1:-1:-1;;;;;6345:6:1;6342:30;6339:56;;;6375:18;;:::i;:::-;-1:-1:-1;6420:1:1;6416:14;6432:4;6412:25;;6260:183::o;6448:959::-;6541:6;6549;6602:2;6590:9;6581:7;6577:23;6573:32;6570:52;;;6618:1;6615;6608:12;6570:52;6654:9;6641:23;6631:33;;6683:2;6736;6725:9;6721:18;6708:32;-1:-1:-1;;;;;6755:6:1;6752:30;6749:50;;;6795:1;6792;6785:12;6749:50;6818:22;;6871:4;6863:13;;6859:27;-1:-1:-1;6849:55:1;;6900:1;6897;6890:12;6849:55;6936:2;6923:16;6959:60;6975:43;7015:2;6975:43;:::i;:::-;6959:60;:::i;:::-;7053:15;;;7135:1;7131:10;;;;7123:19;;7119:28;;;7084:12;;;;7159:19;;;7156:39;;;7191:1;7188;7181:12;7156:39;7215:11;;;;7235:142;7251:6;7246:3;7243:15;7235:142;;;7317:17;;7305:30;;7268:12;;;;7355;;;;7235:142;;;7396:5;7386:15;;;;;;;6448:959;;;;;:::o;7412:967::-;7505:6;7513;7566:2;7554:9;7545:7;7541:23;7537:32;7534:52;;;7582:1;7579;7572:12;7534:52;7622:9;7609:23;-1:-1:-1;;;;;7647:6:1;7644:30;7641:50;;;7687:1;7684;7677:12;7641:50;7710:22;;7763:4;7755:13;;7751:27;-1:-1:-1;7741:55:1;;7792:1;7789;7782:12;7741:55;7828:2;7815:16;7850:4;7874:60;7890:43;7930:2;7890:43;:::i;7874:60::-;7968:15;;;8050:1;8046:10;;;;8038:19;;8034:28;;;7999:12;;;;8074:19;;;8071:39;;;8106:1;8103;8096:12;8071:39;8130:11;;;;8150:148;8166:6;8161:3;8158:15;8150:148;;;8232:23;8251:3;8232:23;:::i;:::-;8220:36;;8183:12;;;;8276;;;;8150:148;;;8317:5;8354:18;;;;8341:32;;-1:-1:-1;;;;;;7412:967:1:o;8384:260::-;8452:6;8460;8513:2;8501:9;8492:7;8488:23;8484:32;8481:52;;;8529:1;8526;8519:12;8481:52;8552:29;8571:9;8552:29;:::i;:::-;8542:39;;8600:38;8634:2;8623:9;8619:18;8600:38;:::i;8649:322::-;8726:6;8734;8742;8795:2;8783:9;8774:7;8770:23;8766:32;8763:52;;;8811:1;8808;8801:12;8763:52;8834:29;8853:9;8834:29;:::i;:::-;8824:39;8910:2;8895:18;;8882:32;;-1:-1:-1;8961:2:1;8946:18;;;8933:32;;8649:322;-1:-1:-1;;;8649:322:1:o;8976:820::-;9089:6;9097;9105;9113;9121;9174:3;9162:9;9153:7;9149:23;9145:33;9142:53;;;9191:1;9188;9181:12;9142:53;9227:9;9214:23;9204:33;;9284:2;9273:9;9269:18;9256:32;9246:42;;9335:2;9324:9;9320:18;9307:32;9297:42;;9390:2;9379:9;9375:18;9362:32;-1:-1:-1;;;;;9454:2:1;9446:6;9443:14;9440:34;;;9470:1;9467;9460:12;9440:34;9508:6;9497:9;9493:22;9483:32;;9553:7;9546:4;9542:2;9538:13;9534:27;9524:55;;9575:1;9572;9565:12;9524:55;9615:2;9602:16;9641:2;9633:6;9630:14;9627:34;;;9657:1;9654;9647:12;9627:34;9710:7;9705:2;9695:6;9692:1;9688:14;9684:2;9680:23;9676:32;9673:45;9670:65;;;9731:1;9728;9721:12;9670:65;8976:820;;;;-1:-1:-1;8976:820:1;;-1:-1:-1;9762:2:1;9754:11;;9784:6;8976:820;-1:-1:-1;;;8976:820:1:o;9801:380::-;9880:1;9876:12;;;;9923;;;9944:61;;9998:4;9990:6;9986:17;9976:27;;9944:61;10051:2;10043:6;10040:14;10020:18;10017:38;10014:161;;10097:10;10092:3;10088:20;10085:1;10078:31;10132:4;10129:1;10122:15;10160:4;10157:1;10150:15;10014:161;;9801:380;;;:::o;10186:127::-;10247:10;10242:3;10238:20;10235:1;10228:31;10278:4;10275:1;10268:15;10302:4;10299:1;10292:15;10318:127;10379:10;10374:3;10370:20;10367:1;10360:31;10410:4;10407:1;10400:15;10434:4;10431:1;10424:15;10450:120;10490:1;10516;10506:35;;10521:18;;:::i;:::-;-1:-1:-1;10555:9:1;;10450:120::o;10575:128::-;10642:9;;;10663:11;;;10660:37;;;10677:18;;:::i;10834:545::-;10936:2;10931:3;10928:11;10925:448;;;10972:1;10997:5;10993:2;10986:17;11042:4;11038:2;11028:19;11112:2;11100:10;11096:19;11093:1;11089:27;11083:4;11079:38;11148:4;11136:10;11133:20;11130:47;;;-1:-1:-1;11171:4:1;11130:47;11226:2;11221:3;11217:12;11214:1;11210:20;11204:4;11200:31;11190:41;;11281:82;11299:2;11292:5;11289:13;11281:82;;;11344:17;;;11325:1;11314:13;11281:82;;11555:1352;11681:3;11675:10;-1:-1:-1;;;;;11700:6:1;11697:30;11694:56;;;11730:18;;:::i;:::-;11759:97;11849:6;11809:38;11841:4;11835:11;11809:38;:::i;:::-;11803:4;11759:97;:::i;:::-;11911:4;;11975:2;11964:14;;11992:1;11987:663;;;;12694:1;12711:6;12708:89;;;-1:-1:-1;12763:19:1;;;12757:26;12708:89;-1:-1:-1;;11512:1:1;11508:11;;;11504:24;11500:29;11490:40;11536:1;11532:11;;;11487:57;12810:81;;11957:944;;11987:663;10781:1;10774:14;;;10818:4;10805:18;;-1:-1:-1;;12023:20:1;;;12141:236;12155:7;12152:1;12149:14;12141:236;;;12244:19;;;12238:26;12223:42;;12336:27;;;;12304:1;12292:14;;;;12171:19;;12141:236;;;12145:3;12405:6;12396:7;12393:19;12390:201;;;12466:19;;;12460:26;-1:-1:-1;;12549:1:1;12545:14;;;12561:3;12541:24;12537:37;12533:42;12518:58;12503:74;;12390:201;-1:-1:-1;;;;;12637:1:1;12621:14;;;12617:22;12604:36;;-1:-1:-1;11555:1352:1:o;12912:125::-;12977:9;;;12998:10;;;12995:36;;;13011:18;;:::i;13042:342::-;13244:2;13226:21;;;13283:2;13263:18;;;13256:30;-1:-1:-1;;;13317:2:1;13302:18;;13295:48;13375:2;13360:18;;13042:342::o;13743:168::-;13783:7;13849:1;13845;13841:6;13837:14;13834:1;13831:21;13826:1;13819:9;13812:17;13808:45;13805:71;;;13856:18;;:::i;:::-;-1:-1:-1;13896:9:1;;13743:168::o;14259:127::-;14320:10;14315:3;14311:20;14308:1;14301:31;14351:4;14348:1;14341:15;14375:4;14372:1;14365:15;14391:135;14430:3;14451:17;;;14448:43;;14471:18;;:::i;:::-;-1:-1:-1;14518:1:1;14507:13;;14391:135::o;14947:496::-;15126:3;15164:6;15158:13;15180:66;15239:6;15234:3;15227:4;15219:6;15215:17;15180:66;:::i;:::-;15309:13;;15268:16;;;;15331:70;15309:13;15268:16;15378:4;15366:17;;15331:70;:::i;:::-;15417:20;;14947:496;-1:-1:-1;;;;14947:496:1:o;16918:347::-;17120:2;17102:21;;;17159:2;17139:18;;;17132:30;17198:25;17193:2;17178:18;;17171:53;17256:2;17241:18;;16918:347::o;17631:489::-;-1:-1:-1;;;;;17900:15:1;;;17882:34;;17952:15;;17947:2;17932:18;;17925:43;17999:2;17984:18;;17977:34;;;18047:3;18042:2;18027:18;;18020:31;;;17825:4;;18068:46;;18094:19;;18086:6;18068:46;:::i;:::-;18060:54;17631:489;-1:-1:-1;;;;;;17631:489:1:o;18125:249::-;18194:6;18247:2;18235:9;18226:7;18222:23;18218:32;18215:52;;;18263:1;18260;18253:12;18215:52;18295:9;18289:16;18314:30;18338:5;18314:30;:::i;18379:112::-;18411:1;18437;18427:35;;18442:18;;:::i;:::-;-1:-1:-1;18476:9:1;;18379:112::o

Swarm Source

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