ETH Price: $3,686.30 (+19.72%)
Gas: 12 Gwei

Token

Bored Ape Teen Club (BATC)
 

Overview

Max Total Supply

2,482 BATC

Holders

860

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 BATC
0xbd568cf826b1b8f8770566c293cadfea8327c6f2
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:
BATC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/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/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: AdventureRoos.sol

pragma solidity >=0.7.0 <0.9.0;


contract BATC is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string private uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.09 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 3;
  uint256 public maxMintAmountPerTxForHigher = 4;

  bool public paused = true;
  bool public revealed = false;
  bool public presaleActive = false;
  bool public saleActive = false;
  mapping(address => uint256) private addressMintedBalance;
  mapping(uint256 => address) private mintedIds;
  bytes32 private merkleRoot = "";

  constructor() ERC721("Bored Ape Teen Club", "BATC") {
    setUriPrefix("");
    setHiddenMetadataUri("https://ipfs.io/ipfs/QmTwJ3hJDTCHyZsKQcoNZaN9HWwvF1jmiWKRrAqgN8xWHu/hidden.json");
  }

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

  modifier selfMintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  modifier whitelistMintCompliance(uint256 _mintAmount, bytes32 leaf, uint allowance) {
    require(isWhitelistUser(leaf), "Not a whitelisted user");
    uint256 maxMintAmount = isHigherWhitelistMember(allowance) ? maxMintAmountPerTxForHigher : maxMintAmountPerTx;
    require(_mintAmount > 0 && _mintAmount <= maxMintAmount, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount, uint256[] memory ids) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(saleActive, "Sale is not Active" );
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    require(addressMintedBalance[msg.sender] <= maxMintAmountPerTx, "Max mint amount per wallet reached");
    _mintLoop(msg.sender, _mintAmount, ids);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver, uint256[] memory ids) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount, ids);
  }

  function mintForSelf(uint256 _mintAmount, uint256[] memory ids) public selfMintCompliance(_mintAmount) onlyOwner {
    _mintLoop(msg.sender, _mintAmount, ids);
  }

  function whitelistMint(uint _mintAmount, bytes32 leaf, bytes32[] memory proof, uint allowance, uint256[] memory ids) external payable whitelistMintCompliance(_mintAmount, leaf, allowance) {
    require(presaleActive, "Sale is not Active" );
    // Verify that (msg.sender, amount) correspond to Merkle leaf
    // require(keccak256(abi.encodePacked(msg.sender)) == leaf, "Sender and amount don't match Merkle leaf");

     // Verify that (leaf, proof) matches the Merkle root
    require(verify(merkleRoot, leaf, proof), "Not a valid leaf in the Merkle tree");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    uint256 maxMintAmount = isHigherWhitelistMember(allowance) ? maxMintAmountPerTxForHigher : maxMintAmountPerTx;
    require(addressMintedBalance[msg.sender] + _mintAmount <= maxMintAmount, "Max mint amount per wallet reached");
    _mintLoop(msg.sender, _mintAmount, ids);
  }

  function isWhitelistUser(bytes32 leaf) internal view returns (bool) {
      if(keccak256(abi.encodePacked(msg.sender)) == leaf) return true;
      else return false;
  }

  function isHigherWhitelistMember(uint256 allowance) public view returns (bool) {
      if(allowance == maxMintAmountPerTxForHigher) return true;
      return false;
  }

  function verify(bytes32 _merkleRoot, bytes32 leaf, bytes32[] memory proof) public pure returns (bool) {
        return MerkleProof.verify(proof, _merkleRoot, leaf);
    }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    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 setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

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

  function setPublicSale(bool _sale) public onlyOwner {
    saleActive = _sale;
  }

  function setPreSale(bool _sale) public onlyOwner {
    presaleActive = _sale;
  }

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

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

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

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

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

  function withdraw() public onlyOwner {
    require(address(this).balance > 0, "Balance is 0");
    payable(owner()).transfer(address(this).balance);
  }

  function checkIfMinted(uint256 id) public view returns (address) {
      return mintedIds[id];
  }

  function _mintLoop(address _receiver, uint256 _mintAmount, uint256[] memory ids) internal {
    addressMintedBalance[_receiver]+= _mintAmount;
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      mintedIds[ids[i]] = _receiver;
      _safeMint(_receiver, ids[i]);
    }
  }

  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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"checkIfMinted","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"allowance","type":"uint256"}],"name":"isHigherWhitelistMember","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":"maxMintAmountPerTxForHigher","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"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"mintForSelf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b916008916200027b565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a916009916200027b565b5067013fbe85edc90000600b55612710600c556003600d556004600e55600f805463ffffffff1916600117905560006012553480156200008957600080fd5b50604080518082018252601381527f426f72656420417065205465656e20436c7562000000000000000000000000006020808301918252835180850190945260048452634241544360e01b908401528151919291620000eb916000916200027b565b508051620001019060019060208401906200027b565b5050506200011e620001186200016260201b60201c565b62000166565b6040805160208101909152600081526200013890620001b8565b6200015c6040518060800160405280604f815260200162002fae604f913962000220565b6200035e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002075760405162461bcd60e51b8152602060048201819052602482015260008051602062002f8e83398151915260448201526064015b60405180910390fd5b80516200021c9060089060208401906200027b565b5050565b6006546001600160a01b031633146200026b5760405162461bcd60e51b8152602060048201819052602482015260008051602062002f8e8339815191526044820152606401620001fe565b80516200021c90600a9060208401905b828054620002899062000321565b90600052602060002090601f016020900481019282620002ad5760008555620002f8565b82601f10620002c857805160ff1916838001178555620002f8565b82800160010185558215620002f8579182015b82811115620002f8578251825591602001919060010190620002db565b50620003069291506200030a565b5090565b5b808211156200030657600081556001016200030b565b600181811c908216806200033657607f821691505b602082108114156200035857634e487b7160e01b600052602260045260246000fd5b50919050565b612c20806200036e6000396000f3fe60806040526004361061027d5760003560e01c80635503a0e81161014f57806395d89b41116100c1578063c3b78d911161007a578063c3b78d911461076c578063c87b56dd14610782578063d5abeb01146107a2578063e0a80853146107b8578063e985e9c5146107d8578063f2fde38b1461082157600080fd5b806395d89b41146106c25780639e4af6dc146106d7578063a22cb465146106f7578063a45ba8e714610717578063b071401b1461072c578063b88d4fde1461074c57600080fd5b806370a082311161011357806370a0823114610619578063715018a6146106395780637cb647591461064e5780637ec4a6591461066e5780638da5cb5b1461068e57806394354fd0146106ac57600080fd5b80635503a0e8146105895780635aca1bb61461059e5780635c975abb146105be5780636352211e146105d857806368428a1b146105f857600080fd5b80632d69044f116101f3578063438b6300116101ac578063438b6300146104a757806344a0d68a146104d45780634fdd43cb146104f457806351830227146105145780635189e63e1461053357806353135ca01461056957600080fd5b80632d69044f146103ff5780633423e54814610412578063377de02b146104325780633bb15beb146104525780633ccfd60b1461047257806342842e0e1461048757600080fd5b806313faede61161024557806313faede61461035357806316ba10e01461037757806316c38b3c1461039757806318160ddd146103b75780631ba8b633146103cc57806323b872dd146103df57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b3146103115780630d95ccc914610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046125a9565b610841565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610893565b6040516102ae91906128a6565b3480156102e557600080fd5b506102f96102f4366004612540565b610925565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c3660046124fb565b6109bf565b005b34801561033f57600080fd5b5061033161034e366004612525565b610ad5565b34801561035f57600080fd5b50610369600b5481565b6040519081526020016102ae565b34801561038357600080fd5b506103316103923660046125e3565b610b1b565b3480156103a357600080fd5b506103316103b2366004612525565b610b5c565b3480156103c357600080fd5b50610369610b99565b6103316103da3660046126b4565b610ba9565b3480156103eb57600080fd5b506103316103fa366004612419565b610ded565b61033161040d36600461266d565b610e1e565b34801561041e57600080fd5b506102a261042d366004612559565b610fb2565b34801561043e57600080fd5b506102a261044d366004612540565b610fc7565b34801561045e57600080fd5b5061033161046d36600461262c565b610fe3565b34801561047e57600080fd5b50610331611082565b34801561049357600080fd5b506103316104a2366004612419565b611127565b3480156104b357600080fd5b506104c76104c23660046123cb565b611142565b6040516102ae9190612862565b3480156104e057600080fd5b506103316104ef366004612540565b611223565b34801561050057600080fd5b5061033161050f3660046125e3565b611252565b34801561052057600080fd5b50600f546102a290610100900460ff1681565b34801561053f57600080fd5b506102f961054e366004612540565b6000908152601160205260409020546001600160a01b031690565b34801561057557600080fd5b50600f546102a29062010000900460ff1681565b34801561059557600080fd5b506102cc61128f565b3480156105aa57600080fd5b506103316105b9366004612525565b61131d565b3480156105ca57600080fd5b50600f546102a29060ff1681565b3480156105e457600080fd5b506102f96105f3366004612540565b611365565b34801561060457600080fd5b50600f546102a2906301000000900460ff1681565b34801561062557600080fd5b506103696106343660046123cb565b6113dc565b34801561064557600080fd5b50610331611463565b34801561065a57600080fd5b50610331610669366004612540565b611499565b34801561067a57600080fd5b506103316106893660046125e3565b6114c8565b34801561069a57600080fd5b506006546001600160a01b03166102f9565b3480156106b857600080fd5b50610369600d5481565b3480156106ce57600080fd5b506102cc611505565b3480156106e357600080fd5b506103316106f236600461266d565b611514565b34801561070357600080fd5b506103316107123660046124d1565b611594565b34801561072357600080fd5b506102cc61159f565b34801561073857600080fd5b50610331610747366004612540565b6115ac565b34801561075857600080fd5b50610331610767366004612455565b6115db565b34801561077857600080fd5b50610369600e5481565b34801561078e57600080fd5b506102cc61079d366004612540565b61160d565b3480156107ae57600080fd5b50610369600c5481565b3480156107c457600080fd5b506103316107d3366004612525565b61178c565b3480156107e457600080fd5b506102a26107f33660046123e6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082d57600080fd5b5061033161083c3660046123cb565b6117d0565b60006001600160e01b031982166380ac58cd60e01b148061087257506001600160e01b03198216635b5e139f60e01b145b8061088d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108a290612b12565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce90612b12565b801561091b5780601f106108f05761010080835404028352916020019161091b565b820191906000526020600020905b8154815290600101906020018083116108fe57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109a35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109ca82611365565b9050806001600160a01b0316836001600160a01b03161415610a385760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161099a565b336001600160a01b0382161480610a545750610a5481336107f3565b610ac65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161099a565b610ad08383611868565b505050565b6006546001600160a01b03163314610aff5760405162461bcd60e51b815260040161099a90612939565b600f8054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610b455760405162461bcd60e51b815260040161099a90612939565b8051610b58906009906020840190612241565b5050565b6006546001600160a01b03163314610b865760405162461bcd60e51b815260040161099a90612939565b600f805460ff1916911515919091179055565b6000610ba460075490565b905090565b848483610bb5826118d6565b610bfa5760405162461bcd60e51b81526020600482015260166024820152752737ba1030903bb434ba32b634b9ba32b2103ab9b2b960511b604482015260640161099a565b6000610c0582610fc7565b610c1157600d54610c15565b600e545b9050600084118015610c275750808411155b610c435760405162461bcd60e51b815260040161099a9061290b565b600c5484610c5060075490565b610c5a9190612a84565b1115610c785760405162461bcd60e51b815260040161099a9061296e565b600f5462010000900460ff16610cc55760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b604482015260640161099a565b610cd26012548989610fb2565b610d2a5760405162461bcd60e51b815260206004820152602360248201527f4e6f7420612076616c6964206c65616620696e20746865204d65726b6c65207460448201526272656560e81b606482015260840161099a565b88600b54610d389190612ab0565b341015610d7d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161099a565b6000610d8887610fc7565b610d9457600d54610d98565b600e545b336000908152601060205260409020549091508190610db8908c90612a84565b1115610dd65760405162461bcd60e51b815260040161099a906129ed565b610de1338b88611922565b50505050505050505050565b610df733826119ef565b610e135760405162461bcd60e51b815260040161099a9061299c565b610ad0838383611ae2565b81600081118015610e315750600d548111155b610e4d5760405162461bcd60e51b815260040161099a9061290b565b600c5481610e5a60075490565b610e649190612a84565b1115610e825760405162461bcd60e51b815260040161099a9061296e565b600f5460ff1615610ed55760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161099a565b600f546301000000900460ff16610f235760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b604482015260640161099a565b82600b54610f319190612ab0565b341015610f765760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161099a565b600d54336000908152601060205260409020541115610fa75760405162461bcd60e51b815260040161099a906129ed565b610ad0338484611922565b6000610fbf828585611c82565b949350505050565b6000600e54821415610fdb57506001919050565b506000919050565b82600081118015610ff65750600d548111155b6110125760405162461bcd60e51b815260040161099a9061290b565b600c548161101f60075490565b6110299190612a84565b11156110475760405162461bcd60e51b815260040161099a9061296e565b6006546001600160a01b031633146110715760405162461bcd60e51b815260040161099a90612939565b61107c838584611922565b50505050565b6006546001600160a01b031633146110ac5760405162461bcd60e51b815260040161099a90612939565b600047116110eb5760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b604482015260640161099a565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611124573d6000803e3d6000fd5b50565b610ad0838383604051806020016040528060008152506115db565b6060600061114f836113dc565b905060008167ffffffffffffffff81111561116c5761116c612bbe565b604051908082528060200260200182016040528015611195578160200160208202803683370190505b509050600160005b83811080156111ae5750600c548211155b156112195760006111be83611365565b9050866001600160a01b0316816001600160a01b0316141561120657828483815181106111ed576111ed612ba8565b60209081029190910101528161120281612b4d565b9250505b8261121081612b4d565b9350505061119d565b5090949350505050565b6006546001600160a01b0316331461124d5760405162461bcd60e51b815260040161099a90612939565b600b55565b6006546001600160a01b0316331461127c5760405162461bcd60e51b815260040161099a90612939565b8051610b5890600a906020840190612241565b6009805461129c90612b12565b80601f01602080910402602001604051908101604052809291908181526020018280546112c890612b12565b80156113155780601f106112ea57610100808354040283529160200191611315565b820191906000526020600020905b8154815290600101906020018083116112f857829003601f168201915b505050505081565b6006546001600160a01b031633146113475760405162461bcd60e51b815260040161099a90612939565b600f805491151563010000000263ff00000019909216919091179055565b6000818152600260205260408120546001600160a01b03168061088d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161099a565b60006001600160a01b0382166114475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161099a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461148d5760405162461bcd60e51b815260040161099a90612939565b6114976000611c98565b565b6006546001600160a01b031633146114c35760405162461bcd60e51b815260040161099a90612939565b601255565b6006546001600160a01b031633146114f25760405162461bcd60e51b815260040161099a90612939565b8051610b58906008906020840190612241565b6060600180546108a290612b12565b81600081116115355760405162461bcd60e51b815260040161099a9061290b565b600c548161154260075490565b61154c9190612a84565b111561156a5760405162461bcd60e51b815260040161099a9061296e565b6006546001600160a01b03163314610fa75760405162461bcd60e51b815260040161099a90612939565b610b58338383611cea565b600a805461129c90612b12565b6006546001600160a01b031633146115d65760405162461bcd60e51b815260040161099a90612939565b600d55565b6115e533836119ef565b6116015760405162461bcd60e51b815260040161099a9061299c565b61107c84848484611db9565b6000818152600260205260409020546060906001600160a01b031661168c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161099a565b600f54610100900460ff1661172d57600a80546116a890612b12565b80601f01602080910402602001604051908101604052809291908181526020018280546116d490612b12565b80156117215780601f106116f657610100808354040283529160200191611721565b820191906000526020600020905b81548152906001019060200180831161170457829003601f168201915b50505050509050919050565b6000611737611dec565b905060008151116117575760405180602001604052806000815250611785565b8061176184611dfb565b600960405160200161177593929190612761565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146117b65760405162461bcd60e51b815260040161099a90612939565b600f80549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146117fa5760405162461bcd60e51b815260040161099a90612939565b6001600160a01b03811661185f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161099a565b61112481611c98565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061189d82611365565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6040516bffffffffffffffffffffffff193360601b1660208201526000908290603401604051602081830303815290604052805190602001201415610fdb57506001919050565b919050565b6001600160a01b0383166000908152601060205260408120805484929061194a908490612a84565b90915550600090505b8281101561107c57611969600780546001019055565b836011600084848151811061198057611980612ba8565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055506119dd848383815181106119d0576119d0612ba8565b6020026020010151611ef9565b806119e781612b4d565b915050611953565b6000818152600260205260408120546001600160a01b0316611a685760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161099a565b6000611a7383611365565b9050806001600160a01b0316846001600160a01b03161480611aae5750836001600160a01b0316611aa384610925565b6001600160a01b0316145b80610fbf57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610fbf565b826001600160a01b0316611af582611365565b6001600160a01b031614611b5d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161099a565b6001600160a01b038216611bbf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161099a565b611bca600082611868565b6001600160a01b0383166000908152600360205260408120805460019290611bf3908490612acf565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c21908490612a84565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611c8f8584611f13565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611d4c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161099a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611dc4848484611ae2565b611dd084848484611fbf565b61107c5760405162461bcd60e51b815260040161099a906128b9565b6060600880546108a290612b12565b606081611e1f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e495780611e3381612b4d565b9150611e429050600a83612a9c565b9150611e23565b60008167ffffffffffffffff811115611e6457611e64612bbe565b6040519080825280601f01601f191660200182016040528015611e8e576020820181803683370190505b5090505b8415610fbf57611ea3600183612acf565b9150611eb0600a86612b68565b611ebb906030612a84565b60f81b818381518110611ed057611ed0612ba8565b60200101906001600160f81b031916908160001a905350611ef2600a86612a9c565b9450611e92565b610b588282604051806020016040528060008152506120cc565b600081815b8451811015611fb7576000858281518110611f3557611f35612ba8565b60200260200101519050808311611f77576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611fa4565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611faf81612b4d565b915050611f18565b509392505050565b60006001600160a01b0384163b156120c157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612003903390899088908890600401612825565b602060405180830381600087803b15801561201d57600080fd5b505af192505050801561204d575060408051601f3d908101601f1916820190925261204a918101906125c6565b60015b6120a7573d80801561207b576040519150601f19603f3d011682016040523d82523d6000602084013e612080565b606091505b50805161209f5760405162461bcd60e51b815260040161099a906128b9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fbf565b506001949350505050565b6120d683836120ff565b6120e36000848484611fbf565b610ad05760405162461bcd60e51b815260040161099a906128b9565b6001600160a01b0382166121555760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161099a565b6000818152600260205260409020546001600160a01b0316156121ba5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161099a565b6001600160a01b03821660009081526003602052604081208054600192906121e3908490612a84565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461224d90612b12565b90600052602060002090601f01602090048101928261226f57600085556122b5565b82601f1061228857805160ff19168380011785556122b5565b828001600101855582156122b5579182015b828111156122b557825182559160200191906001019061229a565b506122c19291506122c5565b5090565b5b808211156122c157600081556001016122c6565b600067ffffffffffffffff8311156122f4576122f4612bbe565b612307601f8401601f1916602001612a2f565b905082815283838301111561231b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461191d57600080fd5b600082601f83011261235a57600080fd5b8135602061236f61236a83612a60565b612a2f565b80838252828201915082860187848660051b890101111561238f57600080fd5b60005b858110156123ae57813584529284019290840190600101612392565b5090979650505050505050565b8035801515811461191d57600080fd5b6000602082840312156123dd57600080fd5b61178582612332565b600080604083850312156123f957600080fd5b61240283612332565b915061241060208401612332565b90509250929050565b60008060006060848603121561242e57600080fd5b61243784612332565b925061244560208501612332565b9150604084013590509250925092565b6000806000806080858703121561246b57600080fd5b61247485612332565b935061248260208601612332565b925060408501359150606085013567ffffffffffffffff8111156124a557600080fd5b8501601f810187136124b657600080fd5b6124c5878235602084016122da565b91505092959194509250565b600080604083850312156124e457600080fd5b6124ed83612332565b9150612410602084016123bb565b6000806040838503121561250e57600080fd5b61251783612332565b946020939093013593505050565b60006020828403121561253757600080fd5b611785826123bb565b60006020828403121561255257600080fd5b5035919050565b60008060006060848603121561256e57600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561259357600080fd5b61259f86828701612349565b9150509250925092565b6000602082840312156125bb57600080fd5b813561178581612bd4565b6000602082840312156125d857600080fd5b815161178581612bd4565b6000602082840312156125f557600080fd5b813567ffffffffffffffff81111561260c57600080fd5b8201601f8101841361261d57600080fd5b610fbf848235602084016122da565b60008060006060848603121561264157600080fd5b8335925061265160208501612332565b9150604084013567ffffffffffffffff81111561259357600080fd5b6000806040838503121561268057600080fd5b82359150602083013567ffffffffffffffff81111561269e57600080fd5b6126aa85828601612349565b9150509250929050565b600080600080600060a086880312156126cc57600080fd5b8535945060208601359350604086013567ffffffffffffffff808211156126f257600080fd5b6126fe89838a01612349565b945060608801359350608088013591508082111561271b57600080fd5b5061272888828901612349565b9150509295509295909350565b6000815180845261274d816020860160208601612ae6565b601f01601f19169290920160200192915050565b6000845160206127748285838a01612ae6565b8551918401916127878184848a01612ae6565b8554920191600090600181811c90808316806127a457607f831692505b8583108114156127c257634e487b7160e01b85526022600452602485fd5b8080156127d657600181146127e757612814565b60ff19851688528388019550612814565b60008b81526020902060005b8581101561280c5781548a8201529084019088016127f3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061285890830184612735565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561289a5783518352928401929184019160010161287e565b50909695505050505050565b6020815260006117856020830184612735565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526022908201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604082015261195960f21b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a5857612a58612bbe565b604052919050565b600067ffffffffffffffff821115612a7a57612a7a612bbe565b5060051b60200190565b60008219821115612a9757612a97612b7c565b500190565b600082612aab57612aab612b92565b500490565b6000816000190483118215151615612aca57612aca612b7c565b500290565b600082821015612ae157612ae1612b7c565b500390565b60005b83811015612b01578181015183820152602001612ae9565b8381111561107c5750506000910152565b600181811c90821680612b2657607f821691505b60208210811415612b4757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b6157612b61612b7c565b5060010190565b600082612b7757612b77612b92565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461112457600080fdfea2646970667358221220048285776346dc01cea3c69a1c1ff8d0c9141c11069f54f6614a8db4068cb4dd64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657268747470733a2f2f697066732e696f2f697066732f516d54774a33684a44544348795a734b51636f4e5a614e394857777646316a6d69574b52724171674e38785748752f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80635503a0e81161014f57806395d89b41116100c1578063c3b78d911161007a578063c3b78d911461076c578063c87b56dd14610782578063d5abeb01146107a2578063e0a80853146107b8578063e985e9c5146107d8578063f2fde38b1461082157600080fd5b806395d89b41146106c25780639e4af6dc146106d7578063a22cb465146106f7578063a45ba8e714610717578063b071401b1461072c578063b88d4fde1461074c57600080fd5b806370a082311161011357806370a0823114610619578063715018a6146106395780637cb647591461064e5780637ec4a6591461066e5780638da5cb5b1461068e57806394354fd0146106ac57600080fd5b80635503a0e8146105895780635aca1bb61461059e5780635c975abb146105be5780636352211e146105d857806368428a1b146105f857600080fd5b80632d69044f116101f3578063438b6300116101ac578063438b6300146104a757806344a0d68a146104d45780634fdd43cb146104f457806351830227146105145780635189e63e1461053357806353135ca01461056957600080fd5b80632d69044f146103ff5780633423e54814610412578063377de02b146104325780633bb15beb146104525780633ccfd60b1461047257806342842e0e1461048757600080fd5b806313faede61161024557806313faede61461035357806316ba10e01461037757806316c38b3c1461039757806318160ddd146103b75780631ba8b633146103cc57806323b872dd146103df57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b3146103115780630d95ccc914610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046125a9565b610841565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610893565b6040516102ae91906128a6565b3480156102e557600080fd5b506102f96102f4366004612540565b610925565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c3660046124fb565b6109bf565b005b34801561033f57600080fd5b5061033161034e366004612525565b610ad5565b34801561035f57600080fd5b50610369600b5481565b6040519081526020016102ae565b34801561038357600080fd5b506103316103923660046125e3565b610b1b565b3480156103a357600080fd5b506103316103b2366004612525565b610b5c565b3480156103c357600080fd5b50610369610b99565b6103316103da3660046126b4565b610ba9565b3480156103eb57600080fd5b506103316103fa366004612419565b610ded565b61033161040d36600461266d565b610e1e565b34801561041e57600080fd5b506102a261042d366004612559565b610fb2565b34801561043e57600080fd5b506102a261044d366004612540565b610fc7565b34801561045e57600080fd5b5061033161046d36600461262c565b610fe3565b34801561047e57600080fd5b50610331611082565b34801561049357600080fd5b506103316104a2366004612419565b611127565b3480156104b357600080fd5b506104c76104c23660046123cb565b611142565b6040516102ae9190612862565b3480156104e057600080fd5b506103316104ef366004612540565b611223565b34801561050057600080fd5b5061033161050f3660046125e3565b611252565b34801561052057600080fd5b50600f546102a290610100900460ff1681565b34801561053f57600080fd5b506102f961054e366004612540565b6000908152601160205260409020546001600160a01b031690565b34801561057557600080fd5b50600f546102a29062010000900460ff1681565b34801561059557600080fd5b506102cc61128f565b3480156105aa57600080fd5b506103316105b9366004612525565b61131d565b3480156105ca57600080fd5b50600f546102a29060ff1681565b3480156105e457600080fd5b506102f96105f3366004612540565b611365565b34801561060457600080fd5b50600f546102a2906301000000900460ff1681565b34801561062557600080fd5b506103696106343660046123cb565b6113dc565b34801561064557600080fd5b50610331611463565b34801561065a57600080fd5b50610331610669366004612540565b611499565b34801561067a57600080fd5b506103316106893660046125e3565b6114c8565b34801561069a57600080fd5b506006546001600160a01b03166102f9565b3480156106b857600080fd5b50610369600d5481565b3480156106ce57600080fd5b506102cc611505565b3480156106e357600080fd5b506103316106f236600461266d565b611514565b34801561070357600080fd5b506103316107123660046124d1565b611594565b34801561072357600080fd5b506102cc61159f565b34801561073857600080fd5b50610331610747366004612540565b6115ac565b34801561075857600080fd5b50610331610767366004612455565b6115db565b34801561077857600080fd5b50610369600e5481565b34801561078e57600080fd5b506102cc61079d366004612540565b61160d565b3480156107ae57600080fd5b50610369600c5481565b3480156107c457600080fd5b506103316107d3366004612525565b61178c565b3480156107e457600080fd5b506102a26107f33660046123e6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082d57600080fd5b5061033161083c3660046123cb565b6117d0565b60006001600160e01b031982166380ac58cd60e01b148061087257506001600160e01b03198216635b5e139f60e01b145b8061088d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108a290612b12565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce90612b12565b801561091b5780601f106108f05761010080835404028352916020019161091b565b820191906000526020600020905b8154815290600101906020018083116108fe57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109a35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109ca82611365565b9050806001600160a01b0316836001600160a01b03161415610a385760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161099a565b336001600160a01b0382161480610a545750610a5481336107f3565b610ac65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161099a565b610ad08383611868565b505050565b6006546001600160a01b03163314610aff5760405162461bcd60e51b815260040161099a90612939565b600f8054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610b455760405162461bcd60e51b815260040161099a90612939565b8051610b58906009906020840190612241565b5050565b6006546001600160a01b03163314610b865760405162461bcd60e51b815260040161099a90612939565b600f805460ff1916911515919091179055565b6000610ba460075490565b905090565b848483610bb5826118d6565b610bfa5760405162461bcd60e51b81526020600482015260166024820152752737ba1030903bb434ba32b634b9ba32b2103ab9b2b960511b604482015260640161099a565b6000610c0582610fc7565b610c1157600d54610c15565b600e545b9050600084118015610c275750808411155b610c435760405162461bcd60e51b815260040161099a9061290b565b600c5484610c5060075490565b610c5a9190612a84565b1115610c785760405162461bcd60e51b815260040161099a9061296e565b600f5462010000900460ff16610cc55760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b604482015260640161099a565b610cd26012548989610fb2565b610d2a5760405162461bcd60e51b815260206004820152602360248201527f4e6f7420612076616c6964206c65616620696e20746865204d65726b6c65207460448201526272656560e81b606482015260840161099a565b88600b54610d389190612ab0565b341015610d7d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161099a565b6000610d8887610fc7565b610d9457600d54610d98565b600e545b336000908152601060205260409020549091508190610db8908c90612a84565b1115610dd65760405162461bcd60e51b815260040161099a906129ed565b610de1338b88611922565b50505050505050505050565b610df733826119ef565b610e135760405162461bcd60e51b815260040161099a9061299c565b610ad0838383611ae2565b81600081118015610e315750600d548111155b610e4d5760405162461bcd60e51b815260040161099a9061290b565b600c5481610e5a60075490565b610e649190612a84565b1115610e825760405162461bcd60e51b815260040161099a9061296e565b600f5460ff1615610ed55760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161099a565b600f546301000000900460ff16610f235760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b604482015260640161099a565b82600b54610f319190612ab0565b341015610f765760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161099a565b600d54336000908152601060205260409020541115610fa75760405162461bcd60e51b815260040161099a906129ed565b610ad0338484611922565b6000610fbf828585611c82565b949350505050565b6000600e54821415610fdb57506001919050565b506000919050565b82600081118015610ff65750600d548111155b6110125760405162461bcd60e51b815260040161099a9061290b565b600c548161101f60075490565b6110299190612a84565b11156110475760405162461bcd60e51b815260040161099a9061296e565b6006546001600160a01b031633146110715760405162461bcd60e51b815260040161099a90612939565b61107c838584611922565b50505050565b6006546001600160a01b031633146110ac5760405162461bcd60e51b815260040161099a90612939565b600047116110eb5760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b604482015260640161099a565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611124573d6000803e3d6000fd5b50565b610ad0838383604051806020016040528060008152506115db565b6060600061114f836113dc565b905060008167ffffffffffffffff81111561116c5761116c612bbe565b604051908082528060200260200182016040528015611195578160200160208202803683370190505b509050600160005b83811080156111ae5750600c548211155b156112195760006111be83611365565b9050866001600160a01b0316816001600160a01b0316141561120657828483815181106111ed576111ed612ba8565b60209081029190910101528161120281612b4d565b9250505b8261121081612b4d565b9350505061119d565b5090949350505050565b6006546001600160a01b0316331461124d5760405162461bcd60e51b815260040161099a90612939565b600b55565b6006546001600160a01b0316331461127c5760405162461bcd60e51b815260040161099a90612939565b8051610b5890600a906020840190612241565b6009805461129c90612b12565b80601f01602080910402602001604051908101604052809291908181526020018280546112c890612b12565b80156113155780601f106112ea57610100808354040283529160200191611315565b820191906000526020600020905b8154815290600101906020018083116112f857829003601f168201915b505050505081565b6006546001600160a01b031633146113475760405162461bcd60e51b815260040161099a90612939565b600f805491151563010000000263ff00000019909216919091179055565b6000818152600260205260408120546001600160a01b03168061088d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161099a565b60006001600160a01b0382166114475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161099a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461148d5760405162461bcd60e51b815260040161099a90612939565b6114976000611c98565b565b6006546001600160a01b031633146114c35760405162461bcd60e51b815260040161099a90612939565b601255565b6006546001600160a01b031633146114f25760405162461bcd60e51b815260040161099a90612939565b8051610b58906008906020840190612241565b6060600180546108a290612b12565b81600081116115355760405162461bcd60e51b815260040161099a9061290b565b600c548161154260075490565b61154c9190612a84565b111561156a5760405162461bcd60e51b815260040161099a9061296e565b6006546001600160a01b03163314610fa75760405162461bcd60e51b815260040161099a90612939565b610b58338383611cea565b600a805461129c90612b12565b6006546001600160a01b031633146115d65760405162461bcd60e51b815260040161099a90612939565b600d55565b6115e533836119ef565b6116015760405162461bcd60e51b815260040161099a9061299c565b61107c84848484611db9565b6000818152600260205260409020546060906001600160a01b031661168c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161099a565b600f54610100900460ff1661172d57600a80546116a890612b12565b80601f01602080910402602001604051908101604052809291908181526020018280546116d490612b12565b80156117215780601f106116f657610100808354040283529160200191611721565b820191906000526020600020905b81548152906001019060200180831161170457829003601f168201915b50505050509050919050565b6000611737611dec565b905060008151116117575760405180602001604052806000815250611785565b8061176184611dfb565b600960405160200161177593929190612761565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146117b65760405162461bcd60e51b815260040161099a90612939565b600f80549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146117fa5760405162461bcd60e51b815260040161099a90612939565b6001600160a01b03811661185f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161099a565b61112481611c98565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061189d82611365565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6040516bffffffffffffffffffffffff193360601b1660208201526000908290603401604051602081830303815290604052805190602001201415610fdb57506001919050565b919050565b6001600160a01b0383166000908152601060205260408120805484929061194a908490612a84565b90915550600090505b8281101561107c57611969600780546001019055565b836011600084848151811061198057611980612ba8565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055506119dd848383815181106119d0576119d0612ba8565b6020026020010151611ef9565b806119e781612b4d565b915050611953565b6000818152600260205260408120546001600160a01b0316611a685760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161099a565b6000611a7383611365565b9050806001600160a01b0316846001600160a01b03161480611aae5750836001600160a01b0316611aa384610925565b6001600160a01b0316145b80610fbf57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610fbf565b826001600160a01b0316611af582611365565b6001600160a01b031614611b5d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161099a565b6001600160a01b038216611bbf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161099a565b611bca600082611868565b6001600160a01b0383166000908152600360205260408120805460019290611bf3908490612acf565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c21908490612a84565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611c8f8584611f13565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611d4c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161099a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611dc4848484611ae2565b611dd084848484611fbf565b61107c5760405162461bcd60e51b815260040161099a906128b9565b6060600880546108a290612b12565b606081611e1f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e495780611e3381612b4d565b9150611e429050600a83612a9c565b9150611e23565b60008167ffffffffffffffff811115611e6457611e64612bbe565b6040519080825280601f01601f191660200182016040528015611e8e576020820181803683370190505b5090505b8415610fbf57611ea3600183612acf565b9150611eb0600a86612b68565b611ebb906030612a84565b60f81b818381518110611ed057611ed0612ba8565b60200101906001600160f81b031916908160001a905350611ef2600a86612a9c565b9450611e92565b610b588282604051806020016040528060008152506120cc565b600081815b8451811015611fb7576000858281518110611f3557611f35612ba8565b60200260200101519050808311611f77576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611fa4565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611faf81612b4d565b915050611f18565b509392505050565b60006001600160a01b0384163b156120c157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612003903390899088908890600401612825565b602060405180830381600087803b15801561201d57600080fd5b505af192505050801561204d575060408051601f3d908101601f1916820190925261204a918101906125c6565b60015b6120a7573d80801561207b576040519150601f19603f3d011682016040523d82523d6000602084013e612080565b606091505b50805161209f5760405162461bcd60e51b815260040161099a906128b9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fbf565b506001949350505050565b6120d683836120ff565b6120e36000848484611fbf565b610ad05760405162461bcd60e51b815260040161099a906128b9565b6001600160a01b0382166121555760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161099a565b6000818152600260205260409020546001600160a01b0316156121ba5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161099a565b6001600160a01b03821660009081526003602052604081208054600192906121e3908490612a84565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461224d90612b12565b90600052602060002090601f01602090048101928261226f57600085556122b5565b82601f1061228857805160ff19168380011785556122b5565b828001600101855582156122b5579182015b828111156122b557825182559160200191906001019061229a565b506122c19291506122c5565b5090565b5b808211156122c157600081556001016122c6565b600067ffffffffffffffff8311156122f4576122f4612bbe565b612307601f8401601f1916602001612a2f565b905082815283838301111561231b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461191d57600080fd5b600082601f83011261235a57600080fd5b8135602061236f61236a83612a60565b612a2f565b80838252828201915082860187848660051b890101111561238f57600080fd5b60005b858110156123ae57813584529284019290840190600101612392565b5090979650505050505050565b8035801515811461191d57600080fd5b6000602082840312156123dd57600080fd5b61178582612332565b600080604083850312156123f957600080fd5b61240283612332565b915061241060208401612332565b90509250929050565b60008060006060848603121561242e57600080fd5b61243784612332565b925061244560208501612332565b9150604084013590509250925092565b6000806000806080858703121561246b57600080fd5b61247485612332565b935061248260208601612332565b925060408501359150606085013567ffffffffffffffff8111156124a557600080fd5b8501601f810187136124b657600080fd5b6124c5878235602084016122da565b91505092959194509250565b600080604083850312156124e457600080fd5b6124ed83612332565b9150612410602084016123bb565b6000806040838503121561250e57600080fd5b61251783612332565b946020939093013593505050565b60006020828403121561253757600080fd5b611785826123bb565b60006020828403121561255257600080fd5b5035919050565b60008060006060848603121561256e57600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561259357600080fd5b61259f86828701612349565b9150509250925092565b6000602082840312156125bb57600080fd5b813561178581612bd4565b6000602082840312156125d857600080fd5b815161178581612bd4565b6000602082840312156125f557600080fd5b813567ffffffffffffffff81111561260c57600080fd5b8201601f8101841361261d57600080fd5b610fbf848235602084016122da565b60008060006060848603121561264157600080fd5b8335925061265160208501612332565b9150604084013567ffffffffffffffff81111561259357600080fd5b6000806040838503121561268057600080fd5b82359150602083013567ffffffffffffffff81111561269e57600080fd5b6126aa85828601612349565b9150509250929050565b600080600080600060a086880312156126cc57600080fd5b8535945060208601359350604086013567ffffffffffffffff808211156126f257600080fd5b6126fe89838a01612349565b945060608801359350608088013591508082111561271b57600080fd5b5061272888828901612349565b9150509295509295909350565b6000815180845261274d816020860160208601612ae6565b601f01601f19169290920160200192915050565b6000845160206127748285838a01612ae6565b8551918401916127878184848a01612ae6565b8554920191600090600181811c90808316806127a457607f831692505b8583108114156127c257634e487b7160e01b85526022600452602485fd5b8080156127d657600181146127e757612814565b60ff19851688528388019550612814565b60008b81526020902060005b8581101561280c5781548a8201529084019088016127f3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061285890830184612735565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561289a5783518352928401929184019160010161287e565b50909695505050505050565b6020815260006117856020830184612735565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526022908201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604082015261195960f21b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a5857612a58612bbe565b604052919050565b600067ffffffffffffffff821115612a7a57612a7a612bbe565b5060051b60200190565b60008219821115612a9757612a97612b7c565b500190565b600082612aab57612aab612b92565b500490565b6000816000190483118215151615612aca57612aca612b7c565b500290565b600082821015612ae157612ae1612b7c565b500390565b60005b83811015612b01578181015183820152602001612ae9565b8381111561107c5750506000910152565b600181811c90821680612b2657607f821691505b60208210811415612b4757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b6157612b61612b7c565b5060010190565b600082612b7757612b77612b92565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461112457600080fdfea2646970667358221220048285776346dc01cea3c69a1c1ff8d0c9141c11069f54f6614a8db4068cb4dd64736f6c63430008070033

