ETH Price: $3,477.42 (+7.09%)
Gas: 11 Gwei

Token

CoffeeCentral (CoffeeCentral)
 

Overview

Max Total Supply

3,333 CoffeeCentral

Holders

442

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 CoffeeCentral
0x07b5cdfefec4cd6d38705ca2c0163bb3d9e81e53
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:
CoffeeCentral

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

// File: contracts/CoffeeCentral.sol


pragma solidity ^0.8.0;

// SPDX-License-Identifier: MIT


contract CoffeeCentral is ReentrancyGuard, Ownable, ERC721A{


    using Strings for uint256;
    using SafeMath for uint256;

    bytes32 public merkleRoot;

    uint256 constant public maxNFT = 3333;
 
    address payable private community = payable(0xbA7aF85144e6b291d573C54844F2b72131e321EE);  //46%
    address payable private papa = payable(0xB64c5058C3D395F074EBF78a19c9b556885369B4);  //15%
    address payable private sonny = payable(0x87c56882216A3Ae8d2A1530b1A413dA144a721C1 ); //15%
    address payable private zee = payable(0xBFe37A45B9DDd6ff170FF15090d35BFE6eCCb475 ); //2.5%
    address payable private reid = payable(0x840D6cf4A07C3e2D1A8a814194805e18f3451528); //5.5%
    address payable private dev = payable(0xc98205d77a98be4378D56165959A990Da8c30735);  //16%

    mapping(address => uint256 ) public presaleClaim;

   
    bool public activePublic;
    bool public activePresale;

    uint256 public whiteListPrice = 0;
    uint256 public publicPrice = 0;

    string private _prefixURI;

    event Activate(bool activepresale,bool activepublic);
    event SetMerkleRoot(bytes32 merkleRoot);
    event SetPublicPrice(uint256 publicPrice);
    event SetWhitelistPrice(uint256 whitelistPrice);

    /* royalties */
    uint256 private _royaltyBps;
    address payable private _royaltyRecipient;

    bytes4 private constant _INTERFACE_ID_ROYALTIES = 0xbb3bafd6; //bytes4(keccak256('getRoyalties(uint256)')) == 0xbb3bafd6
    bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a; //bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
    bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584;

    struct Reward {
        address recipient;
        uint256 amount;
    }

    constructor(bytes32 _merkleRoot) ERC721A("CoffeeCentral", "CoffeeCentral", 10, 3333){

        _royaltyRecipient = payable(msg.sender);
        _royaltyBps = 250;
        merkleRoot = _merkleRoot;
        _prefixURI = "ipfs://QmS2Q32epE9mvGNvvSZYQSKahKBjsG7BNhvFset8ro8KKL/";
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;

        emit SetMerkleRoot(merkleRoot);
    }

    function setPublicPrice(uint256 _publicPrice) external onlyOwner {
        publicPrice = _publicPrice;
        emit SetPublicPrice(publicPrice);
    }

     function setWhitelistPrice(uint256 _whitelistPrice) external onlyOwner {
        whiteListPrice = _whitelistPrice;
        emit SetWhitelistPrice(whiteListPrice);
    }

    /**
     * @dev Activate mint
     */
    function activate(bool _activePresale, bool _activePublic) external onlyOwner{

        activePublic = _activePublic;
        activePresale = _activePresale;

        emit Activate(activePresale,activePublic);
    }


    function setPrefixURI(string calldata uri) external onlyOwner {
        _prefixURI = uri;
    }

    function tokenURI(uint256 tokenId) public view override returns(string memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");
        return string(abi.encodePacked(_prefixURI, tokenId.toString()));
    }

    function PresaleMint(
        uint256 amount,
        bytes32[] calldata merkleProof
    ) public payable nonReentrant {

        require(msg.sender == tx.origin, "NOT EOA");

        require(activePresale && !activePublic,"InactivePresale");

        require(amount > 0 && amount <= 5, "Bad amount");
        require(whiteListPrice.mul(amount) <= msg.value, "Ether value sent is not correct");
        require(totalSupply() + amount <= maxNFT, "Too many Claimed");
        require(presaleClaim[msg.sender] + amount <= 5, "Too many Presale Claimed");

        bytes32 node = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(merkleProof, merkleRoot, node),
            "MerkleDistributor: Invalid proof."
        );

        presaleClaim[msg.sender]  += amount;

        _safeMint(msg.sender, amount);
    }


    function publicMint(uint256 amount) public payable nonReentrant{

        require(msg.sender == tx.origin, "NOT EOA");

        require(!activePresale && activePublic, "InactivePublic");

        require(amount > 0 && amount <= 10, "bad amount");
        require(publicPrice.mul(amount) <= msg.value, "Ether value sent is not correct");
        require(totalSupply() + amount <= maxNFT, "Too many Claimed");

        _safeMint(msg.sender, amount);
    }

    function giftMint(address[] memory _addrs, uint[] memory _amount) public onlyOwner{
        uint totalQuantity = 0;
        
        for(uint i = 0; i < _addrs.length; i ++){
            totalQuantity += _amount[i];
        }

        require( totalSupply() + totalQuantity <= maxNFT, "Max Limit");

        for(uint i = 0; i < _addrs.length; i ++){
            _safeMint(_addrs[i], _amount[i]);
        }
    }

    function rewardCoffeeNFTS(Reward[] memory rewards) external onlyOwner {
        require(!activePresale && !activePublic, "All Inactive");
        for (uint i = 0; i < rewards.length; i++) {
            require(totalSupply() + rewards[i].amount <= maxNFT, "Too many Claimed");

            _safeMint(rewards[i].recipient, rewards[i].amount);
        }
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A) returns (bool) {
        return ERC721A.supportsInterface(interfaceId) || interfaceId == _INTERFACE_ID_ROYALTIES
               || interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981 || interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE;
    }

     /**
     * ROYALTIES implem: check EIP-2981 https://eips.ethereum.org/EIPS/eip-2981
     **/

    function updateRoyalties(address payable recipient, uint256 bps) external onlyOwner {
        _royaltyRecipient = recipient;
        _royaltyBps = bps;
    }

    function getRoyalties(uint256) external view returns (address payable[] memory recipients, uint256[] memory bps) {
        if (_royaltyRecipient != address(0x0)) {
            recipients = new address payable[](1);
            recipients[0] = _royaltyRecipient;
            bps = new uint256[](1);
            bps[0] = _royaltyBps;
        }
        return (recipients, bps);
    }

    function getFeeRecipients(uint256) external view returns (address payable[] memory recipients) {
        if (_royaltyRecipient != address(0x0)) {
            recipients = new address payable[](1);
            recipients[0] = _royaltyRecipient;
        }
        return recipients;
    }

    function getFeeBps(uint256) external view returns (uint[] memory bps) {
        if (_royaltyRecipient != address(0x0)) {
            bps = new uint256[](1);
            bps[0] = _royaltyBps;
        }
        return bps;
    }

    function royaltyInfo(uint256, uint256 value) external view returns (address, uint256) {
        return (_royaltyRecipient, value*_royaltyBps/10000);
    }

    function sendFund(address Addr, uint256 Share) internal {
          (bool success, ) = Addr.call{value: Share}("");
          require(success, "Withdrawal failed"); 
    }

    function withdraw() external onlyOwner {
       require(address(this).balance > 0, "No balance to withdraw");
        
        uint papaShare = address(this).balance.mul(15000).div(100000);
        uint sonnyShare = address(this).balance.mul(15000).div(100000);
        uint zeeShare = address(this).balance.mul(2500).div(100000);
        uint reidShare = address(this).balance.mul(5500).div(100000);
        uint devShare = address(this).balance.mul(16000).div(100000);
    
        sendFund(papa, papaShare);
        sendFund(sonny, sonnyShare);
        sendFund(zee, zeeShare);
        sendFund(reid, reidShare);
        sendFund(dev, devShare);

        sendFund(community, address(this).balance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"activepresale","type":"bool"},{"indexed":false,"internalType":"bool","name":"activepublic","type":"bool"}],"name":"Activate","type":"event"},{"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":false,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"SetMerkleRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"publicPrice","type":"uint256"}],"name":"SetPublicPrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"whitelistPrice","type":"uint256"}],"name":"SetWhitelistPrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"PresaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_activePresale","type":"bool"},{"internalType":"bool","name":"_activePublic","type":"bool"}],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activePresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activePublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getRoyalties","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"giftMint","outputs":[],"stateMutability":"nonpayable","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":"maxNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","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":[{"internalType":"address","name":"","type":"address"}],"name":"presaleClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct CoffeeCentral.Reward[]","name":"rewards","type":"tuple[]"}],"name":"rewardCoffeeNFTS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setPrefixURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistPrice","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"updateRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600060028190556009819055600b80546001600160a01b031990811673ba7af85144e6b291d573c54844f2b72131e321ee17909155600c8054821673b64c5058c3d395f074ebf78a19c9b556885369b4179055600d805482167387c56882216a3ae8d2a1530b1a413da144a721c1179055600e8054821673bfe37a45b9ddd6ff170ff15090d35bfe6eccb475179055600f8054821673840d6cf4a07c3e2d1a8a814194805e18f34515281790556010805490911673c98205d77a98be4378d56165959a990da8c307351790556013819055601455348015620000e557600080fd5b506040516200383a3803806200383a8339810160408190526200010891620003a5565b604080518082018252600d8082526c10dbd999995950d95b9d1c985b609a1b6020808401829052845180860190955291845290830152600160005590600a610d056200015433620002ad565b60008111620001c15760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620002235760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620001b8565b835162000238906003906020870190620002ff565b5082516200024e906004906020860190620002ff565b5060a0919091526080525050601780546001600160a01b0319163317905560fa601655600a819055604080516060810190915260368082526200380460208301398051620002a591601591602090910190620002ff565b5050620003fc565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200030d90620003bf565b90600052602060002090601f0160209004810192826200033157600085556200037c565b82601f106200034c57805160ff19168380011785556200037c565b828001600101855582156200037c579182015b828111156200037c5782518255916020019190600101906200035f565b506200038a9291506200038e565b5090565b5b808211156200038a57600081556001016200038f565b600060208284031215620003b857600080fd5b5051919050565b600181811c90821680620003d457607f821691505b60208210811415620003f657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516133d76200042d60003960008181612187015281816121b101526125de0152600050506133d76000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063b3e47ba3116100b6578063c87b56dd1161007a578063c87b56dd146106fe578063d7224ba01461071e578063e456b01c14610734578063e985e9c51461074a578063eb1909b514610793578063f2fde38b146107ad57600080fd5b8063b3e47ba314610644578063b88d4fde14610663578063b9c4d9fb14610683578063bb3bafd6146106b0578063c6275255146106de57600080fd5b8063a22cb465116100fd578063a22cb465146105ae578063a7abc124146105ce578063a945bf80146105ee578063b187f9d314610604578063b2c94ee61461062457600080fd5b8063715018a614610526578063717d57d31461053b5780637cb647591461055b5780638da5cb5b1461057b57806395d89b411461059957600080fd5b80632f745c59116101d25780636352211e116101965780636352211e1461047d57806364bfaaf71461049d57806368575685146104b05780636c2f5acd146104c65780636ea5d178146104e657806370a082311461050657600080fd5b80632f745c59146103db57806338f9d571146103fb5780633ccfd60b1461042857806342842e0e1461043d5780634f6ccce71461045d57600080fd5b806318160ddd1161021957806318160ddd1461033457806323b872dd146103535780632a55205a146103735780632db11544146103b25780632eb4a7ab146103c557600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e55780630ebd4c7f14610307575b600080fd5b34801561026257600080fd5b50610276610271366004612cfc565b6107cd565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a061082f565b6040516102829190613032565b3480156102b957600080fd5b506102cd6102c8366004612ce3565b6108c1565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b5061030561030036600461299e565b610951565b005b34801561031357600080fd5b50610327610322366004612ce3565b610a69565b604051610282919061301f565b34801561034057600080fd5b506002545b604051908152602001610282565b34801561035f57600080fd5b5061030561036e366004612a03565b610ac5565b34801561037f57600080fd5b5061039361038e366004612e25565b610ad0565b604080516001600160a01b039093168352602083019190915201610282565b6103056103c0366004612ce3565b610b0a565b3480156103d157600080fd5b50610345600a5481565b3480156103e757600080fd5b506103456103f636600461299e565b610ce0565b34801561040757600080fd5b50610345610416366004612981565b60116020526000908152604090205481565b34801561043457600080fd5b50610305610e58565b34801561044957600080fd5b50610305610458366004612a03565b610fd0565b34801561046957600080fd5b50610345610478366004612ce3565b610feb565b34801561048957600080fd5b506102cd610498366004612ce3565b611054565b6103056104ab366004612da7565b611066565b3480156104bc57600080fd5b5061034560135481565b3480156104d257600080fd5b506103056104e136600461299e565b6113a1565b3480156104f257600080fd5b50610305610501366004612b3c565b6113f1565b34801561051257600080fd5b50610345610521366004612981565b611513565b34801561053257600080fd5b506103056115a4565b34801561054757600080fd5b50610305610556366004612ce3565b6115da565b34801561056757600080fd5b50610305610576366004612ce3565b611640565b34801561058757600080fd5b506001546001600160a01b03166102cd565b3480156105a557600080fd5b506102a061169f565b3480156105ba57600080fd5b506103056105c9366004612b07565b6116ae565b3480156105da57600080fd5b506103056105e9366004612cc7565b611773565b3480156105fa57600080fd5b5061034560145481565b34801561061057600080fd5b5061030561061f366004612c04565b611808565b34801561063057600080fd5b5061030561063f366004612d36565b611940565b34801561065057600080fd5b5060125461027690610100900460ff1681565b34801561066f57600080fd5b5061030561067e366004612a44565b611976565b34801561068f57600080fd5b506106a361069e366004612ce3565b6119a9565b6040516102829190612fe7565b3480156106bc57600080fd5b506106d06106cb366004612ce3565b611a22565b604051610282929190612ffa565b3480156106ea57600080fd5b506103056106f9366004612ce3565b611ad6565b34801561070a57600080fd5b506102a0610719366004612ce3565b611b35565b34801561072a57600080fd5b5061034560095481565b34801561074057600080fd5b50610345610d0581565b34801561075657600080fd5b506102766107653660046129ca565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561079f57600080fd5b506012546102769060ff1681565b3480156107b957600080fd5b506103056107c8366004612981565b611b90565b60006107d882611c2b565b806107f357506001600160e01b03198216635d9dd7eb60e11b145b8061080e57506001600160e01b0319821663152a902d60e11b145b8061082957506001600160e01b03198216632dde656160e21b145b92915050565b60606003805461083e906132b4565b80601f016020809104026020016040519081016040528092919081815260200182805461086a906132b4565b80156108b75780601f1061088c576101008083540402835291602001916108b7565b820191906000526020600020905b81548152906001019060200180831161089a57829003601f168201915b5050505050905090565b60006108ce826002541190565b6109355760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061095c82611054565b9050806001600160a01b0316836001600160a01b031614156109cb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161092c565b336001600160a01b03821614806109e757506109e78133610765565b610a595760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161092c565b610a64838383611c96565b505050565b6017546060906001600160a01b031615610ac057604080516001808252818301909252906020808301908036833701905050905060165481600081518110610ab357610ab361334a565b6020026020010181815250505b919050565b610a64838383611cf2565b60175460165460009182916001600160a01b039091169061271090610af59086613213565b610aff91906131ff565b915091509250929050565b60026000541415610b5d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161092c565b6002600055333214610b9b5760405162461bcd60e51b81526020600482015260076024820152664e4f5420454f4160c81b604482015260640161092c565b601254610100900460ff16158015610bb5575060125460ff165b610bf25760405162461bcd60e51b815260206004820152600e60248201526d496e6163746976655075626c696360901b604482015260640161092c565b600081118015610c035750600a8111155b610c3c5760405162461bcd60e51b815260206004820152600a60248201526918985908185b5bdd5b9d60b21b604482015260640161092c565b6014543490610c4b9083612078565b1115610c995760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161092c565b610d0581610ca660025490565b610cb091906131e7565b1115610cce5760405162461bcd60e51b815260040161092c90613045565b610cd8338261208b565b506001600055565b6000610ceb83611513565b8210610d445760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161092c565b6000610d4f60025490565b905060008060005b83811015610df8576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610da957805192505b876001600160a01b0316836001600160a01b03161415610de55786841415610dd75750935061082992505050565b83610de1816132ef565b9450505b5080610df0816132ef565b915050610d57565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161092c565b6001546001600160a01b03163314610e825760405162461bcd60e51b815260040161092c906130b9565b60004711610ecb5760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b604482015260640161092c565b6000610ee6620186a0610ee047613a98612078565b906120a5565b90506000610efd620186a0610ee047613a98612078565b90506000610f14620186a0610ee0476109c4612078565b90506000610f2b620186a0610ee04761157c612078565b90506000610f42620186a0610ee047613e80612078565b600c54909150610f5b906001600160a01b0316866120b1565b600d54610f71906001600160a01b0316856120b1565b600e54610f87906001600160a01b0316846120b1565b600f54610f9d906001600160a01b0316836120b1565b601054610fb3906001600160a01b0316826120b1565b600b54610fc9906001600160a01b0316476120b1565b5050505050565b610a6483838360405180602001604052806000815250611976565b6000610ff660025490565b82106110505760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161092c565b5090565b600061105f82612148565b5192915050565b600260005414156110b95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161092c565b60026000553332146110f75760405162461bcd60e51b81526020600482015260076024820152664e4f5420454f4160c81b604482015260640161092c565b601254610100900460ff168015611111575060125460ff16155b61114f5760405162461bcd60e51b815260206004820152600f60248201526e496e61637469766550726573616c6560881b604482015260640161092c565b600083118015611160575060058311155b6111995760405162461bcd60e51b815260206004820152600a60248201526910985908185b5bdd5b9d60b21b604482015260640161092c565b60135434906111a89085612078565b11156111f65760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161092c565b610d058361120360025490565b61120d91906131e7565b111561122b5760405162461bcd60e51b815260040161092c90613045565b336000908152601160205260409020546005906112499085906131e7565b11156112975760405162461bcd60e51b815260206004820152601860248201527f546f6f206d616e792050726573616c6520436c61696d65640000000000000000604482015260640161092c565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061131183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506122ae565b6113675760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b606482015260840161092c565b33600090815260116020526040812080548692906113869084906131e7565b909155506113969050338561208b565b505060016000555050565b6001546001600160a01b031633146113cb5760405162461bcd60e51b815260040161092c906130b9565b601780546001600160a01b0319166001600160a01b039390931692909217909155601655565b6001546001600160a01b0316331461141b5760405162461bcd60e51b815260040161092c906130b9565b6000805b83518110156114615782818151811061143a5761143a61334a565b60200260200101518261144d91906131e7565b915080611459816132ef565b91505061141f565b50610d058161146f60025490565b61147991906131e7565b11156114b35760405162461bcd60e51b815260206004820152600960248201526813585e08131a5b5a5d60ba1b604482015260640161092c565b60005b835181101561150d576114fb8482815181106114d4576114d461334a565b60200260200101518483815181106114ee576114ee61334a565b602002602001015161208b565b80611505816132ef565b9150506114b6565b50505050565b60006001600160a01b03821661157f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161092c565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b6001546001600160a01b031633146115ce5760405162461bcd60e51b815260040161092c906130b9565b6115d860006122c4565b565b6001546001600160a01b031633146116045760405162461bcd60e51b815260040161092c906130b9565b60138190556040518181527f666111fb050e78bb87dccd0cb31682328cb3a3ab33c44ac45cf3f3cbb3894fab906020015b60405180910390a150565b6001546001600160a01b0316331461166a5760405162461bcd60e51b815260040161092c906130b9565b600a8190556040518181527f914960aef5e033ce5cae8a7992d4b7a6f0f9741227b66acb67c605b7019f8a4690602001611635565b60606004805461083e906132b4565b6001600160a01b0382163314156117075760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161092c565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001546001600160a01b0316331461179d5760405162461bcd60e51b815260040161092c906130b9565b6012805461ffff191682151561ff00191617610100841515810291909117918290556040805160ff92840483161515815291909216151560208201527ff6962bb7d59cfbc1f5b7288cf68707b8a6a9d76dc51fbd98a1aeb236e7ba384b910160405180910390a15050565b6001546001600160a01b031633146118325760405162461bcd60e51b815260040161092c906130b9565b601254610100900460ff1615801561184d575060125460ff16155b6118885760405162461bcd60e51b815260206004820152600c60248201526b416c6c20496e61637469766560a01b604482015260640161092c565b60005b815181101561193c57610d058282815181106118a9576118a961334a565b6020026020010151602001516118be60025490565b6118c891906131e7565b11156118e65760405162461bcd60e51b815260040161092c90613045565b61192a8282815181106118fb576118fb61334a565b6020026020010151600001518383815181106119195761191961334a565b60200260200101516020015161208b565b80611934816132ef565b91505061188b565b5050565b6001546001600160a01b0316331461196a5760405162461bcd60e51b815260040161092c906130b9565b610a646015838361286f565b611981848484611cf2565b61198d84848484612316565b61150d5760405162461bcd60e51b815260040161092c906130ee565b6017546060906001600160a01b031615610ac0576040805160018082528183019092529060208083019080368337505060175482519293506001600160a01b0316918391506000906119fd576119fd61334a565b60200260200101906001600160a01b031690816001600160a01b031681525050919050565b60175460609081906001600160a01b031615611ad1576040805160018082528183019092529060208083019080368337505060175482519294506001600160a01b031691849150600090611a7857611a7861334a565b6001600160a01b039290921660209283029190910182015260408051600180825281830190925291828101908036833701905050905060165481600081518110611ac457611ac461334a565b6020026020010181815250505b915091565b6001546001600160a01b03163314611b005760405162461bcd60e51b815260040161092c906130b9565b60148190556040518181527fda25869ecc04491e922bb8c554c6ef8967b063207ae489515c67ace4e304b32790602001611635565b6060611b42826002541190565b611b5e5760405162461bcd60e51b815260040161092c9061306f565b6015611b6983612424565b604051602001611b7a929190612f03565b6040516020818303038152906040529050919050565b6001546001600160a01b03163314611bba5760405162461bcd60e51b815260040161092c906130b9565b6001600160a01b038116611c1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092c565b611c28816122c4565b50565b60006001600160e01b031982166380ac58cd60e01b1480611c5c57506001600160e01b03198216635b5e139f60e01b145b80611c7757506001600160e01b0319821663780e9d6360e01b145b8061082957506301ffc9a760e01b6001600160e01b0319831614610829565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611cfd82612148565b80519091506000906001600160a01b0316336001600160a01b03161480611d34575033611d29846108c1565b6001600160a01b0316145b80611d4657508151611d469033610765565b905080611db05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161092c565b846001600160a01b031682600001516001600160a01b031614611e245760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161092c565b6001600160a01b038416611e885760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161092c565b611e986000848460000151611c96565b6001600160a01b0385166000908152600660205260408120805460019290611eca9084906001600160801b0316613232565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526006602052604081208054600194509092611f16918591166131bc565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526005909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611f9d8460016131e7565b6000818152600560205260409020549091506001600160a01b031661202e57611fc7816002541190565b1561202e5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600590935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60006120848284613213565b9392505050565b61193c828260405180602001604052806000815250612521565b600061208482846131ff565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146120fe576040519150601f19603f3d011682016040523d82523d6000602084013e612103565b606091505b5050905080610a645760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b604482015260640161092c565b6040805180820190915260008082526020820152612167826002541190565b6121835760405162461bcd60e51b815260040161092c9061306f565b60007f000000000000000000000000000000000000000000000000000000000000000083106121e4576121d67f00000000000000000000000000000000000000000000000000000000000000008461325a565b6121e19060016131e7565b90505b825b81811061224d576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561223a57949350505050565b50806122458161329d565b9150506121e6565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161092c565b6000826122bb85846127fb565b14949350505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561241857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061235a903390899088908890600401612faa565b602060405180830381600087803b15801561237457600080fd5b505af19250505080156123a4575060408051601f3d908101601f191682019092526123a191810190612d19565b60015b6123fe573d8080156123d2576040519150601f19603f3d011682016040523d82523d6000602084013e6123d7565b606091505b5080516123f65760405162461bcd60e51b815260040161092c906130ee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061241c565b5060015b949350505050565b6060816124485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612472578061245c816132ef565b915061246b9050600a836131ff565b915061244c565b6000816001600160401b0381111561248c5761248c613360565b6040519080825280601f01601f1916602001820160405280156124b6576020820181803683370190505b5090505b841561241c576124cb60018361325a565b91506124d8600a8661330a565b6124e39060306131e7565b60f81b8183815181106124f8576124f861334a565b60200101906001600160f81b031916908160001a90535061251a600a866131ff565b94506124ba565b6002546001600160a01b0384166125845760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161092c565b61258f816002541190565b156125dc5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161092c565b7f00000000000000000000000000000000000000000000000000000000000000008311156126575760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161092c565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906126b39087906131bc565b6001600160801b031681526020018583602001516126d191906131bc565b6001600160801b039081169091526001600160a01b0380881660008181526006602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526005909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127f05760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127b46000888488612316565b6127d05760405162461bcd60e51b815260040161092c906130ee565b816127da816132ef565b92505080806127e8906132ef565b915050612767565b506002819055612070565b600081815b845181101561286757600085828151811061281d5761281d61334a565b602002602001015190508083116128435760008381526020829052604090209250612854565b600081815260208490526040902092505b508061285f816132ef565b915050612800565b509392505050565b82805461287b906132b4565b90600052602060002090601f01602090048101928261289d57600085556128e3565b82601f106128b65782800160ff198235161785556128e3565b828001600101855582156128e3579182015b828111156128e35782358255916020019190600101906128c8565b506110509291505b8082111561105057600081556001016128eb565b600082601f83011261291057600080fd5b8135602061292561292083613199565b613169565b80838252828201915082860187848660051b890101111561294557600080fd5b60005b8581101561296457813584529284019290840190600101612948565b5090979650505050505050565b80358015158114610ac057600080fd5b60006020828403121561299357600080fd5b813561208481613376565b600080604083850312156129b157600080fd5b82356129bc81613376565b946020939093013593505050565b600080604083850312156129dd57600080fd5b82356129e881613376565b915060208301356129f881613376565b809150509250929050565b600080600060608486031215612a1857600080fd5b8335612a2381613376565b92506020840135612a3381613376565b929592945050506040919091013590565b60008060008060808587031215612a5a57600080fd5b8435612a6581613376565b9350602085810135612a7681613376565b93506040860135925060608601356001600160401b0380821115612a9957600080fd5b818801915088601f830112612aad57600080fd5b813581811115612abf57612abf613360565b612ad1601f8201601f19168501613169565b91508082528984828501011115612ae757600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612b1a57600080fd5b8235612b2581613376565b9150612b3360208401612971565b90509250929050565b60008060408385031215612b4f57600080fd5b82356001600160401b0380821115612b6657600080fd5b818501915085601f830112612b7a57600080fd5b81356020612b8a61292083613199565b8083825282820191508286018a848660051b8901011115612baa57600080fd5b600096505b84871015612bd6578035612bc281613376565b835260019690960195918301918301612baf565b5096505086013592505080821115612bed57600080fd5b50612bfa858286016128ff565b9150509250929050565b60006020808385031215612c1757600080fd5b82356001600160401b03811115612c2d57600080fd5b8301601f81018513612c3e57600080fd5b8035612c4c61292082613199565b80828252848201915084840188868560061b8701011115612c6c57600080fd5b60009450845b84811015612cb957604080838c031215612c8a578687fd5b612c92613141565b8335612c9d81613376565b8152838901358982015285529387019390910190600101612c72565b509098975050505050505050565b60008060408385031215612cda57600080fd5b612b2583612971565b600060208284031215612cf557600080fd5b5035919050565b600060208284031215612d0e57600080fd5b81356120848161338b565b600060208284031215612d2b57600080fd5b81516120848161338b565b60008060208385031215612d4957600080fd5b82356001600160401b0380821115612d6057600080fd5b818501915085601f830112612d7457600080fd5b813581811115612d8357600080fd5b866020828501011115612d9557600080fd5b60209290920196919550909350505050565b600080600060408486031215612dbc57600080fd5b8335925060208401356001600160401b0380821115612dda57600080fd5b818601915086601f830112612dee57600080fd5b813581811115612dfd57600080fd5b8760208260051b8501011115612e1257600080fd5b6020830194508093505050509250925092565b60008060408385031215612e3857600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015612e805781516001600160a01b031687529582019590820190600101612e5b565b509495945050505050565b600081518084526020808501945080840160005b83811015612e8057815187529582019590820190600101612e9f565b60008151808452612ed3816020860160208601613271565b601f01601f19169290920160200192915050565b60008151612ef9818560208601613271565b9290920192915050565b600080845481600182811c915080831680612f1f57607f831692505b6020808410821415612f3f57634e487b7160e01b86526022600452602486fd5b818015612f535760018114612f6457612f91565b60ff19861689528489019650612f91565b60008b81526020902060005b86811015612f895781548b820152908501908301612f70565b505084890196505b505050505050612fa18185612ee7565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612fdd90830184612ebb565b9695505050505050565b6020815260006120846020830184612e47565b60408152600061300d6040830185612e47565b8281036020840152612fa18185612e8b565b6020815260006120846020830184612e8b565b6020815260006120846020830184612ebb565b60208082526010908201526f151bdbc81b585b9e4810db185a5b595960821b604082015260600190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604080519081016001600160401b038111828210171561316357613163613360565b60405290565b604051601f8201601f191681016001600160401b038111828210171561319157613191613360565b604052919050565b60006001600160401b038211156131b2576131b2613360565b5060051b60200190565b60006001600160801b038083168185168083038211156131de576131de61331e565b01949350505050565b600082198211156131fa576131fa61331e565b500190565b60008261320e5761320e613334565b500490565b600081600019048311821515161561322d5761322d61331e565b500290565b60006001600160801b03838116908316818110156132525761325261331e565b039392505050565b60008282101561326c5761326c61331e565b500390565b60005b8381101561328c578181015183820152602001613274565b8381111561150d5750506000910152565b6000816132ac576132ac61331e565b506000190190565b600181811c908216806132c857607f821691505b602082108114156132e957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133035761330361331e565b5060010190565b60008261331957613319613334565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611c2857600080fd5b6001600160e01b031981168114611c2857600080fdfea2646970667358221220143b1094ce9e3c9462e092bf3879f70922fa950d247ee9711636379f86f9c46a64736f6c63430008070033697066733a2f2f516d5332513332657045396d76474e7676535a5951534b61684b426a734737424e68764673657438726f384b4b4c2fa5e3bb79fb2b879a012ce0236546db5dca3c005d6700e1b1cabf448fc33bf561

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063715018a611610139578063b3e47ba3116100b6578063c87b56dd1161007a578063c87b56dd146106fe578063d7224ba01461071e578063e456b01c14610734578063e985e9c51461074a578063eb1909b514610793578063f2fde38b146107ad57600080fd5b8063b3e47ba314610644578063b88d4fde14610663578063b9c4d9fb14610683578063bb3bafd6146106b0578063c6275255146106de57600080fd5b8063a22cb465116100fd578063a22cb465146105ae578063a7abc124146105ce578063a945bf80146105ee578063b187f9d314610604578063b2c94ee61461062457600080fd5b8063715018a614610526578063717d57d31461053b5780637cb647591461055b5780638da5cb5b1461057b57806395d89b411461059957600080fd5b80632f745c59116101d25780636352211e116101965780636352211e1461047d57806364bfaaf71461049d57806368575685146104b05780636c2f5acd146104c65780636ea5d178146104e657806370a082311461050657600080fd5b80632f745c59146103db57806338f9d571146103fb5780633ccfd60b1461042857806342842e0e1461043d5780634f6ccce71461045d57600080fd5b806318160ddd1161021957806318160ddd1461033457806323b872dd146103535780632a55205a146103735780632db11544146103b25780632eb4a7ab146103c557600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e55780630ebd4c7f14610307575b600080fd5b34801561026257600080fd5b50610276610271366004612cfc565b6107cd565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a061082f565b6040516102829190613032565b3480156102b957600080fd5b506102cd6102c8366004612ce3565b6108c1565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b5061030561030036600461299e565b610951565b005b34801561031357600080fd5b50610327610322366004612ce3565b610a69565b604051610282919061301f565b34801561034057600080fd5b506002545b604051908152602001610282565b34801561035f57600080fd5b5061030561036e366004612a03565b610ac5565b34801561037f57600080fd5b5061039361038e366004612e25565b610ad0565b604080516001600160a01b039093168352602083019190915201610282565b6103056103c0366004612ce3565b610b0a565b3480156103d157600080fd5b50610345600a5481565b3480156103e757600080fd5b506103456103f636600461299e565b610ce0565b34801561040757600080fd5b50610345610416366004612981565b60116020526000908152604090205481565b34801561043457600080fd5b50610305610e58565b34801561044957600080fd5b50610305610458366004612a03565b610fd0565b34801561046957600080fd5b50610345610478366004612ce3565b610feb565b34801561048957600080fd5b506102cd610498366004612ce3565b611054565b6103056104ab366004612da7565b611066565b3480156104bc57600080fd5b5061034560135481565b3480156104d257600080fd5b506103056104e136600461299e565b6113a1565b3480156104f257600080fd5b50610305610501366004612b3c565b6113f1565b34801561051257600080fd5b50610345610521366004612981565b611513565b34801561053257600080fd5b506103056115a4565b34801561054757600080fd5b50610305610556366004612ce3565b6115da565b34801561056757600080fd5b50610305610576366004612ce3565b611640565b34801561058757600080fd5b506001546001600160a01b03166102cd565b3480156105a557600080fd5b506102a061169f565b3480156105ba57600080fd5b506103056105c9366004612b07565b6116ae565b3480156105da57600080fd5b506103056105e9366004612cc7565b611773565b3480156105fa57600080fd5b5061034560145481565b34801561061057600080fd5b5061030561061f366004612c04565b611808565b34801561063057600080fd5b5061030561063f366004612d36565b611940565b34801561065057600080fd5b5060125461027690610100900460ff1681565b34801561066f57600080fd5b5061030561067e366004612a44565b611976565b34801561068f57600080fd5b506106a361069e366004612ce3565b6119a9565b6040516102829190612fe7565b3480156106bc57600080fd5b506106d06106cb366004612ce3565b611a22565b604051610282929190612ffa565b3480156106ea57600080fd5b506103056106f9366004612ce3565b611ad6565b34801561070a57600080fd5b506102a0610719366004612ce3565b611b35565b34801561072a57600080fd5b5061034560095481565b34801561074057600080fd5b50610345610d0581565b34801561075657600080fd5b506102766107653660046129ca565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561079f57600080fd5b506012546102769060ff1681565b3480156107b957600080fd5b506103056107c8366004612981565b611b90565b60006107d882611c2b565b806107f357506001600160e01b03198216635d9dd7eb60e11b145b8061080e57506001600160e01b0319821663152a902d60e11b145b8061082957506001600160e01b03198216632dde656160e21b145b92915050565b60606003805461083e906132b4565b80601f016020809104026020016040519081016040528092919081815260200182805461086a906132b4565b80156108b75780601f1061088c576101008083540402835291602001916108b7565b820191906000526020600020905b81548152906001019060200180831161089a57829003601f168201915b5050505050905090565b60006108ce826002541190565b6109355760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061095c82611054565b9050806001600160a01b0316836001600160a01b031614156109cb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161092c565b336001600160a01b03821614806109e757506109e78133610765565b610a595760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161092c565b610a64838383611c96565b505050565b6017546060906001600160a01b031615610ac057604080516001808252818301909252906020808301908036833701905050905060165481600081518110610ab357610ab361334a565b6020026020010181815250505b919050565b610a64838383611cf2565b60175460165460009182916001600160a01b039091169061271090610af59086613213565b610aff91906131ff565b915091509250929050565b60026000541415610b5d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161092c565b6002600055333214610b9b5760405162461bcd60e51b81526020600482015260076024820152664e4f5420454f4160c81b604482015260640161092c565b601254610100900460ff16158015610bb5575060125460ff165b610bf25760405162461bcd60e51b815260206004820152600e60248201526d496e6163746976655075626c696360901b604482015260640161092c565b600081118015610c035750600a8111155b610c3c5760405162461bcd60e51b815260206004820152600a60248201526918985908185b5bdd5b9d60b21b604482015260640161092c565b6014543490610c4b9083612078565b1115610c995760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161092c565b610d0581610ca660025490565b610cb091906131e7565b1115610cce5760405162461bcd60e51b815260040161092c90613045565b610cd8338261208b565b506001600055565b6000610ceb83611513565b8210610d445760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161092c565b6000610d4f60025490565b905060008060005b83811015610df8576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610da957805192505b876001600160a01b0316836001600160a01b03161415610de55786841415610dd75750935061082992505050565b83610de1816132ef565b9450505b5080610df0816132ef565b915050610d57565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161092c565b6001546001600160a01b03163314610e825760405162461bcd60e51b815260040161092c906130b9565b60004711610ecb5760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b604482015260640161092c565b6000610ee6620186a0610ee047613a98612078565b906120a5565b90506000610efd620186a0610ee047613a98612078565b90506000610f14620186a0610ee0476109c4612078565b90506000610f2b620186a0610ee04761157c612078565b90506000610f42620186a0610ee047613e80612078565b600c54909150610f5b906001600160a01b0316866120b1565b600d54610f71906001600160a01b0316856120b1565b600e54610f87906001600160a01b0316846120b1565b600f54610f9d906001600160a01b0316836120b1565b601054610fb3906001600160a01b0316826120b1565b600b54610fc9906001600160a01b0316476120b1565b5050505050565b610a6483838360405180602001604052806000815250611976565b6000610ff660025490565b82106110505760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161092c565b5090565b600061105f82612148565b5192915050565b600260005414156110b95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161092c565b60026000553332146110f75760405162461bcd60e51b81526020600482015260076024820152664e4f5420454f4160c81b604482015260640161092c565b601254610100900460ff168015611111575060125460ff16155b61114f5760405162461bcd60e51b815260206004820152600f60248201526e496e61637469766550726573616c6560881b604482015260640161092c565b600083118015611160575060058311155b6111995760405162461bcd60e51b815260206004820152600a60248201526910985908185b5bdd5b9d60b21b604482015260640161092c565b60135434906111a89085612078565b11156111f65760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161092c565b610d058361120360025490565b61120d91906131e7565b111561122b5760405162461bcd60e51b815260040161092c90613045565b336000908152601160205260409020546005906112499085906131e7565b11156112975760405162461bcd60e51b815260206004820152601860248201527f546f6f206d616e792050726573616c6520436c61696d65640000000000000000604482015260640161092c565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061131183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506122ae565b6113675760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b606482015260840161092c565b33600090815260116020526040812080548692906113869084906131e7565b909155506113969050338561208b565b505060016000555050565b6001546001600160a01b031633146113cb5760405162461bcd60e51b815260040161092c906130b9565b601780546001600160a01b0319166001600160a01b039390931692909217909155601655565b6001546001600160a01b0316331461141b5760405162461bcd60e51b815260040161092c906130b9565b6000805b83518110156114615782818151811061143a5761143a61334a565b60200260200101518261144d91906131e7565b915080611459816132ef565b91505061141f565b50610d058161146f60025490565b61147991906131e7565b11156114b35760405162461bcd60e51b815260206004820152600960248201526813585e08131a5b5a5d60ba1b604482015260640161092c565b60005b835181101561150d576114fb8482815181106114d4576114d461334a565b60200260200101518483815181106114ee576114ee61334a565b602002602001015161208b565b80611505816132ef565b9150506114b6565b50505050565b60006001600160a01b03821661157f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161092c565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b6001546001600160a01b031633146115ce5760405162461bcd60e51b815260040161092c906130b9565b6115d860006122c4565b565b6001546001600160a01b031633146116045760405162461bcd60e51b815260040161092c906130b9565b60138190556040518181527f666111fb050e78bb87dccd0cb31682328cb3a3ab33c44ac45cf3f3cbb3894fab906020015b60405180910390a150565b6001546001600160a01b0316331461166a5760405162461bcd60e51b815260040161092c906130b9565b600a8190556040518181527f914960aef5e033ce5cae8a7992d4b7a6f0f9741227b66acb67c605b7019f8a4690602001611635565b60606004805461083e906132b4565b6001600160a01b0382163314156117075760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161092c565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001546001600160a01b0316331461179d5760405162461bcd60e51b815260040161092c906130b9565b6012805461ffff191682151561ff00191617610100841515810291909117918290556040805160ff92840483161515815291909216151560208201527ff6962bb7d59cfbc1f5b7288cf68707b8a6a9d76dc51fbd98a1aeb236e7ba384b910160405180910390a15050565b6001546001600160a01b031633146118325760405162461bcd60e51b815260040161092c906130b9565b601254610100900460ff1615801561184d575060125460ff16155b6118885760405162461bcd60e51b815260206004820152600c60248201526b416c6c20496e61637469766560a01b604482015260640161092c565b60005b815181101561193c57610d058282815181106118a9576118a961334a565b6020026020010151602001516118be60025490565b6118c891906131e7565b11156118e65760405162461bcd60e51b815260040161092c90613045565b61192a8282815181106118fb576118fb61334a565b6020026020010151600001518383815181106119195761191961334a565b60200260200101516020015161208b565b80611934816132ef565b91505061188b565b5050565b6001546001600160a01b0316331461196a5760405162461bcd60e51b815260040161092c906130b9565b610a646015838361286f565b611981848484611cf2565b61198d84848484612316565b61150d5760405162461bcd60e51b815260040161092c906130ee565b6017546060906001600160a01b031615610ac0576040805160018082528183019092529060208083019080368337505060175482519293506001600160a01b0316918391506000906119fd576119fd61334a565b60200260200101906001600160a01b031690816001600160a01b031681525050919050565b60175460609081906001600160a01b031615611ad1576040805160018082528183019092529060208083019080368337505060175482519294506001600160a01b031691849150600090611a7857611a7861334a565b6001600160a01b039290921660209283029190910182015260408051600180825281830190925291828101908036833701905050905060165481600081518110611ac457611ac461334a565b6020026020010181815250505b915091565b6001546001600160a01b03163314611b005760405162461bcd60e51b815260040161092c906130b9565b60148190556040518181527fda25869ecc04491e922bb8c554c6ef8967b063207ae489515c67ace4e304b32790602001611635565b6060611b42826002541190565b611b5e5760405162461bcd60e51b815260040161092c9061306f565b6015611b6983612424565b604051602001611b7a929190612f03565b6040516020818303038152906040529050919050565b6001546001600160a01b03163314611bba5760405162461bcd60e51b815260040161092c906130b9565b6001600160a01b038116611c1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092c565b611c28816122c4565b50565b60006001600160e01b031982166380ac58cd60e01b1480611c5c57506001600160e01b03198216635b5e139f60e01b145b80611c7757506001600160e01b0319821663780e9d6360e01b145b8061082957506301ffc9a760e01b6001600160e01b0319831614610829565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611cfd82612148565b80519091506000906001600160a01b0316336001600160a01b03161480611d34575033611d29846108c1565b6001600160a01b0316145b80611d4657508151611d469033610765565b905080611db05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161092c565b846001600160a01b031682600001516001600160a01b031614611e245760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161092c565b6001600160a01b038416611e885760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161092c565b611e986000848460000151611c96565b6001600160a01b0385166000908152600660205260408120805460019290611eca9084906001600160801b0316613232565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526006602052604081208054600194509092611f16918591166131bc565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526005909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611f9d8460016131e7565b6000818152600560205260409020549091506001600160a01b031661202e57611fc7816002541190565b1561202e5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600590935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60006120848284613213565b9392505050565b61193c828260405180602001604052806000815250612521565b600061208482846131ff565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146120fe576040519150601f19603f3d011682016040523d82523d6000602084013e612103565b606091505b5050905080610a645760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b604482015260640161092c565b6040805180820190915260008082526020820152612167826002541190565b6121835760405162461bcd60e51b815260040161092c9061306f565b60007f000000000000000000000000000000000000000000000000000000000000000a83106121e4576121d67f000000000000000000000000000000000000000000000000000000000000000a8461325a565b6121e19060016131e7565b90505b825b81811061224d576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561223a57949350505050565b50806122458161329d565b9150506121e6565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161092c565b6000826122bb85846127fb565b14949350505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561241857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061235a903390899088908890600401612faa565b602060405180830381600087803b15801561237457600080fd5b505af19250505080156123a4575060408051601f3d908101601f191682019092526123a191810190612d19565b60015b6123fe573d8080156123d2576040519150601f19603f3d011682016040523d82523d6000602084013e6123d7565b606091505b5080516123f65760405162461bcd60e51b815260040161092c906130ee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061241c565b5060015b949350505050565b6060816124485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612472578061245c816132ef565b915061246b9050600a836131ff565b915061244c565b6000816001600160401b0381111561248c5761248c613360565b6040519080825280601f01601f1916602001820160405280156124b6576020820181803683370190505b5090505b841561241c576124cb60018361325a565b91506124d8600a8661330a565b6124e39060306131e7565b60f81b8183815181106124f8576124f861334a565b60200101906001600160f81b031916908160001a90535061251a600a866131ff565b94506124ba565b6002546001600160a01b0384166125845760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161092c565b61258f816002541190565b156125dc5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161092c565b7f000000000000000000000000000000000000000000000000000000000000000a8311156126575760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161092c565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906126b39087906131bc565b6001600160801b031681526020018583602001516126d191906131bc565b6001600160801b039081169091526001600160a01b0380881660008181526006602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526005909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127f05760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127b46000888488612316565b6127d05760405162461bcd60e51b815260040161092c906130ee565b816127da816132ef565b92505080806127e8906132ef565b915050612767565b506002819055612070565b600081815b845181101561286757600085828151811061281d5761281d61334a565b602002602001015190508083116128435760008381526020829052604090209250612854565b600081815260208490526040902092505b508061285f816132ef565b915050612800565b509392505050565b82805461287b906132b4565b90600052602060002090601f01602090048101928261289d57600085556128e3565b82601f106128b65782800160ff198235161785556128e3565b828001600101855582156128e3579182015b828111156128e35782358255916020019190600101906128c8565b506110509291505b8082111561105057600081556001016128eb565b600082601f83011261291057600080fd5b8135602061292561292083613199565b613169565b80838252828201915082860187848660051b890101111561294557600080fd5b60005b8581101561296457813584529284019290840190600101612948565b5090979650505050505050565b80358015158114610ac057600080fd5b60006020828403121561299357600080fd5b813561208481613376565b600080604083850312156129b157600080fd5b82356129bc81613376565b946020939093013593505050565b600080604083850312156129dd57600080fd5b82356129e881613376565b915060208301356129f881613376565b809150509250929050565b600080600060608486031215612a1857600080fd5b8335612a2381613376565b92506020840135612a3381613376565b929592945050506040919091013590565b60008060008060808587031215612a5a57600080fd5b8435612a6581613376565b9350602085810135612a7681613376565b93506040860135925060608601356001600160401b0380821115612a9957600080fd5b818801915088601f830112612aad57600080fd5b813581811115612abf57612abf613360565b612ad1601f8201601f19168501613169565b91508082528984828501011115612ae757600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612b1a57600080fd5b8235612b2581613376565b9150612b3360208401612971565b90509250929050565b60008060408385031215612b4f57600080fd5b82356001600160401b0380821115612b6657600080fd5b818501915085601f830112612b7a57600080fd5b81356020612b8a61292083613199565b8083825282820191508286018a848660051b8901011115612baa57600080fd5b600096505b84871015612bd6578035612bc281613376565b835260019690960195918301918301612baf565b5096505086013592505080821115612bed57600080fd5b50612bfa858286016128ff565b9150509250929050565b60006020808385031215612c1757600080fd5b82356001600160401b03811115612c2d57600080fd5b8301601f81018513612c3e57600080fd5b8035612c4c61292082613199565b80828252848201915084840188868560061b8701011115612c6c57600080fd5b60009450845b84811015612cb957604080838c031215612c8a578687fd5b612c92613141565b8335612c9d81613376565b8152838901358982015285529387019390910190600101612c72565b509098975050505050505050565b60008060408385031215612cda57600080fd5b612b2583612971565b600060208284031215612cf557600080fd5b5035919050565b600060208284031215612d0e57600080fd5b81356120848161338b565b600060208284031215612d2b57600080fd5b81516120848161338b565b60008060208385031215612d4957600080fd5b82356001600160401b0380821115612d6057600080fd5b818501915085601f830112612d7457600080fd5b813581811115612d8357600080fd5b866020828501011115612d9557600080fd5b60209290920196919550909350505050565b600080600060408486031215612dbc57600080fd5b8335925060208401356001600160401b0380821115612dda57600080fd5b818601915086601f830112612dee57600080fd5b813581811115612dfd57600080fd5b8760208260051b8501011115612e1257600080fd5b6020830194508093505050509250925092565b60008060408385031215612e3857600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015612e805781516001600160a01b031687529582019590820190600101612e5b565b509495945050505050565b600081518084526020808501945080840160005b83811015612e8057815187529582019590820190600101612e9f565b60008151808452612ed3816020860160208601613271565b601f01601f19169290920160200192915050565b60008151612ef9818560208601613271565b9290920192915050565b600080845481600182811c915080831680612f1f57607f831692505b6020808410821415612f3f57634e487b7160e01b86526022600452602486fd5b818015612f535760018114612f6457612f91565b60ff19861689528489019650612f91565b60008b81526020902060005b86811015612f895781548b820152908501908301612f70565b505084890196505b505050505050612fa18185612ee7565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612fdd90830184612ebb565b9695505050505050565b6020815260006120846020830184612e47565b60408152600061300d6040830185612e47565b8281036020840152612fa18185612e8b565b6020815260006120846020830184612e8b565b6020815260006120846020830184612ebb565b60208082526010908201526f151bdbc81b585b9e4810db185a5b595960821b604082015260600190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604080519081016001600160401b038111828210171561316357613163613360565b60405290565b604051601f8201601f191681016001600160401b038111828210171561319157613191613360565b604052919050565b60006001600160401b038211156131b2576131b2613360565b5060051b60200190565b60006001600160801b038083168185168083038211156131de576131de61331e565b01949350505050565b600082198211156131fa576131fa61331e565b500190565b60008261320e5761320e613334565b500490565b600081600019048311821515161561322d5761322d61331e565b500290565b60006001600160801b03838116908316818110156132525761325261331e565b039392505050565b60008282101561326c5761326c61331e565b500390565b60005b8381101561328c578181015183820152602001613274565b8381111561150d5750506000910152565b6000816132ac576132ac61331e565b506000190190565b600181811c908216806132c857607f821691505b602082108114156132e957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133035761330361331e565b5060010190565b60008261331957613319613334565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611c2857600080fd5b6001600160e01b031981168114611c2857600080fdfea2646970667358221220143b1094ce9e3c9462e092bf3879f70922fa950d247ee9711636379f86f9c46a64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

