ETH Price: $3,239.12 (+2.15%)
Gas: 1 Gwei

Token

LilBratApesOfficial (LBA)
 

Overview

Max Total Supply

10,000 LBA

Holders

338

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
xpcrack.eth
Balance
20 LBA
0xd7732d59de7d63dfac5e99bcdcb50a979b7744e9
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LilBratApesOfficial

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 tokenId);

    /**
     * @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/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/LowerGas.sol


// Creator: Chiru Labs


pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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.
 */
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 Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

pragma solidity ^0.8.0;










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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.01 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 20;
  uint256 public nftPerAddressLimitWl = 20;

  bool public paused = false;
  bool public revealed = true;
  bool public onlyWhitelisted = false;

  bytes32 public whitelistMerkleRoot;
  mapping(address => uint256) public addressMintedBalance;


  constructor() ERC721A("LilBratApesOfficial", "LBA", maxMintAmountPerTx) {
    setHiddenMetadataUri("ipfs://QmdT9TGkhL4gqEpNt6dBmCnkb5ghwrKKRW2V1UenjofPvi/hidden.json");
  }

  /**
    * @dev validates merkleProof
    */
  modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
    require(
        MerkleProof.verify(
            merkleProof,
            root,
            keccak256(abi.encodePacked(msg.sender))
        ),
        "Address does not exist in list"
    );
    _;
  }

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

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(!onlyWhitelisted, "Presale is on");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _safeMint(msg.sender, _mintAmount);
  }

  function mintWhitelist(bytes32[] calldata merkleProof, uint256 _mintAmount) public payable isValidMerkleProof(merkleProof, whitelistMerkleRoot){
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(!paused, "The contract is paused!");
    require(onlyWhitelisted, "Presale has ended");
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimitWl, "max NFT per address exceeded");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    
    addressMintedBalance[msg.sender]+=_mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_to, _mintAmount);
  }

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

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

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

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

  function setWhitelistMerkleRoot(bytes32 merkleRoot) external onlyOwner {
    whitelistMerkleRoot = merkleRoot;
  }

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

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

  function setNftPerAddressLimitWl(uint256 _limit) public onlyOwner {
    nftPerAddressLimitWl = _limit;
  }

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600080805560c0604081905260a08290526200001f916008919062000271565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004e9160099162000271565b50662386f26fc10000600b55612710600c556014600d819055600e55600f805462ffffff19166101001790553480156200008757600080fd5b506040518060400160405280601381526020017f4c696c42726174417065734f6666696369616c00000000000000000000000000815250604051806040016040528060038152602001624c424160e81b815250600d5460008111620001435760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b82516200015890600190602086019062000271565b5081516200016e90600290602085019062000271565b506080525062000180905033620001aa565b620001a46040518060800160405280604181526020016200304460419139620001fc565b62000354565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620002585760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200013a565b80516200026d90600a90602084019062000271565b5050565b8280546200027f9062000317565b90600052602060002090601f016020900481019282620002a35760008555620002ee565b82601f10620002be57805160ff1916838001178555620002ee565b82800160010185558215620002ee579182015b82811115620002ee578251825591602001919060010190620002d1565b50620002fc92915062000300565b5090565b5b80821115620002fc576000815560010162000301565b600181811c908216806200032c57607f821691505b602082108114156200034e57634e487b7160e01b600052602260045260246000fd5b50919050565b608051612cc66200037e60003960008181611dc801528181611df201526122300152612cc66000f3fe6080604052600436106102725760003560e01c80635c975abb1161014f578063a22cb465116100c1578063c87b56dd1161007a578063c87b56dd14610718578063d5abeb0114610738578063e0a808531461074e578063e2dfc0391461076e578063e985e9c51461078e578063f2fde38b146107d757600080fd5b8063a22cb4651461067a578063a45ba8e71461069a578063a6d612f9146106af578063aa98e0c6146106c2578063b88d4fde146106d8578063bd32fb66146106f857600080fd5b80637ec4a659116101135780637ec4a659146105de5780638da5cb5b146105fe57806394354fd01461061c57806395d89b41146106325780639c70b51214610647578063a0712d681461066757600080fd5b80635c975abb1461055a57806362b99ad4146105745780636352211e1461058957806370a08231146105a9578063715018a6146105c957600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461049957806344a0d68a146104c65780634f6ccce7146104e65780634fdd43cb1461050657806351830227146105265780635503a0e81461054557600080fd5b80632f745c59146104045780633c952764146104245780633ccfd60b14610444578063408cbf941461045957806342842e0e1461047957600080fd5b806316ba10e01161023a57806316ba10e01461034c57806316c38b3c1461036c57806318160ddd1461038c57806318cae269146103a15780632063064e146103ce57806323b872dd146103e457600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806313faede614610328575b600080fd5b34801561028357600080fd5b50610297610292366004612859565b6107f7565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610864565b6040516102a39190612a4d565b3480156102da57600080fd5b506102ee6102e9366004612840565b6108f6565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004612780565b610986565b005b34801561033457600080fd5b5061033e600b5481565b6040519081526020016102a3565b34801561035857600080fd5b50610326610367366004612893565b610a9e565b34801561037857600080fd5b50610326610387366004612825565b610adf565b34801561039857600080fd5b5060005461033e565b3480156103ad57600080fd5b5061033e6103bc366004612650565b60116020526000908152604090205481565b3480156103da57600080fd5b5061033e600e5481565b3480156103f057600080fd5b506103266103ff36600461269e565b610b1c565b34801561041057600080fd5b5061033e61041f366004612780565b610b27565b34801561043057600080fd5b5061032661043f366004612825565b610c95565b34801561045057600080fd5b50610326610cdb565b34801561046557600080fd5b50610326610474366004612780565b610d79565b34801561048557600080fd5b5061032661049436600461269e565b610e59565b3480156104a557600080fd5b506104b96104b4366004612650565b610e74565b6040516102a39190612a09565b3480156104d257600080fd5b506103266104e1366004612840565b610f54565b3480156104f257600080fd5b5061033e610501366004612840565b610f83565b34801561051257600080fd5b50610326610521366004612893565b610fe5565b34801561053257600080fd5b50600f5461029790610100900460ff1681565b34801561055157600080fd5b506102c1611022565b34801561056657600080fd5b50600f546102979060ff1681565b34801561058057600080fd5b506102c16110b0565b34801561059557600080fd5b506102ee6105a4366004612840565b6110bd565b3480156105b557600080fd5b5061033e6105c4366004612650565b6110cf565b3480156105d557600080fd5b50610326611160565b3480156105ea57600080fd5b506103266105f9366004612893565b611196565b34801561060a57600080fd5b506007546001600160a01b03166102ee565b34801561062857600080fd5b5061033e600d5481565b34801561063e57600080fd5b506102c16111d3565b34801561065357600080fd5b50600f546102979062010000900460ff1681565b610326610675366004612840565b6111e2565b34801561068657600080fd5b50610326610695366004612756565b611381565b3480156106a657600080fd5b506102c1611446565b6103266106bd3660046127aa565b611453565b3480156106ce57600080fd5b5061033e60105481565b3480156106e457600080fd5b506103266106f33660046126da565b6116a5565b34801561070457600080fd5b50610326610713366004612840565b6116de565b34801561072457600080fd5b506102c1610733366004612840565b61170d565b34801561074457600080fd5b5061033e600c5481565b34801561075a57600080fd5b50610326610769366004612825565b61187e565b34801561077a57600080fd5b50610326610789366004612840565b6118c2565b34801561079a57600080fd5b506102976107a936600461266b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107e357600080fd5b506103266107f2366004612650565b6118f1565b60006001600160e01b031982166380ac58cd60e01b148061082857506001600160e01b03198216635b5e139f60e01b145b8061084357506001600160e01b0319821663780e9d6360e01b145b8061085e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461087390612bb8565b80601f016020809104026020016040519081016040528092919081815260200182805461089f90612bb8565b80156108ec5780601f106108c1576101008083540402835291602001916108ec565b820191906000526020600020905b8154815290600101906020018083116108cf57829003601f168201915b5050505050905090565b6000610903826000541190565b61096a5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610991826110bd565b9050806001600160a01b0316836001600160a01b03161415610a005760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610961565b336001600160a01b0382161480610a1c5750610a1c81336107a9565b610a8e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610961565b610a99838383611989565b505050565b6007546001600160a01b03163314610ac85760405162461bcd60e51b815260040161096190612a60565b8051610adb90600990602084019061251e565b5050565b6007546001600160a01b03163314610b095760405162461bcd60e51b815260040161096190612a60565b600f805460ff1916911515919091179055565b610a998383836119e5565b6000610b32836110cf565b8210610b8b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610961565b600080549080805b83811015610c35576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610be657805192505b876001600160a01b0316836001600160a01b03161415610c225786841415610c145750935061085e92505050565b83610c1e81612bf3565b9450505b5080610c2d81612bf3565b915050610b93565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610961565b6007546001600160a01b03163314610cbf5760405162461bcd60e51b815260040161096190612a60565b600f8054911515620100000262ff000019909216919091179055565b6007546001600160a01b03163314610d055760405162461bcd60e51b815260040161096190612a60565b6000610d196007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d63576040519150601f19603f3d011682016040523d82523d6000602084013e610d68565b606091505b5050905080610d7657600080fd5b50565b80600081118015610d8c5750600d548111155b610dcf5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610961565b600c5481600054610de09190612b13565b1115610e255760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610961565b6007546001600160a01b03163314610e4f5760405162461bcd60e51b815260040161096190612a60565b610a998383611d2c565b610a99838383604051806020016040528060008152506116a5565b60606000610e81836110cf565b905060008167ffffffffffffffff811115610e9e57610e9e612c64565b604051908082528060200260200182016040528015610ec7578160200160208202803683370190505b5090506000805b8381108015610edf5750600c548211155b15610f4a576000610eef836110bd565b9050866001600160a01b0316816001600160a01b03161415610f375782848381518110610f1e57610f1e612c4e565b602090810291909101015281610f3381612bf3565b9250505b82610f4181612bf3565b93505050610ece565b5090949350505050565b6007546001600160a01b03163314610f7e5760405162461bcd60e51b815260040161096190612a60565b600b55565b600080548210610fe15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610961565b5090565b6007546001600160a01b0316331461100f5760405162461bcd60e51b815260040161096190612a60565b8051610adb90600a90602084019061251e565b6009805461102f90612bb8565b80601f016020809104026020016040519081016040528092919081815260200182805461105b90612bb8565b80156110a85780601f1061107d576101008083540402835291602001916110a8565b820191906000526020600020905b81548152906001019060200180831161108b57829003601f168201915b505050505081565b6008805461102f90612bb8565b60006110c882611d46565b5192915050565b60006001600160a01b03821661113b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610961565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331461118a5760405162461bcd60e51b815260040161096190612a60565b6111946000611ef0565b565b6007546001600160a01b031633146111c05760405162461bcd60e51b815260040161096190612a60565b8051610adb90600890602084019061251e565b60606002805461087390612bb8565b806000811180156111f55750600d548111155b6112385760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610961565b600c54816000546112499190612b13565b111561128e5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610961565b600f5460ff16156112db5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610961565b600f5462010000900460ff16156113245760405162461bcd60e51b815260206004820152600d60248201526c283932b9b0b6329034b99037b760991b6044820152606401610961565b81600b546113329190612b3f565b3410156113775760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610961565b610adb3383611d2c565b6001600160a01b0382163314156113da5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610961565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461102f90612bb8565b82826010546114ca838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120611f42565b6115165760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610961565b33600090815260116020526040902054600f5460ff16156115735760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610961565b600f5462010000900460ff166115bf5760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b6044820152606401610961565b600e546115cc8683612b13565b111561161a5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610961565b84600b546116289190612b3f565b34101561166d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610961565b336000908152601160205260408120805487929061168c908490612b13565b9091555061169c90503386611d2c565b50505050505050565b6116b08484846119e5565b6116bc84848484611f58565b6116d85760405162461bcd60e51b815260040161096190612a95565b50505050565b6007546001600160a01b031633146117085760405162461bcd60e51b815260040161096190612a60565b601055565b606061171a826000541190565b61177e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610961565b600f54610100900460ff1661181f57600a805461179a90612bb8565b80601f01602080910402602001604051908101604052809291908181526020018280546117c690612bb8565b80156118135780601f106117e857610100808354040283529160200191611813565b820191906000526020600020905b8154815290600101906020018083116117f657829003601f168201915b50505050509050919050565b6000611829612066565b905060008151116118495760405180602001604052806000815250611877565b8061185384612075565b600960405160200161186793929190612908565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146118a85760405162461bcd60e51b815260040161096190612a60565b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146118ec5760405162461bcd60e51b815260040161096190612a60565b600e55565b6007546001600160a01b0316331461191b5760405162461bcd60e51b815260040161096190612a60565b6001600160a01b0381166119805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610961565b610d7681611ef0565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119f082611d46565b80519091506000906001600160a01b0316336001600160a01b03161480611a27575033611a1c846108f6565b6001600160a01b0316145b80611a3957508151611a3990336107a9565b905080611aa35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610961565b846001600160a01b031682600001516001600160a01b031614611b175760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610961565b6001600160a01b038416611b7b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610961565b611b8b6000848460000151611989565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611c50908590612b13565b6000818152600360205260409020549091506001600160a01b0316611ce257611c7a816000541190565b15611ce25760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610adb828260405180602001604052806000815250612173565b6040805180820190915260008082526020820152611d65826000541190565b611dc45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610961565b60007f00000000000000000000000000000000000000000000000000000000000000008310611e2557611e177f000000000000000000000000000000000000000000000000000000000000000084612b5e565b611e22906001612b13565b90505b825b818110611e8f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e7c57949350505050565b5080611e8781612ba1565b915050611e27565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610961565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611f4f85846124aa565b14949350505050565b60006001600160a01b0384163b1561205a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f9c9033908990889088906004016129cc565b602060405180830381600087803b158015611fb657600080fd5b505af1925050508015611fe6575060408051601f3d908101601f19168201909252611fe391810190612876565b60015b612040573d808015612014576040519150601f19603f3d011682016040523d82523d6000602084013e612019565b606091505b5080516120385760405162461bcd60e51b815260040161096190612a95565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061205e565b5060015b949350505050565b60606008805461087390612bb8565b6060816120995750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120c357806120ad81612bf3565b91506120bc9050600a83612b2b565b915061209d565b60008167ffffffffffffffff8111156120de576120de612c64565b6040519080825280601f01601f191660200182016040528015612108576020820181803683370190505b5090505b841561205e5761211d600183612b5e565b915061212a600a86612c0e565b612135906030612b13565b60f81b81838151811061214a5761214a612c4e565b60200101906001600160f81b031916908160001a90535061216c600a86612b2b565b945061210c565b6000546001600160a01b0384166121d65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610961565b6121e1816000541190565b1561222e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610961565b7f00000000000000000000000000000000000000000000000000000000000000008311156122a95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610961565b600083116123055760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610961565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612361908790612ae8565b6001600160801b0316815260200185836020015161237f9190612ae8565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561249f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124636000888488611f58565b61247f5760405162461bcd60e51b815260040161096190612a95565b8161248981612bf3565b925050808061249790612bf3565b915050612416565b506000819055611d24565b600081815b84518110156125165760008582815181106124cc576124cc612c4e565b602002602001015190508083116124f25760008381526020829052604090209250612503565b600081815260208490526040902092505b508061250e81612bf3565b9150506124af565b509392505050565b82805461252a90612bb8565b90600052602060002090601f01602090048101928261254c5760008555612592565b82601f1061256557805160ff1916838001178555612592565b82800160010185558215612592579182015b82811115612592578251825591602001919060010190612577565b50610fe19291505b80821115610fe1576000815560010161259a565b600067ffffffffffffffff808411156125c9576125c9612c64565b604051601f8501601f19908116603f011681019082821181831017156125f1576125f1612c64565b8160405280935085815286868601111561260a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461263b57600080fd5b919050565b8035801515811461263b57600080fd5b60006020828403121561266257600080fd5b61187782612624565b6000806040838503121561267e57600080fd5b61268783612624565b915061269560208401612624565b90509250929050565b6000806000606084860312156126b357600080fd5b6126bc84612624565b92506126ca60208501612624565b9150604084013590509250925092565b600080600080608085870312156126f057600080fd5b6126f985612624565b935061270760208601612624565b925060408501359150606085013567ffffffffffffffff81111561272a57600080fd5b8501601f8101871361273b57600080fd5b61274a878235602084016125ae565b91505092959194509250565b6000806040838503121561276957600080fd5b61277283612624565b915061269560208401612640565b6000806040838503121561279357600080fd5b61279c83612624565b946020939093013593505050565b6000806000604084860312156127bf57600080fd5b833567ffffffffffffffff808211156127d757600080fd5b818601915086601f8301126127eb57600080fd5b8135818111156127fa57600080fd5b8760208260051b850101111561280f57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561283757600080fd5b61187782612640565b60006020828403121561285257600080fd5b5035919050565b60006020828403121561286b57600080fd5b813561187781612c7a565b60006020828403121561288857600080fd5b815161187781612c7a565b6000602082840312156128a557600080fd5b813567ffffffffffffffff8111156128bc57600080fd5b8201601f810184136128cd57600080fd5b61205e848235602084016125ae565b600081518084526128f4816020860160208601612b75565b601f01601f19169290920160200192915050565b60008451602061291b8285838a01612b75565b85519184019161292e8184848a01612b75565b8554920191600090600181811c908083168061294b57607f831692505b85831081141561296957634e487b7160e01b85526022600452602485fd5b80801561297d576001811461298e576129bb565b60ff198516885283880195506129bb565b60008b81526020902060005b858110156129b35781548a82015290840190880161299a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129ff908301846128dc565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612a4157835183529284019291840191600101612a25565b50909695505050505050565b60208152600061187760208301846128dc565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612b0a57612b0a612c22565b01949350505050565b60008219821115612b2657612b26612c22565b500190565b600082612b3a57612b3a612c38565b500490565b6000816000190483118215151615612b5957612b59612c22565b500290565b600082821015612b7057612b70612c22565b500390565b60005b83811015612b90578181015183820152602001612b78565b838111156116d85750506000910152565b600081612bb057612bb0612c22565b506000190190565b600181811c90821680612bcc57607f821691505b60208210811415612bed57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c0757612c07612c22565b5060010190565b600082612c1d57612c1d612c38565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d7657600080fdfea2646970667358221220e851ec3a71c6f3c783b4620d8f64c883df46f87736924ee4785296274f85a58a64736f6c63430008070033697066733a2f2f516d64543954476b684c34677145704e743664426d436e6b6235676877724b4b525732563155656e6a6f665076692f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102725760003560e01c80635c975abb1161014f578063a22cb465116100c1578063c87b56dd1161007a578063c87b56dd14610718578063d5abeb0114610738578063e0a808531461074e578063e2dfc0391461076e578063e985e9c51461078e578063f2fde38b146107d757600080fd5b8063a22cb4651461067a578063a45ba8e71461069a578063a6d612f9146106af578063aa98e0c6146106c2578063b88d4fde146106d8578063bd32fb66146106f857600080fd5b80637ec4a659116101135780637ec4a659146105de5780638da5cb5b146105fe57806394354fd01461061c57806395d89b41146106325780639c70b51214610647578063a0712d681461066757600080fd5b80635c975abb1461055a57806362b99ad4146105745780636352211e1461058957806370a08231146105a9578063715018a6146105c957600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461049957806344a0d68a146104c65780634f6ccce7146104e65780634fdd43cb1461050657806351830227146105265780635503a0e81461054557600080fd5b80632f745c59146104045780633c952764146104245780633ccfd60b14610444578063408cbf941461045957806342842e0e1461047957600080fd5b806316ba10e01161023a57806316ba10e01461034c57806316c38b3c1461036c57806318160ddd1461038c57806318cae269146103a15780632063064e146103ce57806323b872dd146103e457600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806313faede614610328575b600080fd5b34801561028357600080fd5b50610297610292366004612859565b6107f7565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610864565b6040516102a39190612a4d565b3480156102da57600080fd5b506102ee6102e9366004612840565b6108f6565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004612780565b610986565b005b34801561033457600080fd5b5061033e600b5481565b6040519081526020016102a3565b34801561035857600080fd5b50610326610367366004612893565b610a9e565b34801561037857600080fd5b50610326610387366004612825565b610adf565b34801561039857600080fd5b5060005461033e565b3480156103ad57600080fd5b5061033e6103bc366004612650565b60116020526000908152604090205481565b3480156103da57600080fd5b5061033e600e5481565b3480156103f057600080fd5b506103266103ff36600461269e565b610b1c565b34801561041057600080fd5b5061033e61041f366004612780565b610b27565b34801561043057600080fd5b5061032661043f366004612825565b610c95565b34801561045057600080fd5b50610326610cdb565b34801561046557600080fd5b50610326610474366004612780565b610d79565b34801561048557600080fd5b5061032661049436600461269e565b610e59565b3480156104a557600080fd5b506104b96104b4366004612650565b610e74565b6040516102a39190612a09565b3480156104d257600080fd5b506103266104e1366004612840565b610f54565b3480156104f257600080fd5b5061033e610501366004612840565b610f83565b34801561051257600080fd5b50610326610521366004612893565b610fe5565b34801561053257600080fd5b50600f5461029790610100900460ff1681565b34801561055157600080fd5b506102c1611022565b34801561056657600080fd5b50600f546102979060ff1681565b34801561058057600080fd5b506102c16110b0565b34801561059557600080fd5b506102ee6105a4366004612840565b6110bd565b3480156105b557600080fd5b5061033e6105c4366004612650565b6110cf565b3480156105d557600080fd5b50610326611160565b3480156105ea57600080fd5b506103266105f9366004612893565b611196565b34801561060a57600080fd5b506007546001600160a01b03166102ee565b34801561062857600080fd5b5061033e600d5481565b34801561063e57600080fd5b506102c16111d3565b34801561065357600080fd5b50600f546102979062010000900460ff1681565b610326610675366004612840565b6111e2565b34801561068657600080fd5b50610326610695366004612756565b611381565b3480156106a657600080fd5b506102c1611446565b6103266106bd3660046127aa565b611453565b3480156106ce57600080fd5b5061033e60105481565b3480156106e457600080fd5b506103266106f33660046126da565b6116a5565b34801561070457600080fd5b50610326610713366004612840565b6116de565b34801561072457600080fd5b506102c1610733366004612840565b61170d565b34801561074457600080fd5b5061033e600c5481565b34801561075a57600080fd5b50610326610769366004612825565b61187e565b34801561077a57600080fd5b50610326610789366004612840565b6118c2565b34801561079a57600080fd5b506102976107a936600461266b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107e357600080fd5b506103266107f2366004612650565b6118f1565b60006001600160e01b031982166380ac58cd60e01b148061082857506001600160e01b03198216635b5e139f60e01b145b8061084357506001600160e01b0319821663780e9d6360e01b145b8061085e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461087390612bb8565b80601f016020809104026020016040519081016040528092919081815260200182805461089f90612bb8565b80156108ec5780601f106108c1576101008083540402835291602001916108ec565b820191906000526020600020905b8154815290600101906020018083116108cf57829003601f168201915b5050505050905090565b6000610903826000541190565b61096a5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610991826110bd565b9050806001600160a01b0316836001600160a01b03161415610a005760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610961565b336001600160a01b0382161480610a1c5750610a1c81336107a9565b610a8e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610961565b610a99838383611989565b505050565b6007546001600160a01b03163314610ac85760405162461bcd60e51b815260040161096190612a60565b8051610adb90600990602084019061251e565b5050565b6007546001600160a01b03163314610b095760405162461bcd60e51b815260040161096190612a60565b600f805460ff1916911515919091179055565b610a998383836119e5565b6000610b32836110cf565b8210610b8b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610961565b600080549080805b83811015610c35576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610be657805192505b876001600160a01b0316836001600160a01b03161415610c225786841415610c145750935061085e92505050565b83610c1e81612bf3565b9450505b5080610c2d81612bf3565b915050610b93565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610961565b6007546001600160a01b03163314610cbf5760405162461bcd60e51b815260040161096190612a60565b600f8054911515620100000262ff000019909216919091179055565b6007546001600160a01b03163314610d055760405162461bcd60e51b815260040161096190612a60565b6000610d196007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d63576040519150601f19603f3d011682016040523d82523d6000602084013e610d68565b606091505b5050905080610d7657600080fd5b50565b80600081118015610d8c5750600d548111155b610dcf5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610961565b600c5481600054610de09190612b13565b1115610e255760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610961565b6007546001600160a01b03163314610e4f5760405162461bcd60e51b815260040161096190612a60565b610a998383611d2c565b610a99838383604051806020016040528060008152506116a5565b60606000610e81836110cf565b905060008167ffffffffffffffff811115610e9e57610e9e612c64565b604051908082528060200260200182016040528015610ec7578160200160208202803683370190505b5090506000805b8381108015610edf5750600c548211155b15610f4a576000610eef836110bd565b9050866001600160a01b0316816001600160a01b03161415610f375782848381518110610f1e57610f1e612c4e565b602090810291909101015281610f3381612bf3565b9250505b82610f4181612bf3565b93505050610ece565b5090949350505050565b6007546001600160a01b03163314610f7e5760405162461bcd60e51b815260040161096190612a60565b600b55565b600080548210610fe15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610961565b5090565b6007546001600160a01b0316331461100f5760405162461bcd60e51b815260040161096190612a60565b8051610adb90600a90602084019061251e565b6009805461102f90612bb8565b80601f016020809104026020016040519081016040528092919081815260200182805461105b90612bb8565b80156110a85780601f1061107d576101008083540402835291602001916110a8565b820191906000526020600020905b81548152906001019060200180831161108b57829003601f168201915b505050505081565b6008805461102f90612bb8565b60006110c882611d46565b5192915050565b60006001600160a01b03821661113b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610961565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331461118a5760405162461bcd60e51b815260040161096190612a60565b6111946000611ef0565b565b6007546001600160a01b031633146111c05760405162461bcd60e51b815260040161096190612a60565b8051610adb90600890602084019061251e565b60606002805461087390612bb8565b806000811180156111f55750600d548111155b6112385760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610961565b600c54816000546112499190612b13565b111561128e5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610961565b600f5460ff16156112db5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610961565b600f5462010000900460ff16156113245760405162461bcd60e51b815260206004820152600d60248201526c283932b9b0b6329034b99037b760991b6044820152606401610961565b81600b546113329190612b3f565b3410156113775760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610961565b610adb3383611d2c565b6001600160a01b0382163314156113da5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610961565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461102f90612bb8565b82826010546114ca838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120611f42565b6115165760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610961565b33600090815260116020526040902054600f5460ff16156115735760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610961565b600f5462010000900460ff166115bf5760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b6044820152606401610961565b600e546115cc8683612b13565b111561161a5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610961565b84600b546116289190612b3f565b34101561166d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610961565b336000908152601160205260408120805487929061168c908490612b13565b9091555061169c90503386611d2c565b50505050505050565b6116b08484846119e5565b6116bc84848484611f58565b6116d85760405162461bcd60e51b815260040161096190612a95565b50505050565b6007546001600160a01b031633146117085760405162461bcd60e51b815260040161096190612a60565b601055565b606061171a826000541190565b61177e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610961565b600f54610100900460ff1661181f57600a805461179a90612bb8565b80601f01602080910402602001604051908101604052809291908181526020018280546117c690612bb8565b80156118135780601f106117e857610100808354040283529160200191611813565b820191906000526020600020905b8154815290600101906020018083116117f657829003601f168201915b50505050509050919050565b6000611829612066565b905060008151116118495760405180602001604052806000815250611877565b8061185384612075565b600960405160200161186793929190612908565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146118a85760405162461bcd60e51b815260040161096190612a60565b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146118ec5760405162461bcd60e51b815260040161096190612a60565b600e55565b6007546001600160a01b0316331461191b5760405162461bcd60e51b815260040161096190612a60565b6001600160a01b0381166119805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610961565b610d7681611ef0565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119f082611d46565b80519091506000906001600160a01b0316336001600160a01b03161480611a27575033611a1c846108f6565b6001600160a01b0316145b80611a3957508151611a3990336107a9565b905080611aa35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610961565b846001600160a01b031682600001516001600160a01b031614611b175760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610961565b6001600160a01b038416611b7b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610961565b611b8b6000848460000151611989565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611c50908590612b13565b6000818152600360205260409020549091506001600160a01b0316611ce257611c7a816000541190565b15611ce25760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610adb828260405180602001604052806000815250612173565b6040805180820190915260008082526020820152611d65826000541190565b611dc45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610961565b60007f00000000000000000000000000000000000000000000000000000000000000148310611e2557611e177f000000000000000000000000000000000000000000000000000000000000001484612b5e565b611e22906001612b13565b90505b825b818110611e8f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e7c57949350505050565b5080611e8781612ba1565b915050611e27565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610961565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611f4f85846124aa565b14949350505050565b60006001600160a01b0384163b1561205a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f9c9033908990889088906004016129cc565b602060405180830381600087803b158015611fb657600080fd5b505af1925050508015611fe6575060408051601f3d908101601f19168201909252611fe391810190612876565b60015b612040573d808015612014576040519150601f19603f3d011682016040523d82523d6000602084013e612019565b606091505b5080516120385760405162461bcd60e51b815260040161096190612a95565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061205e565b5060015b949350505050565b60606008805461087390612bb8565b6060816120995750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120c357806120ad81612bf3565b91506120bc9050600a83612b2b565b915061209d565b60008167ffffffffffffffff8111156120de576120de612c64565b6040519080825280601f01601f191660200182016040528015612108576020820181803683370190505b5090505b841561205e5761211d600183612b5e565b915061212a600a86612c0e565b612135906030612b13565b60f81b81838151811061214a5761214a612c4e565b60200101906001600160f81b031916908160001a90535061216c600a86612b2b565b945061210c565b6000546001600160a01b0384166121d65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610961565b6121e1816000541190565b1561222e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610961565b7f00000000000000000000000000000000000000000000000000000000000000148311156122a95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610961565b600083116123055760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610961565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612361908790612ae8565b6001600160801b0316815260200185836020015161237f9190612ae8565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561249f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124636000888488611f58565b61247f5760405162461bcd60e51b815260040161096190612a95565b8161248981612bf3565b925050808061249790612bf3565b915050612416565b506000819055611d24565b600081815b84518110156125165760008582815181106124cc576124cc612c4e565b602002602001015190508083116124f25760008381526020829052604090209250612503565b600081815260208490526040902092505b508061250e81612bf3565b9150506124af565b509392505050565b82805461252a90612bb8565b90600052602060002090601f01602090048101928261254c5760008555612592565b82601f1061256557805160ff1916838001178555612592565b82800160010185558215612592579182015b82811115612592578251825591602001919060010190612577565b50610fe19291505b80821115610fe1576000815560010161259a565b600067ffffffffffffffff808411156125c9576125c9612c64565b604051601f8501601f19908116603f011681019082821181831017156125f1576125f1612c64565b8160405280935085815286868601111561260a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461263b57600080fd5b919050565b8035801515811461263b57600080fd5b60006020828403121561266257600080fd5b61187782612624565b6000806040838503121561267e57600080fd5b61268783612624565b915061269560208401612624565b90509250929050565b6000806000606084860312156126b357600080fd5b6126bc84612624565b92506126ca60208501612624565b9150604084013590509250925092565b600080600080608085870312156126f057600080fd5b6126f985612624565b935061270760208601612624565b925060408501359150606085013567ffffffffffffffff81111561272a57600080fd5b8501601f8101871361273b57600080fd5b61274a878235602084016125ae565b91505092959194509250565b6000806040838503121561276957600080fd5b61277283612624565b915061269560208401612640565b6000806040838503121561279357600080fd5b61279c83612624565b946020939093013593505050565b6000806000604084860312156127bf57600080fd5b833567ffffffffffffffff808211156127d757600080fd5b818601915086601f8301126127eb57600080fd5b8135818111156127fa57600080fd5b8760208260051b850101111561280f57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561283757600080fd5b61187782612640565b60006020828403121561285257600080fd5b5035919050565b60006020828403121561286b57600080fd5b813561187781612c7a565b60006020828403121561288857600080fd5b815161187781612c7a565b6000602082840312156128a557600080fd5b813567ffffffffffffffff8111156128bc57600080fd5b8201601f810184136128cd57600080fd5b61205e848235602084016125ae565b600081518084526128f4816020860160208601612b75565b601f01601f19169290920160200192915050565b60008451602061291b8285838a01612b75565b85519184019161292e8184848a01612b75565b8554920191600090600181811c908083168061294b57607f831692505b85831081141561296957634e487b7160e01b85526022600452602485fd5b80801561297d576001811461298e576129bb565b60ff198516885283880195506129bb565b60008b81526020902060005b858110156129b35781548a82015290840190880161299a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129ff908301846128dc565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612a4157835183529284019291840191600101612a25565b50909695505050505050565b60208152600061187760208301846128dc565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612b0a57612b0a612c22565b01949350505050565b60008219821115612b2657612b26612c22565b500190565b600082612b3a57612b3a612c38565b500490565b6000816000190483118215151615612b5957612b59612c22565b500290565b600082821015612b7057612b70612c22565b500390565b60005b83811015612b90578181015183820152602001612b78565b838111156116d85750506000910152565b600081612bb057612bb0612c22565b506000190190565b600181811c90821680612bcc57607f821691505b60208210811415612bed57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c0757612c07612c22565b5060010190565b600082612c1d57612c1d612c38565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d7657600080fdfea2646970667358221220e851ec3a71c6f3c783b4620d8f64c883df46f87736924ee4785296274f85a58a64736f6c63430008070033

