ETH Price: $3,362.54 (-0.63%)
Gas: 1 Gwei

Token

BekoNekoz VX (BEKO)
 

Overview

Max Total Supply

777 BEKO

Holders

175

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
chumwithnodick.eth
Balance
1 BEKO
0xB2Aadf6BFc0a5213acb9c279394B46F50aEa65a3
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:
BekoNekoz

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 777 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


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


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


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


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


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


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


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


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


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

pragma solidity ^0.8.0;


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

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

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


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


// 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 {}
}


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


pragma solidity ^0.8.9;






contract BekoNekoz is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard {

    string private _baseURIextended;

    uint256 public constant MAX_GENESIS_SUPPLY = 7777;

    //Max mints per role
    uint256 public constant OG_MAX_MINTS = 6;
    uint256 public constant WL_MAX_MINTS = 3;
    uint256 public constant PUBLIC_MAX_MINTS = 3;

    // Pricing to reward community builders
    uint256 public constant PRESALE_GENESIS_PRICE = 0.07 ether;
    uint256 public constant PUBLIC_GENESIS_PRICE = 0.09 ether;

    bytes32 public merkleRootForOG = 0x0;
    bytes32 public merkleRootForWL = 0x0;

    mapping(address => uint256) public ogClaimed;
    mapping(address => uint256) public whitelistClaimed;

    bool public isPresaleActive = false;
    bool public isSaleActive = false;

    constructor() ERC721("BekoNekoz VX", "BEKO") {}

    modifier noContract() {
        address account = msg.sender;
        require(account == tx.origin, "Caller is a contract");
        require(account.code.length == 0, "Caller is a contract");
        _;
    }

    function flipPresaleState(bool flipState) external onlyOwner {
        isPresaleActive = flipState;
    }

    function flipPublicSaleState(bool flipState) external onlyOwner {
        isSaleActive = flipState;
    }

    function setMerkleRoot(uint _type, bytes32 _merkleRoot)
        external
        onlyOwner
    {
        // 1: OG, 2: WL
        if (_type == 1) {
            merkleRootForOG = _merkleRoot;
        } else {
            merkleRootForWL = _merkleRoot;
        }
    }

    function presaleMint(uint256 _numberOfBekoz, bytes32[] calldata _ogMerkleProof, bytes32[] calldata _wlMerkleProof)
        external
        payable
        noContract
        nonReentrant
    {
        uint256 totalSupply = totalSupply();
        require(isPresaleActive, "Presale is not active");
        require(_numberOfBekoz > 0, "Mint amount should be positive" );
        require(verifySender(_ogMerkleProof, _wlMerkleProof), "Sender is not OG or whitelisted");
        require(canMintAmount(_numberOfBekoz, _ogMerkleProof, _wlMerkleProof), "Sender max presale claim exceeded");
        require(totalSupply + _numberOfBekoz <= MAX_GENESIS_SUPPLY, "Max Bekoz amount reached");
        require(PRESALE_GENESIS_PRICE * _numberOfBekoz <= msg.value, "Incorrect value sent");

        uint8 presaleType = getPresaleType(_ogMerkleProof, _wlMerkleProof);
        if (presaleType == 1) {
          ogClaimed[msg.sender] += uint8(_numberOfBekoz);
        } else {
          whitelistClaimed[msg.sender] += uint8(_numberOfBekoz);
        }

        for (uint256 i = 0; i < _numberOfBekoz; i++) {
          _safeMint(msg.sender, totalSupply + i);
        }
    }

    function mint(uint256 _numberOfBekoz)
        external
        payable
        noContract
        nonReentrant
    {
        uint256 totalSupply = totalSupply();
        require(isSaleActive, "Public sale is not active");
        require(_numberOfBekoz > 0, "Mint amount should be positive" );
        require(_numberOfBekoz <= PUBLIC_MAX_MINTS, "Mint amount exceeds max per tx" );
        require(totalSupply + _numberOfBekoz <= MAX_GENESIS_SUPPLY, "Max Bekoz amount reached");
        require(PUBLIC_GENESIS_PRICE * _numberOfBekoz <= msg.value, "Incorrect value sent");

        for (uint256 i = 0; i < _numberOfBekoz; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    // Will be utilized for early supporters, marketing, and rewards to community builders.
    function teamMint(uint256 _numberOfBekoz) external onlyOwner {
      uint256 totalSupply = totalSupply();
      require(totalSupply + _numberOfBekoz <= MAX_GENESIS_SUPPLY, "Max Bekoz amount reached");

      for (uint256 i = 0; i < _numberOfBekoz; i++) {
        _safeMint(msg.sender, totalSupply + i);
      }
    }

    function verifySender(bytes32[] calldata _ogMerkleProof, bytes32[] calldata _wlMerkleProof) internal view returns (bool) {
        return _verify(_ogMerkleProof, _wlMerkleProof, _hash(msg.sender));
    }

    function _verify(bytes32[] calldata _ogMerkleProof, bytes32[] calldata _wlMerkleProof, bytes32 addressHash) private view returns (bool) {
        return (MerkleProof.verify(_ogMerkleProof, merkleRootForOG, addressHash)
          || MerkleProof.verify(_wlMerkleProof, merkleRootForWL, addressHash));
    }

    function getPresaleType(bytes32[] calldata _ogMerkleProof, bytes32[] calldata _wlMerkleProof) public view returns (uint8) {
      bytes32 addressHash = _hash(msg.sender);
      require(verifySender(_ogMerkleProof, _wlMerkleProof), "Sender is not OG or whitelisted");
      if (MerkleProof.verify(_ogMerkleProof, merkleRootForOG, addressHash)) {
        return 1;
      } else {
        return 2;
      }
    }

    function canMintAmount(uint256 _count, bytes32[] calldata _ogMerkleProof, bytes32[] calldata _wlMerkleProof) public view returns (bool) {
        uint8 presaleType = getPresaleType(_ogMerkleProof, _wlMerkleProof);
        uint256 maxMintAmount;

        if (presaleType == 1) {
            maxMintAmount = OG_MAX_MINTS;
            return ogClaimed[msg.sender] + _count <= maxMintAmount;
        } else {
            maxMintAmount = WL_MAX_MINTS;
            return whitelistClaimed[msg.sender] + _count <= maxMintAmount;
        }
    }

    function presaleActive() external view returns (bool) {
      return isPresaleActive;
    }

    function saleActive() external view returns (bool) {
      return isSaleActive;
    }

    function _hash(address _address) private pure returns (bytes32) {
        return keccak256(abi.encodePacked(_address));
    }

    function setBaseURI(string memory baseURI_)
        external
        onlyOwner
    {
        _baseURIextended = baseURI_;
    }

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

    function supportsInterface(bytes4 interfaceId)
      public
      view
      virtual
      override(ERC721, ERC721Enumerable)
      returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function withdrawAll() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

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":[],"name":"MAX_GENESIS_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_GENESIS_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_GENESIS_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"_ogMerkleProof","type":"bytes32[]"},{"internalType":"bytes32[]","name":"_wlMerkleProof","type":"bytes32[]"}],"name":"canMintAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"flipState","type":"bool"}],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flipState","type":"bool"}],"name":"flipPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_ogMerkleProof","type":"bytes32[]"},{"internalType":"bytes32[]","name":"_wlMerkleProof","type":"bytes32[]"}],"name":"getPresaleType","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootForOG","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootForWL","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfBekoz","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ogClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfBekoz","type":"uint256"},{"internalType":"bytes32[]","name":"_ogMerkleProof","type":"bytes32[]"},{"internalType":"bytes32[]","name":"_wlMerkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_type","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","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":"_numberOfBekoz","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600d819055600e556011805461ffff191690553480156200002657600080fd5b50604080518082018252600c81526b084cad6de9ccad6def440acb60a31b60208083019182528351808501909452600484526342454b4f60e01b90840152815191929162000077916000916200010b565b5080516200008d9060019060208401906200010b565b505050620000aa620000a4620000b560201b60201c565b620000b9565b6001600b55620001ee565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011990620001b1565b90600052602060002090601f0160209004810192826200013d576000855562000188565b82601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b5b808211156200019657600081556001016200019b565b600181811c90821680620001c657607f821691505b60208210811415620001e857634e487b7160e01b600052602260045260246000fd5b50919050565b61300180620001fe6000396000f3fe6080604052600436106102dc5760003560e01c806368428a1b11610184578063a22cb465116100d6578063ceacb2551161008a578063e985e9c511610064578063e985e9c5146107a2578063f2fde38b146107eb578063f3ca4d801461080b57600080fd5b8063ceacb25514610749578063db4bec441461075f578063e95cd1451461078c57600080fd5b8063b88d4fde116100bb578063b88d4fde14610709578063c51c2d261461068c578063c87b56dd1461072957600080fd5b8063a22cb465146106c9578063b7822ede146106e957600080fd5b806373fc16ad1161013857806390919a4b1161011257806390919a4b1461068c57806395d89b41146106a1578063a0712d68146106b657600080fd5b806373fc16ad1461062c578063853828b6146106595780638da5cb5b1461066e57600080fd5b806370a082311161016957806370a08231146105e1578063715018a614610601578063738e72181461061657600080fd5b806368428a1b146105a45780636c6177e8146105c157600080fd5b806329e378ec1161023d57806353135ca0116101f157806360d938dc116101cb57806360d938dc146105555780636131285a1461056f5780636352211e1461058457600080fd5b806353135ca0146104fe57806355f804b314610516578063564566a81461053657600080fd5b80632fbba115116102225780632fbba1151461049e57806342842e0e146104be5780634f6ccce7146104de57600080fd5b806329e378ec1461044c5780632f745c591461047e57600080fd5b80631486e4821161029457806318712c211161027957806318712c21146103f157806323b872dd1461041157806324f7f5eb1461043157600080fd5b80631486e482146103b257806318160ddd146103dc57600080fd5b8063081812fc116102c5578063081812fc14610338578063095ea7b314610370578063113929d81461039257600080fd5b806301ffc9a7146102e157806306fdde0314610316575b600080fd5b3480156102ed57600080fd5b506103016102fc3660046129be565b61081e565b60405190151581526020015b60405180910390f35b34801561032257600080fd5b5061032b61082f565b60405161030d9190612a33565b34801561034457600080fd5b50610358610353366004612a46565b6108c1565b6040516001600160a01b03909116815260200161030d565b34801561037c57600080fd5b5061039061038b366004612a7b565b61095b565b005b34801561039e57600080fd5b506103906103ad366004612ab5565b610a71565b3480156103be57600080fd5b506103ce67013fbe85edc9000081565b60405190815260200161030d565b3480156103e857600080fd5b506008546103ce565b3480156103fd57600080fd5b5061039061040c366004612ad0565b610ade565b34801561041d57600080fd5b5061039061042c366004612af2565b610b51565b34801561043d57600080fd5b506103ce66f8b0a10e47000081565b34801561045857600080fd5b5061046c610467366004612b7a565b610bcc565b60405160ff909116815260200161030d565b34801561048a57600080fd5b506103ce610499366004612a7b565b610cbc565b3480156104aa57600080fd5b506103906104b9366004612a46565b610d64565b3480156104ca57600080fd5b506103906104d9366004612af2565b610e56565b3480156104ea57600080fd5b506103ce6104f9366004612a46565b610e71565b34801561050a57600080fd5b5060115460ff16610301565b34801561052257600080fd5b50610390610531366004612c72565b610f15565b34801561054257600080fd5b5060115461030190610100900460ff1681565b34801561056157600080fd5b506011546103019060ff1681565b34801561057b57600080fd5b506103ce600681565b34801561059057600080fd5b5061035861059f366004612a46565b610f82565b3480156105b057600080fd5b50601154610100900460ff16610301565b3480156105cd57600080fd5b506103906105dc366004612ab5565b61100d565b3480156105ed57600080fd5b506103ce6105fc366004612cbb565b611081565b34801561060d57600080fd5b5061039061111b565b34801561062257600080fd5b506103ce611e6181565b34801561063857600080fd5b506103ce610647366004612cbb565b600f6020526000908152604090205481565b34801561066557600080fd5b50610390611181565b34801561067a57600080fd5b50600a546001600160a01b0316610358565b34801561069857600080fd5b506103ce600381565b3480156106ad57600080fd5b5061032b6111ff565b6103906106c4366004612a46565b61120e565b3480156106d557600080fd5b506103906106e4366004612cd6565b6114f4565b3480156106f557600080fd5b50610301610704366004612d09565b6114ff565b34801561071557600080fd5b50610390610724366004612d83565b611574565b34801561073557600080fd5b5061032b610744366004612a46565b6115f6565b34801561075557600080fd5b506103ce600e5481565b34801561076b57600080fd5b506103ce61077a366004612cbb565b60106020526000908152604090205481565b34801561079857600080fd5b506103ce600d5481565b3480156107ae57600080fd5b506103016107bd366004612dff565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f757600080fd5b50610390610806366004612cbb565b6116df565b610390610819366004612d09565b6117c1565b600061082982611b81565b92915050565b60606000805461083e90612e29565b80601f016020809104026020016040519081016040528092919081815260200182805461086a90612e29565b80156108b75780601f1061088c576101008083540402835291602001916108b7565b820191906000526020600020905b81548152906001019060200180831161089a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661093f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061096682610f82565b9050806001600160a01b0316836001600160a01b031614156109d45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610936565b336001600160a01b03821614806109f057506109f081336107bd565b610a625760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610936565b610a6c8383611ba6565b505050565b600a546001600160a01b03163314610acb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b6011805460ff1916911515919091179055565b600a546001600160a01b03163314610b385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b8160011415610b4757600d5550565b600e8190555b5050565b610b5b3382611c14565b610bc15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610936565b610a6c838383611d07565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090610c1286868686611ec6565b610c5e5760405162461bcd60e51b815260206004820152601f60248201527f53656e646572206973206e6f74204f47206f722077686974656c6973746564006044820152606401610936565b610c9f86868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611f17565b15610cae576001915050610cb4565b60029150505b949350505050565b6000610cc783611081565b8210610d3b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610936565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610dbe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b6000610dc960085490565b9050611e61610dd88383612e7a565b1115610e265760405162461bcd60e51b815260206004820152601860248201527f4d61782042656b6f7a20616d6f756e74207265616368656400000000000000006044820152606401610936565b60005b82811015610a6c57610e4433610e3f8385612e7a565b611f2d565b80610e4e81612e92565b915050610e29565b610a6c83838360405180602001604052806000815250611574565b6000610e7c60085490565b8210610ef05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610936565b60088281548110610f0357610f03612ead565b90600052602060002001549050919050565b600a546001600160a01b03163314610f6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b8051610b4d90600c90602084019061290f565b6000818152600260205260408120546001600160a01b0316806108295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610936565b600a546001600160a01b031633146110675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b601180549115156101000261ff0019909216919091179055565b60006001600160a01b0382166110ff5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610936565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b61117f6000611f47565b565b600a546001600160a01b031633146111db5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b60405133904780156108fc02916000818181858888f1935050505061117f57600080fd5b60606001805461083e90612e29565b333281146112555760405162461bcd60e51b815260206004820152601460248201527310d85b1b195c881a5cc8184818dbdb9d1c9858dd60621b6044820152606401610936565b6001600160a01b0381163b156112a45760405162461bcd60e51b815260206004820152601460248201527310d85b1b195c881a5cc8184818dbdb9d1c9858dd60621b6044820152606401610936565b6002600b5414156112f75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610936565b6002600b55600061130760085490565b601154909150610100900460ff166113615760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610936565b600083116113b15760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420616d6f756e742073686f756c6420626520706f73697469766500006044820152606401610936565b60038311156114025760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420616d6f756e742065786365656473206d61782070657220747800006044820152606401610936565b611e6161140f8483612e7a565b111561145d5760405162461bcd60e51b815260206004820152601860248201527f4d61782042656b6f7a20616d6f756e74207265616368656400000000000000006044820152606401610936565b346114708467013fbe85edc90000612ec3565b11156114be5760405162461bcd60e51b815260206004820152601460248201527f496e636f72726563742076616c75652073656e740000000000000000000000006044820152606401610936565b60005b838110156114e9576114d733610e3f8385612e7a565b806114e181612e92565b9150506114c1565b50506001600b555050565b610b4d338383611f99565b60008061150e86868686610bcc565b905060008160ff166001141561154a5750336000908152600f6020526040902054600690819061153f908a90612e7a565b11159250505061156b565b5033600090815260106020526040902054600390819061153f908a90612e7a565b95945050505050565b61157e3383611c14565b6115e45760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610936565b6115f084848484612068565b50505050565b6000818152600260205260409020546060906001600160a01b03166116835760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610936565b600061168d6120e6565b905060008151116116ad57604051806020016040528060008152506116d8565b806116b7846120f5565b6040516020016116c8929190612ee2565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b6001600160a01b0381166117b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610936565b6117be81611f47565b50565b333281146118085760405162461bcd60e51b815260206004820152601460248201527310d85b1b195c881a5cc8184818dbdb9d1c9858dd60621b6044820152606401610936565b6001600160a01b0381163b156118575760405162461bcd60e51b815260206004820152601460248201527310d85b1b195c881a5cc8184818dbdb9d1c9858dd60621b6044820152606401610936565b6002600b5414156118aa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610936565b6002600b5560006118ba60085490565b60115490915060ff1661190f5760405162461bcd60e51b815260206004820152601560248201527f50726573616c65206973206e6f742061637469766500000000000000000000006044820152606401610936565b6000871161195f5760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420616d6f756e742073686f756c6420626520706f73697469766500006044820152606401610936565b61196b86868686611ec6565b6119b75760405162461bcd60e51b815260206004820152601f60248201527f53656e646572206973206e6f74204f47206f722077686974656c6973746564006044820152606401610936565b6119c487878787876114ff565b611a1a5760405162461bcd60e51b815260206004820152602160248201527f53656e646572206d61782070726573616c6520636c61696d20657863656564656044820152601960fa1b6064820152608401610936565b611e61611a278883612e7a565b1115611a755760405162461bcd60e51b815260206004820152601860248201527f4d61782042656b6f7a20616d6f756e74207265616368656400000000000000006044820152606401610936565b34611a878866f8b0a10e470000612ec3565b1115611ad55760405162461bcd60e51b815260206004820152601460248201527f496e636f72726563742076616c75652073656e740000000000000000000000006044820152606401610936565b6000611ae387878787610bcc565b90508060ff1660011415611b1e57336000908152600f60205260408120805460ff8b169290611b13908490612e7a565b90915550611b469050565b336000908152601060205260408120805460ff8b169290611b40908490612e7a565b90915550505b60005b88811015611b7157611b5f33610e3f8386612e7a565b80611b6981612e92565b915050611b49565b50506001600b5550505050505050565b60006001600160e01b0319821663780e9d6360e01b148061082957506108298261220b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bdb82610f82565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611c8d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610936565b6000611c9883610f82565b9050806001600160a01b0316846001600160a01b03161480611cd35750836001600160a01b0316611cc8846108c1565b6001600160a01b0316145b80610cb457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610cb4565b826001600160a01b0316611d1a82610f82565b6001600160a01b031614611d965760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610936565b6001600160a01b038216611df85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610936565b611e0383838361225b565b611e0e600082611ba6565b6001600160a01b0383166000908152600360205260408120805460019290611e37908490612f11565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e65908490612e7a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061156b85858585611f12336040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b612266565b600082611f2485846122fa565b14949350505050565b610b4d8282604051806020016040528060008152506123a6565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611ffb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610936565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612073848484611d07565b61207f84848484612424565b6115f05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610936565b6060600c805461083e90612e29565b6060816121195750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612143578061212d81612e92565b915061213c9050600a83612f3e565b915061211d565b60008167ffffffffffffffff81111561215e5761215e612be6565b6040519080825280601f01601f191660200182016040528015612188576020820181803683370190505b5090505b8415610cb45761219d600183612f11565b91506121aa600a86612f52565b6121b5906030612e7a565b60f81b8183815181106121ca576121ca612ead565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612204600a86612f3e565b945061218c565b60006001600160e01b031982166380ac58cd60e01b148061223c57506001600160e01b03198216635b5e139f60e01b145b8061082957506301ffc9a760e01b6001600160e01b0319831614610829565b610a6c838383612579565b60006122a986868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150859050611f17565b806122f057506122f084848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150859050611f17565b9695505050505050565b600081815b845181101561239e57600085828151811061231c5761231c612ead565b6020026020010151905080831161235e57604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061238b565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061239681612e92565b9150506122ff565b509392505050565b6123b08383612631565b6123bd6000848484612424565b610a6c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610936565b60006001600160a01b0384163b1561257157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612468903390899088908890600401612f66565b602060405180830381600087803b15801561248257600080fd5b505af19250505080156124b2575060408051601f3d908101601f191682019092526124af91810190612f98565b60015b612557573d8080156124e0576040519150601f19603f3d011682016040523d82523d6000602084013e6124e5565b606091505b50805161254f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610936565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610cb4565b506001610cb4565b6001600160a01b0383166125d4576125cf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6125f7565b816001600160a01b0316836001600160a01b0316146125f7576125f7838261277f565b6001600160a01b03821661260e57610a6c8161281c565b826001600160a01b0316826001600160a01b031614610a6c57610a6c82826128cb565b6001600160a01b0382166126875760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610936565b6000818152600260205260409020546001600160a01b0316156126ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610936565b6126f86000838361225b565b6001600160a01b0382166000908152600360205260408120805460019290612721908490612e7a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161278c84611081565b6127969190612f11565b6000838152600760205260409020549091508082146127e9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061282e90600190612f11565b6000838152600960205260408120546008805493945090928490811061285657612856612ead565b90600052602060002001549050806008838154811061287757612877612ead565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128af576128af612fb5565b6001900381819060005260206000200160009055905550505050565b60006128d683611081565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461291b90612e29565b90600052602060002090601f01602090048101928261293d5760008555612983565b82601f1061295657805160ff1916838001178555612983565b82800160010185558215612983579182015b82811115612983578251825591602001919060010190612968565b5061298f929150612993565b5090565b5b8082111561298f5760008155600101612994565b6001600160e01b0319811681146117be57600080fd5b6000602082840312156129d057600080fd5b81356116d8816129a8565b60005b838110156129f65781810151838201526020016129de565b838111156115f05750506000910152565b60008151808452612a1f8160208601602086016129db565b601f01601f19169290920160200192915050565b6020815260006116d86020830184612a07565b600060208284031215612a5857600080fd5b5035919050565b80356001600160a01b0381168114612a7657600080fd5b919050565b60008060408385031215612a8e57600080fd5b612a9783612a5f565b946020939093013593505050565b80358015158114612a7657600080fd5b600060208284031215612ac757600080fd5b6116d882612aa5565b60008060408385031215612ae357600080fd5b50508035926020909101359150565b600080600060608486031215612b0757600080fd5b612b1084612a5f565b9250612b1e60208501612a5f565b9150604084013590509250925092565b60008083601f840112612b4057600080fd5b50813567ffffffffffffffff811115612b5857600080fd5b6020830191508360208260051b8501011115612b7357600080fd5b9250929050565b60008060008060408587031215612b9057600080fd5b843567ffffffffffffffff80821115612ba857600080fd5b612bb488838901612b2e565b90965094506020870135915080821115612bcd57600080fd5b50612bda87828801612b2e565b95989497509550505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612c1757612c17612be6565b604051601f8501601f19908116603f01168101908282118183101715612c3f57612c3f612be6565b81604052809350858152868686011115612c5857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612c8457600080fd5b813567ffffffffffffffff811115612c9b57600080fd5b8201601f81018413612cac57600080fd5b610cb484823560208401612bfc565b600060208284031215612ccd57600080fd5b6116d882612a5f565b60008060408385031215612ce957600080fd5b612cf283612a5f565b9150612d0060208401612aa5565b90509250929050565b600080600080600060608688031215612d2157600080fd5b85359450602086013567ffffffffffffffff80821115612d4057600080fd5b612d4c89838a01612b2e565b90965094506040880135915080821115612d6557600080fd5b50612d7288828901612b2e565b969995985093965092949392505050565b60008060008060808587031215612d9957600080fd5b612da285612a5f565b9350612db060208601612a5f565b925060408501359150606085013567ffffffffffffffff811115612dd357600080fd5b8501601f81018713612de457600080fd5b612df387823560208401612bfc565b91505092959194509250565b60008060408385031215612e1257600080fd5b612e1b83612a5f565b9150612d0060208401612a5f565b600181811c90821680612e3d57607f821691505b60208210811415612e5e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612e8d57612e8d612e64565b500190565b6000600019821415612ea657612ea6612e64565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615612edd57612edd612e64565b500290565b60008351612ef48184602088016129db565b835190830190612f088183602088016129db565b01949350505050565b600082821015612f2357612f23612e64565b500390565b634e487b7160e01b600052601260045260246000fd5b600082612f4d57612f4d612f28565b500490565b600082612f6157612f61612f28565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526122f06080830184612a07565b600060208284031215612faa57600080fd5b81516116d8816129a8565b634e487b7160e01b600052603160045260246000fdfea264697066735822122069f564129ad4225fc7aae7363b19ab23ccfc9f6196400cb5d7825d378ac7be9164736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102dc5760003560e01c806368428a1b11610184578063a22cb465116100d6578063ceacb2551161008a578063e985e9c511610064578063e985e9c5146107a2578063f2fde38b146107eb578063f3ca4d801461080b57600080fd5b8063ceacb25514610749578063db4bec441461075f578063e95cd1451461078c57600080fd5b8063b88d4fde116100bb578063b88d4fde14610709578063c51c2d261461068c578063c87b56dd1461072957600080fd5b8063a22cb465146106c9578063b7822ede146106e957600080fd5b806373fc16ad1161013857806390919a4b1161011257806390919a4b1461068c57806395d89b41146106a1578063a0712d68146106b657600080fd5b806373fc16ad1461062c578063853828b6146106595780638da5cb5b1461066e57600080fd5b806370a082311161016957806370a08231146105e1578063715018a614610601578063738e72181461061657600080fd5b806368428a1b146105a45780636c6177e8146105c157600080fd5b806329e378ec1161023d57806353135ca0116101f157806360d938dc116101cb57806360d938dc146105555780636131285a1461056f5780636352211e1461058457600080fd5b806353135ca0146104fe57806355f804b314610516578063564566a81461053657600080fd5b80632fbba115116102225780632fbba1151461049e57806342842e0e146104be5780634f6ccce7146104de57600080fd5b806329e378ec1461044c5780632f745c591461047e57600080fd5b80631486e4821161029457806318712c211161027957806318712c21146103f157806323b872dd1461041157806324f7f5eb1461043157600080fd5b80631486e482146103b257806318160ddd146103dc57600080fd5b8063081812fc116102c5578063081812fc14610338578063095ea7b314610370578063113929d81461039257600080fd5b806301ffc9a7146102e157806306fdde0314610316575b600080fd5b3480156102ed57600080fd5b506103016102fc3660046129be565b61081e565b60405190151581526020015b60405180910390f35b34801561032257600080fd5b5061032b61082f565b60405161030d9190612a33565b34801561034457600080fd5b50610358610353366004612a46565b6108c1565b6040516001600160a01b03909116815260200161030d565b34801561037c57600080fd5b5061039061038b366004612a7b565b61095b565b005b34801561039e57600080fd5b506103906103ad366004612ab5565b610a71565b3480156103be57600080fd5b506103ce67013fbe85edc9000081565b60405190815260200161030d565b3480156103e857600080fd5b506008546103ce565b3480156103fd57600080fd5b5061039061040c366004612ad0565b610ade565b34801561041d57600080fd5b5061039061042c366004612af2565b610b51565b34801561043d57600080fd5b506103ce66f8b0a10e47000081565b34801561045857600080fd5b5061046c610467366004612b7a565b610bcc565b60405160ff909116815260200161030d565b34801561048a57600080fd5b506103ce610499366004612a7b565b610cbc565b3480156104aa57600080fd5b506103906104b9366004612a46565b610d64565b3480156104ca57600080fd5b506103906104d9366004612af2565b610e56565b3480156104ea57600080fd5b506103ce6104f9366004612a46565b610e71565b34801561050a57600080fd5b5060115460ff16610301565b34801561052257600080fd5b50610390610531366004612c72565b610f15565b34801561054257600080fd5b5060115461030190610100900460ff1681565b34801561056157600080fd5b506011546103019060ff1681565b34801561057b57600080fd5b506103ce600681565b34801561059057600080fd5b5061035861059f366004612a46565b610f82565b3480156105b057600080fd5b50601154610100900460ff16610301565b3480156105cd57600080fd5b506103906105dc366004612ab5565b61100d565b3480156105ed57600080fd5b506103ce6105fc366004612cbb565b611081565b34801561060d57600080fd5b5061039061111b565b34801561062257600080fd5b506103ce611e6181565b34801561063857600080fd5b506103ce610647366004612cbb565b600f6020526000908152604090205481565b34801561066557600080fd5b50610390611181565b34801561067a57600080fd5b50600a546001600160a01b0316610358565b34801561069857600080fd5b506103ce600381565b3480156106ad57600080fd5b5061032b6111ff565b6103906106c4366004612a46565b61120e565b3480156106d557600080fd5b506103906106e4366004612cd6565b6114f4565b3480156106f557600080fd5b50610301610704366004612d09565b6114ff565b34801561071557600080fd5b50610390610724366004612d83565b611574565b34801561073557600080fd5b5061032b610744366004612a46565b6115f6565b34801561075557600080fd5b506103ce600e5481565b34801561076b57600080fd5b506103ce61077a366004612cbb565b60106020526000908152604090205481565b34801561079857600080fd5b506103ce600d5481565b3480156107ae57600080fd5b506103016107bd366004612dff565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f757600080fd5b50610390610806366004612cbb565b6116df565b610390610819366004612d09565b6117c1565b600061082982611b81565b92915050565b60606000805461083e90612e29565b80601f016020809104026020016040519081016040528092919081815260200182805461086a90612e29565b80156108b75780601f1061088c576101008083540402835291602001916108b7565b820191906000526020600020905b81548152906001019060200180831161089a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661093f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061096682610f82565b9050806001600160a01b0316836001600160a01b031614156109d45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610936565b336001600160a01b03821614806109f057506109f081336107bd565b610a625760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610936565b610a6c8383611ba6565b505050565b600a546001600160a01b03163314610acb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b6011805460ff1916911515919091179055565b600a546001600160a01b03163314610b385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b8160011415610b4757600d5550565b600e8190555b5050565b610b5b3382611c14565b610bc15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610936565b610a6c838383611d07565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090610c1286868686611ec6565b610c5e5760405162461bcd60e51b815260206004820152601f60248201527f53656e646572206973206e6f74204f47206f722077686974656c6973746564006044820152606401610936565b610c9f86868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611f17565b15610cae576001915050610cb4565b60029150505b949350505050565b6000610cc783611081565b8210610d3b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610936565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610dbe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b6000610dc960085490565b9050611e61610dd88383612e7a565b1115610e265760405162461bcd60e51b815260206004820152601860248201527f4d61782042656b6f7a20616d6f756e74207265616368656400000000000000006044820152606401610936565b60005b82811015610a6c57610e4433610e3f8385612e7a565b611f2d565b80610e4e81612e92565b915050610e29565b610a6c83838360405180602001604052806000815250611574565b6000610e7c60085490565b8210610ef05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610936565b60088281548110610f0357610f03612ead565b90600052602060002001549050919050565b600a546001600160a01b03163314610f6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b8051610b4d90600c90602084019061290f565b6000818152600260205260408120546001600160a01b0316806108295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610936565b600a546001600160a01b031633146110675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b601180549115156101000261ff0019909216919091179055565b60006001600160a01b0382166110ff5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610936565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b61117f6000611f47565b565b600a546001600160a01b031633146111db5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b60405133904780156108fc02916000818181858888f1935050505061117f57600080fd5b60606001805461083e90612e29565b333281146112555760405162461bcd60e51b815260206004820152601460248201527310d85b1b195c881a5cc8184818dbdb9d1c9858dd60621b6044820152606401610936565b6001600160a01b0381163b156112a45760405162461bcd60e51b815260206004820152601460248201527310d85b1b195c881a5cc8184818dbdb9d1c9858dd60621b6044820152606401610936565b6002600b5414156112f75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610936565b6002600b55600061130760085490565b601154909150610100900460ff166113615760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610936565b600083116113b15760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420616d6f756e742073686f756c6420626520706f73697469766500006044820152606401610936565b60038311156114025760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420616d6f756e742065786365656473206d61782070657220747800006044820152606401610936565b611e6161140f8483612e7a565b111561145d5760405162461bcd60e51b815260206004820152601860248201527f4d61782042656b6f7a20616d6f756e74207265616368656400000000000000006044820152606401610936565b346114708467013fbe85edc90000612ec3565b11156114be5760405162461bcd60e51b815260206004820152601460248201527f496e636f72726563742076616c75652073656e740000000000000000000000006044820152606401610936565b60005b838110156114e9576114d733610e3f8385612e7a565b806114e181612e92565b9150506114c1565b50506001600b555050565b610b4d338383611f99565b60008061150e86868686610bcc565b905060008160ff166001141561154a5750336000908152600f6020526040902054600690819061153f908a90612e7a565b11159250505061156b565b5033600090815260106020526040902054600390819061153f908a90612e7a565b95945050505050565b61157e3383611c14565b6115e45760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610936565b6115f084848484612068565b50505050565b6000818152600260205260409020546060906001600160a01b03166116835760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610936565b600061168d6120e6565b905060008151116116ad57604051806020016040528060008152506116d8565b806116b7846120f5565b6040516020016116c8929190612ee2565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b6001600160a01b0381166117b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610936565b6117be81611f47565b50565b333281146118085760405162461bcd60e51b815260206004820152601460248201527310d85b1b195c881a5cc8184818dbdb9d1c9858dd60621b6044820152606401610936565b6001600160a01b0381163b156118575760405162461bcd60e51b815260206004820152601460248201527310d85b1b195c881a5cc8184818dbdb9d1c9858dd60621b6044820152606401610936565b6002600b5414156118aa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610936565b6002600b5560006118ba60085490565b60115490915060ff1661190f5760405162461bcd60e51b815260206004820152601560248201527f50726573616c65206973206e6f742061637469766500000000000000000000006044820152606401610936565b6000871161195f5760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420616d6f756e742073686f756c6420626520706f73697469766500006044820152606401610936565b61196b86868686611ec6565b6119b75760405162461bcd60e51b815260206004820152601f60248201527f53656e646572206973206e6f74204f47206f722077686974656c6973746564006044820152606401610936565b6119c487878787876114ff565b611a1a5760405162461bcd60e51b815260206004820152602160248201527f53656e646572206d61782070726573616c6520636c61696d20657863656564656044820152601960fa1b6064820152608401610936565b611e61611a278883612e7a565b1115611a755760405162461bcd60e51b815260206004820152601860248201527f4d61782042656b6f7a20616d6f756e74207265616368656400000000000000006044820152606401610936565b34611a878866f8b0a10e470000612ec3565b1115611ad55760405162461bcd60e51b815260206004820152601460248201527f496e636f72726563742076616c75652073656e740000000000000000000000006044820152606401610936565b6000611ae387878787610bcc565b90508060ff1660011415611b1e57336000908152600f60205260408120805460ff8b169290611b13908490612e7a565b90915550611b469050565b336000908152601060205260408120805460ff8b169290611b40908490612e7a565b90915550505b60005b88811015611b7157611b5f33610e3f8386612e7a565b80611b6981612e92565b915050611b49565b50506001600b5550505050505050565b60006001600160e01b0319821663780e9d6360e01b148061082957506108298261220b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bdb82610f82565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611c8d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610936565b6000611c9883610f82565b9050806001600160a01b0316846001600160a01b03161480611cd35750836001600160a01b0316611cc8846108c1565b6001600160a01b0316145b80610cb457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610cb4565b826001600160a01b0316611d1a82610f82565b6001600160a01b031614611d965760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610936565b6001600160a01b038216611df85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610936565b611e0383838361225b565b611e0e600082611ba6565b6001600160a01b0383166000908152600360205260408120805460019290611e37908490612f11565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e65908490612e7a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061156b85858585611f12336040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b612266565b600082611f2485846122fa565b14949350505050565b610b4d8282604051806020016040528060008152506123a6565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611ffb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610936565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612073848484611d07565b61207f84848484612424565b6115f05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610936565b6060600c805461083e90612e29565b6060816121195750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612143578061212d81612e92565b915061213c9050600a83612f3e565b915061211d565b60008167ffffffffffffffff81111561215e5761215e612be6565b6040519080825280601f01601f191660200182016040528015612188576020820181803683370190505b5090505b8415610cb45761219d600183612f11565b91506121aa600a86612f52565b6121b5906030612e7a565b60f81b8183815181106121ca576121ca612ead565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612204600a86612f3e565b945061218c565b60006001600160e01b031982166380ac58cd60e01b148061223c57506001600160e01b03198216635b5e139f60e01b145b8061082957506301ffc9a760e01b6001600160e01b0319831614610829565b610a6c838383612579565b60006122a986868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150859050611f17565b806122f057506122f084848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150859050611f17565b9695505050505050565b600081815b845181101561239e57600085828151811061231c5761231c612ead565b6020026020010151905080831161235e57604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061238b565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061239681612e92565b9150506122ff565b509392505050565b6123b08383612631565b6123bd6000848484612424565b610a6c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610936565b60006001600160a01b0384163b1561257157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612468903390899088908890600401612f66565b602060405180830381600087803b15801561248257600080fd5b505af19250505080156124b2575060408051601f3d908101601f191682019092526124af91810190612f98565b60015b612557573d8080156124e0576040519150601f19603f3d011682016040523d82523d6000602084013e6124e5565b606091505b50805161254f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610936565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610cb4565b506001610cb4565b6001600160a01b0383166125d4576125cf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6125f7565b816001600160a01b0316836001600160a01b0316146125f7576125f7838261277f565b6001600160a01b03821661260e57610a6c8161281c565b826001600160a01b0316826001600160a01b031614610a6c57610a6c82826128cb565b6001600160a01b0382166126875760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610936565b6000818152600260205260409020546001600160a01b0316156126ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610936565b6126f86000838361225b565b6001600160a01b0382166000908152600360205260408120805460019290612721908490612e7a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161278c84611081565b6127969190612f11565b6000838152600760205260409020549091508082146127e9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061282e90600190612f11565b6000838152600960205260408120546008805493945090928490811061285657612856612ead565b90600052602060002001549050806008838154811061287757612877612ead565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128af576128af612fb5565b6001900381819060005260206000200160009055905550505050565b60006128d683611081565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461291b90612e29565b90600052602060002090601f01602090048101928261293d5760008555612983565b82601f1061295657805160ff1916838001178555612983565b82800160010185558215612983579182015b82811115612983578251825591602001919060010190612968565b5061298f929150612993565b5090565b5b8082111561298f5760008155600101612994565b6001600160e01b0319811681146117be57600080fd5b6000602082840312156129d057600080fd5b81356116d8816129a8565b60005b838110156129f65781810151838201526020016129de565b838111156115f05750506000910152565b60008151808452612a1f8160208601602086016129db565b601f01601f19169290920160200192915050565b6020815260006116d86020830184612a07565b600060208284031215612a5857600080fd5b5035919050565b80356001600160a01b0381168114612a7657600080fd5b919050565b60008060408385031215612a8e57600080fd5b612a9783612a5f565b946020939093013593505050565b80358015158114612a7657600080fd5b600060208284031215612ac757600080fd5b6116d882612aa5565b60008060408385031215612ae357600080fd5b50508035926020909101359150565b600080600060608486031215612b0757600080fd5b612b1084612a5f565b9250612b1e60208501612a5f565b9150604084013590509250925092565b60008083601f840112612b4057600080fd5b50813567ffffffffffffffff811115612b5857600080fd5b6020830191508360208260051b8501011115612b7357600080fd5b9250929050565b60008060008060408587031215612b9057600080fd5b843567ffffffffffffffff80821115612ba857600080fd5b612bb488838901612b2e565b90965094506020870135915080821115612bcd57600080fd5b50612bda87828801612b2e565b95989497509550505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612c1757612c17612be6565b604051601f8501601f19908116603f01168101908282118183101715612c3f57612c3f612be6565b81604052809350858152868686011115612c5857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612c8457600080fd5b813567ffffffffffffffff811115612c9b57600080fd5b8201601f81018413612cac57600080fd5b610cb484823560208401612bfc565b600060208284031215612ccd57600080fd5b6116d882612a5f565b60008060408385031215612ce957600080fd5b612cf283612a5f565b9150612d0060208401612aa5565b90509250929050565b600080600080600060608688031215612d2157600080fd5b85359450602086013567ffffffffffffffff80821115612d4057600080fd5b612d4c89838a01612b2e565b90965094506040880135915080821115612d6557600080fd5b50612d7288828901612b2e565b969995985093965092949392505050565b60008060008060808587031215612d9957600080fd5b612da285612a5f565b9350612db060208601612a5f565b925060408501359150606085013567ffffffffffffffff811115612dd357600080fd5b8501601f81018713612de457600080fd5b612df387823560208401612bfc565b91505092959194509250565b60008060408385031215612e1257600080fd5b612e1b83612a5f565b9150612d0060208401612a5f565b600181811c90821680612e3d57607f821691505b60208210811415612e5e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612e8d57612e8d612e64565b500190565b6000600019821415612ea657612ea6612e64565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615612edd57612edd612e64565b500290565b60008351612ef48184602088016129db565b835190830190612f088183602088016129db565b01949350505050565b600082821015612f2357612f23612e64565b500390565b634e487b7160e01b600052601260045260246000fd5b600082612f4d57612f4d612f28565b500490565b600082612f6157612f61612f28565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526122f06080830184612a07565b600060208284031215612faa57600080fd5b81516116d8816129a8565b634e487b7160e01b600052603160045260246000fdfea264697066735822122069f564129ad4225fc7aae7363b19ab23ccfc9f6196400cb5d7825d378ac7be9164736f6c63430008090033

Deployed Bytecode Sourcemap

48492:6595:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54528:219;;;;;;;;;;-1:-1:-1;54528:219:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;54528:219:0;;;;;;;;29880:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31439:221::-;;;;;;;;;;-1:-1:-1;31439:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:55:1;;;1674:74;;1662:2;1647:18;31439:221:0;1528:226:1;30962:411:0;;;;;;;;;;-1:-1:-1;30962:411:0;;;;;:::i;:::-;;:::i;:::-;;49579:107;;;;;;;;;;-1:-1:-1;49579:107:0;;;;;:::i;:::-;;:::i;48955:57::-;;;;;;;;;;;;49002:10;48955:57;;;;;2715:25:1;;;2703:2;2688:18;48955:57:0;2569:177:1;42945:113:0;;;;;;;;;;-1:-1:-1;43033:10:0;:17;42945:113;;49809:275;;;;;;;;;;-1:-1:-1;49809:275:0;;;;;:::i;:::-;;:::i;32189:339::-;;;;;;;;;;-1:-1:-1;32189:339:0;;;;;:::i;:::-;;:::i;48890:58::-;;;;;;;;;;;;48938:10;48890:58;;52951:417;;;;;;;;;;-1:-1:-1;52951:417:0;;;;;:::i;:::-;;:::i;:::-;;;4659:4:1;4647:17;;;4629:36;;4617:2;4602:18;52951:417:0;4487:184:1;42613:256:0;;;;;;;;;;-1:-1:-1;42613:256:0;;;;;:::i;:::-;;:::i;52092:323::-;;;;;;;;;;-1:-1:-1;52092:323:0;;;;;:::i;:::-;;:::i;32599:185::-;;;;;;;;;;-1:-1:-1;32599:185:0;;;;;:::i;:::-;;:::i;43135:233::-;;;;;;;;;;-1:-1:-1;43135:233:0;;;;;:::i;:::-;;:::i;53932:93::-;;;;;;;;;;-1:-1:-1;54002:15:0;;;;53932:93;;54263:132;;;;;;;;;;-1:-1:-1;54263:132:0;;;;;:::i;:::-;;:::i;49262:32::-;;;;;;;;;;-1:-1:-1;49262:32:0;;;;;;;;;;;49220:35;;;;;;;;;;-1:-1:-1;49220:35:0;;;;;;;;48698:40;;;;;;;;;;;;48737:1;48698:40;;29574:239;;;;;;;;;;-1:-1:-1;29574:239:0;;;;;:::i;:::-;;:::i;54033:87::-;;;;;;;;;;-1:-1:-1;54100:12:0;;;;;;;54033:87;;49694:107;;;;;;;;;;-1:-1:-1;49694:107:0;;;;;:::i;:::-;;:::i;29304:208::-;;;;;;;;;;-1:-1:-1;29304:208:0;;;;;:::i;:::-;;:::i;9391:103::-;;;;;;;;;;;;;:::i;48614:49::-;;;;;;;;;;;;48659:4;48614:49;;49109:44;;;;;;;;;;-1:-1:-1;49109:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;54967:117;;;;;;;;;;;;;:::i;8740:87::-;;;;;;;;;;-1:-1:-1;8813:6:0;;-1:-1:-1;;;;;8813:6:0;8740:87;;48745:40;;;;;;;;;;;;48784:1;48745:40;;30049:104;;;;;;;;;;;;;:::i;51280:711::-;;;;;;:::i;:::-;;:::i;31732:155::-;;;;;;;;;;-1:-1:-1;31732:155:0;;;;;:::i;:::-;;:::i;53376:548::-;;;;;;;;;;-1:-1:-1;53376:548:0;;;;;:::i;:::-;;:::i;32855:328::-;;;;;;;;;;-1:-1:-1;32855:328:0;;;;;:::i;:::-;;:::i;30224:334::-;;;;;;;;;;-1:-1:-1;30224:334:0;;;;;:::i;:::-;;:::i;49064:36::-;;;;;;;;;;;;;;;;49160:51;;;;;;;;;;-1:-1:-1;49160:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;49021:36;;;;;;;;;;;;;;;;31958:164;;;;;;;;;;-1:-1:-1;31958:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32079:25:0;;;32055:4;32079:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31958:164;9649:201;;;;;;;;;;-1:-1:-1;9649:201:0;;;;;:::i;:::-;;:::i;50092:1180::-;;;;;;:::i;:::-;;:::i;54528:219::-;54674:4;54703:36;54727:11;54703:23;:36::i;:::-;54696:43;54528:219;-1:-1:-1;;54528:219:0:o;29880:100::-;29934:13;29967:5;29960:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29880:100;:::o;31439:221::-;31515:7;34782:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34782:16:0;31535:73;;;;-1:-1:-1;;;31535:73:0;;8903:2:1;31535:73:0;;;8885:21:1;8942:2;8922:18;;;8915:30;8981:34;8961:18;;;8954:62;-1:-1:-1;;;9032:18:1;;;9025:42;9084:19;;31535:73:0;;;;;;;;;-1:-1:-1;31628:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31628:24:0;;31439:221::o;30962:411::-;31043:13;31059:23;31074:7;31059:14;:23::i;:::-;31043:39;;31107:5;-1:-1:-1;;;;;31101:11:0;:2;-1:-1:-1;;;;;31101:11:0;;;31093:57;;;;-1:-1:-1;;;31093:57:0;;9316:2:1;31093:57:0;;;9298:21:1;9355:2;9335:18;;;9328:30;9394:34;9374:18;;;9367:62;-1:-1:-1;;;9445:18:1;;;9438:31;9486:19;;31093:57:0;9114:397:1;31093:57:0;7599:10;-1:-1:-1;;;;;31185:21:0;;;;:62;;-1:-1:-1;31210:37:0;31227:5;7599:10;31958:164;:::i;31210:37::-;31163:168;;;;-1:-1:-1;;;31163:168:0;;9718:2:1;31163:168:0;;;9700:21:1;9757:2;9737:18;;;9730:30;9796:34;9776:18;;;9769:62;9867:26;9847:18;;;9840:54;9911:19;;31163:168:0;9516:420:1;31163:168:0;31344:21;31353:2;31357:7;31344:8;:21::i;:::-;31032:341;30962:411;;:::o;49579:107::-;8813:6;;-1:-1:-1;;;;;8813:6:0;7599:10;8960:23;8952:68;;;;-1:-1:-1;;;8952:68:0;;10143:2:1;8952:68:0;;;10125:21:1;;;10162:18;;;10155:30;10221:34;10201:18;;;10194:62;10273:18;;8952:68:0;9941:356:1;8952:68:0;49651:15:::1;:27:::0;;-1:-1:-1;;49651:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49579:107::o;49809:275::-;8813:6;;-1:-1:-1;;;;;8813:6:0;7599:10;8960:23;8952:68;;;;-1:-1:-1;;;8952:68:0;;10143:2:1;8952:68:0;;;10125:21:1;;;10162:18;;;10155:30;10221:34;10201:18;;;10194:62;10273:18;;8952:68:0;9941:356:1;8952:68:0;49947:5:::1;49956:1;49947:10;49943:134;;;49974:15;:29:::0;-1:-1:-1;49809:275:0:o;49943:134::-:1;50036:15;:29:::0;;;49943:134:::1;49809:275:::0;;:::o;32189:339::-;32384:41;7599:10;32417:7;32384:18;:41::i;:::-;32376:103;;;;-1:-1:-1;;;32376:103:0;;10504:2:1;32376:103:0;;;10486:21:1;10543:2;10523:18;;;10516:30;10582:34;10562:18;;;10555:62;-1:-1:-1;;;10633:18:1;;;10626:47;10690:19;;32376:103:0;10302:413:1;32376:103:0;32492:28;32502:4;32508:2;32512:7;32492:9;:28::i;52951:417::-;54220:26;;;53110:10;19476:2:1;19472:15;-1:-1:-1;;19468:53:1;54220:26:0;;;;19456:66:1;;;;54220:26:0;;;;;;;;;19538:12:1;;;;54220:26:0;;;54210:37;;;;;53066:5;;53138:44;53151:14;;53167;;53138:12;:44::i;:::-;53130:88;;;;-1:-1:-1;;;53130:88:0;;10922:2:1;53130:88:0;;;10904:21:1;10961:2;10941:18;;;10934:30;11000:33;10980:18;;;10973:61;11051:18;;53130:88:0;10720:355:1;53130:88:0;53231:64;53250:14;;53231:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53266:15:0;;;-1:-1:-1;53283:11:0;;-1:-1:-1;53231:18:0;:64::i;:::-;53227:134;;;53315:1;53308:8;;;;;53227:134;53350:1;53343:8;;;52951:417;;;;;;;:::o;42613:256::-;42710:7;42746:23;42763:5;42746:16;:23::i;:::-;42738:5;:31;42730:87;;;;-1:-1:-1;;;42730:87:0;;11282:2:1;42730:87:0;;;11264:21:1;11321:2;11301:18;;;11294:30;11360:34;11340:18;;;11333:62;11431:13;11411:18;;;11404:41;11462:19;;42730:87:0;11080:407:1;42730:87:0;-1:-1:-1;;;;;;42835:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42613:256::o;52092:323::-;8813:6;;-1:-1:-1;;;;;8813:6:0;7599:10;8960:23;8952:68;;;;-1:-1:-1;;;8952:68:0;;10143:2:1;8952:68:0;;;10125:21:1;;;10162:18;;;10155:30;10221:34;10201:18;;;10194:62;10273:18;;8952:68:0;9941:356:1;8952:68:0;52162:19:::1;52184:13;43033:10:::0;:17;;42945:113;52184:13:::1;52162:35:::0;-1:-1:-1;48659:4:0::1;52214:28;52228:14:::0;52162:35;52214:28:::1;:::i;:::-;:50;;52206:87;;;::::0;-1:-1:-1;;;52206:87:0;;11959:2:1;52206:87:0::1;::::0;::::1;11941:21:1::0;11998:2;11978:18;;;11971:30;12037:26;12017:18;;;12010:54;12081:18;;52206:87:0::1;11757:348:1::0;52206:87:0::1;52309:9;52304:104;52328:14;52324:1;:18;52304:104;;;52360:38;52370:10;52382:15;52396:1:::0;52382:11;:15:::1;:::i;:::-;52360:9;:38::i;:::-;52344:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52304:104;;32599:185:::0;32737:39;32754:4;32760:2;32764:7;32737:39;;;;;;;;;;;;:16;:39::i;43135:233::-;43210:7;43246:30;43033:10;:17;;42945:113;43246:30;43238:5;:38;43230:95;;;;-1:-1:-1;;;43230:95:0;;12452:2:1;43230:95:0;;;12434:21:1;12491:2;12471:18;;;12464:30;12530:34;12510:18;;;12503:62;12601:14;12581:18;;;12574:42;12633:19;;43230:95:0;12250:408:1;43230:95:0;43343:10;43354:5;43343:17;;;;;;;;:::i;:::-;;;;;;;;;43336:24;;43135:233;;;:::o;54263:132::-;8813:6;;-1:-1:-1;;;;;8813:6:0;7599:10;8960:23;8952:68;;;;-1:-1:-1;;;8952:68:0;;10143:2:1;8952:68:0;;;10125:21:1;;;10162:18;;;10155:30;10221:34;10201:18;;;10194:62;10273:18;;8952:68:0;9941:356:1;8952:68:0;54360:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;29574:239::-:0;29646:7;29682:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29682:16:0;29717:19;29709:73;;;;-1:-1:-1;;;29709:73:0;;12997:2:1;29709:73:0;;;12979:21:1;13036:2;13016:18;;;13009:30;13075:34;13055:18;;;13048:62;13146:11;13126:18;;;13119:39;13175:19;;29709:73:0;12795:405:1;49694:107:0;8813:6;;-1:-1:-1;;;;;8813:6:0;7599:10;8960:23;8952:68;;;;-1:-1:-1;;;8952:68:0;;10143:2:1;8952:68:0;;;10125:21:1;;;10162:18;;;10155:30;10221:34;10201:18;;;10194:62;10273:18;;8952:68:0;9941:356:1;8952:68:0;49769:12:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;49769:24:0;;::::1;::::0;;;::::1;::::0;;49694:107::o;29304:208::-;29376:7;-1:-1:-1;;;;;29404:19:0;;29396:74;;;;-1:-1:-1;;;29396:74:0;;13407:2:1;29396:74:0;;;13389:21:1;13446:2;13426:18;;;13419:30;13485:34;13465:18;;;13458:62;13556:12;13536:18;;;13529:40;13586:19;;29396:74:0;13205:406:1;29396:74:0;-1:-1:-1;;;;;;29488:16:0;;;;;:9;:16;;;;;;;29304:208::o;9391:103::-;8813:6;;-1:-1:-1;;;;;8813:6:0;7599:10;8960:23;8952:68;;;;-1:-1:-1;;;8952:68:0;;10143:2:1;8952:68:0;;;10125:21:1;;;10162:18;;;10155:30;10221:34;10201:18;;;10194:62;10273:18;;8952:68:0;9941:356:1;8952:68:0;9456:30:::1;9483:1;9456:18;:30::i;:::-;9391:103::o:0;54967:117::-;8813:6;;-1:-1:-1;;;;;8813:6:0;7599:10;8960:23;8952:68;;;;-1:-1:-1;;;8952:68:0;;10143:2:1;8952:68:0;;;10125:21:1;;;10162:18;;;10155:30;10221:34;10201:18;;;10194:62;10273:18;;8952:68:0;9941:356:1;8952:68:0;55028:47:::1;::::0;55036:10:::1;::::0;55053:21:::1;55028:47:::0;::::1;;;::::0;::::1;::::0;;;55053:21;55036:10;55028:47;::::1;;;;;;55020:56;;;::::0;::::1;30049:104:::0;30105:13;30138:7;30131:14;;;;;:::i;51280:711::-;49409:10;49449:9;49438:20;;49430:53;;;;-1:-1:-1;;;49430:53:0;;13818:2:1;49430:53:0;;;13800:21:1;13857:2;13837:18;;;13830:30;-1:-1:-1;;;13876:18:1;;;13869:50;13936:18;;49430:53:0;13616:344:1;49430:53:0;-1:-1:-1;;;;;49502:19:0;;;:24;49494:57;;;;-1:-1:-1;;;49494:57:0;;13818:2:1;49494:57:0;;;13800:21:1;13857:2;13837:18;;;13830:30;-1:-1:-1;;;13876:18:1;;;13869:50;13936:18;;49494:57:0;13616:344:1;49494:57:0;3877:1:::1;4475:7;;:19;;4467:63;;;::::0;-1:-1:-1;;;4467:63:0;;14167:2:1;4467:63:0::1;::::0;::::1;14149:21:1::0;14206:2;14186:18;;;14179:30;14245:33;14225:18;;;14218:61;14296:18;;4467:63:0::1;13965:355:1::0;4467:63:0::1;3877:1;4608:7;:18:::0;51411:19:::2;51433:13;43033:10:::0;:17;;42945:113;51433:13:::2;51465:12;::::0;51411:35;;-1:-1:-1;51465:12:0::2;::::0;::::2;;;51457:50;;;::::0;-1:-1:-1;;;51457:50:0;;14527:2:1;51457:50:0::2;::::0;::::2;14509:21:1::0;14566:2;14546:18;;;14539:30;14605:27;14585:18;;;14578:55;14650:18;;51457:50:0::2;14325:349:1::0;51457:50:0::2;51543:1;51526:14;:18;51518:62;;;::::0;-1:-1:-1;;;51518:62:0;;14881:2:1;51518:62:0::2;::::0;::::2;14863:21:1::0;14920:2;14900:18;;;14893:30;14959:32;14939:18;;;14932:60;15009:18;;51518:62:0::2;14679:354:1::0;51518:62:0::2;48835:1;51599:14;:34;;51591:78;;;::::0;-1:-1:-1;;;51591:78:0;;15240:2:1;51591:78:0::2;::::0;::::2;15222:21:1::0;15279:2;15259:18;;;15252:30;15318:32;15298:18;;;15291:60;15368:18;;51591:78:0::2;15038:354:1::0;51591:78:0::2;48659:4;51688:28;51702:14:::0;51688:11;:28:::2;:::i;:::-;:50;;51680:87;;;::::0;-1:-1:-1;;;51680:87:0;;11959:2:1;51680:87:0::2;::::0;::::2;11941:21:1::0;11998:2;11978:18;;;11971:30;12037:26;12017:18;;;12010:54;12081:18;;51680:87:0::2;11757:348:1::0;51680:87:0::2;51827:9;51786:37;51809:14:::0;49002:10:::2;51786:37;:::i;:::-;:50;;51778:83;;;::::0;-1:-1:-1;;;51778:83:0;;15772:2:1;51778:83:0::2;::::0;::::2;15754:21:1::0;15811:2;15791:18;;;15784:30;15850:22;15830:18;;;15823:50;15890:18;;51778:83:0::2;15570:344:1::0;51778:83:0::2;51879:9;51874:110;51898:14;51894:1;:18;51874:110;;;51934:38;51944:10;51956:15;51970:1:::0;51956:11;:15:::2;:::i;51934:38::-;51914:3:::0;::::2;::::0;::::2;:::i;:::-;;;;51874:110;;;-1:-1:-1::0;;3833:1:0::1;4787:7;:22:::0;-1:-1:-1;;51280:711:0:o;31732:155::-;31827:52;7599:10;31860:8;31870;31827:18;:52::i;53376:548::-;53506:4;53523:17;53543:46;53558:14;;53574;;53543;:46::i;:::-;53523:66;;53600:21;53638:11;:16;;53653:1;53638:16;53634:283;;;-1:-1:-1;53731:10:0;53721:21;;;;:9;:21;;;;;;48737:1;;;;53721:30;;53745:6;;53721:30;:::i;:::-;:47;;53714:54;;;;;;53634:283;-1:-1:-1;53868:10:0;53851:28;;;;:16;:28;;;;;;48784:1;;;;53851:37;;53882:6;;53851:37;:::i;53376:548::-;;;;;;;;:::o;32855:328::-;33030:41;7599:10;33063:7;33030:18;:41::i;:::-;33022:103;;;;-1:-1:-1;;;33022:103:0;;10504:2:1;33022:103:0;;;10486:21:1;10543:2;10523:18;;;10516:30;10582:34;10562:18;;;10555:62;-1:-1:-1;;;10633:18:1;;;10626:47;10690:19;;33022:103:0;10302:413:1;33022:103:0;33136:39;33150:4;33156:2;33160:7;33169:5;33136:13;:39::i;:::-;32855:328;;;;:::o;30224:334::-;34758:4;34782:16;;;:7;:16;;;;;;30297:13;;-1:-1:-1;;;;;34782:16:0;30323:76;;;;-1:-1:-1;;;30323:76:0;;16121:2:1;30323:76:0;;;16103:21:1;16160:2;16140:18;;;16133:30;16199:34;16179:18;;;16172:62;16270:17;16250:18;;;16243:45;16305:19;;30323:76:0;15919:411:1;30323:76:0;30412:21;30436:10;:8;:10::i;:::-;30412:34;;30488:1;30470:7;30464:21;:25;:86;;;;;;;;;;;;;;;;;30516:7;30525:18;:7;:16;:18::i;:::-;30499:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30464:86;30457:93;30224:334;-1:-1:-1;;;30224:334:0:o;9649:201::-;8813:6;;-1:-1:-1;;;;;8813:6:0;7599:10;8960:23;8952:68;;;;-1:-1:-1;;;8952:68:0;;10143:2:1;8952:68:0;;;10125:21:1;;;10162:18;;;10155:30;10221:34;10201:18;;;10194:62;10273:18;;8952:68:0;9941:356:1;8952:68:0;-1:-1:-1;;;;;9738:22:0;::::1;9730:73;;;::::0;-1:-1:-1;;;9730:73:0;;17012:2:1;9730:73:0::1;::::0;::::1;16994:21:1::0;17051:2;17031:18;;;17024:30;17090:34;17070:18;;;17063:62;17161:8;17141:18;;;17134:36;17187:19;;9730:73:0::1;16810:402:1::0;9730:73:0::1;9814:28;9833:8;9814:18;:28::i;:::-;9649:201:::0;:::o;50092:1180::-;49409:10;49449:9;49438:20;;49430:53;;;;-1:-1:-1;;;49430:53:0;;13818:2:1;49430:53:0;;;13800:21:1;13857:2;13837:18;;;13830:30;-1:-1:-1;;;13876:18:1;;;13869:50;13936:18;;49430:53:0;13616:344:1;49430:53:0;-1:-1:-1;;;;;49502:19:0;;;:24;49494:57;;;;-1:-1:-1;;;49494:57:0;;13818:2:1;49494:57:0;;;13800:21:1;13857:2;13837:18;;;13830:30;-1:-1:-1;;;13876:18:1;;;13869:50;13936:18;;49494:57:0;13616:344:1;49494:57:0;3877:1:::1;4475:7;;:19;;4467:63;;;::::0;-1:-1:-1;;;4467:63:0;;14167:2:1;4467:63:0::1;::::0;::::1;14149:21:1::0;14206:2;14186:18;;;14179:30;14245:33;14225:18;;;14218:61;14296:18;;4467:63:0::1;13965:355:1::0;4467:63:0::1;3877:1;4608:7;:18:::0;50300:19:::2;50322:13;43033:10:::0;:17;;42945:113;50322:13:::2;50354:15;::::0;50300:35;;-1:-1:-1;50354:15:0::2;;50346:49;;;::::0;-1:-1:-1;;;50346:49:0;;17419:2:1;50346:49:0::2;::::0;::::2;17401:21:1::0;17458:2;17438:18;;;17431:30;17497:23;17477:18;;;17470:51;17538:18;;50346:49:0::2;17217:345:1::0;50346:49:0::2;50431:1;50414:14;:18;50406:62;;;::::0;-1:-1:-1;;;50406:62:0;;14881:2:1;50406:62:0::2;::::0;::::2;14863:21:1::0;14920:2;14900:18;;;14893:30;14959:32;14939:18;;;14932:60;15009:18;;50406:62:0::2;14679:354:1::0;50406:62:0::2;50487:44;50500:14;;50516;;50487:12;:44::i;:::-;50479:88;;;::::0;-1:-1:-1;;;50479:88:0;;10922:2:1;50479:88:0::2;::::0;::::2;10904:21:1::0;10961:2;10941:18;;;10934:30;11000:33;10980:18;;;10973:61;11051:18;;50479:88:0::2;10720:355:1::0;50479:88:0::2;50586:61;50600:14;50616;;50632;;50586:13;:61::i;:::-;50578:107;;;::::0;-1:-1:-1;;;50578:107:0;;17769:2:1;50578:107:0::2;::::0;::::2;17751:21:1::0;17808:2;17788:18;;;17781:30;17847:34;17827:18;;;17820:62;-1:-1:-1;;;17898:18:1;;;17891:31;17939:19;;50578:107:0::2;17567:397:1::0;50578:107:0::2;48659:4;50704:28;50718:14:::0;50704:11;:28:::2;:::i;:::-;:50;;50696:87;;;::::0;-1:-1:-1;;;50696:87:0;;11959:2:1;50696:87:0::2;::::0;::::2;11941:21:1::0;11998:2;11978:18;;;11971:30;12037:26;12017:18;;;12010:54;12081:18;;50696:87:0::2;11757:348:1::0;50696:87:0::2;50844:9;50802:38;50826:14:::0;48938:10:::2;50802:38;:::i;:::-;:51;;50794:84;;;::::0;-1:-1:-1;;;50794:84:0;;15772:2:1;50794:84:0::2;::::0;::::2;15754:21:1::0;15811:2;15791:18;;;15784:30;15850:22;15830:18;;;15823:50;15890:18;;50794:84:0::2;15570:344:1::0;50794:84:0::2;50891:17;50911:46;50926:14;;50942;;50911;:46::i;:::-;50891:66;;50972:11;:16;;50987:1;50972:16;50968:177;;;51013:10;51003:21;::::0;;;:9:::2;:21;::::0;;;;:46;;::::2;::::0;::::2;::::0;:21;:46:::2;::::0;;;::::2;:::i;:::-;::::0;;;-1:-1:-1;50968:177:0::2;::::0;-1:-1:-1;50968:177:0::2;;51097:10;51080:28;::::0;;;:16:::2;:28;::::0;;;;:53;;::::2;::::0;::::2;::::0;:28;:53:::2;::::0;;;::::2;:::i;:::-;::::0;;;-1:-1:-1;;50968:177:0::2;51162:9;51157:108;51181:14;51177:1;:18;51157:108;;;51215:38;51225:10;51237:15;51251:1:::0;51237:11;:15:::2;:::i;51215:38::-;51197:3:::0;::::2;::::0;::::2;:::i;:::-;;;;51157:108;;;-1:-1:-1::0;;3833:1:0::1;4787:7;:22:::0;-1:-1:-1;;;;;;;50092:1180:0:o;42305:224::-;42407:4;-1:-1:-1;;;;;;42431:50:0;;-1:-1:-1;;;42431:50:0;;:90;;;42485:36;42509:11;42485:23;:36::i;38675:174::-;38750:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38750:29:0;-1:-1:-1;;;;;38750:29:0;;;;;;;;:24;;38804:23;38750:24;38804:14;:23::i;:::-;-1:-1:-1;;;;;38795:46:0;;;;;;;;;;;38675:174;;:::o;34987:348::-;35080:4;34782:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34782:16:0;35097:73;;;;-1:-1:-1;;;35097:73:0;;18171:2:1;35097:73:0;;;18153:21:1;18210:2;18190:18;;;18183:30;18249:34;18229:18;;;18222:62;-1:-1:-1;;;18300:18:1;;;18293:42;18352:19;;35097:73:0;17969:408:1;35097:73:0;35181:13;35197:23;35212:7;35197:14;:23::i;:::-;35181:39;;35250:5;-1:-1:-1;;;;;35239:16:0;:7;-1:-1:-1;;;;;35239:16:0;;:51;;;;35283:7;-1:-1:-1;;;;;35259:31:0;:20;35271:7;35259:11;:20::i;:::-;-1:-1:-1;;;;;35259:31:0;;35239:51;:87;;;-1:-1:-1;;;;;;32079:25:0;;;32055:4;32079:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35294:32;31958:164;37979:578;38138:4;-1:-1:-1;;;;;38111:31:0;:23;38126:7;38111:14;:23::i;:::-;-1:-1:-1;;;;;38111:31:0;;38103:85;;;;-1:-1:-1;;;38103:85:0;;18584:2:1;38103:85:0;;;18566:21:1;18623:2;18603:18;;;18596:30;18662:34;18642:18;;;18635:62;18733:11;18713:18;;;18706:39;18762:19;;38103:85:0;18382:405:1;38103:85:0;-1:-1:-1;;;;;38207:16:0;;38199:65;;;;-1:-1:-1;;;38199:65:0;;18994:2:1;38199:65:0;;;18976:21:1;19033:2;19013:18;;;19006:30;19072:34;19052:18;;;19045:62;-1:-1:-1;;;19123:18:1;;;19116:34;19167:19;;38199:65:0;18792:400:1;38199:65:0;38277:39;38298:4;38304:2;38308:7;38277:20;:39::i;:::-;38381:29;38398:1;38402:7;38381:8;:29::i;:::-;-1:-1:-1;;;;;38423:15:0;;;;;;:9;:15;;;;;:20;;38442:1;;38423:15;:20;;38442:1;;38423:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38454:13:0;;;;;;:9;:13;;;;;:18;;38471:1;;38454:13;:18;;38471:1;;38454:18;:::i;:::-;;;;-1:-1:-1;;38483:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38483:21:0;-1:-1:-1;;;;;38483:21:0;;;;;;;;;38522:27;;38483:16;;38522:27;;;;;;;37979:578;;;:::o;52423:205::-;52538:4;52562:58;52570:14;;52586;;52602:17;52608:10;54220:26;;-1:-1:-1;;19476:2:1;19472:15;;;19468:53;54220:26:0;;;19456:66:1;54183:7:0;;19538:12:1;;54220:26:0;;;;;;;;;;;;54210:37;;;;;;54203:44;;54128:127;;;;52602:17;52562:7;:58::i;870:190::-;995:4;1048;1019:25;1032:5;1039:4;1019:12;:25::i;:::-;:33;;870:190;-1:-1:-1;;;;870:190:0:o;35677:110::-;35753:26;35763:2;35767:7;35753:26;;;;;;;;;;;;:9;:26::i;10010:191::-;10103:6;;;-1:-1:-1;;;;;10120:17:0;;;-1:-1:-1;;;;;;10120:17:0;;;;;;;10153:40;;10103:6;;;10120:17;10103:6;;10153:40;;10084:16;;10153:40;10073:128;10010:191;:::o;38991:315::-;39146:8;-1:-1:-1;;;;;39137:17:0;:5;-1:-1:-1;;;;;39137:17:0;;;39129:55;;;;-1:-1:-1;;;39129:55:0;;19763:2:1;39129:55:0;;;19745:21:1;19802:2;19782:18;;;19775:30;19841:27;19821:18;;;19814:55;19886:18;;39129:55:0;19561:349:1;39129:55:0;-1:-1:-1;;;;;39195:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39195:46:0;;;;;;;;;;39257:41;;540::1;;;39257::0;;513:18:1;39257:41:0;;;;;;;38991:315;;;:::o;34065:::-;34222:28;34232:4;34238:2;34242:7;34222:9;:28::i;:::-;34269:48;34292:4;34298:2;34302:7;34311:5;34269:22;:48::i;:::-;34261:111;;;;-1:-1:-1;;;34261:111:0;;20117:2:1;34261:111:0;;;20099:21:1;20156:2;20136:18;;;20129:30;20195:34;20175:18;;;20168:62;-1:-1:-1;;;20246:18:1;;;20239:48;20304:19;;34261:111:0;19915:414:1;54403:117:0;54463:13;54496:16;54489:23;;;;;:::i;5135:723::-;5191:13;5412:10;5408:53;;-1:-1:-1;;5439:10:0;;;;;;;;;;;;-1:-1:-1;;;5439:10:0;;;;;5135:723::o;5408:53::-;5486:5;5471:12;5527:78;5534:9;;5527:78;;5560:8;;;;:::i;:::-;;-1:-1:-1;5583:10:0;;-1:-1:-1;5591:2:0;5583:10;;:::i;:::-;;;5527:78;;;5615:19;5647:6;5637:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5637:17:0;;5615:39;;5665:154;5672:10;;5665:154;;5699:11;5709:1;5699:11;;:::i;:::-;;-1:-1:-1;5768:10:0;5776:2;5768:5;:10;:::i;:::-;5755:24;;:2;:24;:::i;:::-;5742:39;;5725:6;5732;5725:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;5796:11:0;5805:2;5796:11;;:::i;:::-;;;5665:154;;28935:305;29037:4;-1:-1:-1;;;;;;29074:40:0;;-1:-1:-1;;;29074:40:0;;:105;;-1:-1:-1;;;;;;;29131:48:0;;-1:-1:-1;;;29131:48:0;29074:105;:158;;;-1:-1:-1;;;;;;;;;;21023:40:0;;;29196:36;20914:157;54755:204;54906:45;54933:4;54939:2;54943:7;54906:26;:45::i;52636:307::-;52766:4;52791:64;52810:14;;52791:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52826:15:0;;;-1:-1:-1;52843:11:0;;-1:-1:-1;52791:18:0;:64::i;:::-;:143;;;;52870:64;52889:14;;52870:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52905:15:0;;;-1:-1:-1;52922:11:0;;-1:-1:-1;52870:18:0;:64::i;:::-;52783:152;52636:307;-1:-1:-1;;;;;;52636:307:0:o;1422:701::-;1505:7;1548:4;1505:7;1563:523;1587:5;:12;1583:1;:16;1563:523;;;1621:20;1644:5;1650:1;1644:8;;;;;;;;:::i;:::-;;;;;;;1621:31;;1687:12;1671;:28;1667:408;;1824:44;;;;;;20865:19:1;;;20900:12;;;20893:28;;;20937:12;;1824:44:0;;;;;;;;;;;;1814:55;;;;;;1799:70;;1667:408;;;2014:44;;;;;;20865:19:1;;;20900:12;;;20893:28;;;20937:12;;2014:44:0;;;;;;;;;;;;2004:55;;;;;;1989:70;;1667:408;-1:-1:-1;1601:3:0;;;;:::i;:::-;;;;1563:523;;;-1:-1:-1;2103:12:0;1422:701;-1:-1:-1;;;1422:701:0:o;36014:321::-;36144:18;36150:2;36154:7;36144:5;:18::i;:::-;36195:54;36226:1;36230:2;36234:7;36243:5;36195:22;:54::i;:::-;36173:154;;;;-1:-1:-1;;;36173:154:0;;20117:2:1;36173:154:0;;;20099:21:1;20156:2;20136:18;;;20129:30;20195:34;20175:18;;;20168:62;-1:-1:-1;;;20246:18:1;;;20239:48;20304:19;;36173:154:0;19915:414:1;39871:799:0;40026:4;-1:-1:-1;;;;;40047:13:0;;11297:20;11345:8;40043:620;;40083:72;;-1:-1:-1;;;40083:72:0;;-1:-1:-1;;;;;40083:36:0;;;;;:72;;7599:10;;40134:4;;40140:7;;40149:5;;40083:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40083:72:0;;;;;;;;-1:-1:-1;;40083:72:0;;;;;;;;;;;;:::i;:::-;;;40079:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40325:13:0;;40321:272;;40368:60;;-1:-1:-1;;;40368:60:0;;20117:2:1;40368:60:0;;;20099:21:1;20156:2;20136:18;;;20129:30;20195:34;20175:18;;;20168:62;-1:-1:-1;;;20246:18:1;;;20239:48;20304:19;;40368:60:0;19915:414:1;40321:272:0;40543:6;40537:13;40528:6;40524:2;40520:15;40513:38;40079:529;-1:-1:-1;;;;;;40206:51:0;-1:-1:-1;;;40206:51:0;;-1:-1:-1;40199:58:0;;40043:620;-1:-1:-1;40647:4:0;40640:11;;43981:589;-1:-1:-1;;;;;44187:18:0;;44183:187;;44222:40;44254:7;45397:10;:17;;45370:24;;;;:15;:24;;;;;:44;;;45425:24;;;;;;;;;;;;45293:164;44222:40;44183:187;;;44292:2;-1:-1:-1;;;;;44284:10:0;:4;-1:-1:-1;;;;;44284:10:0;;44280:90;;44311:47;44344:4;44350:7;44311:32;:47::i;:::-;-1:-1:-1;;;;;44384:16:0;;44380:183;;44417:45;44454:7;44417:36;:45::i;44380:183::-;44490:4;-1:-1:-1;;;;;44484:10:0;:2;-1:-1:-1;;;;;44484:10:0;;44480:83;;44511:40;44539:2;44543:7;44511:27;:40::i;36671:382::-;-1:-1:-1;;;;;36751:16:0;;36743:61;;;;-1:-1:-1;;;36743:61:0;;21933:2:1;36743:61:0;;;21915:21:1;;;21952:18;;;21945:30;22011:34;21991:18;;;21984:62;22063:18;;36743:61:0;21731:356:1;36743:61:0;34758:4;34782:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34782:16:0;:30;36815:58;;;;-1:-1:-1;;;36815:58:0;;22294:2:1;36815:58:0;;;22276:21:1;22333:2;22313:18;;;22306:30;22372;22352:18;;;22345:58;22420:18;;36815:58:0;22092:352:1;36815:58:0;36886:45;36915:1;36919:2;36923:7;36886:20;:45::i;:::-;-1:-1:-1;;;;;36944:13:0;;;;;;:9;:13;;;;;:18;;36961:1;;36944:13;:18;;36961:1;;36944:18;:::i;:::-;;;;-1:-1:-1;;36973:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36973:21:0;-1:-1:-1;;;;;36973:21:0;;;;;;;;37012:33;;36973:16;;;37012:33;;36973:16;;37012:33;36671:382;;:::o;46084:988::-;46350:22;46400:1;46375:22;46392:4;46375:16;:22::i;:::-;:26;;;;:::i;:::-;46412:18;46433:26;;;:17;:26;;;;;;46350:51;;-1:-1:-1;46566:28:0;;;46562:328;;-1:-1:-1;;;;;46633:18:0;;46611:19;46633:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46684:30;;;;;;:44;;;46801:30;;:17;:30;;;;;:43;;;46562:328;-1:-1:-1;46986:26:0;;;;:17;:26;;;;;;;;46979:33;;;-1:-1:-1;;;;;47030:18:0;;;;;:12;:18;;;;;:34;;;;;;;47023:41;46084:988::o;47367:1079::-;47645:10;:17;47620:22;;47645:21;;47665:1;;47645:21;:::i;:::-;47677:18;47698:24;;;:15;:24;;;;;;48071:10;:26;;47620:46;;-1:-1:-1;47698:24:0;;47620:46;;48071:26;;;;;;:::i;:::-;;;;;;;;;48049:48;;48135:11;48110:10;48121;48110:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48215:28;;;:15;:28;;;;;;;:41;;;48387:24;;;;;48380:31;48422:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47438:1008;;;47367:1079;:::o;44871:221::-;44956:14;44973:20;44990:2;44973:16;:20::i;:::-;-1:-1:-1;;;;;45004:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45049:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44871:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1759:196::-;1827:20;;-1:-1:-1;;;;;1876:54:1;;1866:65;;1856:93;;1945:1;1942;1935:12;1856:93;1759:196;;;:::o;1960:254::-;2028:6;2036;2089:2;2077:9;2068:7;2064:23;2060:32;2057:52;;;2105:1;2102;2095:12;2057:52;2128:29;2147:9;2128:29;:::i;:::-;2118:39;2204:2;2189:18;;;;2176:32;;-1:-1:-1;;;1960:254:1:o;2219:160::-;2284:20;;2340:13;;2333:21;2323:32;;2313:60;;2369:1;2366;2359:12;2384:180;2440:6;2493:2;2481:9;2472:7;2468:23;2464:32;2461:52;;;2509:1;2506;2499:12;2461:52;2532:26;2548:9;2532:26;:::i;2751:248::-;2819:6;2827;2880:2;2868:9;2859:7;2855:23;2851:32;2848:52;;;2896:1;2893;2886:12;2848:52;-1:-1:-1;;2919:23:1;;;2989:2;2974:18;;;2961:32;;-1:-1:-1;2751:248:1:o;3004:328::-;3081:6;3089;3097;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;:::-;3179:39;;3237:38;3271:2;3260:9;3256:18;3237:38;:::i;:::-;3227:48;;3322:2;3311:9;3307:18;3294:32;3284:42;;3004:328;;;;;:::o;3337:367::-;3400:8;3410:6;3464:3;3457:4;3449:6;3445:17;3441:27;3431:55;;3482:1;3479;3472:12;3431:55;-1:-1:-1;3505:20:1;;3548:18;3537:30;;3534:50;;;3580:1;3577;3570:12;3534:50;3617:4;3609:6;3605:17;3593:29;;3677:3;3670:4;3660:6;3657:1;3653:14;3645:6;3641:27;3637:38;3634:47;3631:67;;;3694:1;3691;3684:12;3631:67;3337:367;;;;;:::o;3709:773::-;3831:6;3839;3847;3855;3908:2;3896:9;3887:7;3883:23;3879:32;3876:52;;;3924:1;3921;3914:12;3876:52;3964:9;3951:23;3993:18;4034:2;4026:6;4023:14;4020:34;;;4050:1;4047;4040:12;4020:34;4089:70;4151:7;4142:6;4131:9;4127:22;4089:70;:::i;:::-;4178:8;;-1:-1:-1;4063:96:1;-1:-1:-1;4266:2:1;4251:18;;4238:32;;-1:-1:-1;4282:16:1;;;4279:36;;;4311:1;4308;4301:12;4279:36;;4350:72;4414:7;4403:8;4392:9;4388:24;4350:72;:::i;:::-;3709:773;;;;-1:-1:-1;4441:8:1;-1:-1:-1;;;;3709:773:1:o;4676:127::-;4737:10;4732:3;4728:20;4725:1;4718:31;4768:4;4765:1;4758:15;4792:4;4789:1;4782:15;4808:632;4873:5;4903:18;4944:2;4936:6;4933:14;4930:40;;;4950:18;;:::i;:::-;5025:2;5019:9;4993:2;5079:15;;-1:-1:-1;;5075:24:1;;;5101:2;5071:33;5067:42;5055:55;;;5125:18;;;5145:22;;;5122:46;5119:72;;;5171:18;;:::i;:::-;5211:10;5207:2;5200:22;5240:6;5231:15;;5270:6;5262;5255:22;5310:3;5301:6;5296:3;5292:16;5289:25;5286:45;;;5327:1;5324;5317:12;5286:45;5377:6;5372:3;5365:4;5357:6;5353:17;5340:44;5432:1;5425:4;5416:6;5408;5404:19;5400:30;5393:41;;;;4808:632;;;;;:::o;5445:451::-;5514:6;5567:2;5555:9;5546:7;5542:23;5538:32;5535:52;;;5583:1;5580;5573:12;5535:52;5623:9;5610:23;5656:18;5648:6;5645:30;5642:50;;;5688:1;5685;5678:12;5642:50;5711:22;;5764:4;5756:13;;5752:27;-1:-1:-1;5742:55:1;;5793:1;5790;5783:12;5742:55;5816:74;5882:7;5877:2;5864:16;5859:2;5855;5851:11;5816:74;:::i;5901:186::-;5960:6;6013:2;6001:9;5992:7;5988:23;5984:32;5981:52;;;6029:1;6026;6019:12;5981:52;6052:29;6071:9;6052:29;:::i;6092:254::-;6157:6;6165;6218:2;6206:9;6197:7;6193:23;6189:32;6186:52;;;6234:1;6231;6224:12;6186:52;6257:29;6276:9;6257:29;:::i;:::-;6247:39;;6305:35;6336:2;6325:9;6321:18;6305:35;:::i;:::-;6295:45;;6092:254;;;;;:::o;6351:841::-;6482:6;6490;6498;6506;6514;6567:2;6555:9;6546:7;6542:23;6538:32;6535:52;;;6583:1;6580;6573:12;6535:52;6619:9;6606:23;6596:33;;6680:2;6669:9;6665:18;6652:32;6703:18;6744:2;6736:6;6733:14;6730:34;;;6760:1;6757;6750:12;6730:34;6799:70;6861:7;6852:6;6841:9;6837:22;6799:70;:::i;:::-;6888:8;;-1:-1:-1;6773:96:1;-1:-1:-1;6976:2:1;6961:18;;6948:32;;-1:-1:-1;6992:16:1;;;6989:36;;;7021:1;7018;7011:12;6989:36;;7060:72;7124:7;7113:8;7102:9;7098:24;7060:72;:::i;:::-;6351:841;;;;-1:-1:-1;6351:841:1;;-1:-1:-1;7151:8:1;;7034:98;6351:841;-1:-1:-1;;;6351:841:1:o;7197:667::-;7292:6;7300;7308;7316;7369:3;7357:9;7348:7;7344:23;7340:33;7337:53;;;7386:1;7383;7376:12;7337:53;7409:29;7428:9;7409:29;:::i;:::-;7399:39;;7457:38;7491:2;7480:9;7476:18;7457:38;:::i;:::-;7447:48;;7542:2;7531:9;7527:18;7514:32;7504:42;;7597:2;7586:9;7582:18;7569:32;7624:18;7616:6;7613:30;7610:50;;;7656:1;7653;7646:12;7610:50;7679:22;;7732:4;7724:13;;7720:27;-1:-1:-1;7710:55:1;;7761:1;7758;7751:12;7710:55;7784:74;7850:7;7845:2;7832:16;7827:2;7823;7819:11;7784:74;:::i;:::-;7774:84;;;7197:667;;;;;;;:::o;8051:260::-;8119:6;8127;8180:2;8168:9;8159:7;8155:23;8151:32;8148:52;;;8196:1;8193;8186:12;8148:52;8219:29;8238:9;8219:29;:::i;:::-;8209:39;;8267:38;8301:2;8290:9;8286:18;8267:38;:::i;8316:380::-;8395:1;8391:12;;;;8438;;;8459:61;;8513:4;8505:6;8501:17;8491:27;;8459:61;8566:2;8558:6;8555:14;8535:18;8532:38;8529:161;;;8612:10;8607:3;8603:20;8600:1;8593:31;8647:4;8644:1;8637:15;8675:4;8672:1;8665:15;8529:161;;8316:380;;;:::o;11492:127::-;11553:10;11548:3;11544:20;11541:1;11534:31;11584:4;11581:1;11574:15;11608:4;11605:1;11598:15;11624:128;11664:3;11695:1;11691:6;11688:1;11685:13;11682:39;;;11701:18;;:::i;:::-;-1:-1:-1;11737:9:1;;11624:128::o;12110:135::-;12149:3;-1:-1:-1;;12170:17:1;;12167:43;;;12190:18;;:::i;:::-;-1:-1:-1;12237:1:1;12226:13;;12110:135::o;12663:127::-;12724:10;12719:3;12715:20;12712:1;12705:31;12755:4;12752:1;12745:15;12779:4;12776:1;12769:15;15397:168;15437:7;15503:1;15499;15495:6;15491:14;15488:1;15485:21;15480:1;15473:9;15466:17;15462:45;15459:71;;;15510:18;;:::i;:::-;-1:-1:-1;15550:9:1;;15397:168::o;16335:470::-;16514:3;16552:6;16546:13;16568:53;16614:6;16609:3;16602:4;16594:6;16590:17;16568:53;:::i;:::-;16684:13;;16643:16;;;;16706:57;16684:13;16643:16;16740:4;16728:17;;16706:57;:::i;:::-;16779:20;;16335:470;-1:-1:-1;;;;16335:470:1:o;19197:125::-;19237:4;19265:1;19262;19259:8;19256:34;;;19270:18;;:::i;:::-;-1:-1:-1;19307:9:1;;19197:125::o;20334:127::-;20395:10;20390:3;20386:20;20383:1;20376:31;20426:4;20423:1;20416:15;20450:4;20447:1;20440:15;20466:120;20506:1;20532;20522:35;;20537:18;;:::i;:::-;-1:-1:-1;20571:9:1;;20466:120::o;20591:112::-;20623:1;20649;20639:35;;20654:18;;:::i;:::-;-1:-1:-1;20688:9:1;;20591:112::o;20960:512::-;21154:4;-1:-1:-1;;;;;21264:2:1;21256:6;21252:15;21241:9;21234:34;21316:2;21308:6;21304:15;21299:2;21288:9;21284:18;21277:43;;21356:6;21351:2;21340:9;21336:18;21329:34;21399:3;21394:2;21383:9;21379:18;21372:31;21420:46;21461:3;21450:9;21446:19;21438:6;21420:46;:::i;21477:249::-;21546:6;21599:2;21587:9;21578:7;21574:23;21570:32;21567:52;;;21615:1;21612;21605:12;21567:52;21647:9;21641:16;21666:30;21690:5;21666:30;:::i;22449:127::-;22510:10;22505:3;22501:20;22498:1;22491:31;22541:4;22538:1;22531:15;22565:4;22562:1;22555:15

Swarm Source

ipfs://69f564129ad4225fc7aae7363b19ab23ccfc9f6196400cb5d7825d378ac7be91
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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