a5e3bb79fb2b879a012ce0236546db5dca3c005d6700e1b1cabf448fc33bf561

-----Decoded View---------------
Arg [0] : _merkleRoot (bytes32): 0xa5e3bb79fb2b879a012ce0236546db5dca3c005d6700e1b1cabf448fc33bf561

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : a5e3bb79fb2b879a012ce0236546db5dca3c005d6700e1b1cabf448fc33bf561


Deployed Bytecode Sourcemap

52470:8036:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57894:322;;;;;;;;;;-1:-1:-1;57894:322:0;;;;;:::i;:::-;;:::i;:::-;;;14393:14:1;;14386:22;14368:41;;14356:2;14341:18;57894:322:0;;;;;;;;36497:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38022:204::-;;;;;;;;;;-1:-1:-1;38022:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;12362:32:1;;;12344:51;;12332:2;12317:18;38022:204:0;12198:203:1;37585:379:0;;;;;;;;;;-1:-1:-1;37585:379:0;;;;;:::i;:::-;;:::i;:::-;;59192:232;;;;;;;;;;-1:-1:-1;59192:232:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;33332:94::-;;;;;;;;;;-1:-1:-1;33408:12:0;;33332:94;;;14839:25:1;;;14827:2;14812:18;33332:94:0;14693:177:1;38872:142:0;;;;;;;;;;-1:-1:-1;38872:142:0;;;;;:::i;:::-;;:::i;59432:156::-;;;;;;;;;;-1:-1:-1;59432:156:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;13091:32:1;;;13073:51;;13155:2;13140:18;;13133:34;;;;13046:18;59432:156:0;12899:274:1;56556:464:0;;;;;;:::i;:::-;;:::i;52607:25::-;;;;;;;;;;;;;;;;33963:744;;;;;;;;;;-1:-1:-1;33963:744:0;;;;;:::i;:::-;;:::i;53271:48::-;;;;;;;;;;-1:-1:-1;53271:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;59778:723;;;;;;;;;;;;;:::i;39077:157::-;;;;;;;;;;-1:-1:-1;39077:157:0;;;;;:::i;:::-;;:::i;33495:177::-;;;;;;;;;;-1:-1:-1;33495:177:0;;;;;:::i;:::-;;:::i;36320:118::-;;;;;;;;;;-1:-1:-1;36320:118:0;;;;;:::i;:::-;;:::i;55677:869::-;;;;;;:::i;:::-;;:::i;53398:33::-;;;;;;;;;;;;;;;;58327:160;;;;;;;;;;-1:-1:-1;58327:160:0;;;;;:::i;:::-;;:::i;57028:423::-;;;;;;;;;;-1:-1:-1;57028:423:0;;;;;:::i;:::-;;:::i;35197:211::-;;;;;;;;;;-1:-1:-1;35197:211:0;;;;;:::i;:::-;;:::i;48788:103::-;;;;;;;;;;;;;:::i;54866:171::-;;;;;;;;;;-1:-1:-1;54866:171:0;;;;;:::i;:::-;;:::i;54547:149::-;;;;;;;;;;-1:-1:-1;54547:149:0;;;;;:::i;:::-;;:::i;48137:87::-;;;;;;;;;;-1:-1:-1;48210:6:0;;-1:-1:-1;;;;;48210:6:0;48137:87;;36652:98;;;;;;;;;;;;;:::i;38290:274::-;;;;;;;;;;-1:-1:-1;38290:274:0;;;;;:::i;:::-;;:::i;55090:221::-;;;;;;;;;;-1:-1:-1;55090:221:0;;;;;:::i;:::-;;:::i;53438:30::-;;;;;;;;;;;;;;;;57459:363;;;;;;;;;;-1:-1:-1;57459:363:0;;;;;:::i;:::-;;:::i;55321:97::-;;;;;;;;;;-1:-1:-1;55321:97:0;;;;;:::i;:::-;;:::i;53364:25::-;;;;;;;;;;-1:-1:-1;53364:25:0;;;;;;;;;;;39297:311;;;;;;;;;;-1:-1:-1;39297:311:0;;;;;:::i;:::-;;:::i;58892:292::-;;;;;;;;;;-1:-1:-1;58892:292:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;58495:389::-;;;;;;;;;;-1:-1:-1;58495:389:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;54704:153::-;;;;;;;;;;-1:-1:-1;54704:153:0;;;;;:::i;:::-;;:::i;55426:243::-;;;;;;;;;;-1:-1:-1;55426:243:0;;;;;:::i;:::-;;:::i;43712:43::-;;;;;;;;;;;;;;;;52641:37;;;;;;;;;;;;52674:4;52641:37;;38627:186;;;;;;;;;;-1:-1:-1;38627:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;38772:25:0;;;38749:4;38772:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38627:186;53333:24;;;;;;;;;;-1:-1:-1;53333:24:0;;;;;;;;49046:201;;;;;;;;;;-1:-1:-1;49046:201:0;;;;;:::i;:::-;;:::i;57894:322::-;57988:4;58012:38;58038:11;58012:25;:38::i;:::-;:80;;;-1:-1:-1;;;;;;;58054:38:0;;-1:-1:-1;;;58054:38:0;58012:80;:146;;;-1:-1:-1;;;;;;;58112:46:0;;-1:-1:-1;;;58112:46:0;58012:146;:196;;;-1:-1:-1;;;;;;;58162:46:0;;-1:-1:-1;;;58162:46:0;58012:196;58005:203;57894:322;-1:-1:-1;;57894:322:0:o;36497:94::-;36551:13;36580:5;36573:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36497:94;:::o;38022:204::-;38090:7;38114:16;38122:7;39934:12;;-1:-1:-1;39924:22:0;39847:105;38114:16;38106:74;;;;-1:-1:-1;;;38106:74:0;;27021:2:1;38106:74:0;;;27003:21:1;27060:2;27040:18;;;27033:30;27099:34;27079:18;;;27072:62;-1:-1:-1;;;27150:18:1;;;27143:43;27203:19;;38106:74:0;;;;;;;;;-1:-1:-1;38196:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38196:24:0;;38022:204::o;37585:379::-;37654:13;37670:24;37686:7;37670:15;:24::i;:::-;37654:40;;37715:5;-1:-1:-1;;;;;37709:11:0;:2;-1:-1:-1;;;;;37709:11:0;;;37701:58;;;;-1:-1:-1;;;37701:58:0;;23222:2:1;37701:58:0;;;23204:21:1;23261:2;23241:18;;;23234:30;23300:34;23280:18;;;23273:62;-1:-1:-1;;;23351:18:1;;;23344:32;23393:19;;37701:58:0;23020:398:1;37701:58:0;30882:10;-1:-1:-1;;;;;37784:21:0;;;;:62;;-1:-1:-1;37809:37:0;37826:5;30882:10;38627:186;:::i;37809:37::-;37768:153;;;;-1:-1:-1;;;37768:153:0;;19117:2:1;37768:153:0;;;19099:21:1;19156:2;19136:18;;;19129:30;19195:34;19175:18;;;19168:62;19266:27;19246:18;;;19239:55;19311:19;;37768:153:0;18915:421:1;37768:153:0;37930:28;37939:2;37943:7;37952:5;37930:8;:28::i;:::-;37647:317;37585:379;;:::o;59192:232::-;59277:17;;59243;;-1:-1:-1;;;;;59277:17:0;:33;59273:123;;59333:16;;;59347:1;59333:16;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59333:16:0;59327:22;;59373:11;;59364:3;59368:1;59364:6;;;;;;;;:::i;:::-;;;;;;:20;;;;;59273:123;59192:232;;;:::o;38872:142::-;38980:28;38990:4;38996:2;39000:7;38980:9;:28::i;59432:156::-;59537:17;;59562:11;;59500:7;;;;-1:-1:-1;;;;;59537:17:0;;;;59574:5;;59556:17;;:5;:17;:::i;:::-;:23;;;;:::i;:::-;59529:51;;;;59432:156;;;;;:::o;56556:464::-;51417:1;52015:7;;:19;;52007:63;;;;-1:-1:-1;;;52007:63:0;;25555:2:1;52007:63:0;;;25537:21:1;25594:2;25574:18;;;25567:30;25633:33;25613:18;;;25606:61;25684:18;;52007:63:0;25353:355:1;52007:63:0;51417:1;52148:7;:18;56640:10:::1;56654:9;56640:23;56632:43;;;::::0;-1:-1:-1;;;56632:43:0;;24805:2:1;56632:43:0::1;::::0;::::1;24787:21:1::0;24844:1;24824:18;;;24817:29;-1:-1:-1;;;24862:18:1;;;24855:37;24909:18;;56632:43:0::1;24603:330:1::0;56632:43:0::1;56697:13;::::0;::::1;::::0;::::1;;;56696:14;:30:::0;::::1;;;-1:-1:-1::0;56714:12:0::1;::::0;::::1;;56696:30;56688:57;;;::::0;-1:-1:-1;;;56688:57:0;;22879:2:1;56688:57:0::1;::::0;::::1;22861:21:1::0;22918:2;22898:18;;;22891:30;-1:-1:-1;;;22937:18:1;;;22930:44;22991:18;;56688:57:0::1;22677:338:1::0;56688:57:0::1;56775:1;56766:6;:10;:26;;;;;56790:2;56780:6;:12;;56766:26;56758:49;;;::::0;-1:-1:-1;;;56758:49:0;;18037:2:1;56758:49:0::1;::::0;::::1;18019:21:1::0;18076:2;18056:18;;;18049:30;-1:-1:-1;;;18095:18:1;;;18088:40;18145:18;;56758:49:0::1;17835:334:1::0;56758:49:0::1;56826:11;::::0;56853:9:::1;::::0;56826:23:::1;::::0;56842:6;56826:15:::1;:23::i;:::-;:36;;56818:80;;;::::0;-1:-1:-1;;;56818:80:0;;17677:2:1;56818:80:0::1;::::0;::::1;17659:21:1::0;17716:2;17696:18;;;17689:30;17755:33;17735:18;;;17728:61;17806:18;;56818:80:0::1;17475:355:1::0;56818:80:0::1;52674:4;56933:6;56917:13;33408:12:::0;;;33332:94;56917:13:::1;:22;;;;:::i;:::-;:32;;56909:61;;;;-1:-1:-1::0;;;56909:61:0::1;;;;;;;:::i;:::-;56983:29;56993:10;57005:6;56983:9;:29::i;:::-;-1:-1:-1::0;51373:1:0;52327:7;:22;56556:464::o;33963:744::-;34072:7;34107:16;34117:5;34107:9;:16::i;:::-;34099:5;:24;34091:71;;;;-1:-1:-1;;;34091:71:0;;15301:2:1;34091:71:0;;;15283:21:1;15340:2;15320:18;;;15313:30;15379:34;15359:18;;;15352:62;-1:-1:-1;;;15430:18:1;;;15423:32;15472:19;;34091:71:0;15099:398:1;34091:71:0;34169:22;34194:13;33408:12;;;33332:94;34194:13;34169:38;;34214:19;34244:25;34294:9;34289:350;34313:14;34309:1;:18;34289:350;;;34343:31;34377:14;;;:11;:14;;;;;;;;;34343:48;;;;;;;;;-1:-1:-1;;;;;34343:48:0;;;;;-1:-1:-1;;;34343:48:0;;;-1:-1:-1;;;;;34343:48:0;;;;;;;;34404:28;34400:89;;34465:14;;;-1:-1:-1;34400:89:0;34522:5;-1:-1:-1;;;;;34501:26:0;:17;-1:-1:-1;;;;;34501:26:0;;34497:135;;;34559:5;34544:11;:20;34540:59;;;-1:-1:-1;34586:1:0;-1:-1:-1;34579:8:0;;-1:-1:-1;;;34579:8:0;34540:59;34609:13;;;;:::i;:::-;;;;34497:135;-1:-1:-1;34329:3:0;;;;:::i;:::-;;;;34289:350;;;-1:-1:-1;34645:56:0;;-1:-1:-1;;;34645:56:0;;25140:2:1;34645:56:0;;;25122:21:1;25179:2;25159:18;;;25152:30;25218:34;25198:18;;;25191:62;-1:-1:-1;;;25269:18:1;;;25262:44;25323:19;;34645:56:0;24938:410:1;59778:723:0;48210:6;;-1:-1:-1;;;;;48210:6:0;30882:10;48357:23;48349:68;;;;-1:-1:-1;;;48349:68:0;;;;;;;:::i;:::-;59859:1:::1;59835:21;:25;59827:60;;;::::0;-1:-1:-1;;;59827:60:0;;22528:2:1;59827:60:0::1;::::0;::::1;22510:21:1::0;22567:2;22547:18;;;22540:30;-1:-1:-1;;;22586:18:1;;;22579:52;22648:18;;59827:60:0::1;22326:346:1::0;59827:60:0::1;59908:14;59925:44;59962:6;59925:32;:21;59951:5;59925:25;:32::i;:::-;:36:::0;::::1;:44::i;:::-;59908:61:::0;-1:-1:-1;59980:15:0::1;59998:44;60035:6;59998:32;:21;60024:5;59998:25;:32::i;:44::-;59980:62:::0;-1:-1:-1;60053:13:0::1;60069:43;60105:6;60069:31;:21;60095:4;60069:25;:31::i;:43::-;60053:59:::0;-1:-1:-1;60123:14:0::1;60140:43;60176:6;60140:31;:21;60166:4;60140:25;:31::i;:43::-;60123:60:::0;-1:-1:-1;60194:13:0::1;60210:44;60247:6;60210:32;:21;60236:5;60210:25;:32::i;:44::-;60280:4;::::0;60194:60;;-1:-1:-1;60271:25:0::1;::::0;-1:-1:-1;;;;;60280:4:0::1;60286:9:::0;60271:8:::1;:25::i;:::-;60316:5;::::0;60307:27:::1;::::0;-1:-1:-1;;;;;60316:5:0::1;60323:10:::0;60307:8:::1;:27::i;:::-;60354:3;::::0;60345:23:::1;::::0;-1:-1:-1;;;;;60354:3:0::1;60359:8:::0;60345::::1;:23::i;:::-;60388:4;::::0;60379:25:::1;::::0;-1:-1:-1;;;;;60388:4:0::1;60394:9:::0;60379:8:::1;:25::i;:::-;60424:3;::::0;60415:23:::1;::::0;-1:-1:-1;;;;;60424:3:0::1;60429:8:::0;60415::::1;:23::i;:::-;60460:9;::::0;60451:42:::1;::::0;-1:-1:-1;;;;;60460:9:0::1;60471:21;60451:8;:42::i;:::-;59817:684;;;;;59778:723::o:0;39077:157::-;39189:39;39206:4;39212:2;39216:7;39189:39;;;;;;;;;;;;:16;:39::i;33495:177::-;33562:7;33594:13;33408:12;;;33332:94;33594:13;33586:5;:21;33578:69;;;;-1:-1:-1;;;33578:69:0;;16867:2:1;33578:69:0;;;16849:21:1;16906:2;16886:18;;;16879:30;16945:34;16925:18;;;16918:62;-1:-1:-1;;;16996:18:1;;;16989:33;17039:19;;33578:69:0;16665:399:1;33578:69:0;-1:-1:-1;33661:5:0;33495:177::o;36320:118::-;36384:7;36407:20;36419:7;36407:11;:20::i;:::-;:25;;36320:118;-1:-1:-1;;36320:118:0:o;55677:869::-;51417:1;52015:7;;:19;;52007:63;;;;-1:-1:-1;;;52007:63:0;;25555:2:1;52007:63:0;;;25537:21:1;25594:2;25574:18;;;25567:30;25633:33;25613:18;;;25606:61;25684:18;;52007:63:0;25353:355:1;52007:63:0;51417:1;52148:7;:18;55820:10:::1;55834:9;55820:23;55812:43;;;::::0;-1:-1:-1;;;55812:43:0;;24805:2:1;55812:43:0::1;::::0;::::1;24787:21:1::0;24844:1;24824:18;;;24817:29;-1:-1:-1;;;24862:18:1;;;24855:37;24909:18;;55812:43:0::1;24603:330:1::0;55812:43:0::1;55876:13;::::0;::::1;::::0;::::1;;;:30:::0;::::1;;;-1:-1:-1::0;55894:12:0::1;::::0;::::1;;55893:13;55876:30;55868:57;;;::::0;-1:-1:-1;;;55868:57:0;;26677:2:1;55868:57:0::1;::::0;::::1;26659:21:1::0;26716:2;26696:18;;;26689:30;-1:-1:-1;;;26735:18:1;;;26728:45;26790:18;;55868:57:0::1;26475:339:1::0;55868:57:0::1;55955:1;55946:6;:10;:25;;;;;55970:1;55960:6;:11;;55946:25;55938:48;;;::::0;-1:-1:-1;;;55938:48:0;;18376:2:1;55938:48:0::1;::::0;::::1;18358:21:1::0;18415:2;18395:18;;;18388:30;-1:-1:-1;;;18434:18:1;;;18427:40;18484:18;;55938:48:0::1;18174:334:1::0;55938:48:0::1;56005:14;::::0;56035:9:::1;::::0;56005:26:::1;::::0;56024:6;56005:18:::1;:26::i;:::-;:39;;55997:83;;;::::0;-1:-1:-1;;;55997:83:0;;17677:2:1;55997:83:0::1;::::0;::::1;17659:21:1::0;17716:2;17696:18;;;17689:30;17755:33;17735:18;;;17728:61;17806:18;;55997:83:0::1;17475:355:1::0;55997:83:0::1;52674:4;56115:6;56099:13;33408:12:::0;;;33332:94;56099:13:::1;:22;;;;:::i;:::-;:32;;56091:61;;;;-1:-1:-1::0;;;56091:61:0::1;;;;;;;:::i;:::-;56184:10;56171:24;::::0;;;:12:::1;:24;::::0;;;;;56208:1:::1;::::0;56171:33:::1;::::0;56198:6;;56171:33:::1;:::i;:::-;:38;;56163:75;;;::::0;-1:-1:-1;;;56163:75:0;;19880:2:1;56163:75:0::1;::::0;::::1;19862:21:1::0;19919:2;19899:18;;;19892:30;19958:26;19938:18;;;19931:54;20002:18;;56163:75:0::1;19678:348:1::0;56163:75:0::1;56276:28;::::0;-1:-1:-1;;56293:10:0::1;10724:2:1::0;10720:15;10716:53;56276:28:0::1;::::0;::::1;10704:66:1::0;56251:12:0::1;::::0;10786::1;;56276:28:0::1;;;;;;;;;;;;56266:39;;;;;;56251:54;;56338:49;56357:11;;56338:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;56370:10:0::1;::::0;;-1:-1:-1;56382:4:0;;-1:-1:-1;56338:18:0::1;:49::i;:::-;56316:132;;;::::0;-1:-1:-1;;;56316:132:0;;18715:2:1;56316:132:0::1;::::0;::::1;18697:21:1::0;18754:2;18734:18;;;18727:30;18793:34;18773:18;;;18766:62;-1:-1:-1;;;18844:18:1;;;18837:31;18885:19;;56316:132:0::1;18513:397:1::0;56316:132:0::1;56474:10;56461:24;::::0;;;:12:::1;:24;::::0;;;;:35;;56490:6;;56461:24;:35:::1;::::0;56490:6;;56461:35:::1;:::i;:::-;::::0;;;-1:-1:-1;56509:29:0::1;::::0;-1:-1:-1;56519:10:0::1;56531:6:::0;56509:9:::1;:29::i;:::-;-1:-1:-1::0;;51373:1:0;52327:7;:22;-1:-1:-1;;55677:869:0:o;58327:160::-;48210:6;;-1:-1:-1;;;;;48210:6:0;30882:10;48357:23;48349:68;;;;-1:-1:-1;;;48349:68:0;;;;;;;:::i;:::-;58422:17:::1;:29:::0;;-1:-1:-1;;;;;;58422:29:0::1;-1:-1:-1::0;;;;;58422:29:0;;;::::1;::::0;;;::::1;::::0;;;58462:11:::1;:17:::0;58327:160::o;57028:423::-;48210:6;;-1:-1:-1;;;;;48210:6:0;30882:10;48357:23;48349:68;;;;-1:-1:-1;;;48349:68:0;;;;;;;:::i;:::-;57121:18:::1;57168:6:::0;57164:94:::1;57184:6;:13;57180:1;:17;57164:94;;;57236:7;57244:1;57236:10;;;;;;;;:::i;:::-;;;;;;;57219:27;;;;;:::i;:::-;::::0;-1:-1:-1;57199:4:0;::::1;::::0;::::1;:::i;:::-;;;;57164:94;;;;52674:4;57295:13;57279;33408:12:::0;;;33332:94;57279:13:::1;:29;;;;:::i;:::-;:39;;57270:62;;;::::0;-1:-1:-1;;;57270:62:0;;19543:2:1;57270:62:0::1;::::0;::::1;19525:21:1::0;19582:1;19562:18;;;19555:29;-1:-1:-1;;;19600:18:1;;;19593:39;19649:18;;57270:62:0::1;19341:332:1::0;57270:62:0::1;57349:6;57345:99;57365:6;:13;57361:1;:17;57345:99;;;57400:32;57410:6;57417:1;57410:9;;;;;;;;:::i;:::-;;;;;;;57421:7;57429:1;57421:10;;;;;;;;:::i;:::-;;;;;;;57400:9;:32::i;:::-;57380:4:::0;::::1;::::0;::::1;:::i;:::-;;;;57345:99;;;;57110:341;57028:423:::0;;:::o;35197:211::-;35261:7;-1:-1:-1;;;;;35285:19:0;;35277:75;;;;-1:-1:-1;;;35277:75:0;;20233:2:1;35277:75:0;;;20215:21:1;20272:2;20252:18;;;20245:30;20311:34;20291:18;;;20284:62;-1:-1:-1;;;20362:18:1;;;20355:41;20413:19;;35277:75:0;20031:407:1;35277:75:0;-1:-1:-1;;;;;;35374:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;35374:27:0;;35197:211::o;48788:103::-;48210:6;;-1:-1:-1;;;;;48210:6:0;30882:10;48357:23;48349:68;;;;-1:-1:-1;;;48349:68:0;;;;;;;:::i;:::-;48853:30:::1;48880:1;48853:18;:30::i;:::-;48788:103::o:0;54866:171::-;48210:6;;-1:-1:-1;;;;;48210:6:0;30882:10;48357:23;48349:68;;;;-1:-1:-1;;;48349:68:0;;;;;;;:::i;:::-;54948:14:::1;:32:::0;;;54996:33:::1;::::0;14839:25:1;;;54996:33:0::1;::::0;14827:2:1;14812:18;54996:33:0::1;;;;;;;;54866:171:::0;:::o;54547:149::-;48210:6;;-1:-1:-1;;;;;48210:6:0;30882:10;48357:23;48349:68;;;;-1:-1:-1;;;48349:68:0;;;;;;;:::i;:::-;54621:10:::1;:24:::0;;;54663:25:::1;::::0;14839::1;;;54663::0::1;::::0;14827:2:1;14812:18;54663:25:0::1;14693:177:1::0;36652:98:0;36708:13;36737:7;36730:14;;;;;:::i;38290:274::-;-1:-1:-1;;;;;38381:24:0;;30882:10;38381:24;;38373:63;;;;-1:-1:-1;;;38373:63:0;;21754:2:1;38373:63:0;;;21736:21:1;21793:2;21773:18;;;21766:30;21832:28;21812:18;;;21805:56;21878:18;;38373:63:0;21552:350:1;38373:63:0;30882:10;38445:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38445:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;38445:53:0;;;;;;;;;;38510:48;;14368:41:1;;;38445:42:0;;30882:10;38510:48;;14341:18:1;38510:48:0;;;;;;;38290:274;;:::o;55090:221::-;48210:6;;-1:-1:-1;;;;;48210:6:0;30882:10;48357:23;48349:68;;;;-1:-1:-1;;;48349:68:0;;;;;;;:::i;:::-;55180:12:::1;:28:::0;;-1:-1:-1;;55219:30:0;55180:28;::::1;;-1:-1:-1::0;;55219:30:0;;55180:28:::1;55219:30:::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;55267:36:::1;::::0;;55180:28:::1;55276:13:::0;;::::1;::::0;::::1;14607:14:1::0;14600:22;14582:41;;55290:12:0;;;::::1;14666:14:1::0;14659:22;14654:2;14639:18;;14632:50;55267:36:0::1;::::0;14555:18:1;55267:36:0::1;;;;;;;55090:221:::0;;:::o;57459:363::-;48210:6;;-1:-1:-1;;;;;48210:6:0;30882:10;48357:23;48349:68;;;;-1:-1:-1;;;48349:68:0;;;;;;;:::i;:::-;57549:13:::1;::::0;::::1;::::0;::::1;;;57548:14;:31:::0;::::1;;;-1:-1:-1::0;57567:12:0::1;::::0;::::1;;57566:13;57548:31;57540:56;;;::::0;-1:-1:-1;;;57540:56:0;;21413:2:1;57540:56:0::1;::::0;::::1;21395:21:1::0;21452:2;21432:18;;;21425:30;-1:-1:-1;;;21471:18:1;;;21464:42;21523:18;;57540:56:0::1;21211:336:1::0;57540:56:0::1;57612:6;57607:208;57628:7;:14;57624:1;:18;57607:208;;;52674:4;57688:7;57696:1;57688:10;;;;;;;;:::i;:::-;;;;;;;:17;;;57672:13;33408:12:::0;;;33332:94;57672:13:::1;:33;;;;:::i;:::-;:43;;57664:72;;;;-1:-1:-1::0;;;57664:72:0::1;;;;;;;:::i;:::-;57753:50;57763:7;57771:1;57763:10;;;;;;;;:::i;:::-;;;;;;;:20;;;57785:7;57793:1;57785:10;;;;;;;;:::i;:::-;;;;;;;:17;;;57753:9;:50::i;:::-;57644:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57607:208;;;;57459:363:::0;:::o;55321:97::-;48210:6;;-1:-1:-1;;;;;48210:6:0;30882:10;48357:23;48349:68;;;;-1:-1:-1;;;48349:68:0;;;;;;;:::i;:::-;55394:16:::1;:10;55407:3:::0;;55394:16:::1;:::i;39297:311::-:0;39434:28;39444:4;39450:2;39454:7;39434:9;:28::i;:::-;39485:48;39508:4;39514:2;39518:7;39527:5;39485:22;:48::i;:::-;39469:133;;;;-1:-1:-1;;;39469:133:0;;;;;;;:::i;58892:292::-;59002:17;;58950:35;;-1:-1:-1;;;;;59002:17:0;:33;58998:151;;59065:24;;;59087:1;59065:24;;;;;;;;;;;;;;;;;;;-1:-1:-1;;59120:17:0;;59104:13;;;;-1:-1:-1;;;;;;59120:17:0;;59104:13;;-1:-1:-1;59120:17:0;;59104:13;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;59104:33:0;;;-1:-1:-1;;;;;59104:33:0;;;;;58892:292;;;:::o;58495:389::-;58623:17;;58549:35;;;;-1:-1:-1;;;;;58623:17:0;:33;58619:223;;58686:24;;;58708:1;58686:24;;;;;;;;;;;;;;;;;;;-1:-1:-1;;58741:17:0;;58725:13;;;;-1:-1:-1;;;;;;58741:17:0;;58725:13;;-1:-1:-1;58741:17:0;;58725:13;;;;:::i;:::-;-1:-1:-1;;;;;58725:33:0;;;;:13;;;;;;;;;;:33;58779:16;;;58793:1;58779:16;;;;;;;;;;;;;;58725:13;58779:16;;;;;-1:-1:-1;58779:16:0;58773:22;;58819:11;;58810:3;58814:1;58810:6;;;;;;;;:::i;:::-;;;;;;:20;;;;;58619:223;58495:389;;;:::o;54704:153::-;48210:6;;-1:-1:-1;;;;;48210:6:0;30882:10;48357:23;48349:68;;;;-1:-1:-1;;;48349:68:0;;;;;;;:::i;:::-;54780:11:::1;:26:::0;;;54822:27:::1;::::0;14839:25:1;;;54822:27:0::1;::::0;14827:2:1;14812:18;54822:27:0::1;14693:177:1::0;55426:243:0;55490:13;55524:16;55532:7;39934:12;;-1:-1:-1;39924:22:0;39847:105;55524:16;55516:71;;;;-1:-1:-1;;;55516:71:0;;;;;;;:::i;:::-;55629:10;55641:18;:7;:16;:18::i;:::-;55612:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55598:63;;55426:243;;;:::o;49046:201::-;48210:6;;-1:-1:-1;;;;;48210:6:0;30882:10;48357:23;48349:68;;;;-1:-1:-1;;;48349:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49135:22:0;::::1;49127:73;;;::::0;-1:-1:-1;;;49127:73:0;;16049:2:1;49127:73:0::1;::::0;::::1;16031:21:1::0;16088:2;16068:18;;;16061:30;16127:34;16107:18;;;16100:62;-1:-1:-1;;;16178:18:1;;;16171:36;16224:19;;49127:73:0::1;15847:402:1::0;49127:73:0::1;49211:28;49230:8;49211:18;:28::i;:::-;49046:201:::0;:::o;34771:370::-;34898:4;-1:-1:-1;;;;;;34928:40:0;;-1:-1:-1;;;34928:40:0;;:99;;-1:-1:-1;;;;;;;34979:48:0;;-1:-1:-1;;;34979:48:0;34928:99;:160;;;-1:-1:-1;;;;;;;35038:50:0;;-1:-1:-1;;;35038:50:0;34928:160;:207;;;-1:-1:-1;;;;;;;;;;11448:40:0;;;35099:36;11339:157;43534:172;43631:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43631:29:0;-1:-1:-1;;;;;43631:29:0;;;;;;;;;43672:28;;43631:24;;43672:28;;;;;;;43534:172;;;:::o;41899:1529::-;41996:35;42034:20;42046:7;42034:11;:20::i;:::-;42105:18;;41996:58;;-1:-1:-1;42063:22:0;;-1:-1:-1;;;;;42089:34:0;30882:10;-1:-1:-1;;;;;42089:34:0;;:81;;;-1:-1:-1;30882:10:0;42134:20;42146:7;42134:11;:20::i;:::-;-1:-1:-1;;;;;42134:36:0;;42089:81;:142;;;-1:-1:-1;42198:18:0;;42181:50;;30882:10;38627:186;:::i;42181:50::-;42063:169;;42257:17;42241:101;;;;-1:-1:-1;;;42241:101:0;;22109:2:1;42241:101:0;;;22091:21:1;22148:2;22128:18;;;22121:30;22187:34;22167:18;;;22160:62;-1:-1:-1;;;22238:18:1;;;22231:48;22296:19;;42241:101:0;21907:414:1;42241:101:0;42389:4;-1:-1:-1;;;;;42367:26:0;:13;:18;;;-1:-1:-1;;;;;42367:26:0;;42351:98;;;;-1:-1:-1;;;42351:98:0;;20645:2:1;42351:98:0;;;20627:21:1;20684:2;20664:18;;;20657:30;20723:34;20703:18;;;20696:62;-1:-1:-1;;;20774:18:1;;;20767:36;20820:19;;42351:98:0;20443:402:1;42351:98:0;-1:-1:-1;;;;;42464:16:0;;42456:66;;;;-1:-1:-1;;;42456:66:0;;17271:2:1;42456:66:0;;;17253:21:1;17310:2;17290:18;;;17283:30;17349:34;17329:18;;;17322:62;-1:-1:-1;;;17400:18:1;;;17393:35;17445:19;;42456:66:0;17069:401:1;42456:66:0;42631:49;42648:1;42652:7;42661:13;:18;;;42631:8;:49::i;:::-;-1:-1:-1;;;;;42689:18:0;;;;;;:12;:18;;;;;:31;;42719:1;;42689:18;:31;;42719:1;;-1:-1:-1;;;;;42689:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;42689:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42727:16:0;;-1:-1:-1;42727:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;42727:16:0;;:29;;-1:-1:-1;;42727:29:0;;:::i;:::-;;;-1:-1:-1;;;;;42727:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42786:43:0;;;;;;;;-1:-1:-1;;;;;42786:43:0;;;;;-1:-1:-1;;;;;42812:15:0;42786:43;;;;;;;;;-1:-1:-1;42763:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;42763:66:0;-1:-1:-1;;;;;;42763:66:0;;;;;;;;;;;43079:11;42775:7;-1:-1:-1;43079:11:0;:::i;:::-;43142:1;43101:24;;;:11;:24;;;;;:29;43057:33;;-1:-1:-1;;;;;;43101:29:0;43097:236;;43159:20;43167:11;39934:12;;-1:-1:-1;39924:22:0;39847:105;43159:20;43155:171;;;43219:97;;;;;;;;43246:18;;-1:-1:-1;;;;;43219:97:0;;;;;;43277:28;;;;-1:-1:-1;;;;;43219:97:0;;;;;;;;;-1:-1:-1;43192:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;43192:124:0;-1:-1:-1;;;;;;43192:124:0;;;;;;;;;;;;43155:171;43365:7;43361:2;-1:-1:-1;;;;;43346:27:0;43355:4;-1:-1:-1;;;;;43346:27:0;;;;;;;;;;;43380:42;41989:1439;;;41899:1529;;;:::o;24011:98::-;24069:7;24096:5;24100:1;24096;:5;:::i;:::-;24089:12;24011:98;-1:-1:-1;;;24011:98:0:o;39958:::-;40023:27;40033:2;40037:8;40023:27;;;;;;;;;;;;:9;:27::i;24410:98::-;24468:7;24495:5;24499:1;24495;:5;:::i;59596:174::-;59666:12;59684:4;-1:-1:-1;;;;;59684:9:0;59701:5;59684:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59665:46;;;59732:7;59724:37;;;;-1:-1:-1;;;59724:37:0;;25915:2:1;59724:37:0;;;25897:21:1;25954:2;25934:18;;;25927:30;-1:-1:-1;;;25973:18:1;;;25966:47;26030:18;;59724:37:0;25713:341:1;35660:606:0;-1:-1:-1;;;;;;;;;;;;;;;;;35777:16:0;35785:7;39934:12;;-1:-1:-1;39924:22:0;39847:105;35777:16;35769:71;;;;-1:-1:-1;;;35769:71:0;;;;;;;:::i;:::-;35849:26;35897:12;35886:7;:23;35882:93;;35941:22;35951:12;35941:7;:22;:::i;:::-;:26;;35966:1;35941:26;:::i;:::-;35920:47;;35882:93;36003:7;35983:212;36020:18;36012:4;:26;35983:212;;36057:31;36091:17;;;:11;:17;;;;;;;;;36057:51;;;;;;;;;-1:-1:-1;;;;;36057:51:0;;;;;-1:-1:-1;;;36057:51:0;;;-1:-1:-1;;;;;36057:51:0;;;;;;;;36121:28;36117:71;;36169:9;35660:606;-1:-1:-1;;;;35660:606:0:o;36117:71::-;-1:-1:-1;36040:6:0;;;;:::i;:::-;;;;35983:212;;;-1:-1:-1;36203:57:0;;-1:-1:-1;;;36203:57:0;;26261:2:1;36203:57:0;;;26243:21:1;26300:2;26280:18;;;26273:30;26339:34;26319:18;;;26312:62;-1:-1:-1;;;26390:18:1;;;26383:45;26445:19;;36203:57:0;26059:411:1;28658:190:0;28783:4;28836;28807:25;28820:5;28827:4;28807:12;:25::i;:::-;:33;;28658:190;-1:-1:-1;;;;28658:190:0:o;49407:191::-;49500:6;;;-1:-1:-1;;;;;49517:17:0;;;-1:-1:-1;;;;;;49517:17:0;;;;;;;49550:40;;49500:6;;;49517:17;49500:6;;49550:40;;49481:16;;49550:40;49470:128;49407:191;:::o;45249:690::-;45386:4;-1:-1:-1;;;;;45403:13:0;;1528:19;:23;45399:535;;45442:72;;-1:-1:-1;;;45442:72:0;;-1:-1:-1;;;;;45442:36:0;;;;;:72;;30882:10;;45493:4;;45499:7;;45508:5;;45442:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45442:72:0;;;;;;;;-1:-1:-1;;45442:72:0;;;;;;;;;;;;:::i;:::-;;;45429:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45673:13:0;;45669:215;;45706:61;;-1:-1:-1;;;45706:61:0;;;;;;;:::i;45669:215::-;45852:6;45846:13;45837:6;45833:2;45829:15;45822:38;45429:464;-1:-1:-1;;;;;;45564:55:0;-1:-1:-1;;;45564:55:0;;-1:-1:-1;45557:62:0;;45399:535;-1:-1:-1;45922:4:0;45399:535;45249:690;;;;;;:::o;18638:723::-;18694:13;18915:10;18911:53;;-1:-1:-1;;18942:10:0;;;;;;;;;;;;-1:-1:-1;;;18942:10:0;;;;;18638:723::o;18911:53::-;18989:5;18974:12;19030:78;19037:9;;19030:78;;19063:8;;;;:::i;:::-;;-1:-1:-1;19086:10:0;;-1:-1:-1;19094:2:0;19086:10;;:::i;:::-;;;19030:78;;;19118:19;19150:6;-1:-1:-1;;;;;19140:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19140:17:0;;19118:39;;19168:154;19175:10;;19168:154;;19202:11;19212:1;19202:11;;:::i;:::-;;-1:-1:-1;19271:10:0;19279:2;19271:5;:10;:::i;:::-;19258:24;;:2;:24;:::i;:::-;19245:39;;19228:6;19235;19228:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19228:56:0;;;;;;;;-1:-1:-1;19299:11:0;19308:2;19299:11;;:::i;:::-;;;19168:154;;40395:1272;40523:12;;-1:-1:-1;;;;;40550:16:0;;40542:62;;;;-1:-1:-1;;;40542:62:0;;24403:2:1;40542:62:0;;;24385:21:1;24442:2;24422:18;;;24415:30;24481:34;24461:18;;;24454:62;-1:-1:-1;;;24532:18:1;;;24525:31;24573:19;;40542:62:0;24201:397:1;40542:62:0;40741:21;40749:12;39934;;-1:-1:-1;39924:22:0;39847:105;40741:21;40740:22;40732:64;;;;-1:-1:-1;;;40732:64:0;;24045:2:1;40732:64:0;;;24027:21:1;24084:2;24064:18;;;24057:30;24123:31;24103:18;;;24096:59;24172:18;;40732:64:0;23843:353:1;40732:64:0;40823:12;40811:8;:24;;40803:71;;;;-1:-1:-1;;;40803:71:0;;27435:2:1;40803:71:0;;;27417:21:1;27474:2;27454:18;;;27447:30;27513:34;27493:18;;;27486:62;-1:-1:-1;;;27564:18:1;;;27557:32;27606:19;;40803:71:0;27233:398:1;40803:71:0;-1:-1:-1;;;;;40986:16:0;;40953:30;40986:16;;;:12;:16;;;;;;;;;40953:49;;;;;;;;;-1:-1:-1;;;;;40953:49:0;;;;;-1:-1:-1;;;40953:49:0;;;;;;;;;;;41028:119;;;;;;;;41048:19;;40953:49;;41028:119;;;41048:39;;41078:8;;41048:39;:::i;:::-;-1:-1:-1;;;;;41028:119:0;;;;;41131:8;41096:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;41028:119:0;;;;;;-1:-1:-1;;;;;41009:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;41009:138:0;;;;;;;;;;;;41182:43;;;;;;;;;;-1:-1:-1;;;;;41208:15:0;41182:43;;;;;;;;41154:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;41154:71:0;-1:-1:-1;;;;;;41154:71:0;;;;;;;;;;;;;;;;;;41166:12;;41278:281;41302:8;41298:1;:12;41278:281;;;41331:38;;41356:12;;-1:-1:-1;;;;;41331:38:0;;;41348:1;;41331:38;;41348:1;;41331:38;41396:59;41427:1;41431:2;41435:12;41449:5;41396:22;:59::i;:::-;41378:150;;;;-1:-1:-1;;;41378:150:0;;;;;;;:::i;:::-;41537:14;;;;:::i;:::-;;;;41312:3;;;;;:::i;:::-;;;;41278:281;;;-1:-1:-1;41567:12:0;:27;;;41601:60;57028:423;29209:675;29292:7;29335:4;29292:7;29350:497;29374:5;:12;29370:1;:16;29350:497;;;29408:20;29431:5;29437:1;29431:8;;;;;;;;:::i;:::-;;;;;;;29408:31;;29474:12;29458;:28;29454:382;;29960:13;30010:15;;;30046:4;30039:15;;;30093:4;30077:21;;29586:57;;29454:382;;;29960:13;30010:15;;;30046:4;30039:15;;;30093:4;30077:21;;29763:57;;29454:382;-1:-1:-1;29388:3:0;;;;:::i;:::-;;;;29350:497;;;-1:-1:-1;29864:12:0;29209:675;-1:-1:-1;;;29209:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:673:1;68:5;121:3;114:4;106:6;102:17;98:27;88:55;;139:1;136;129:12;88:55;175:6;162:20;201:4;225:60;241:43;281:2;241:43;:::i;:::-;225:60;:::i;:::-;307:3;331:2;326:3;319:15;359:2;354:3;350:12;343:19;;394:2;386:6;382:15;446:3;441:2;435;432:1;428:10;420:6;416:23;412:32;409:41;406:61;;;463:1;460;453:12;406:61;485:1;495:163;509:2;506:1;503:9;495:163;;;566:17;;554:30;;604:12;;;;636;;;;527:1;520:9;495:163;;;-1:-1:-1;676:5:1;;14:673;-1:-1:-1;;;;;;;14:673:1:o;692:160::-;757:20;;813:13;;806:21;796:32;;786:60;;842:1;839;832:12;857:247;916:6;969:2;957:9;948:7;944:23;940:32;937:52;;;985:1;982;975:12;937:52;1024:9;1011:23;1043:31;1068:5;1043:31;:::i;1109:323::-;1185:6;1193;1246:2;1234:9;1225:7;1221:23;1217:32;1214:52;;;1262:1;1259;1252:12;1214:52;1301:9;1288:23;1320:31;1345:5;1320:31;:::i;:::-;1370:5;1422:2;1407:18;;;;1394:32;;-1:-1:-1;;;1109:323:1:o;1437:388::-;1505:6;1513;1566:2;1554:9;1545:7;1541:23;1537:32;1534:52;;;1582:1;1579;1572:12;1534:52;1621:9;1608:23;1640:31;1665:5;1640:31;:::i;:::-;1690:5;-1:-1:-1;1747:2:1;1732:18;;1719:32;1760:33;1719:32;1760:33;:::i;:::-;1812:7;1802:17;;;1437:388;;;;;:::o;1830:456::-;1907:6;1915;1923;1976:2;1964:9;1955:7;1951:23;1947:32;1944:52;;;1992:1;1989;1982:12;1944:52;2031:9;2018:23;2050:31;2075:5;2050:31;:::i;:::-;2100:5;-1:-1:-1;2157:2:1;2142:18;;2129:32;2170:33;2129:32;2170:33;:::i;:::-;1830:456;;2222:7;;-1:-1:-1;;;2276:2:1;2261:18;;;;2248:32;;1830:456::o;2291:1108::-;2386:6;2394;2402;2410;2463:3;2451:9;2442:7;2438:23;2434:33;2431:53;;;2480:1;2477;2470:12;2431:53;2519:9;2506:23;2538:31;2563:5;2538:31;:::i;:::-;2588:5;-1:-1:-1;2612:2:1;2651:18;;;2638:32;2679:33;2638:32;2679:33;:::i;:::-;2731:7;-1:-1:-1;2785:2:1;2770:18;;2757:32;;-1:-1:-1;2840:2:1;2825:18;;2812:32;-1:-1:-1;;;;;2893:14:1;;;2890:34;;;2920:1;2917;2910:12;2890:34;2958:6;2947:9;2943:22;2933:32;;3003:7;2996:4;2992:2;2988:13;2984:27;2974:55;;3025:1;3022;3015:12;2974:55;3061:2;3048:16;3083:2;3079;3076:10;3073:36;;;3089:18;;:::i;:::-;3131:53;3174:2;3155:13;;-1:-1:-1;;3151:27:1;3147:36;;3131:53;:::i;:::-;3118:66;;3207:2;3200:5;3193:17;3247:7;3242:2;3237;3233;3229:11;3225:20;3222:33;3219:53;;;3268:1;3265;3258:12;3219:53;3323:2;3318;3314;3310:11;3305:2;3298:5;3294:14;3281:45;3367:1;3362:2;3357;3350:5;3346:14;3342:23;3335:34;;3388:5;3378:15;;;;;2291:1108;;;;;;;:::o;3404:315::-;3469:6;3477;3530:2;3518:9;3509:7;3505:23;3501:32;3498:52;;;3546:1;3543;3536:12;3498:52;3585:9;3572:23;3604:31;3629:5;3604:31;:::i;:::-;3654:5;-1:-1:-1;3678:35:1;3709:2;3694:18;;3678:35;:::i;:::-;3668:45;;3404:315;;;;;:::o;4044:1226::-;4162:6;4170;4223:2;4211:9;4202:7;4198:23;4194:32;4191:52;;;4239:1;4236;4229:12;4191:52;4279:9;4266:23;-1:-1:-1;;;;;4349:2:1;4341:6;4338:14;4335:34;;;4365:1;4362;4355:12;4335:34;4403:6;4392:9;4388:22;4378:32;;4448:7;4441:4;4437:2;4433:13;4429:27;4419:55;;4470:1;4467;4460:12;4419:55;4506:2;4493:16;4528:4;4552:60;4568:43;4608:2;4568:43;:::i;4552:60::-;4634:3;4658:2;4653:3;4646:15;4686:2;4681:3;4677:12;4670:19;;4717:2;4713;4709:11;4765:7;4760:2;4754;4751:1;4747:10;4743:2;4739:19;4735:28;4732:41;4729:61;;;4786:1;4783;4776:12;4729:61;4808:1;4799:10;;4818:238;4832:2;4829:1;4826:9;4818:238;;;4903:3;4890:17;4920:31;4945:5;4920:31;:::i;:::-;4964:18;;4850:1;4843:9;;;;;5002:12;;;;5034;;4818:238;;;-1:-1:-1;5075:5:1;-1:-1:-1;;5118:18:1;;5105:32;;-1:-1:-1;;5149:16:1;;;5146:36;;;5178:1;5175;5168:12;5146:36;;5201:63;5256:7;5245:8;5234:9;5230:24;5201:63;:::i;:::-;5191:73;;;4044:1226;;;;;:::o;5275:1264::-;5383:6;5414:2;5457;5445:9;5436:7;5432:23;5428:32;5425:52;;;5473:1;5470;5463:12;5425:52;5513:9;5500:23;-1:-1:-1;;;;;5538:6:1;5535:30;5532:50;;;5578:1;5575;5568:12;5532:50;5601:22;;5654:4;5646:13;;5642:27;-1:-1:-1;5632:55:1;;5683:1;5680;5673:12;5632:55;5719:2;5706:16;5742:60;5758:43;5798:2;5758:43;:::i;5742:60::-;5824:3;5848:2;5843:3;5836:15;5876:2;5871:3;5867:12;5860:19;;5907:2;5903;5899:11;5955:7;5950:2;5944;5941:1;5937:10;5933:2;5929:19;5925:28;5922:41;5919:61;;;5976:1;5973;5966:12;5919:61;5998:1;5989:10;;6019:1;6029:480;6045:2;6040:3;6037:11;6029:480;;;6104:4;6147:2;6141:3;6132:7;6128:17;6124:26;6121:46;;;6163:1;6160;6153:12;6121:46;6193:22;;:::i;:::-;6256:3;6243:17;6273:33;6298:7;6273:33;:::i;:::-;6319:22;;6390:12;;;6377:26;6361:14;;;6354:50;6417:18;;6455:12;;;;6487;;;;6067:1;6058:11;6029:480;;;-1:-1:-1;6528:5:1;;5275:1264;-1:-1:-1;;;;;;;;5275:1264:1:o;6544:248::-;6606:6;6614;6667:2;6655:9;6646:7;6642:23;6638:32;6635:52;;;6683:1;6680;6673:12;6635:52;6706:26;6722:9;6706:26;:::i;6797:180::-;6856:6;6909:2;6897:9;6888:7;6884:23;6880:32;6877:52;;;6925:1;6922;6915:12;6877:52;-1:-1:-1;6948:23:1;;6797:180;-1:-1:-1;6797:180:1:o;6982:245::-;7040:6;7093:2;7081:9;7072:7;7068:23;7064:32;7061:52;;;7109:1;7106;7099:12;7061:52;7148:9;7135:23;7167:30;7191:5;7167:30;:::i;7232:249::-;7301:6;7354:2;7342:9;7333:7;7329:23;7325:32;7322:52;;;7370:1;7367;7360:12;7322:52;7402:9;7396:16;7421:30;7445:5;7421:30;:::i;7486:592::-;7557:6;7565;7618:2;7606:9;7597:7;7593:23;7589:32;7586:52;;;7634:1;7631;7624:12;7586:52;7674:9;7661:23;-1:-1:-1;;;;;7744:2:1;7736:6;7733:14;7730:34;;;7760:1;7757;7750:12;7730:34;7798:6;7787:9;7783:22;7773:32;;7843:7;7836:4;7832:2;7828:13;7824:27;7814:55;;7865:1;7862;7855:12;7814:55;7905:2;7892:16;7931:2;7923:6;7920:14;7917:34;;;7947:1;7944;7937:12;7917:34;7992:7;7987:2;7978:6;7974:2;7970:15;7966:24;7963:37;7960:57;;;8013:1;8010;8003:12;7960:57;8044:2;8036:11;;;;;8066:6;;-1:-1:-1;7486:592:1;;-1:-1:-1;;;;7486:592:1:o;8268:683::-;8363:6;8371;8379;8432:2;8420:9;8411:7;8407:23;8403:32;8400:52;;;8448:1;8445;8438:12;8400:52;8484:9;8471:23;8461:33;;8545:2;8534:9;8530:18;8517:32;-1:-1:-1;;;;;8609:2:1;8601:6;8598:14;8595:34;;;8625:1;8622;8615:12;8595:34;8663:6;8652:9;8648:22;8638:32;;8708:7;8701:4;8697:2;8693:13;8689:27;8679:55;;8730:1;8727;8720:12;8679:55;8770:2;8757:16;8796:2;8788:6;8785:14;8782:34;;;8812:1;8809;8802:12;8782:34;8865:7;8860:2;8850:6;8847:1;8843:14;8839:2;8835:23;8831:32;8828:45;8825:65;;;8886:1;8883;8876:12;8825:65;8917:2;8913;8909:11;8899:21;;8939:6;8929:16;;;;;8268:683;;;;;:::o;8956:248::-;9024:6;9032;9085:2;9073:9;9064:7;9060:23;9056:32;9053:52;;;9101:1;9098;9091:12;9053:52;-1:-1:-1;;9124:23:1;;;9194:2;9179:18;;;9166:32;;-1:-1:-1;8956:248:1:o;9209:469::-;9270:3;9308:5;9302:12;9335:6;9330:3;9323:19;9361:4;9390:2;9385:3;9381:12;9374:19;;9427:2;9420:5;9416:14;9448:1;9458:195;9472:6;9469:1;9466:13;9458:195;;;9537:13;;-1:-1:-1;;;;;9533:39:1;9521:52;;9593:12;;;;9628:15;;;;9569:1;9487:9;9458:195;;;-1:-1:-1;9669:3:1;;9209:469;-1:-1:-1;;;;;9209:469:1:o;9683:435::-;9736:3;9774:5;9768:12;9801:6;9796:3;9789:19;9827:4;9856:2;9851:3;9847:12;9840:19;;9893:2;9886:5;9882:14;9914:1;9924:169;9938:6;9935:1;9932:13;9924:169;;;9999:13;;9987:26;;10033:12;;;;10068:15;;;;9960:1;9953:9;9924:169;;10123:257;10164:3;10202:5;10196:12;10229:6;10224:3;10217:19;10245:63;10301:6;10294:4;10289:3;10285:14;10278:4;10271:5;10267:16;10245:63;:::i;:::-;10362:2;10341:15;-1:-1:-1;;10337:29:1;10328:39;;;;10369:4;10324:50;;10123:257;-1:-1:-1;;10123:257:1:o;10385:185::-;10427:3;10465:5;10459:12;10480:52;10525:6;10520:3;10513:4;10506:5;10502:16;10480:52;:::i;:::-;10548:16;;;;;10385:185;-1:-1:-1;;10385:185:1:o;10809:1174::-;10985:3;11014:1;11047:6;11041:13;11077:3;11099:1;11127:9;11123:2;11119:18;11109:28;;11187:2;11176:9;11172:18;11209;11199:61;;11253:4;11245:6;11241:17;11231:27;;11199:61;11279:2;11327;11319:6;11316:14;11296:18;11293:38;11290:165;;;-1:-1:-1;;;11354:33:1;;11410:4;11407:1;11400:15;11440:4;11361:3;11428:17;11290:165;11471:18;11498:104;;;;11616:1;11611:320;;;;11464:467;;11498:104;-1:-1:-1;;11531:24:1;;11519:37;;11576:16;;;;-1:-1:-1;11498:104:1;;11611:320;28621:1;28614:14;;;28658:4;28645:18;;11706:1;11720:165;11734:6;11731:1;11728:13;11720:165;;;11812:14;;11799:11;;;11792:35;11855:16;;;;11749:10;;11720:165;;;11724:3;;11914:6;11909:3;11905:16;11898:23;;11464:467;;;;;;;11947:30;11973:3;11965:6;11947:30;:::i;:::-;11940:37;10809:1174;-1:-1:-1;;;;;10809:1174:1:o;12406:488::-;-1:-1:-1;;;;;12675:15:1;;;12657:34;;12727:15;;12722:2;12707:18;;12700:43;12774:2;12759:18;;12752:34;;;12822:3;12817:2;12802:18;;12795:31;;;12600:4;;12843:45;;12868:19;;12860:6;12843:45;:::i;:::-;12835:53;12406:488;-1:-1:-1;;;;;;12406:488:1:o;13178:285::-;13373:2;13362:9;13355:21;13336:4;13393:64;13453:2;13442:9;13438:18;13430:6;13393:64;:::i;13468:489::-;13741:2;13730:9;13723:21;13704:4;13767:64;13827:2;13816:9;13812:18;13804:6;13767:64;:::i;:::-;13879:9;13871:6;13867:22;13862:2;13851:9;13847:18;13840:50;13907:44;13944:6;13936;13907:44;:::i;13962:261::-;14141:2;14130:9;14123:21;14104:4;14161:56;14213:2;14202:9;14198:18;14190:6;14161:56;:::i;14875:219::-;15024:2;15013:9;15006:21;14987:4;15044:44;15084:2;15073:9;15069:18;15061:6;15044:44;:::i;15502:340::-;15704:2;15686:21;;;15743:2;15723:18;;;15716:30;-1:-1:-1;;;15777:2:1;15762:18;;15755:46;15833:2;15818:18;;15502:340::o;16254:406::-;16456:2;16438:21;;;16495:2;16475:18;;;16468:30;16534:34;16529:2;16514:18;;16507:62;-1:-1:-1;;;16600:2:1;16585:18;;16578:40;16650:3;16635:19;;16254:406::o;20850:356::-;21052:2;21034:21;;;21071:18;;;21064:30;21130:34;21125:2;21110:18;;21103:62;21197:2;21182:18;;20850:356::o;23423:415::-;23625:2;23607:21;;;23664:2;23644:18;;;23637:30;23703:34;23698:2;23683:18;;23676:62;-1:-1:-1;;;23769:2:1;23754:18;;23747:49;23828:3;23813:19;;23423:415::o;27818:257::-;27890:4;27884:11;;;27922:17;;-1:-1:-1;;;;;27954:34:1;;27990:22;;;27951:62;27948:88;;;28016:18;;:::i;:::-;28052:4;28045:24;27818:257;:::o;28080:275::-;28151:2;28145:9;28216:2;28197:13;;-1:-1:-1;;28193:27:1;28181:40;;-1:-1:-1;;;;;28236:34:1;;28272:22;;;28233:62;28230:88;;;28298:18;;:::i;:::-;28334:2;28327:22;28080:275;;-1:-1:-1;28080:275:1:o;28360:183::-;28420:4;-1:-1:-1;;;;;28445:6:1;28442:30;28439:56;;;28475:18;;:::i;:::-;-1:-1:-1;28520:1:1;28516:14;28532:4;28512:25;;28360:183::o;28674:253::-;28714:3;-1:-1:-1;;;;;28803:2:1;28800:1;28796:10;28833:2;28830:1;28826:10;28864:3;28860:2;28856:12;28851:3;28848:21;28845:47;;;28872:18;;:::i;:::-;28908:13;;28674:253;-1:-1:-1;;;;28674:253:1:o;28932:128::-;28972:3;29003:1;28999:6;28996:1;28993:13;28990:39;;;29009:18;;:::i;:::-;-1:-1:-1;29045:9:1;;28932:128::o;29065:120::-;29105:1;29131;29121:35;;29136:18;;:::i;:::-;-1:-1:-1;29170:9:1;;29065:120::o;29190:168::-;29230:7;29296:1;29292;29288:6;29284:14;29281:1;29278:21;29273:1;29266:9;29259:17;29255:45;29252:71;;;29303:18;;:::i;:::-;-1:-1:-1;29343:9:1;;29190:168::o;29363:246::-;29403:4;-1:-1:-1;;;;;29516:10:1;;;;29486;;29538:12;;;29535:38;;;29553:18;;:::i;:::-;29590:13;;29363:246;-1:-1:-1;;;29363:246:1:o;29614:125::-;29654:4;29682:1;29679;29676:8;29673:34;;;29687:18;;:::i;:::-;-1:-1:-1;29724:9:1;;29614:125::o;29744:258::-;29816:1;29826:113;29840:6;29837:1;29834:13;29826:113;;;29916:11;;;29910:18;29897:11;;;29890:39;29862:2;29855:10;29826:113;;;29957:6;29954:1;29951:13;29948:48;;;-1:-1:-1;;29992:1:1;29974:16;;29967:27;29744:258::o;30007:136::-;30046:3;30074:5;30064:39;;30083:18;;:::i;:::-;-1:-1:-1;;;30119:18:1;;30007:136::o;30148:380::-;30227:1;30223:12;;;;30270;;;30291:61;;30345:4;30337:6;30333:17;30323:27;;30291:61;30398:2;30390:6;30387:14;30367:18;30364:38;30361:161;;;30444:10;30439:3;30435:20;30432:1;30425:31;30479:4;30476:1;30469:15;30507:4;30504:1;30497:15;30361:161;;30148:380;;;:::o;30533:135::-;30572:3;-1:-1:-1;;30593:17:1;;30590:43;;;30613:18;;:::i;:::-;-1:-1:-1;30660:1:1;30649:13;;30533:135::o;30673:112::-;30705:1;30731;30721:35;;30736:18;;:::i;:::-;-1:-1:-1;30770:9:1;;30673:112::o;30790:127::-;30851:10;30846:3;30842:20;30839:1;30832:31;30882:4;30879:1;30872:15;30906:4;30903:1;30896:15;30922:127;30983:10;30978:3;30974:20;30971:1;30964:31;31014:4;31011:1;31004:15;31038:4;31035:1;31028:15;31054:127;31115:10;31110:3;31106:20;31103:1;31096:31;31146:4;31143:1;31136:15;31170:4;31167:1;31160:15;31186:127;31247:10;31242:3;31238:20;31235:1;31228:31;31278:4;31275:1;31268:15;31302:4;31299:1;31292:15;31318:131;-1:-1:-1;;;;;31393:31:1;;31383:42;;31373:70;;31439:1;31436;31429:12;31454:131;-1:-1:-1;;;;;;31528:32:1;;31518:43;;31508:71;;31575:1;31572;31565:12

Swarm Source

ipfs://143b1094ce9e3c9462e092bf3879f70922fa950d247ee9711636379f86f9c46a
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.