Deployed Bytecode Sourcemap

41610:4823:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29335:372;;;;;;;;;;-1:-1:-1;29335:372:0;;;;;:::i;:::-;;:::i;:::-;;;8920:14:1;;8913:22;8895:41;;8883:2;8868:18;29335:372:0;;;;;;;;31140:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32701:214::-;;;;;;;;;;-1:-1:-1;32701:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7581:32:1;;;7563:51;;7551:2;7536:18;32701:214:0;7417:203:1;32222:413:0;;;;;;;;;;-1:-1:-1;32222:413:0;;;;;:::i;:::-;;:::i;:::-;;41807:32;;;;;;;;;;;;;;;;;;;9093:25:1;;;9081:2;9066:18;41807:32:0;8947:177:1;45872:100:0;;;;;;;;;;-1:-1:-1;45872:100:0;;;;;:::i;:::-;;:::i;45978:77::-;;;;;;;;;;-1:-1:-1;45978:77:0;;;;;:::i;:::-;;:::i;27776:100::-;;;;;;;;;;-1:-1:-1;27829:7:0;27856:12;27776:100;;42115:55;;;;;;;;;;-1:-1:-1;42115:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;41924:40;;;;;;;;;;;;;;;;33577:162;;;;;;;;;;-1:-1:-1;33577:162:0;;;;;:::i;:::-;;:::i;28440:823::-;;;;;;;;;;-1:-1:-1;28440:823:0;;;;;:::i;:::-;;:::i;45333:95::-;;;;;;;;;;-1:-1:-1;45333:95:0;;;;;:::i;:::-;;:::i;46061:137::-;;;;;;;;;;;;;:::i;43839:138::-;;;;;;;;;;-1:-1:-1;43839:138:0;;;;;:::i;:::-;;:::i;33810:177::-;;;;;;;;;;-1:-1:-1;33810:177:0;;;;;:::i;:::-;;:::i;43983:635::-;;;;;;;;;;-1:-1:-1;43983:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45434:74::-;;;;;;;;;;-1:-1:-1;45434:74:0;;;;;:::i;:::-;;:::i;27953:187::-;;;;;;;;;;-1:-1:-1;27953:187:0;;;;;:::i;:::-;;:::i;45514:132::-;;;;;;;;;;-1:-1:-1;45514:132:0;;;;;:::i;:::-;;:::i;42002:27::-;;;;;;;;;;-1:-1:-1;42002:27:0;;;;;;;;;;;41729:33;;;;;;;;;;;;;:::i;41971:26::-;;;;;;;;;;-1:-1:-1;41971:26:0;;;;;;;;41696:28;;;;;;;;;;;;;:::i;30949:124::-;;;;;;;;;;-1:-1:-1;30949:124:0;;;;;:::i;:::-;;:::i;29771:221::-;;;;;;;;;;-1:-1:-1;29771:221:0;;;;;:::i;:::-;;:::i;4711:103::-;;;;;;;;;;;;;:::i;45766:100::-;;;;;;;;;;-1:-1:-1;45766:100:0;;;;;:::i;:::-;;:::i;4060:87::-;;;;;;;;;;-1:-1:-1;4133:6:0;;-1:-1:-1;;;;;4133:6:0;4060:87;;41881:38;;;;;;;;;;;;;;;;31309:104;;;;;;;;;;;;;:::i;42034:35::-;;;;;;;;;;-1:-1:-1;42034:35:0;;;;;;;;;;;42941:296;;;;;;:::i;:::-;;:::i;32987:288::-;;;;;;;;;;-1:-1:-1;32987:288:0;;;;;:::i;:::-;;:::i;41767:31::-;;;;;;;;;;;;;:::i;43243:588::-;;;;;;:::i;:::-;;:::i;42076:34::-;;;;;;;;;;;;;;;;34058:355;;;;;;;;;;-1:-1:-1;34058:355:0;;;;;:::i;:::-;;:::i;45211:116::-;;;;;;;;;;-1:-1:-1;45211:116:0;;;;;:::i;:::-;;:::i;44624:494::-;;;;;;;;;;-1:-1:-1;44624:494:0;;;;;:::i;:::-;;:::i;41844:32::-;;;;;;;;;;;;;;;;45124:81;;;;;;;;;;-1:-1:-1;45124:81:0;;;;;:::i;:::-;;:::i;45652:108::-;;;;;;;;;;-1:-1:-1;45652:108:0;;;;;:::i;:::-;;:::i;33346:164::-;;;;;;;;;;-1:-1:-1;33346:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33467:25:0;;;33443:4;33467:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33346:164;4969:201;;;;;;;;;;-1:-1:-1;4969:201:0;;;;;:::i;:::-;;:::i;29335:372::-;29437:4;-1:-1:-1;;;;;;29474:40:0;;-1:-1:-1;;;29474:40:0;;:105;;-1:-1:-1;;;;;;;29531:48:0;;-1:-1:-1;;;29531:48:0;29474:105;:172;;;-1:-1:-1;;;;;;;29596:50:0;;-1:-1:-1;;;29596:50:0;29474:172;:225;;;-1:-1:-1;;;;;;;;;;16601:40:0;;;29663:36;29454:245;29335:372;-1:-1:-1;;29335:372:0:o;31140:100::-;31194:13;31227:5;31220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31140:100;:::o;32701:214::-;32769:7;32797:16;32805:7;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;32797:16;32789:74;;;;-1:-1:-1;;;32789:74:0;;19654:2:1;32789:74:0;;;19636:21:1;19693:2;19673:18;;;19666:30;19732:34;19712:18;;;19705:62;-1:-1:-1;;;19783:18:1;;;19776:43;19836:19;;32789:74:0;;;;;;;;;-1:-1:-1;32883:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32883:24:0;;32701:214::o;32222:413::-;32295:13;32311:24;32327:7;32311:15;:24::i;:::-;32295:40;;32360:5;-1:-1:-1;;;;;32354:11:0;:2;-1:-1:-1;;;;;32354:11:0;;;32346:58;;;;-1:-1:-1;;;32346:58:0;;16487:2:1;32346:58:0;;;16469:21:1;16526:2;16506:18;;;16499:30;16565:34;16545:18;;;16538:62;-1:-1:-1;;;16616:18:1;;;16609:32;16658:19;;32346:58:0;16285:398:1;32346:58:0;2864:10;-1:-1:-1;;;;;32439:21:0;;;;:62;;-1:-1:-1;32464:37:0;32481:5;2864:10;33346:164;:::i;32464:37::-;32417:169;;;;-1:-1:-1;;;32417:169:0;;12997:2:1;32417:169:0;;;12979:21:1;13036:2;13016:18;;;13009:30;13075:34;13055:18;;;13048:62;13146:27;13126:18;;;13119:55;13191:19;;32417:169:0;12795:421:1;32417:169:0;32599:28;32608:2;32612:7;32621:5;32599:8;:28::i;:::-;32284:351;32222:413;;:::o;45872:100::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;45944:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45872:100:::0;:::o;45978:77::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;46034:6:::1;:15:::0;;-1:-1:-1;;46034:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45978:77::o;33577:162::-;33703:28;33713:4;33719:2;33723:7;33703:9;:28::i;28440:823::-;28529:7;28565:16;28575:5;28565:9;:16::i;:::-;28557:5;:24;28549:71;;;;-1:-1:-1;;;28549:71:0;;9901:2:1;28549:71:0;;;9883:21:1;9940:2;9920:18;;;9913:30;9979:34;9959:18;;;9952:62;-1:-1:-1;;;10030:18:1;;;10023:32;10072:19;;28549:71:0;9699:398:1;28549:71:0;28631:22;27856:12;;;28631:22;;28763:426;28787:14;28783:1;:18;28763:426;;;28823:31;28857:14;;;:11;:14;;;;;;;;;28823:48;;;;;;;;;-1:-1:-1;;;;;28823:48:0;;;;;-1:-1:-1;;;28823:48:0;;;;;;;;;;;;28890:28;28886:103;;28959:14;;;-1:-1:-1;28886:103:0;29028:5;-1:-1:-1;;;;;29007:26:0;:17;-1:-1:-1;;;;;29007:26:0;;29003:175;;;29073:5;29058:11;:20;29054:77;;;-1:-1:-1;29110:1:0;-1:-1:-1;29103:8:0;;-1:-1:-1;;;29103:8:0;29054:77;29149:13;;;;:::i;:::-;;;;29003:175;-1:-1:-1;28803:3:0;;;;:::i;:::-;;;;28763:426;;;-1:-1:-1;29199:56:0;;-1:-1:-1;;;29199:56:0;;18823:2:1;29199:56:0;;;18805:21:1;18862:2;18842:18;;;18835:30;18901:34;18881:18;;;18874:62;-1:-1:-1;;;18952:18:1;;;18945:44;19006:19;;29199:56:0;18621:410:1;45333:95:0;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;45398:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;45398:24:0;;::::1;::::0;;;::::1;::::0;;45333:95::o;46061:137::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;46106:7:::1;46127;4133:6:::0;;-1:-1:-1;;;;;4133:6:0;;4060:87;46127:7:::1;-1:-1:-1::0;;;;;46119:21:0::1;46148;46119:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46105:69;;;46189:2;46181:11;;;::::0;::::1;;46098:100;46061:137::o:0;43839:138::-;43914:11;42779:1;42765:11;:15;:52;;;;;42799:18;;42784:11;:33;;42765:52;42757:85;;;;-1:-1:-1;;;42757:85:0;;11122:2:1;42757:85:0;;;11104:21:1;11161:2;11141:18;;;11134:30;-1:-1:-1;;;11180:18:1;;;11173:50;11240:18;;42757:85:0;10920:344:1;42757:85:0;42887:9;;42872:11;42857:12;;:26;;;;:::i;:::-;:39;;42849:72;;;;-1:-1:-1;;;42849:72:0;;16890:2:1;42849:72:0;;;16872:21:1;16929:2;16909:18;;;16902:30;-1:-1:-1;;;16948:18:1;;;16941:50;17008:18;;42849:72:0;16688:344:1;42849:72:0;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23:::1;4272:68;;;;-1:-1:-1::0;;;4272:68:0::1;;;;;;;:::i;:::-;43944:27:::2;43954:3;43959:11;43944:9;:27::i;33810:177::-:0;33940:39;33957:4;33963:2;33967:7;33940:39;;;;;;;;;;;;:16;:39::i;43983:635::-;44058:16;44086:23;44112:17;44122:6;44112:9;:17::i;:::-;44086:43;;44136:30;44183:15;44169:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44169:30:0;;44136:63;;44206:22;44239:23;44275:309;44300:15;44282;:33;:64;;;;;44337:9;;44319:14;:27;;44282:64;44275:309;;;44357:25;44385:23;44393:14;44385:7;:23::i;:::-;44357:51;;44444:6;-1:-1:-1;;;;;44423:27:0;:17;-1:-1:-1;;;;;44423:27:0;;44419:131;;;44496:14;44463:13;44477:15;44463:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;44523:17;;;;:::i;:::-;;;;44419:131;44560:16;;;;:::i;:::-;;;;44348:236;44275:309;;;-1:-1:-1;44599:13:0;;43983:635;-1:-1:-1;;;;43983:635:0:o;45434:74::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;45490:4:::1;:12:::0;45434:74::o;27953:187::-;28020:7;27856:12;;28048:5;:21;28040:69;;;;-1:-1:-1;;;28040:69:0;;11828:2:1;28040:69:0;;;11810:21:1;11867:2;11847:18;;;11840:30;11906:34;11886:18;;;11879:62;-1:-1:-1;;;11957:18:1;;;11950:33;12000:19;;28040:69:0;11626:399:1;28040:69:0;-1:-1:-1;28127:5:0;27953:187::o;45514:132::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;45602:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;41729:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41696:28::-;;;;;;;:::i;30949:124::-;31013:7;31040:20;31052:7;31040:11;:20::i;:::-;:25;;30949:124;-1:-1:-1;;30949:124:0:o;29771:221::-;29835:7;-1:-1:-1;;;;;29863:19:0;;29855:75;;;;-1:-1:-1;;;29855:75:0;;13765:2:1;29855:75:0;;;13747:21:1;13804:2;13784:18;;;13777:30;13843:34;13823:18;;;13816:62;-1:-1:-1;;;13894:18:1;;;13887:41;13945:19;;29855:75:0;13563:407:1;29855:75:0;-1:-1:-1;;;;;;29956:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29956:27:0;;29771:221::o;4711:103::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;4776:30:::1;4803:1;4776:18;:30::i;:::-;4711:103::o:0;45766:100::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;45838:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;31309:104::-:0;31365:13;31398:7;31391:14;;;;;:::i;42941:296::-;43006:11;42779:1;42765:11;:15;:52;;;;;42799:18;;42784:11;:33;;42765:52;42757:85;;;;-1:-1:-1;;;42757:85:0;;11122:2:1;42757:85:0;;;11104:21:1;11161:2;11141:18;;;11134:30;-1:-1:-1;;;11180:18:1;;;11173:50;11240:18;;42757:85:0;10920:344:1;42757:85:0;42887:9;;42872:11;42857:12;;:26;;;;:::i;:::-;:39;;42849:72;;;;-1:-1:-1;;;42849:72:0;;16890:2:1;42849:72:0;;;16872:21:1;16929:2;16909:18;;;16902:30;-1:-1:-1;;;16948:18:1;;;16941:50;17008:18;;42849:72:0;16688:344:1;42849:72:0;43035:6:::1;::::0;::::1;;43034:7;43026:43;;;::::0;-1:-1:-1;;;43026:43:0;;14945:2:1;43026:43:0::1;::::0;::::1;14927:21:1::0;14984:2;14964:18;;;14957:30;-1:-1:-1;;;15003:18:1;;;14996:53;15066:18;;43026:43:0::1;14743:347:1::0;43026:43:0::1;43085:15;::::0;;;::::1;;;43084:16;43076:42;;;::::0;-1:-1:-1;;;43076:42:0;;13423:2:1;43076:42:0::1;::::0;::::1;13405:21:1::0;13462:2;13442:18;;;13435:30;-1:-1:-1;;;13481:18:1;;;13474:43;13534:18;;43076:42:0::1;13221:337:1::0;43076:42:0::1;43153:11;43146:4;;:18;;;;:::i;:::-;43133:9;:31;;43125:63;;;::::0;-1:-1:-1;;;43125:63:0;;20471:2:1;43125:63:0::1;::::0;::::1;20453:21:1::0;20510:2;20490:18;;;20483:30;-1:-1:-1;;;20529:18:1;;;20522:49;20588:18;;43125:63:0::1;20269:343:1::0;43125:63:0::1;43197:34;43207:10;43219:11;43197:9;:34::i;32987:288::-:0;-1:-1:-1;;;;;33082:24:0;;2864:10;33082:24;;33074:63;;;;-1:-1:-1;;;33074:63:0;;15713:2:1;33074:63:0;;;15695:21:1;15752:2;15732:18;;;15725:30;15791:28;15771:18;;;15764:56;15837:18;;33074:63:0;15511:350:1;33074:63:0;2864:10;33150:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33150:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33150:53:0;;;;;;;;;;33219:48;;8895:41:1;;;33150:42:0;;2864:10;33219:48;;8868:18:1;33219:48:0;;;;;;;32987:288;;:::o;41767:31::-;;;;;;;:::i;43243:588::-;43353:11;;43366:19;;42507:128;42540:11;;42507:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42595:28:0;;-1:-1:-1;;42612:10:0;5590:2:1;5586:15;5582:53;42595:28:0;;;5570:66:1;42566:4:0;;-1:-1:-1;5652:12:1;;;-1:-1:-1;42595:28:0;;;;;;;;;;;;42585:39;;;;;;42507:18;:128::i;:::-;42489:196;;;;-1:-1:-1;;;42489:196:0;;12638:2:1;42489:196:0;;;12620:21:1;12677:2;12657:18;;;12650:30;12716:32;12696:18;;;12689:60;12766:18;;42489:196:0;12436:354:1;42489:196:0;43441:10:::1;43393:24;43420:32:::0;;;:20:::1;:32;::::0;;;;;43468:6:::1;::::0;::::1;;43467:7;43459:43;;;::::0;-1:-1:-1;;;43459:43:0;;14945:2:1;43459:43:0::1;::::0;::::1;14927:21:1::0;14984:2;14964:18;;;14957:30;-1:-1:-1;;;15003:18:1;;;14996:53;15066:18;;43459:43:0::1;14743:347:1::0;43459:43:0::1;43517:15;::::0;;;::::1;;;43509:45;;;::::0;-1:-1:-1;;;43509:45:0;;9555:2:1;43509:45:0::1;::::0;::::1;9537:21:1::0;9594:2;9574:18;;;9567:30;-1:-1:-1;;;9613:18:1;;;9606:47;9670:18;;43509:45:0::1;9353:341:1::0;43509:45:0::1;43603:20;::::0;43569:30:::1;43588:11:::0;43569:16;:30:::1;:::i;:::-;:54;;43561:95;;;::::0;-1:-1:-1;;;43561:95:0;;11471:2:1;43561:95:0::1;::::0;::::1;11453:21:1::0;11510:2;11490:18;;;11483:30;11549;11529:18;;;11522:58;11597:18;;43561:95:0::1;11269:352:1::0;43561:95:0::1;43691:11;43684:4;;:18;;;;:::i;:::-;43671:9;:31;;43663:63;;;::::0;-1:-1:-1;;;43663:63:0;;20471:2:1;43663:63:0::1;::::0;::::1;20453:21:1::0;20510:2;20490:18;;;20483:30;-1:-1:-1;;;20529:18:1;;;20522:49;20588:18;;43663:63:0::1;20269:343:1::0;43663:63:0::1;43760:10;43739:32;::::0;;;:20:::1;:32;::::0;;;;:45;;43773:11;;43739:32;:45:::1;::::0;43773:11;;43739:45:::1;:::i;:::-;::::0;;;-1:-1:-1;43791:34:0::1;::::0;-1:-1:-1;43801:10:0::1;43813:11:::0;43791:9:::1;:34::i;:::-;43386:445;43243:588:::0;;;;;;:::o;34058:355::-;34217:28;34227:4;34233:2;34237:7;34217:9;:28::i;:::-;34278:48;34301:4;34307:2;34311:7;34320:5;34278:22;:48::i;:::-;34256:149;;;;-1:-1:-1;;;34256:149:0;;;;;;;:::i;:::-;34058:355;;;;:::o;45211:116::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;45289:19:::1;:32:::0;45211:116::o;44624:494::-;44723:13;44764:17;44772:8;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;44764:17;44748:98;;;;-1:-1:-1;;;44748:98:0;;15297:2:1;44748:98:0;;;15279:21:1;15336:2;15316:18;;;15309:30;15375:34;15355:18;;;15348:62;-1:-1:-1;;;15426:18:1;;;15419:45;15481:19;;44748:98:0;15095:411:1;44748:98:0;44859:8;;;;;;;44855:64;;44894:17;44887:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44624:494;;;:::o;44855:64::-;44927:28;44958:10;:8;:10::i;:::-;44927:41;;45013:1;44988:14;44982:28;:32;:130;;;;;;;;;;;;;;;;;45050:14;45066:19;:8;:17;:19::i;:::-;45087:9;45033:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44982:130;44975:137;44624:494;-1:-1:-1;;;44624:494:0:o;45124:81::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;45182:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;45182:17:0;;::::1;::::0;;;::::1;::::0;;45124:81::o;45652:108::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;45725:20:::1;:29:::0;45652:108::o;4969:201::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5058:22:0;::::1;5050:73;;;::::0;-1:-1:-1;;;5050:73:0;;10304:2:1;5050:73:0::1;::::0;::::1;10286:21:1::0;10343:2;10323:18;;;10316:30;10382:34;10362:18;;;10355:62;-1:-1:-1;;;10433:18:1;;;10426:36;10479:19;;5050:73:0::1;10102:402:1::0;5050:73:0::1;5134:28;5153:8;5134:18;:28::i;38794:196::-:0;38909:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38909:29:0;-1:-1:-1;;;;;38909:29:0;;;;;;;;;38954:28;;38909:24;;38954:28;;;;;;;38794:196;;;:::o;36893:1783::-;37008:35;37046:20;37058:7;37046:11;:20::i;:::-;37121:18;;37008:58;;-1:-1:-1;37079:22:0;;-1:-1:-1;;;;;37105:34:0;2864:10;-1:-1:-1;;;;;37105:34:0;;:87;;;-1:-1:-1;2864:10:0;37156:20;37168:7;37156:11;:20::i;:::-;-1:-1:-1;;;;;37156:36:0;;37105:87;:154;;;-1:-1:-1;37226:18:0;;37209:50;;2864:10;33346:164;:::i;37209:50::-;37079:181;;37281:17;37273:80;;;;-1:-1:-1;;;37273:80:0;;16068:2:1;37273:80:0;;;16050:21:1;16107:2;16087:18;;;16080:30;16146:34;16126:18;;;16119:62;-1:-1:-1;;;16197:18:1;;;16190:48;16255:19;;37273:80:0;15866:414:1;37273:80:0;37396:4;-1:-1:-1;;;;;37374:26:0;:13;:18;;;-1:-1:-1;;;;;37374:26:0;;37366:77;;;;-1:-1:-1;;;37366:77:0;;14177:2:1;37366:77:0;;;14159:21:1;14216:2;14196:18;;;14189:30;14255:34;14235:18;;;14228:62;-1:-1:-1;;;14306:18:1;;;14299:36;14352:19;;37366:77:0;13975:402:1;37366:77:0;-1:-1:-1;;;;;37462:16:0;;37454:66;;;;-1:-1:-1;;;37454:66:0;;12232:2:1;37454:66:0;;;12214:21:1;12271:2;12251:18;;;12244:30;12310:34;12290:18;;;12283:62;-1:-1:-1;;;12361:18:1;;;12354:35;12406:19;;37454:66:0;12030:401:1;37454:66:0;37641:49;37658:1;37662:7;37671:13;:18;;;37641:8;:49::i;:::-;-1:-1:-1;;;;;37895:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37895:31:0;;;-1:-1:-1;;;;;37895:31:0;;;-1:-1:-1;;37895:31:0;;;;;;;37941:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37941:29:0;;;;;;;;;;;;;38017:43;;;;;;;;;;38043:15;38017:43;;;;;;;;;;37994:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;37994:66:0;;;;;;;-1:-1:-1;;;37994:66:0;;;;;;;;;;;;37895:18;38322:11;;37994:20;;38322:11;:::i;:::-;38389:1;38348:24;;;:11;:24;;;;;:29;38300:33;;-1:-1:-1;;;;;;38348:29:0;38344:227;;38412:20;38420:11;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;38412:20;38408:152;;;38480:64;;;;;;;;38495:18;;-1:-1:-1;;;;;38480:64:0;;;;;;38515:28;;;;38480:64;;;;;;;;;;-1:-1:-1;38453:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;38453:91:0;-1:-1:-1;;;;;;38453:91:0;;;;;;;;;;;;38408:152;38607:7;38603:2;-1:-1:-1;;;;;38588:27:0;38597:4;-1:-1:-1;;;;;38588:27:0;;;;;;;;;;;38626:42;36997:1679;;;36893:1783;;;:::o;34787:104::-;34856:27;34866:2;34870:8;34856:27;;;;;;;;;;;;:9;:27::i;30237:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;30340:16:0;30348:7;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;30340:16;30332:71;;;;-1:-1:-1;;;30332:71:0;;10711:2:1;30332:71:0;;;10693:21:1;10750:2;10730:18;;;10723:30;10789:34;10769:18;;;10762:62;-1:-1:-1;;;10840:18:1;;;10833:40;10890:19;;30332:71:0;10509:406:1;30332:71:0;30416:26;30468:12;30457:7;:23;30453:103;;30518:22;30528:12;30518:7;:22;:::i;:::-;:26;;30543:1;30518:26;:::i;:::-;30497:47;;30453:103;30588:7;30568:242;30605:18;30597:4;:26;30568:242;;30648:31;30682:17;;;:11;:17;;;;;;;;;30648:51;;;;;;;;;-1:-1:-1;;;;;30648:51:0;;;;;-1:-1:-1;;;30648:51:0;;;;;;;;;;;;30718:28;30714:85;;30774:9;30237:650;-1:-1:-1;;;;30237:650:0:o;30714:85::-;-1:-1:-1;30625:6:0;;;;:::i;:::-;;;;30568:242;;;-1:-1:-1;30822:57:0;;-1:-1:-1;;;30822:57:0;;19238:2:1;30822:57:0;;;19220:21:1;19277:2;19257:18;;;19250:30;19316:34;19296:18;;;19289:62;-1:-1:-1;;;19367:18:1;;;19360:45;19422:19;;30822:57:0;19036:411:1;5330:191:0;5423:6;;;-1:-1:-1;;;;;5440:17:0;;;-1:-1:-1;;;;;;5440:17:0;;;;;;;5473:40;;5423:6;;;5440:17;5423:6;;5473:40;;5404:16;;5473:40;5393:128;5330:191;:::o;24231:190::-;24356:4;24409;24380:25;24393:5;24400:4;24380:12;:25::i;:::-;:33;;24231:190;-1:-1:-1;;;;24231:190:0:o;39555:804::-;39710:4;-1:-1:-1;;;;;39731:13:0;;6671:20;6719:8;39727:625;;39767:72;;-1:-1:-1;;;39767:72:0;;-1:-1:-1;;;;;39767:36:0;;;;;:72;;2864:10;;39818:4;;39824:7;;39833:5;;39767:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39767:72:0;;;;;;;;-1:-1:-1;;39767:72:0;;;;;;;;;;;;:::i;:::-;;;39763:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40013:13:0;;40009:273;;40056:61;;-1:-1:-1;;;40056:61:0;;;;;;;:::i;40009:273::-;40232:6;40226:13;40217:6;40213:2;40209:15;40202:38;39763:534;-1:-1:-1;;;;;;39890:55:0;-1:-1:-1;;;39890:55:0;;-1:-1:-1;39883:62:0;;39727:625;-1:-1:-1;40336:4:0;39727:625;39555:804;;;;;;:::o;46326:104::-;46386:13;46415:9;46408:16;;;;;:::i;346:723::-;402:13;623:10;619:53;;-1:-1:-1;;650:10:0;;;;;;;;;;;;-1:-1:-1;;;650:10:0;;;;;346:723::o;619:53::-;697:5;682:12;738:78;745:9;;738:78;;771:8;;;;:::i;:::-;;-1:-1:-1;794:10:0;;-1:-1:-1;802:2:0;794:10;;:::i;:::-;;;738:78;;;826:19;858:6;848:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;848:17:0;;826:39;;876:154;883:10;;876:154;;910:11;920:1;910:11;;:::i;:::-;;-1:-1:-1;979:10:0;987:2;979:5;:10;:::i;:::-;966:24;;:2;:24;:::i;:::-;953:39;;936:6;943;936:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;936:56:0;;;;;;;;-1:-1:-1;1007:11:0;1016:2;1007:11;;:::i;:::-;;;876:154;;35168:1471;35291:20;35314:12;-1:-1:-1;;;;;35345:16:0;;35337:62;;;;-1:-1:-1;;;35337:62:0;;18421:2:1;35337:62:0;;;18403:21:1;18460:2;18440:18;;;18433:30;18499:34;18479:18;;;18472:62;-1:-1:-1;;;18550:18:1;;;18543:31;18591:19;;35337:62:0;18219:397:1;35337:62:0;35544:21;35552:12;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;35544:21;35543:22;35535:64;;;;-1:-1:-1;;;35535:64:0;;18063:2:1;35535:64:0;;;18045:21:1;18102:2;18082:18;;;18075:30;18141:31;18121:18;;;18114:59;18190:18;;35535:64:0;17861:353:1;35535:64:0;35630:12;35618:8;:24;;35610:71;;;;-1:-1:-1;;;35610:71:0;;20068:2:1;35610:71:0;;;20050:21:1;20107:2;20087:18;;;20080:30;20146:34;20126:18;;;20119:62;-1:-1:-1;;;20197:18:1;;;20190:32;20239:19;;35610:71:0;19866:398:1;35610:71:0;35711:1;35700:8;:12;35692:60;;;;-1:-1:-1;;;35692:60:0;;17239:2:1;35692:60:0;;;17221:21:1;17278:2;17258:18;;;17251:30;17317:34;17297:18;;;17290:62;-1:-1:-1;;;17368:18:1;;;17361:33;17411:19;;35692:60:0;17037:399:1;35692:60:0;-1:-1:-1;;;;;35872:16:0;;35839:30;35872:16;;;:12;:16;;;;;;;;;35839:49;;;;;;;;;-1:-1:-1;;;;;35839:49:0;;;;;-1:-1:-1;;;35839:49:0;;;;;;;;;;;35918:135;;;;;;;;35944:19;;35839:49;;35918:135;;;35944:39;;35974:8;;35944:39;:::i;:::-;-1:-1:-1;;;;;35918:135:0;;;;;36033:8;35998:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;35918:135:0;;;;;;-1:-1:-1;;;;;35899:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;35899:154:0;;;;;;;;;;;;36092:43;;;;;;;;;;;36118:15;36092:43;;;;;;;;36064:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36064:71:0;-1:-1:-1;;;;;;36064:71:0;;;;;;;;;;;;;;;;;;36076:12;;36196:325;36220:8;36216:1;:12;36196:325;;;36255:38;;36280:12;;-1:-1:-1;;;;;36255:38:0;;;36272:1;;36255:38;;36272:1;;36255:38;36334:59;36365:1;36369:2;36373:12;36387:5;36334:22;:59::i;:::-;36308:172;;;;-1:-1:-1;;;36308:172:0;;;;;;;:::i;:::-;36495:14;;;;:::i;:::-;;;;36230:3;;;;;:::i;:::-;;;;36196:325;;;-1:-1:-1;36533:12:0;:27;;;36571:60;34058:355;24783:675;24866:7;24909:4;24866:7;24924:497;24948:5;:12;24944:1;:16;24924:497;;;24982:20;25005:5;25011:1;25005:8;;;;;;;;:::i;:::-;;;;;;;24982:31;;25048:12;25032;:28;25028:382;;25534:13;25584:15;;;25620:4;25613:15;;;25667:4;25651:21;;25160:57;;25028:382;;;25534:13;25584:15;;;25620:4;25613:15;;;25667:4;25651:21;;25337:57;;25028:382;-1:-1:-1;24962:3:0;;;;:::i;:::-;;;;24924:497;;;-1:-1:-1;25438:12:0;24783:675;-1:-1:-1;;;24783:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:689::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:52;;;3151:1;3148;3141:12;3103:52;3191:9;3178:23;3220:18;3261:2;3253:6;3250:14;3247:34;;;3277:1;3274;3267:12;3247:34;3315:6;3304:9;3300:22;3290:32;;3360:7;3353:4;3349:2;3345:13;3341:27;3331:55;;3382:1;3379;3372:12;3331:55;3422:2;3409:16;3448:2;3440:6;3437:14;3434:34;;;3464:1;3461;3454:12;3434:34;3519:7;3512:4;3502:6;3499:1;3495:14;3491:2;3487:23;3483:34;3480:47;3477:67;;;3540:1;3537;3530:12;3477:67;3571:4;3563:13;;;;3595:6;;-1:-1:-1;3633:20:1;;;;3620:34;;2971:689;-1:-1:-1;;;;2971:689:1:o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:180::-;3909:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;-1:-1:-1;4001:23:1;;3850:180;-1:-1:-1;3850:180:1:o;4035:245::-;4093:6;4146:2;4134:9;4125:7;4121:23;4117:32;4114:52;;;4162:1;4159;4152:12;4114:52;4201:9;4188:23;4220:30;4244:5;4220:30;:::i;4285:249::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4455:9;4449:16;4474:30;4498:5;4474:30;:::i;4539:450::-;4608:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4717:9;4704:23;4750:18;4742:6;4739:30;4736:50;;;4782:1;4779;4772:12;4736:50;4805:22;;4858:4;4850:13;;4846:27;-1:-1:-1;4836:55:1;;4887:1;4884;4877:12;4836:55;4910:73;4975:7;4970:2;4957:16;4952:2;4948;4944:11;4910:73;:::i;5179:257::-;5220:3;5258:5;5252:12;5285:6;5280:3;5273:19;5301:63;5357:6;5350:4;5345:3;5341:14;5334:4;5327:5;5323:16;5301:63;:::i;:::-;5418:2;5397:15;-1:-1:-1;;5393:29:1;5384:39;;;;5425:4;5380:50;;5179:257;-1:-1:-1;;5179:257:1:o;5675:1527::-;5899:3;5937:6;5931:13;5963:4;5976:51;6020:6;6015:3;6010:2;6002:6;5998:15;5976:51;:::i;:::-;6090:13;;6049:16;;;;6112:55;6090:13;6049:16;6134:15;;;6112:55;:::i;:::-;6256:13;;6189:20;;;6229:1;;6316;6338:18;;;;6391;;;;6418:93;;6496:4;6486:8;6482:19;6470:31;;6418:93;6559:2;6549:8;6546:16;6526:18;6523:40;6520:167;;;-1:-1:-1;;;6586:33:1;;6642:4;6639:1;6632:15;6672:4;6593:3;6660:17;6520:167;6703:18;6730:110;;;;6854:1;6849:328;;;;6696:481;;6730:110;-1:-1:-1;;6765:24:1;;6751:39;;6810:20;;;;-1:-1:-1;6730:110:1;;6849:328;20872:1;20865:14;;;20909:4;20896:18;;6944:1;6958:169;6972:8;6969:1;6966:15;6958:169;;;7054:14;;7039:13;;;7032:37;7097:16;;;;6989:10;;6958:169;;;6962:3;;7158:8;7151:5;7147:20;7140:27;;6696:481;-1:-1:-1;7193:3:1;;5675:1527;-1:-1:-1;;;;;;;;;;;5675:1527:1:o;7625:488::-;-1:-1:-1;;;;;7894:15:1;;;7876:34;;7946:15;;7941:2;7926:18;;7919:43;7993:2;7978:18;;7971:34;;;8041:3;8036:2;8021:18;;8014:31;;;7819:4;;8062:45;;8087:19;;8079:6;8062:45;:::i;:::-;8054:53;7625:488;-1:-1:-1;;;;;;7625:488:1:o;8118:632::-;8289:2;8341:21;;;8411:13;;8314:18;;;8433:22;;;8260:4;;8289:2;8512:15;;;;8486:2;8471:18;;;8260:4;8555:169;8569:6;8566:1;8563:13;8555:169;;;8630:13;;8618:26;;8699:15;;;;8664:12;;;;8591:1;8584:9;8555:169;;;-1:-1:-1;8741:3:1;;8118:632;-1:-1:-1;;;;;;8118:632:1:o;9129:219::-;9278:2;9267:9;9260:21;9241:4;9298:44;9338:2;9327:9;9323:18;9315:6;9298:44;:::i;14382:356::-;14584:2;14566:21;;;14603:18;;;14596:30;14662:34;14657:2;14642:18;;14635:62;14729:2;14714:18;;14382:356::o;17441:415::-;17643:2;17625:21;;;17682:2;17662:18;;;17655:30;17721:34;17716:2;17701:18;;17694:62;-1:-1:-1;;;17787:2:1;17772:18;;17765:49;17846:3;17831:19;;17441:415::o;20925:253::-;20965:3;-1:-1:-1;;;;;21054:2:1;21051:1;21047:10;21084:2;21081:1;21077:10;21115:3;21111:2;21107:12;21102:3;21099:21;21096:47;;;21123:18;;:::i;:::-;21159:13;;20925:253;-1:-1:-1;;;;20925:253:1:o;21183:128::-;21223:3;21254:1;21250:6;21247:1;21244:13;21241:39;;;21260:18;;:::i;:::-;-1:-1:-1;21296:9:1;;21183:128::o;21316:120::-;21356:1;21382;21372:35;;21387:18;;:::i;:::-;-1:-1:-1;21421:9:1;;21316:120::o;21441:168::-;21481:7;21547:1;21543;21539:6;21535:14;21532:1;21529:21;21524:1;21517:9;21510:17;21506:45;21503:71;;;21554:18;;:::i;:::-;-1:-1:-1;21594:9:1;;21441:168::o;21614:125::-;21654:4;21682:1;21679;21676:8;21673:34;;;21687:18;;:::i;:::-;-1:-1:-1;21724:9:1;;21614:125::o;21744:258::-;21816:1;21826:113;21840:6;21837:1;21834:13;21826:113;;;21916:11;;;21910:18;21897:11;;;21890:39;21862:2;21855:10;21826:113;;;21957:6;21954:1;21951:13;21948:48;;;-1:-1:-1;;21992:1:1;21974:16;;21967:27;21744:258::o;22007:136::-;22046:3;22074:5;22064:39;;22083:18;;:::i;:::-;-1:-1:-1;;;22119:18:1;;22007:136::o;22148:380::-;22227:1;22223:12;;;;22270;;;22291:61;;22345:4;22337:6;22333:17;22323:27;;22291:61;22398:2;22390:6;22387:14;22367:18;22364:38;22361:161;;;22444:10;22439:3;22435:20;22432:1;22425:31;22479:4;22476:1;22469:15;22507:4;22504:1;22497:15;22361:161;;22148:380;;;:::o;22533:135::-;22572:3;-1:-1:-1;;22593:17:1;;22590:43;;;22613:18;;:::i;:::-;-1:-1:-1;22660:1:1;22649:13;;22533:135::o;22673:112::-;22705:1;22731;22721:35;;22736:18;;:::i;:::-;-1:-1:-1;22770:9:1;;22673:112::o;22790:127::-;22851:10;22846:3;22842:20;22839:1;22832:31;22882:4;22879:1;22872:15;22906:4;22903:1;22896:15;22922:127;22983:10;22978:3;22974:20;22971:1;22964:31;23014:4;23011:1;23004:15;23038:4;23035:1;23028:15;23054:127;23115:10;23110:3;23106:20;23103:1;23096:31;23146:4;23143:1;23136:15;23170:4;23167:1;23160:15;23186:127;23247:10;23242:3;23238:20;23235:1;23228:31;23278:4;23275:1;23268:15;23302:4;23299:1;23292:15;23318:131;-1:-1:-1;;;;;;23392:32:1;;23382:43;;23372:71;;23439:1;23436;23429:12

Swarm Source

ipfs://e851ec3a71c6f3c783b4620d8f64c883df46f87736924ee4785296274f85a58a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.