Deployed Bytecode Sourcemap

39915:7012:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27408:305;;;;;;;;;;-1:-1:-1;27408:305:0;;;;;:::i;:::-;;:::i;:::-;;;11610:14:1;;11603:22;11585:41;;11573:2;11558:18;27408:305:0;;;;;;;;28353:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29912:221::-;;;;;;;;;;-1:-1:-1;29912:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10271:32:1;;;10253:51;;10241:2;10226:18;29912:221:0;10107:203:1;29435:411:0;;;;;;;;;;-1:-1:-1;29435:411:0;;;;;:::i;:::-;;:::i;:::-;;45583:83;;;;;;;;;;-1:-1:-1;45583:83:0;;;;;:::i;:::-;;:::i;40175:32::-;;;;;;;;;;;;;;;;;;;21633:25:1;;;21621:2;21606:18;40175:32:0;21487:177:1;46052:100:0;;;;;;;;;;-1:-1:-1;46052:100:0;;;;;:::i;:::-;;:::i;46158:77::-;;;;;;;;;;-1:-1:-1;46158:77:0;;;;;:::i;:::-;;:::i;41726:89::-;;;;;;;;;;;;;:::i;42617:920::-;;;;;;:::i;:::-;;:::i;30662:339::-;;;;;;;;;;-1:-1:-1;30662:339:0;;;;;:::i;:::-;;:::i;41821:429::-;;;;;;:::i;:::-;;:::i;43898:172::-;;;;;;;;;;-1:-1:-1;43898:172:0;;;;;:::i;:::-;;:::i;43721:171::-;;;;;;;;;;-1:-1:-1;43721:171:0;;;;;:::i;:::-;;:::i;42258:182::-;;;;;;;;;;-1:-1:-1;42258:182:0;;;;;:::i;:::-;;:::i;46241:155::-;;;;;;;;;;;;;:::i;31072:185::-;;;;;;;;;;-1:-1:-1;31072:185:0;;;;;:::i;:::-;;:::i;44076:635::-;;;;;;;;;;-1:-1:-1;44076:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45414:74::-;;;;;;;;;;-1:-1:-1;45414:74:0;;;;;:::i;:::-;;:::i;45808:132::-;;;;;;;;;;-1:-1:-1;45808:132:0;;;;;:::i;:::-;;:::i;40374:28::-;;;;;;;;;;-1:-1:-1;40374:28:0;;;;;;;;;;;46402:100;;;;;;;;;;-1:-1:-1;46402:100:0;;;;;:::i;:::-;46458:7;46483:13;;;:9;:13;;;;;;-1:-1:-1;;;;;46483:13:0;;46402:100;40407:33;;;;;;;;;;-1:-1:-1;40407:33:0;;;;;;;;;;;40097;;;;;;;;;;;;;:::i;45494:83::-;;;;;;;;;;-1:-1:-1;45494:83:0;;;;;:::i;:::-;;:::i;40344:25::-;;;;;;;;;;-1:-1:-1;40344:25:0;;;;;;;;28047:239;;;;;;;;;;-1:-1:-1;28047:239:0;;;;;:::i;:::-;;:::i;40445:30::-;;;;;;;;;;-1:-1:-1;40445:30:0;;;;;;;;;;;27777:208;;;;;;;;;;-1:-1:-1;27777:208:0;;;;;:::i;:::-;;:::i;8396:103::-;;;;;;;;;;;;;:::i;45304:104::-;;;;;;;;;;-1:-1:-1;45304:104:0;;;;;:::i;:::-;;:::i;45946:100::-;;;;;;;;;;-1:-1:-1;45946:100:0;;;;;:::i;:::-;;:::i;7745:87::-;;;;;;;;;;-1:-1:-1;7818:6:0;;-1:-1:-1;;;;;7818:6:0;7745:87;;40249:37;;;;;;;;;;;;;;;;28522:104;;;;;;;;;;;;;:::i;42446:165::-;;;;;;;;;;-1:-1:-1;42446:165:0;;;;;:::i;:::-;;:::i;30205:155::-;;;;;;;;;;-1:-1:-1;30205:155:0;;;;;:::i;:::-;;:::i;40135:31::-;;;;;;;;;;;;;:::i;45672:130::-;;;;;;;;;;-1:-1:-1;45672:130:0;;;;;:::i;:::-;;:::i;31328:328::-;;;;;;;;;;-1:-1:-1;31328:328:0;;;;;:::i;:::-;;:::i;40291:46::-;;;;;;;;;;;;;;;;44717:494;;;;;;;;;;-1:-1:-1;44717:494:0;;;;;:::i;:::-;;:::i;40212:32::-;;;;;;;;;;;;;;;;45217:81;;;;;;;;;;-1:-1:-1;45217:81:0;;;;;:::i;:::-;;:::i;30431:164::-;;;;;;;;;;-1:-1:-1;30431:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30552:25:0;;;30528:4;30552:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30431:164;8654:201;;;;;;;;;;-1:-1:-1;8654:201:0;;;;;:::i;:::-;;:::i;27408:305::-;27510:4;-1:-1:-1;;;;;;27547:40:0;;-1:-1:-1;;;27547:40:0;;:105;;-1:-1:-1;;;;;;;27604:48:0;;-1:-1:-1;;;27604:48:0;27547:105;:158;;;-1:-1:-1;;;;;;;;;;20286:40:0;;;27669:36;27527:178;27408:305;-1:-1:-1;;27408:305:0:o;28353:100::-;28407:13;28440:5;28433:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28353:100;:::o;29912:221::-;29988:7;33255:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33255:16:0;30008:73;;;;-1:-1:-1;;;30008:73:0;;17413:2:1;30008:73:0;;;17395:21:1;17452:2;17432:18;;;17425:30;17491:34;17471:18;;;17464:62;-1:-1:-1;;;17542:18:1;;;17535:42;17594:19;;30008:73:0;;;;;;;;;-1:-1:-1;30101:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30101:24:0;;29912:221::o;29435:411::-;29516:13;29532:23;29547:7;29532:14;:23::i;:::-;29516:39;;29580:5;-1:-1:-1;;;;;29574:11:0;:2;-1:-1:-1;;;;;29574:11:0;;;29566:57;;;;-1:-1:-1;;;29566:57:0;;19365:2:1;29566:57:0;;;19347:21:1;19404:2;19384:18;;;19377:30;19443:34;19423:18;;;19416:62;-1:-1:-1;;;19494:18:1;;;19487:31;19535:19;;29566:57:0;19163:397:1;29566:57:0;6549:10;-1:-1:-1;;;;;29658:21:0;;;;:62;;-1:-1:-1;29683:37:0;29700:5;6549:10;30431:164;:::i;29683:37::-;29636:168;;;;-1:-1:-1;;;29636:168:0;;15114:2:1;29636:168:0;;;15096:21:1;15153:2;15133:18;;;15126:30;15192:34;15172:18;;;15165:62;15263:26;15243:18;;;15236:54;15307:19;;29636:168:0;14912:420:1;29636:168:0;29817:21;29826:2;29830:7;29817:8;:21::i;:::-;29505:341;29435:411;;:::o;45583:83::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;45639:13:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;45639:21:0;;::::1;::::0;;;::::1;::::0;;45583:83::o;46052:100::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;46124:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46052:100:::0;:::o;46158:77::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;46214:6:::1;:15:::0;;-1:-1:-1;;46214:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46158:77::o;41726:89::-;41770:7;41793:16;:6;3165:14;;3073:114;41793:16;41786:23;;41726:89;:::o;42617:920::-;42775:11;42788:4;42794:9;41372:21;41388:4;41372:15;:21::i;:::-;41364:56;;;;-1:-1:-1;;;41364:56:0;;16360:2:1;41364:56:0;;;16342:21:1;16399:2;16379:18;;;16372:30;-1:-1:-1;;;16418:18:1;;;16411:52;16480:18;;41364:56:0;16158:346:1;41364:56:0;41427:21;41451:34;41475:9;41451:23;:34::i;:::-;:85;;41518:18;;41451:85;;;41488:27;;41451:85;41427:109;;41565:1;41551:11;:15;:47;;;;;41585:13;41570:11;:28;;41551:47;41543:80;;;;-1:-1:-1;;;41543:80:0;;;;;;;:::i;:::-;41672:9;;41657:11;41638:16;:6;3165:14;;3073:114;41638:16;:30;;;;:::i;:::-;:43;;41630:76;;;;-1:-1:-1;;;41630:76:0;;;;;;;:::i;:::-;42820:13:::1;::::0;;;::::1;;;42812:45;;;::::0;-1:-1:-1;;;42812:45:0;;14354:2:1;42812:45:0::1;::::0;::::1;14336:21:1::0;14393:2;14373:18;;;14366:30;-1:-1:-1;;;14412:18:1;;;14405:48;14470:18;;42812:45:0::1;14152:342:1::0;42812:45:0::1;43111:31;43118:10;;43130:4;43136:5;43111:6;:31::i;:::-;43103:79;;;::::0;-1:-1:-1;;;43103:79:0;;21285:2:1;43103:79:0::1;::::0;::::1;21267:21:1::0;21324:2;21304:18;;;21297:30;21363:34;21343:18;;;21336:62;-1:-1:-1;;;21414:18:1;;;21407:33;21457:19;;43103:79:0::1;21083:399:1::0;43103:79:0::1;43217:11;43210:4;;:18;;;;:::i;:::-;43197:9;:31;;43189:63;;;::::0;-1:-1:-1;;;43189:63:0;;20937:2:1;43189:63:0::1;::::0;::::1;20919:21:1::0;20976:2;20956:18;;;20949:30;-1:-1:-1;;;20995:18:1;;;20988:49;21054:18;;43189:63:0::1;20735:343:1::0;43189:63:0::1;43259:21;43283:34;43307:9;43283:23;:34::i;:::-;:85;;43350:18;;43283:85;;;43320:27;;43283:85;43404:10;43383:32;::::0;;;:20:::1;:32;::::0;;;;;43259:109;;-1:-1:-1;43259:109:0;;43383:46:::1;::::0;43418:11;;43383:46:::1;:::i;:::-;:63;;43375:110;;;;-1:-1:-1::0;;;43375:110:0::1;;;;;;;:::i;:::-;43492:39;43502:10;43514:11;43527:3;43492:9;:39::i;:::-;42805:732;41357:363:::0;42617:920;;;;;;;;:::o;30662:339::-;30857:41;6549:10;30890:7;30857:18;:41::i;:::-;30849:103;;;;-1:-1:-1;;;30849:103:0;;;;;;;:::i;:::-;30965:28;30975:4;30981:2;30985:7;30965:9;:28::i;41821:429::-;41908:11;40900:1;40886:11;:15;:52;;;;;40920:18;;40905:11;:33;;40886:52;40878:85;;;;-1:-1:-1;;;40878:85:0;;;;;;;:::i;:::-;41012:9;;40997:11;40978:16;:6;3165:14;;3073:114;40978:16;:30;;;;:::i;:::-;:43;;40970:76;;;;-1:-1:-1;;;40970:76:0;;;;;;;:::i;:::-;41937:6:::1;::::0;::::1;;41936:7;41928:43;;;::::0;-1:-1:-1;;;41928:43:0;;18187:2:1;41928:43:0::1;::::0;::::1;18169:21:1::0;18226:2;18206:18;;;18199:30;18265:25;18245:18;;;18238:53;18308:18;;41928:43:0::1;17985:347:1::0;41928:43:0::1;41986:10;::::0;;;::::1;;;41978:42;;;::::0;-1:-1:-1;;;41978:42:0;;14354:2:1;41978:42:0::1;::::0;::::1;14336:21:1::0;14393:2;14373:18;;;14366:30;-1:-1:-1;;;14412:18:1;;;14405:48;14470:18;;41978:42:0::1;14152:342:1::0;41978:42:0::1;42055:11;42048:4;;:18;;;;:::i;:::-;42035:9;:31;;42027:63;;;::::0;-1:-1:-1;;;42027:63:0;;20937:2:1;42027:63:0::1;::::0;::::1;20919:21:1::0;20976:2;20956:18;;;20949:30;-1:-1:-1;;;20995:18:1;;;20988:49;21054:18;;42027:63:0::1;20735:343:1::0;42027:63:0::1;42141:18;::::0;42126:10:::1;42105:32;::::0;;;:20:::1;:32;::::0;;;;;:54:::1;;42097:101;;;;-1:-1:-1::0;;;42097:101:0::1;;;;;;;:::i;:::-;42205:39;42215:10;42227:11;42240:3;42205:9;:39::i;43898:172::-:0;43994:4;44018:44;44037:5;44044:11;44057:4;44018:18;:44::i;:::-;44011:51;43898:172;-1:-1:-1;;;;43898:172:0:o;43721:171::-;43794:4;43825:27;;43812:9;:40;43809:56;;;-1:-1:-1;43861:4:0;;43721:171;-1:-1:-1;43721:171:0:o;43809:56::-;-1:-1:-1;43881:5:0;;43721:171;-1:-1:-1;43721:171:0:o;42258:182::-;42366:11;40900:1;40886:11;:15;:52;;;;;40920:18;;40905:11;:33;;40886:52;40878:85;;;;-1:-1:-1;;;40878:85:0;;;;;;;:::i;:::-;41012:9;;40997:11;40978:16;:6;3165:14;;3073:114;40978:16;:30;;;;:::i;:::-;:43;;40970:76;;;;-1:-1:-1;;;40970:76:0;;;;;;;:::i;:::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23:::1;7957:68;;;;-1:-1:-1::0;;;7957:68:0::1;;;;;;;:::i;:::-;42396:38:::2;42406:9;42417:11;42430:3;42396:9;:38::i;:::-;42258:182:::0;;;;:::o;46241:155::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;46317:1:::1;46293:21;:25;46285:50;;;::::0;-1:-1:-1;;;46285:50:0;;17072:2:1;46285:50:0::1;::::0;::::1;17054:21:1::0;17111:2;17091:18;;;17084:30;-1:-1:-1;;;17130:18:1;;;17123:42;17182:18;;46285:50:0::1;16870:336:1::0;46285:50:0::1;7818:6:::0;;46342:48:::1;::::0;-1:-1:-1;;;;;7818:6:0;;;;46368:21:::1;46342:48:::0;::::1;;;::::0;::::1;::::0;;;46368:21;7818:6;46342:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;46241:155::o:0;31072:185::-;31210:39;31227:4;31233:2;31237:7;31210:39;;;;;;;;;;;;:16;:39::i;44076:635::-;44151:16;44179:23;44205:17;44215:6;44205:9;:17::i;:::-;44179:43;;44229:30;44276:15;44262:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44262:30:0;-1:-1:-1;44229:63:0;-1:-1:-1;44324:1:0;44299:22;44368:309;44393:15;44375;:33;:64;;;;;44430:9;;44412:14;:27;;44375:64;44368:309;;;44450:25;44478:23;44486:14;44478:7;:23::i;:::-;44450:51;;44537:6;-1:-1:-1;;;;;44516:27:0;:17;-1:-1:-1;;;;;44516:27:0;;44512:131;;;44589:14;44556:13;44570:15;44556:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;44616:17;;;;:::i;:::-;;;;44512:131;44653:16;;;;:::i;:::-;;;;44441:236;44368:309;;;-1:-1:-1;44692:13:0;;44076:635;-1:-1:-1;;;;44076:635:0:o;45414:74::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;45470:4:::1;:12:::0;45414:74::o;45808:132::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;45896:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;40097:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45494:83::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;45553:10:::1;:18:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;45553:18:0;;::::1;::::0;;;::::1;::::0;;45494:83::o;28047:239::-;28119:7;28155:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28155:16:0;28190:19;28182:73;;;;-1:-1:-1;;;28182:73:0;;15950:2:1;28182:73:0;;;15932:21:1;15989:2;15969:18;;;15962:30;16028:34;16008:18;;;16001:62;-1:-1:-1;;;16079:18:1;;;16072:39;16128:19;;28182:73:0;15748:405:1;27777:208:0;27849:7;-1:-1:-1;;;;;27877:19:0;;27869:74;;;;-1:-1:-1;;;27869:74:0;;15539:2:1;27869:74:0;;;15521:21:1;15578:2;15558:18;;;15551:30;15617:34;15597:18;;;15590:62;-1:-1:-1;;;15668:18:1;;;15661:40;15718:19;;27869:74:0;15337:406:1;27869:74:0;-1:-1:-1;;;;;;27961:16:0;;;;;:9;:16;;;;;;;27777:208::o;8396:103::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;8461:30:::1;8488:1;8461:18;:30::i;:::-;8396:103::o:0;45304:104::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;45376:10:::1;:24:::0;45304:104::o;45946:100::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;46018:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;28522:104::-:0;28578:13;28611:7;28604:14;;;;;:::i;42446:165::-;42536:11;41144:1;41130:11;:15;41122:48;;;;-1:-1:-1;;;41122:48:0;;;;;;;:::i;:::-;41219:9;;41204:11;41185:16;:6;3165:14;;3073:114;41185:16;:30;;;;:::i;:::-;:43;;41177:76;;;;-1:-1:-1;;;41177:76:0;;;;;;;:::i;:::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23:::1;7957:68;;;;-1:-1:-1::0;;;7957:68:0::1;;;;;;;:::i;30205:155::-:0;30300:52;6549:10;30333:8;30343;30300:18;:52::i;40135:31::-;;;;;;;:::i;45672:130::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;45756:18:::1;:40:::0;45672:130::o;31328:328::-;31503:41;6549:10;31536:7;31503:18;:41::i;:::-;31495:103;;;;-1:-1:-1;;;31495:103:0;;;;;;;:::i;:::-;31609:39;31623:4;31629:2;31633:7;31642:5;31609:13;:39::i;44717:494::-;33231:4;33255:16;;;:7;:16;;;;;;44816:13;;-1:-1:-1;;;;;33255:16:0;44841:98;;;;-1:-1:-1;;;44841:98:0;;18949:2:1;44841:98:0;;;18931:21:1;18988:2;18968:18;;;18961:30;19027:34;19007:18;;;19000:62;-1:-1:-1;;;19078:18:1;;;19071:45;19133:19;;44841:98:0;18747:411:1;44841:98:0;44952:8;;;;;;;44948:64;;44987:17;44980:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44717:494;;;:::o;44948:64::-;45020:28;45051:10;:8;:10::i;:::-;45020:41;;45106:1;45081:14;45075:28;:32;:130;;;;;;;;;;;;;;;;;45143:14;45159:19;:8;:17;:19::i;:::-;45180:9;45126:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45075:130;45068:137;44717:494;-1:-1:-1;;;44717:494:0:o;45217:81::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;45275:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;45275:17:0;;::::1;::::0;;;::::1;::::0;;45217:81::o;8654:201::-;7818:6;;-1:-1:-1;;;;;7818:6:0;6549:10;7965:23;7957:68;;;;-1:-1:-1;;;7957:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8743:22:0;::::1;8735:73;;;::::0;-1:-1:-1;;;8735:73:0;;12482:2:1;8735:73:0::1;::::0;::::1;12464:21:1::0;12521:2;12501:18;;;12494:30;12560:34;12540:18;;;12533:62;-1:-1:-1;;;12611:18:1;;;12604:36;12657:19;;8735:73:0::1;12280:402:1::0;8735:73:0::1;8819:28;8838:8;8819:18;:28::i;37148:174::-:0;37223:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37223:29:0;-1:-1:-1;;;;;37223:29:0;;;;;;;;:24;;37277:23;37223:24;37277:14;:23::i;:::-;-1:-1:-1;;;;;37268:46:0;;;;;;;;;;;37148:174;;:::o;43543:172::-;43633:28;;-1:-1:-1;;43650:10:0;8238:2:1;8234:15;8230:53;43633:28:0;;;8218:66:1;43605:4:0;;43666;;8300:12:1;;43633:28:0;;;;;;;;;;;;43623:39;;;;;;:47;43620:89;;;-1:-1:-1;43679:4:0;;43543:172;-1:-1:-1;43543:172:0:o;43620:89::-;43543:172;;;:::o;46508:306::-;-1:-1:-1;;;;;46605:31:0;;;;;;:20;:31;;;;;:45;;46639:11;;46605:31;:45;;46639:11;;46605:45;:::i;:::-;;;;-1:-1:-1;46662:9:0;;-1:-1:-1;46657:152:0;46681:11;46677:1;:15;46657:152;;;46708:18;:6;3284:19;;3302:1;3284:19;;;3195:127;46708:18;46755:9;46735;:17;46745:3;46749:1;46745:6;;;;;;;;:::i;:::-;;;;;;;46735:17;;;;;;;;;;;;:29;;;;;-1:-1:-1;;;;;46735:29:0;;;;;-1:-1:-1;;;;;46735:29:0;;;;;;46773:28;46783:9;46794:3;46798:1;46794:6;;;;;;;;:::i;:::-;;;;;;;46773:9;:28::i;:::-;46694:3;;;;:::i;:::-;;;;46657:152;;33460:348;33553:4;33255:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33255:16:0;33570:73;;;;-1:-1:-1;;;33570:73:0;;14701:2:1;33570:73:0;;;14683:21:1;14740:2;14720:18;;;14713:30;14779:34;14759:18;;;14752:62;-1:-1:-1;;;14830:18:1;;;14823:42;14882:19;;33570:73:0;14499:408:1;33570:73:0;33654:13;33670:23;33685:7;33670:14;:23::i;:::-;33654:39;;33723:5;-1:-1:-1;;;;;33712:16:0;:7;-1:-1:-1;;;;;33712:16:0;;:51;;;;33756:7;-1:-1:-1;;;;;33732:31:0;:20;33744:7;33732:11;:20::i;:::-;-1:-1:-1;;;;;33732:31:0;;33712:51;:87;;;-1:-1:-1;;;;;;30552:25:0;;;30528:4;30552:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33767:32;30431:164;36452:578;36611:4;-1:-1:-1;;;;;36584:31:0;:23;36599:7;36584:14;:23::i;:::-;-1:-1:-1;;;;;36584:31:0;;36576:85;;;;-1:-1:-1;;;36576:85:0;;18539:2:1;36576:85:0;;;18521:21:1;18578:2;18558:18;;;18551:30;18617:34;18597:18;;;18590:62;-1:-1:-1;;;18668:18:1;;;18661:39;18717:19;;36576:85:0;18337:405:1;36576:85:0;-1:-1:-1;;;;;36680:16:0;;36672:65;;;;-1:-1:-1;;;36672:65:0;;13595:2:1;36672:65:0;;;13577:21:1;13634:2;13614:18;;;13607:30;13673:34;13653:18;;;13646:62;-1:-1:-1;;;13724:18:1;;;13717:34;13768:19;;36672:65:0;13393:400:1;36672:65:0;36854:29;36871:1;36875:7;36854:8;:29::i;:::-;-1:-1:-1;;;;;36896:15:0;;;;;;:9;:15;;;;;:20;;36915:1;;36896:15;:20;;36915:1;;36896:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36927:13:0;;;;;;:9;:13;;;;;:18;;36944:1;;36927:13;:18;;36944:1;;36927:18;:::i;:::-;;;;-1:-1:-1;;36956:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36956:21:0;-1:-1:-1;;;;;36956:21:0;;;;;;;;;36995:27;;36956:16;;36995:27;;;;;;;36452:578;;;:::o;941:190::-;1066:4;1119;1090:25;1103:5;1110:4;1090:12;:25::i;:::-;:33;;941:190;-1:-1:-1;;;;941:190:0:o;9015:191::-;9108:6;;;-1:-1:-1;;;;;9125:17:0;;;-1:-1:-1;;;;;;9125:17:0;;;;;;;9158:40;;9108:6;;;9125:17;9108:6;;9158:40;;9089:16;;9158:40;9078:128;9015:191;:::o;37464:315::-;37619:8;-1:-1:-1;;;;;37610:17:0;:5;-1:-1:-1;;;;;37610:17:0;;;37602:55;;;;-1:-1:-1;;;37602:55:0;;14000:2:1;37602:55:0;;;13982:21:1;14039:2;14019:18;;;14012:30;14078:27;14058:18;;;14051:55;14123:18;;37602:55:0;13798:349:1;37602:55:0;-1:-1:-1;;;;;37668:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37668:46:0;;;;;;;;;;37730:41;;11585::1;;;37730::0;;11558:18:1;37730:41:0;;;;;;;37464:315;;;:::o;32538:::-;32695:28;32705:4;32711:2;32715:7;32695:9;:28::i;:::-;32742:48;32765:4;32771:2;32775:7;32784:5;32742:22;:48::i;:::-;32734:111;;;;-1:-1:-1;;;32734:111:0;;;;;;;:::i;46820:104::-;46880:13;46909:9;46902:16;;;;;:::i;4031:723::-;4087:13;4308:10;4304:53;;-1:-1:-1;;4335:10:0;;;;;;;;;;;;-1:-1:-1;;;4335:10:0;;;;;4031:723::o;4304:53::-;4382:5;4367:12;4423:78;4430:9;;4423:78;;4456:8;;;;:::i;:::-;;-1:-1:-1;4479:10:0;;-1:-1:-1;4487:2:0;4479:10;;:::i;:::-;;;4423:78;;;4511:19;4543:6;4533:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4533:17:0;;4511:39;;4561:154;4568:10;;4561:154;;4595:11;4605:1;4595:11;;:::i;:::-;;-1:-1:-1;4664:10:0;4672:2;4664:5;:10;:::i;:::-;4651:24;;:2;:24;:::i;:::-;4638:39;;4621:6;4628;4621:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4621:56:0;;;;;;;;-1:-1:-1;4692:11:0;4701:2;4692:11;;:::i;:::-;;;4561:154;;34150:110;34226:26;34236:2;34240:7;34226:26;;;;;;;;;;;;:9;:26::i;1493:701::-;1576:7;1619:4;1576:7;1634:523;1658:5;:12;1654:1;:16;1634:523;;;1692:20;1715:5;1721:1;1715:8;;;;;;;;:::i;:::-;;;;;;;1692:31;;1758:12;1742;:28;1738:408;;1895:44;;;;;;8480:19:1;;;8515:12;;;8508:28;;;8552:12;;1895:44:0;;;;;;;;;;;;1885:55;;;;;;1870:70;;1738:408;;;2085:44;;;;;;8480:19:1;;;8515:12;;;8508:28;;;8552:12;;2085:44:0;;;;;;;;;;;;2075:55;;;;;;2060:70;;1738:408;-1:-1:-1;1672:3:0;;;;:::i;:::-;;;;1634:523;;;-1:-1:-1;2174:12:0;1493:701;-1:-1:-1;;;1493:701:0:o;38344:799::-;38499:4;-1:-1:-1;;;;;38520:13:0;;10356:20;10404:8;38516:620;;38556:72;;-1:-1:-1;;;38556:72:0;;-1:-1:-1;;;;;38556:36:0;;;;;:72;;6549:10;;38607:4;;38613:7;;38622:5;;38556:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38556:72:0;;;;;;;;-1:-1:-1;;38556:72:0;;;;;;;;;;;;:::i;:::-;;;38552:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38798:13:0;;38794:272;;38841:60;;-1:-1:-1;;;38841:60:0;;;;;;;:::i;38794:272::-;39016:6;39010:13;39001:6;38997:2;38993:15;38986:38;38552:529;-1:-1:-1;;;;;;38679:51:0;-1:-1:-1;;;38679:51:0;;-1:-1:-1;38672:58:0;;38516:620;-1:-1:-1;39120:4:0;38344:799;;;;;;:::o;34487:321::-;34617:18;34623:2;34627:7;34617:5;:18::i;:::-;34668:54;34699:1;34703:2;34707:7;34716:5;34668:22;:54::i;:::-;34646:154;;;;-1:-1:-1;;;34646:154:0;;;;;;;:::i;35144:382::-;-1:-1:-1;;;;;35224:16:0;;35216:61;;;;-1:-1:-1;;;35216:61:0;;16711:2:1;35216:61:0;;;16693:21:1;;;16730:18;;;16723:30;16789:34;16769:18;;;16762:62;16841:18;;35216:61:0;16509:356:1;35216:61:0;33231:4;33255:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33255:16:0;:30;35288:58;;;;-1:-1:-1;;;35288:58:0;;12889:2:1;35288:58:0;;;12871:21:1;12928:2;12908:18;;;12901:30;12967;12947:18;;;12940:58;13015:18;;35288:58:0;12687:352:1;35288:58:0;-1:-1:-1;;;;;35417:13:0;;;;;;:9;:13;;;;;:18;;35434:1;;35417:13;:18;;35434:1;;35417:18;:::i;:::-;;;;-1:-1:-1;;35446:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35446:21:0;-1:-1:-1;;;;;35446:21:0;;;;;;;;35485:33;;35446:16;;;35485:33;;35446:16;;35485:33;35144:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;603:673;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:163;1098:2;1095:1;1092:9;1084:163;;;1155:17;;1143:30;;1193:12;;;;1225;;;;1116:1;1109:9;1084:163;;;-1:-1:-1;1265:5:1;;603:673;-1:-1:-1;;;;;;;603:673:1:o;1959:160::-;2024:20;;2080:13;;2073:21;2063:32;;2053:60;;2109:1;2106;2099:12;2124:186;2183:6;2236:2;2224:9;2215:7;2211:23;2207:32;2204:52;;;2252:1;2249;2242:12;2204:52;2275:29;2294:9;2275:29;:::i;2315:260::-;2383:6;2391;2444:2;2432:9;2423:7;2419:23;2415:32;2412:52;;;2460:1;2457;2450:12;2412:52;2483:29;2502:9;2483:29;:::i;:::-;2473:39;;2531:38;2565:2;2554:9;2550:18;2531:38;:::i;:::-;2521:48;;2315:260;;;;;:::o;2580:328::-;2657:6;2665;2673;2726:2;2714:9;2705:7;2701:23;2697:32;2694:52;;;2742:1;2739;2732:12;2694:52;2765:29;2784:9;2765:29;:::i;:::-;2755:39;;2813:38;2847:2;2836:9;2832:18;2813:38;:::i;:::-;2803:48;;2898:2;2887:9;2883:18;2870:32;2860:42;;2580:328;;;;;:::o;2913:666::-;3008:6;3016;3024;3032;3085:3;3073:9;3064:7;3060:23;3056:33;3053:53;;;3102:1;3099;3092:12;3053:53;3125:29;3144:9;3125:29;:::i;:::-;3115:39;;3173:38;3207:2;3196:9;3192:18;3173:38;:::i;:::-;3163:48;;3258:2;3247:9;3243:18;3230:32;3220:42;;3313:2;3302:9;3298:18;3285:32;3340:18;3332:6;3329:30;3326:50;;;3372:1;3369;3362:12;3326:50;3395:22;;3448:4;3440:13;;3436:27;-1:-1:-1;3426:55:1;;3477:1;3474;3467:12;3426:55;3500:73;3565:7;3560:2;3547:16;3542:2;3538;3534:11;3500:73;:::i;:::-;3490:83;;;2913:666;;;;;;;:::o;3584:254::-;3649:6;3657;3710:2;3698:9;3689:7;3685:23;3681:32;3678:52;;;3726:1;3723;3716:12;3678:52;3749:29;3768:9;3749:29;:::i;:::-;3739:39;;3797:35;3828:2;3817:9;3813:18;3797:35;:::i;3843:254::-;3911:6;3919;3972:2;3960:9;3951:7;3947:23;3943:32;3940:52;;;3988:1;3985;3978:12;3940:52;4011:29;4030:9;4011:29;:::i;:::-;4001:39;4087:2;4072:18;;;;4059:32;;-1:-1:-1;;;3843:254:1:o;4102:180::-;4158:6;4211:2;4199:9;4190:7;4186:23;4182:32;4179:52;;;4227:1;4224;4217:12;4179:52;4250:26;4266:9;4250:26;:::i;4287:180::-;4346:6;4399:2;4387:9;4378:7;4374:23;4370:32;4367:52;;;4415:1;4412;4405:12;4367:52;-1:-1:-1;4438:23:1;;4287:180;-1:-1:-1;4287:180:1:o;4472:484::-;4574:6;4582;4590;4643:2;4631:9;4622:7;4618:23;4614:32;4611:52;;;4659:1;4656;4649:12;4611:52;4695:9;4682:23;4672:33;;4752:2;4741:9;4737:18;4724:32;4714:42;;4807:2;4796:9;4792:18;4779:32;4834:18;4826:6;4823:30;4820:50;;;4866:1;4863;4856:12;4820:50;4889:61;4942:7;4933:6;4922:9;4918:22;4889:61;:::i;:::-;4879:71;;;4472:484;;;;;:::o;4961:245::-;5019:6;5072:2;5060:9;5051:7;5047:23;5043:32;5040:52;;;5088:1;5085;5078:12;5040:52;5127:9;5114:23;5146:30;5170:5;5146:30;:::i;5211:249::-;5280:6;5333:2;5321:9;5312:7;5308:23;5304:32;5301:52;;;5349:1;5346;5339:12;5301:52;5381:9;5375:16;5400:30;5424:5;5400:30;:::i;5465:450::-;5534:6;5587:2;5575:9;5566:7;5562:23;5558:32;5555:52;;;5603:1;5600;5593:12;5555:52;5643:9;5630:23;5676:18;5668:6;5665:30;5662:50;;;5708:1;5705;5698:12;5662:50;5731:22;;5784:4;5776:13;;5772:27;-1:-1:-1;5762:55:1;;5813:1;5810;5803:12;5762:55;5836:73;5901:7;5896:2;5883:16;5878:2;5874;5870:11;5836:73;:::i;6105:490::-;6207:6;6215;6223;6276:2;6264:9;6255:7;6251:23;6247:32;6244:52;;;6292:1;6289;6282:12;6244:52;6328:9;6315:23;6305:33;;6357:38;6391:2;6380:9;6376:18;6357:38;:::i;:::-;6347:48;;6446:2;6435:9;6431:18;6418:32;6473:18;6465:6;6462:30;6459:50;;;6505:1;6502;6495:12;6600:416;6693:6;6701;6754:2;6742:9;6733:7;6729:23;6725:32;6722:52;;;6770:1;6767;6760:12;6722:52;6806:9;6793:23;6783:33;;6867:2;6856:9;6852:18;6839:32;6894:18;6886:6;6883:30;6880:50;;;6926:1;6923;6916:12;6880:50;6949:61;7002:7;6993:6;6982:9;6978:22;6949:61;:::i;:::-;6939:71;;;6600:416;;;;;:::o;7021:801::-;7166:6;7174;7182;7190;7198;7251:3;7239:9;7230:7;7226:23;7222:33;7219:53;;;7268:1;7265;7258:12;7219:53;7304:9;7291:23;7281:33;;7361:2;7350:9;7346:18;7333:32;7323:42;;7416:2;7405:9;7401:18;7388:32;7439:18;7480:2;7472:6;7469:14;7466:34;;;7496:1;7493;7486:12;7466:34;7519:61;7572:7;7563:6;7552:9;7548:22;7519:61;:::i;:::-;7509:71;;7627:2;7616:9;7612:18;7599:32;7589:42;;7684:3;7673:9;7669:19;7656:33;7640:49;;7714:2;7704:8;7701:16;7698:36;;;7730:1;7727;7720:12;7698:36;;7753:63;7808:7;7797:8;7786:9;7782:24;7753:63;:::i;:::-;7743:73;;;7021:801;;;;;;;;:::o;7827:257::-;7868:3;7906:5;7900:12;7933:6;7928:3;7921:19;7949:63;8005:6;7998:4;7993:3;7989:14;7982:4;7975:5;7971:16;7949:63;:::i;:::-;8066:2;8045:15;-1:-1:-1;;8041:29:1;8032:39;;;;8073:4;8028:50;;7827:257;-1:-1:-1;;7827:257:1:o;8575:1527::-;8799:3;8837:6;8831:13;8863:4;8876:51;8920:6;8915:3;8910:2;8902:6;8898:15;8876:51;:::i;:::-;8990:13;;8949:16;;;;9012:55;8990:13;8949:16;9034:15;;;9012:55;:::i;:::-;9156:13;;9089:20;;;9129:1;;9216;9238:18;;;;9291;;;;9318:93;;9396:4;9386:8;9382:19;9370:31;;9318:93;9459:2;9449:8;9446:16;9426:18;9423:40;9420:167;;;-1:-1:-1;;;9486:33:1;;9542:4;9539:1;9532:15;9572:4;9493:3;9560:17;9420:167;9603:18;9630:110;;;;9754:1;9749:328;;;;9596:481;;9630:110;-1:-1:-1;;9665:24:1;;9651:39;;9710:20;;;;-1:-1:-1;9630:110:1;;9749:328;22210:1;22203:14;;;22247:4;22234:18;;9844:1;9858:169;9872:8;9869:1;9866:15;9858:169;;;9954:14;;9939:13;;;9932:37;9997:16;;;;9889:10;;9858:169;;;9862:3;;10058:8;10051:5;10047:20;10040:27;;9596:481;-1:-1:-1;10093:3:1;;8575:1527;-1:-1:-1;;;;;;;;;;;8575:1527:1:o;10315:488::-;-1:-1:-1;;;;;10584:15:1;;;10566:34;;10636:15;;10631:2;10616:18;;10609:43;10683:2;10668:18;;10661:34;;;10731:3;10726:2;10711:18;;10704:31;;;10509:4;;10752:45;;10777:19;;10769:6;10752:45;:::i;:::-;10744:53;10315:488;-1:-1:-1;;;;;;10315:488:1:o;10808:632::-;10979:2;11031:21;;;11101:13;;11004:18;;;11123:22;;;10950:4;;10979:2;11202:15;;;;11176:2;11161:18;;;10950:4;11245:169;11259:6;11256:1;11253:13;11245:169;;;11320:13;;11308:26;;11389:15;;;;11354:12;;;;11281:1;11274:9;11245:169;;;-1:-1:-1;11431:3:1;;10808:632;-1:-1:-1;;;;;;10808:632:1:o;11637:219::-;11786:2;11775:9;11768:21;11749:4;11806:44;11846:2;11835:9;11831:18;11823:6;11806:44;:::i;11861:414::-;12063:2;12045:21;;;12102:2;12082:18;;;12075:30;12141:34;12136:2;12121:18;;12114:62;-1:-1:-1;;;12207:2:1;12192:18;;12185:48;12265:3;12250:19;;11861:414::o;13044:344::-;13246:2;13228:21;;;13285:2;13265:18;;;13258:30;-1:-1:-1;;;13319:2:1;13304:18;;13297:50;13379:2;13364:18;;13044:344::o;17624:356::-;17826:2;17808:21;;;17845:18;;;17838:30;17904:34;17899:2;17884:18;;17877:62;17971:2;17956:18;;17624:356::o;19565:344::-;19767:2;19749:21;;;19806:2;19786:18;;;19779:30;-1:-1:-1;;;19840:2:1;19825:18;;19818:50;19900:2;19885:18;;19565:344::o;19914:413::-;20116:2;20098:21;;;20155:2;20135:18;;;20128:30;20194:34;20189:2;20174:18;;20167:62;-1:-1:-1;;;20260:2:1;20245:18;;20238:47;20317:3;20302:19;;19914:413::o;20332:398::-;20534:2;20516:21;;;20573:2;20553:18;;;20546:30;20612:34;20607:2;20592:18;;20585:62;-1:-1:-1;;;20678:2:1;20663:18;;20656:32;20720:3;20705:19;;20332:398::o;21669:275::-;21740:2;21734:9;21805:2;21786:13;;-1:-1:-1;;21782:27:1;21770:40;;21840:18;21825:34;;21861:22;;;21822:62;21819:88;;;21887:18;;:::i;:::-;21923:2;21916:22;21669:275;;-1:-1:-1;21669:275:1:o;21949:183::-;22009:4;22042:18;22034:6;22031:30;22028:56;;;22064:18;;:::i;:::-;-1:-1:-1;22109:1:1;22105:14;22121:4;22101:25;;21949:183::o;22263:128::-;22303:3;22334:1;22330:6;22327:1;22324:13;22321:39;;;22340:18;;:::i;:::-;-1:-1:-1;22376:9:1;;22263:128::o;22396:120::-;22436:1;22462;22452:35;;22467:18;;:::i;:::-;-1:-1:-1;22501:9:1;;22396:120::o;22521:168::-;22561:7;22627:1;22623;22619:6;22615:14;22612:1;22609:21;22604:1;22597:9;22590:17;22586:45;22583:71;;;22634:18;;:::i;:::-;-1:-1:-1;22674:9:1;;22521:168::o;22694:125::-;22734:4;22762:1;22759;22756:8;22753:34;;;22767:18;;:::i;:::-;-1:-1:-1;22804:9:1;;22694:125::o;22824:258::-;22896:1;22906:113;22920:6;22917:1;22914:13;22906:113;;;22996:11;;;22990:18;22977:11;;;22970:39;22942:2;22935:10;22906:113;;;23037:6;23034:1;23031:13;23028:48;;;-1:-1:-1;;23072:1:1;23054:16;;23047:27;22824:258::o;23087:380::-;23166:1;23162:12;;;;23209;;;23230:61;;23284:4;23276:6;23272:17;23262:27;;23230:61;23337:2;23329:6;23326:14;23306:18;23303:38;23300:161;;;23383:10;23378:3;23374:20;23371:1;23364:31;23418:4;23415:1;23408:15;23446:4;23443:1;23436:15;23300:161;;23087:380;;;:::o;23472:135::-;23511:3;-1:-1:-1;;23532:17:1;;23529:43;;;23552:18;;:::i;:::-;-1:-1:-1;23599:1:1;23588:13;;23472:135::o;23612:112::-;23644:1;23670;23660:35;;23675:18;;:::i;:::-;-1:-1:-1;23709:9:1;;23612:112::o;23729:127::-;23790:10;23785:3;23781:20;23778:1;23771:31;23821:4;23818:1;23811:15;23845:4;23842:1;23835:15;23861:127;23922:10;23917:3;23913:20;23910:1;23903:31;23953:4;23950:1;23943:15;23977:4;23974:1;23967:15;23993:127;24054:10;24049:3;24045:20;24042:1;24035:31;24085:4;24082:1;24075:15;24109:4;24106:1;24099:15;24125:127;24186:10;24181:3;24177:20;24174:1;24167:31;24217:4;24214:1;24207:15;24241:4;24238:1;24231:15;24257:131;-1:-1:-1;;;;;;24331:32:1;;24321:43;;24311:71;;24378:1;24375;24368:12

Swarm Source

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