ETH Price: $2,647.66 (+1.81%)
Gas: 1 Gwei

Token

MAKC Mutant Buddies (MAKCMB)
 

Overview

Max Total Supply

3,333 MAKCMB

Holders

599

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MAKCMB
0xea8dc79cd325a44d0210a7f24b323928a8374482
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Mutant Buddies, a 3333 series, play a pivotal role for Mutant Ape Kids Club, an unique and innovative piece of art, a true combination of mutant creatures and animals.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MAKC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-19
*/

// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0 <0.9.0;

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


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

/**
 * @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: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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


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

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

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

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

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

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

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


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

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

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

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


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


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

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

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

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

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

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

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

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

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


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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

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


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

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


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


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

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

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

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

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

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

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

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

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

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

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

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

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


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


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


/**
 * @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: https://github.com/chiru-labs/ERC721A/blob/v3.0.0/contracts/ERC721A.sol


// Creator: Chiru Labs

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

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

// File: MAKC.sol

contract MAKC is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string private uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.07 ether;
  uint256 public maxSupply = 3333;
  uint256 public maxMintAmountPerTx = 10;
  uint256 public maxWalletLimit = 10;

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

  constructor() ERC721A("MAKC Mutant Buddies", "MAKCMB") {}

  function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
  }

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

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

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

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

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

     // Verify that (leaf, proof) matches the Merkle root
    require(verify(merkleRoot, leaf, proof), "Not a valid leaf in the Merkle tree");
    require(addressMintedBalance[msg.sender] + _mintAmount <= _mintLimit, "Max mint amount per wallet reached");
    _mintLoop(msg.sender, _mintAmount);
  }

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

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

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

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

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

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

  function setMaxWalletLimit(uint256 _maxWalletLimit) public onlyOwner {
      maxWalletLimit = _maxWalletLimit;
  }

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

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

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

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

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

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

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    addressMintedBalance[_receiver]+= _mintAmount;
    _safeMint(_receiver, _mintAmount);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForSelf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletLimit","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_mintLimit","type":"uint256"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600a9162000171565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b9162000171565b5066f8b0a10e470000600d55610d05600e55600a600f8190556010556011805462ffffff1916600117905560006013553480156200008757600080fd5b50604080518082018252601381527f4d414b43204d7574616e7420427564646965730000000000000000000000000060208083019182528351808501909452600684526526a0a5a1a6a160d11b908401528151919291620000eb9160029162000171565b5080516200010190600390602084019062000171565b505060016000555062000114336200011f565b600160095562000254565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017f9062000217565b90600052602060002090601f016020900481019282620001a35760008555620001ee565b82601f10620001be57805160ff1916838001178555620001ee565b82800160010185558215620001ee579182015b82811115620001ee578251825591602001919060010190620001d1565b50620001fc92915062000200565b5090565b5b80821115620001fc576000815560010162000201565b600181811c908216806200022c57607f821691505b602082108114156200024e57634e487b7160e01b600052602260045260246000fd5b50919050565b6127df80620002646000396000f3fe60806040526004361061025c5760003560e01c80636352211e11610144578063a0712d68116100b6578063c49b3d541161007a578063c49b3d54146106ca578063c87b56dd146106ea578063d5abeb011461070a578063e985e9c514610720578063efbd73f414610769578063f2fde38b1461078957600080fd5b8063a0712d6814610642578063a22cb46514610655578063a45ba8e714610675578063b071401b1461068a578063b88d4fde146106aa57600080fd5b8063728d41c911610108578063728d41c9146105995780637cb64759146105b95780637ec4a659146105d95780638da5cb5b146105f957806394354fd01461061757806395d89b411461062d57600080fd5b80636352211e1461050e57806366a88d961461052e57806368428a1b1461054457806370a0823114610564578063715018a61461058457600080fd5b80633423e548116101dd5780634fdd43cb116101a15780634fdd43cb1461046d57806353135ca01461048d5780635503a0e8146104ac5780635aca1bb6146104c15780635bfe024d146104e15780635c975abb146104f457600080fd5b80633423e548146103cb5780633ccfd60b146103eb57806342842e0e14610400578063438b63001461042057806344a0d68a1461044d57600080fd5b806313faede61161022457806313faede61461033257806316ba10e01461035657806316c38b3c1461037657806318160ddd1461039657806323b872dd146103ab57600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f05780630d95ccc914610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612293565b6107a9565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107fb565b60405161028d91906124f6565b3480156102c457600080fd5b506102d86102d336600461222b565b61088d565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b3660046121e6565b6108d1565b005b34801561031e57600080fd5b5061031061032d366004612210565b61095f565b34801561033e57600080fd5b50610348600d5481565b60405190815260200161028d565b34801561036257600080fd5b506103106103713660046122cd565b6109ac565b34801561038257600080fd5b50610310610391366004612210565b6109ed565b3480156103a257600080fd5b50610348610a2a565b3480156103b757600080fd5b506103106103c6366004612105565b610a38565b3480156103d757600080fd5b506102816103e6366004612244565b610a43565b3480156103f757600080fd5b50610310610a58565b34801561040c57600080fd5b5061031061041b366004612105565b610afd565b34801561042c57600080fd5b5061044061043b3660046120b7565b610b18565b60405161028d91906124b2565b34801561045957600080fd5b5061031061046836600461222b565b610bf8565b34801561047957600080fd5b506103106104883660046122cd565b610c27565b34801561049957600080fd5b5060115461028190610100900460ff1681565b3480156104b857600080fd5b506102ab610c64565b3480156104cd57600080fd5b506103106104dc366004612210565b610cf2565b6103106104ef366004612338565b610d38565b34801561050057600080fd5b506011546102819060ff1681565b34801561051a57600080fd5b506102d861052936600461222b565b610f9d565b34801561053a57600080fd5b5061034860105481565b34801561055057600080fd5b506011546102819062010000900460ff1681565b34801561057057600080fd5b5061034861057f3660046120b7565b610faf565b34801561059057600080fd5b50610310610ffd565b3480156105a557600080fd5b506103106105b436600461222b565b611033565b3480156105c557600080fd5b506103106105d436600461222b565b611062565b3480156105e557600080fd5b506103106105f43660046122cd565b611091565b34801561060557600080fd5b506008546001600160a01b03166102d8565b34801561062357600080fd5b50610348600f5481565b34801561063957600080fd5b506102ab6110ce565b61031061065036600461222b565b6110dd565b34801561066157600080fd5b506103106106703660046121bc565b61124a565b34801561068157600080fd5b506102ab6112e0565b34801561069657600080fd5b506103106106a536600461222b565b6112ed565b3480156106b657600080fd5b506103106106c5366004612141565b61131c565b3480156106d657600080fd5b506103106106e536600461222b565b61136d565b3480156106f657600080fd5b506102ab61070536600461222b565b6113ec565b34801561071657600080fd5b50610348600e5481565b34801561072c57600080fd5b5061028161073b3660046120d2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561077557600080fd5b50610310610784366004612315565b6114ba565b34801561079557600080fd5b506103106107a43660046120b7565b611575565b60006001600160e01b031982166380ac58cd60e01b14806107da57506001600160e01b03198216635b5e139f60e01b145b806107f557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461080a906126d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610836906126d1565b80156108835780601f1061085857610100808354040283529160200191610883565b820191906000526020600020905b81548152906001019060200180831161086657829003601f168201915b5050505050905090565b60006108988261160d565b6108b5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108dc82610f9d565b9050806001600160a01b0316836001600160a01b031614156109115760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610931575061092f813361073b565b155b1561094f576040516367d9dca160e11b815260040160405180910390fd5b61095a838383611646565b505050565b6008546001600160a01b031633146109925760405162461bcd60e51b815260040161098990612537565b60405180910390fd5b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146109d65760405162461bcd60e51b815260040161098990612537565b80516109e990600b906020840190611f16565b5050565b6008546001600160a01b03163314610a175760405162461bcd60e51b815260040161098990612537565b6011805460ff1916911515919091179055565b600154600054036000190190565b61095a8383836116a2565b6000610a508285856118b3565b949350505050565b6008546001600160a01b03163314610a825760405162461bcd60e51b815260040161098990612537565b60004711610ac15760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b6044820152606401610989565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610afa573d6000803e3d6000fd5b50565b61095a8383836040518060200160405280600081525061131c565b60606000610b2583610faf565b90506000816001600160401b03811115610b4157610b4161277d565b604051908082528060200260200182016040528015610b6a578160200160208202803683370190505b509050600160005b8381108015610b835750600e548211155b15610bee576000610b9383610f9d565b9050866001600160a01b0316816001600160a01b03161415610bdb5782848381518110610bc257610bc2612767565b602090810291909101015281610bd78161270c565b9250505b82610be58161270c565b93505050610b72565b5090949350505050565b6008546001600160a01b03163314610c225760405162461bcd60e51b815260040161098990612537565b600d55565b6008546001600160a01b03163314610c515760405162461bcd60e51b815260040161098990612537565b80516109e990600c906020840190611f16565b600b8054610c71906126d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9d906126d1565b8015610cea5780601f10610cbf57610100808354040283529160200191610cea565b820191906000526020600020905b815481529060010190602001808311610ccd57829003601f168201915b505050505081565b6008546001600160a01b03163314610d1c5760405162461bcd60e51b815260040161098990612537565b60118054911515620100000262ff000019909216919091179055565b601154849060ff1615610d5d5760405162461bcd60e51b81526004016109899061256c565b600081118015610d6f5750600f548111155b610d8b5760405162461bcd60e51b815260040161098990612509565b600e5481610d97610a2a565b610da19190612643565b1115610dbf5760405162461bcd60e51b8152600401610989906125a3565b601154610100900460ff16610e0b5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610989565b601354610e505760405162461bcd60e51b815260206004820152601360248201527213595c9adb1948149bdbdd081b9bdd081cd95d606a1b6044820152606401610989565b6040516bffffffffffffffffffffffff193360601b1660208201526034810185905283906054016040516020818303038152906040528051906020012014610eec5760405162461bcd60e51b815260206004820152602960248201527f53656e64657220616e6420616d6f756e7420646f6e2774206d61746368204d656044820152683935b632903632b0b360b91b6064820152608401610989565b610ef96013548484610a43565b610f515760405162461bcd60e51b815260206004820152602360248201527f4e6f7420612076616c6964206c65616620696e20746865204d65726b6c65207460448201526272656560e81b6064820152608401610989565b336000908152601260205260409020548490610f6e908790612643565b1115610f8c5760405162461bcd60e51b8152600401610989906125d1565b610f9633866118c9565b5050505050565b6000610fa882611901565b5192915050565b60006001600160a01b038216610fd8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146110275760405162461bcd60e51b815260040161098990612537565b6110316000611a28565b565b6008546001600160a01b0316331461105d5760405162461bcd60e51b815260040161098990612537565b601055565b6008546001600160a01b0316331461108c5760405162461bcd60e51b815260040161098990612537565b601355565b6008546001600160a01b031633146110bb5760405162461bcd60e51b815260040161098990612537565b80516109e990600a906020840190611f16565b60606003805461080a906126d1565b601154819060ff16156111025760405162461bcd60e51b81526004016109899061256c565b6000811180156111145750600f548111155b6111305760405162461bcd60e51b815260040161098990612509565b600e548161113c610a2a565b6111469190612643565b11156111645760405162461bcd60e51b8152600401610989906125a3565b60115462010000900460ff166111b15760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610989565b81600d546111bf919061266f565b3410156112045760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610989565b60105433600090815260126020526040902054611222908490612643565b11156112405760405162461bcd60e51b8152600401610989906125d1565b6109e933836118c9565b6001600160a01b0382163314156112745760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610c71906126d1565b6008546001600160a01b031633146113175760405162461bcd60e51b815260040161098990612537565b600f55565b6113278484846116a2565b6001600160a01b0383163b15158015611349575061134784848484611a7a565b155b15611367576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b806000811161138e5760405162461bcd60e51b815260040161098990612509565b600e548161139a610a2a565b6113a49190612643565b11156113c25760405162461bcd60e51b8152600401610989906125a3565b6008546001600160a01b031633146112405760405162461bcd60e51b815260040161098990612537565b60606113f78261160d565b61145b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610989565b6000611465611b71565b9050600081511161148557604051806020016040528060008152506114b3565b8061148f84611b80565b600b6040516020016114a3939291906123b1565b6040516020818303038152906040525b9392505050565b601154829060ff16156114df5760405162461bcd60e51b81526004016109899061256c565b6000811180156114f15750600f548111155b61150d5760405162461bcd60e51b815260040161098990612509565b600e5481611519610a2a565b6115239190612643565b11156115415760405162461bcd60e51b8152600401610989906125a3565b6008546001600160a01b0316331461156b5760405162461bcd60e51b815260040161098990612537565b61095a82846118c9565b6008546001600160a01b0316331461159f5760405162461bcd60e51b815260040161098990612537565b6001600160a01b0381166116045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610989565b610afa81611a28565b600081600111158015611621575060005482105b80156107f5575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116ad82611901565b80519091506000906001600160a01b0316336001600160a01b031614806116db575081516116db903361073b565b806116f65750336116eb8461088d565b6001600160a01b0316145b90508061171657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461174b5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661177257604051633a954ecd60e21b815260040160405180910390fd5b6117826000848460000151611646565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661186c5760005481101561186c57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f96565b6000826118c08584611c7d565b14949350505050565b6001600160a01b038216600090815260126020526040812080548392906118f1908490612643565b909155506109e990508282611d29565b60408051606081018252600080825260208201819052918101919091528180600111158015611931575060005481105b15611a0f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a0d5780516001600160a01b0316156119a4579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a08579392505050565b6119a4565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611aaf903390899088908890600401612475565b602060405180830381600087803b158015611ac957600080fd5b505af1925050508015611af9575060408051601f3d908101601f19168201909252611af6918101906122b0565b60015b611b54573d808015611b27576040519150601f19603f3d011682016040523d82523d6000602084013e611b2c565b606091505b508051611b4c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600a805461080a906126d1565b606081611ba45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bce5780611bb88161270c565b9150611bc79050600a8361265b565b9150611ba8565b6000816001600160401b03811115611be857611be861277d565b6040519080825280601f01601f191660200182016040528015611c12576020820181803683370190505b5090505b8415610a5057611c2760018361268e565b9150611c34600a86612727565b611c3f906030612643565b60f81b818381518110611c5457611c54612767565b60200101906001600160f81b031916908160001a905350611c76600a8661265b565b9450611c16565b600081815b8451811015611d21576000858281518110611c9f57611c9f612767565b60200260200101519050808311611ce1576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611d0e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611d198161270c565b915050611c82565b509392505050565b6109e982826040518060200160405280600081525061095a83838360016000546001600160a01b038516611d6f57604051622e076360e81b815260040160405180910390fd5b83611d8d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611e3e57506001600160a01b0387163b15155b15611ec7575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e8f6000888480600101955088611a7a565b611eac576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611e44578260005414611ec257600080fd5b611f0d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611ec8575b50600055610f96565b828054611f22906126d1565b90600052602060002090601f016020900481019282611f445760008555611f8a565b82601f10611f5d57805160ff1916838001178555611f8a565b82800160010185558215611f8a579182015b82811115611f8a578251825591602001919060010190611f6f565b50611f96929150611f9a565b5090565b5b80821115611f965760008155600101611f9b565b60006001600160401b03831115611fc857611fc861277d565b611fdb601f8401601f1916602001612613565b9050828152838383011115611fef57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461201d57600080fd5b919050565b600082601f83011261203357600080fd5b813560206001600160401b0382111561204e5761204e61277d565b8160051b61205d828201612613565b83815282810190868401838801850189101561207857600080fd5b600093505b8584101561209b57803583526001939093019291840191840161207d565b50979650505050505050565b8035801515811461201d57600080fd5b6000602082840312156120c957600080fd5b6114b382612006565b600080604083850312156120e557600080fd5b6120ee83612006565b91506120fc60208401612006565b90509250929050565b60008060006060848603121561211a57600080fd5b61212384612006565b925061213160208501612006565b9150604084013590509250925092565b6000806000806080858703121561215757600080fd5b61216085612006565b935061216e60208601612006565b92506040850135915060608501356001600160401b0381111561219057600080fd5b8501601f810187136121a157600080fd5b6121b087823560208401611faf565b91505092959194509250565b600080604083850312156121cf57600080fd5b6121d883612006565b91506120fc602084016120a7565b600080604083850312156121f957600080fd5b61220283612006565b946020939093013593505050565b60006020828403121561222257600080fd5b6114b3826120a7565b60006020828403121561223d57600080fd5b5035919050565b60008060006060848603121561225957600080fd5b833592506020840135915060408401356001600160401b0381111561227d57600080fd5b61228986828701612022565b9150509250925092565b6000602082840312156122a557600080fd5b81356114b381612793565b6000602082840312156122c257600080fd5b81516114b381612793565b6000602082840312156122df57600080fd5b81356001600160401b038111156122f557600080fd5b8201601f8101841361230657600080fd5b610a5084823560208401611faf565b6000806040838503121561232857600080fd5b823591506120fc60208401612006565b6000806000806080858703121561234e57600080fd5b84359350602085013592506040850135915060608501356001600160401b0381111561237957600080fd5b6121b087828801612022565b6000815180845261239d8160208601602086016126a5565b601f01601f19169290920160200192915050565b6000845160206123c48285838a016126a5565b8551918401916123d78184848a016126a5565b8554920191600090600181811c90808316806123f457607f831692505b85831081141561241257634e487b7160e01b85526022600452602485fd5b808015612426576001811461243757612464565b60ff19851688528388019550612464565b60008b81526020902060005b8581101561245c5781548a820152908401908801612443565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124a890830184612385565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124ea578351835292840192918401916001016124ce565b50909695505050505050565b6020815260006114b36020830184612385565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526022908201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604082015261195960f21b606082015260800190565b604051601f8201601f191681016001600160401b038111828210171561263b5761263b61277d565b604052919050565b600082198211156126565761265661273b565b500190565b60008261266a5761266a612751565b500490565b60008160001904831182151516156126895761268961273b565b500290565b6000828210156126a0576126a061273b565b500390565b60005b838110156126c05781810151838201526020016126a8565b838111156113675750506000910152565b600181811c908216806126e557607f821691505b6020821081141561270657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127205761272061273b565b5060010190565b60008261273657612736612751565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610afa57600080fdfea2646970667358221220e9b318f52d5699bf08cbe7f99ade665d6bab1b4f6a337cb2d43fc30824c4012164736f6c63430008070033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636352211e11610144578063a0712d68116100b6578063c49b3d541161007a578063c49b3d54146106ca578063c87b56dd146106ea578063d5abeb011461070a578063e985e9c514610720578063efbd73f414610769578063f2fde38b1461078957600080fd5b8063a0712d6814610642578063a22cb46514610655578063a45ba8e714610675578063b071401b1461068a578063b88d4fde146106aa57600080fd5b8063728d41c911610108578063728d41c9146105995780637cb64759146105b95780637ec4a659146105d95780638da5cb5b146105f957806394354fd01461061757806395d89b411461062d57600080fd5b80636352211e1461050e57806366a88d961461052e57806368428a1b1461054457806370a0823114610564578063715018a61461058457600080fd5b80633423e548116101dd5780634fdd43cb116101a15780634fdd43cb1461046d57806353135ca01461048d5780635503a0e8146104ac5780635aca1bb6146104c15780635bfe024d146104e15780635c975abb146104f457600080fd5b80633423e548146103cb5780633ccfd60b146103eb57806342842e0e14610400578063438b63001461042057806344a0d68a1461044d57600080fd5b806313faede61161022457806313faede61461033257806316ba10e01461035657806316c38b3c1461037657806318160ddd1461039657806323b872dd146103ab57600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f05780630d95ccc914610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612293565b6107a9565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107fb565b60405161028d91906124f6565b3480156102c457600080fd5b506102d86102d336600461222b565b61088d565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b3660046121e6565b6108d1565b005b34801561031e57600080fd5b5061031061032d366004612210565b61095f565b34801561033e57600080fd5b50610348600d5481565b60405190815260200161028d565b34801561036257600080fd5b506103106103713660046122cd565b6109ac565b34801561038257600080fd5b50610310610391366004612210565b6109ed565b3480156103a257600080fd5b50610348610a2a565b3480156103b757600080fd5b506103106103c6366004612105565b610a38565b3480156103d757600080fd5b506102816103e6366004612244565b610a43565b3480156103f757600080fd5b50610310610a58565b34801561040c57600080fd5b5061031061041b366004612105565b610afd565b34801561042c57600080fd5b5061044061043b3660046120b7565b610b18565b60405161028d91906124b2565b34801561045957600080fd5b5061031061046836600461222b565b610bf8565b34801561047957600080fd5b506103106104883660046122cd565b610c27565b34801561049957600080fd5b5060115461028190610100900460ff1681565b3480156104b857600080fd5b506102ab610c64565b3480156104cd57600080fd5b506103106104dc366004612210565b610cf2565b6103106104ef366004612338565b610d38565b34801561050057600080fd5b506011546102819060ff1681565b34801561051a57600080fd5b506102d861052936600461222b565b610f9d565b34801561053a57600080fd5b5061034860105481565b34801561055057600080fd5b506011546102819062010000900460ff1681565b34801561057057600080fd5b5061034861057f3660046120b7565b610faf565b34801561059057600080fd5b50610310610ffd565b3480156105a557600080fd5b506103106105b436600461222b565b611033565b3480156105c557600080fd5b506103106105d436600461222b565b611062565b3480156105e557600080fd5b506103106105f43660046122cd565b611091565b34801561060557600080fd5b506008546001600160a01b03166102d8565b34801561062357600080fd5b50610348600f5481565b34801561063957600080fd5b506102ab6110ce565b61031061065036600461222b565b6110dd565b34801561066157600080fd5b506103106106703660046121bc565b61124a565b34801561068157600080fd5b506102ab6112e0565b34801561069657600080fd5b506103106106a536600461222b565b6112ed565b3480156106b657600080fd5b506103106106c5366004612141565b61131c565b3480156106d657600080fd5b506103106106e536600461222b565b61136d565b3480156106f657600080fd5b506102ab61070536600461222b565b6113ec565b34801561071657600080fd5b50610348600e5481565b34801561072c57600080fd5b5061028161073b3660046120d2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561077557600080fd5b50610310610784366004612315565b6114ba565b34801561079557600080fd5b506103106107a43660046120b7565b611575565b60006001600160e01b031982166380ac58cd60e01b14806107da57506001600160e01b03198216635b5e139f60e01b145b806107f557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461080a906126d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610836906126d1565b80156108835780601f1061085857610100808354040283529160200191610883565b820191906000526020600020905b81548152906001019060200180831161086657829003601f168201915b5050505050905090565b60006108988261160d565b6108b5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108dc82610f9d565b9050806001600160a01b0316836001600160a01b031614156109115760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610931575061092f813361073b565b155b1561094f576040516367d9dca160e11b815260040160405180910390fd5b61095a838383611646565b505050565b6008546001600160a01b031633146109925760405162461bcd60e51b815260040161098990612537565b60405180910390fd5b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146109d65760405162461bcd60e51b815260040161098990612537565b80516109e990600b906020840190611f16565b5050565b6008546001600160a01b03163314610a175760405162461bcd60e51b815260040161098990612537565b6011805460ff1916911515919091179055565b600154600054036000190190565b61095a8383836116a2565b6000610a508285856118b3565b949350505050565b6008546001600160a01b03163314610a825760405162461bcd60e51b815260040161098990612537565b60004711610ac15760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b6044820152606401610989565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610afa573d6000803e3d6000fd5b50565b61095a8383836040518060200160405280600081525061131c565b60606000610b2583610faf565b90506000816001600160401b03811115610b4157610b4161277d565b604051908082528060200260200182016040528015610b6a578160200160208202803683370190505b509050600160005b8381108015610b835750600e548211155b15610bee576000610b9383610f9d565b9050866001600160a01b0316816001600160a01b03161415610bdb5782848381518110610bc257610bc2612767565b602090810291909101015281610bd78161270c565b9250505b82610be58161270c565b93505050610b72565b5090949350505050565b6008546001600160a01b03163314610c225760405162461bcd60e51b815260040161098990612537565b600d55565b6008546001600160a01b03163314610c515760405162461bcd60e51b815260040161098990612537565b80516109e990600c906020840190611f16565b600b8054610c71906126d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9d906126d1565b8015610cea5780601f10610cbf57610100808354040283529160200191610cea565b820191906000526020600020905b815481529060010190602001808311610ccd57829003601f168201915b505050505081565b6008546001600160a01b03163314610d1c5760405162461bcd60e51b815260040161098990612537565b60118054911515620100000262ff000019909216919091179055565b601154849060ff1615610d5d5760405162461bcd60e51b81526004016109899061256c565b600081118015610d6f5750600f548111155b610d8b5760405162461bcd60e51b815260040161098990612509565b600e5481610d97610a2a565b610da19190612643565b1115610dbf5760405162461bcd60e51b8152600401610989906125a3565b601154610100900460ff16610e0b5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610989565b601354610e505760405162461bcd60e51b815260206004820152601360248201527213595c9adb1948149bdbdd081b9bdd081cd95d606a1b6044820152606401610989565b6040516bffffffffffffffffffffffff193360601b1660208201526034810185905283906054016040516020818303038152906040528051906020012014610eec5760405162461bcd60e51b815260206004820152602960248201527f53656e64657220616e6420616d6f756e7420646f6e2774206d61746368204d656044820152683935b632903632b0b360b91b6064820152608401610989565b610ef96013548484610a43565b610f515760405162461bcd60e51b815260206004820152602360248201527f4e6f7420612076616c6964206c65616620696e20746865204d65726b6c65207460448201526272656560e81b6064820152608401610989565b336000908152601260205260409020548490610f6e908790612643565b1115610f8c5760405162461bcd60e51b8152600401610989906125d1565b610f9633866118c9565b5050505050565b6000610fa882611901565b5192915050565b60006001600160a01b038216610fd8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146110275760405162461bcd60e51b815260040161098990612537565b6110316000611a28565b565b6008546001600160a01b0316331461105d5760405162461bcd60e51b815260040161098990612537565b601055565b6008546001600160a01b0316331461108c5760405162461bcd60e51b815260040161098990612537565b601355565b6008546001600160a01b031633146110bb5760405162461bcd60e51b815260040161098990612537565b80516109e990600a906020840190611f16565b60606003805461080a906126d1565b601154819060ff16156111025760405162461bcd60e51b81526004016109899061256c565b6000811180156111145750600f548111155b6111305760405162461bcd60e51b815260040161098990612509565b600e548161113c610a2a565b6111469190612643565b11156111645760405162461bcd60e51b8152600401610989906125a3565b60115462010000900460ff166111b15760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610989565b81600d546111bf919061266f565b3410156112045760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610989565b60105433600090815260126020526040902054611222908490612643565b11156112405760405162461bcd60e51b8152600401610989906125d1565b6109e933836118c9565b6001600160a01b0382163314156112745760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610c71906126d1565b6008546001600160a01b031633146113175760405162461bcd60e51b815260040161098990612537565b600f55565b6113278484846116a2565b6001600160a01b0383163b15158015611349575061134784848484611a7a565b155b15611367576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b806000811161138e5760405162461bcd60e51b815260040161098990612509565b600e548161139a610a2a565b6113a49190612643565b11156113c25760405162461bcd60e51b8152600401610989906125a3565b6008546001600160a01b031633146112405760405162461bcd60e51b815260040161098990612537565b60606113f78261160d565b61145b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610989565b6000611465611b71565b9050600081511161148557604051806020016040528060008152506114b3565b8061148f84611b80565b600b6040516020016114a3939291906123b1565b6040516020818303038152906040525b9392505050565b601154829060ff16156114df5760405162461bcd60e51b81526004016109899061256c565b6000811180156114f15750600f548111155b61150d5760405162461bcd60e51b815260040161098990612509565b600e5481611519610a2a565b6115239190612643565b11156115415760405162461bcd60e51b8152600401610989906125a3565b6008546001600160a01b0316331461156b5760405162461bcd60e51b815260040161098990612537565b61095a82846118c9565b6008546001600160a01b0316331461159f5760405162461bcd60e51b815260040161098990612537565b6001600160a01b0381166116045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610989565b610afa81611a28565b600081600111158015611621575060005482105b80156107f5575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116ad82611901565b80519091506000906001600160a01b0316336001600160a01b031614806116db575081516116db903361073b565b806116f65750336116eb8461088d565b6001600160a01b0316145b90508061171657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461174b5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661177257604051633a954ecd60e21b815260040160405180910390fd5b6117826000848460000151611646565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661186c5760005481101561186c57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f96565b6000826118c08584611c7d565b14949350505050565b6001600160a01b038216600090815260126020526040812080548392906118f1908490612643565b909155506109e990508282611d29565b60408051606081018252600080825260208201819052918101919091528180600111158015611931575060005481105b15611a0f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a0d5780516001600160a01b0316156119a4579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a08579392505050565b6119a4565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611aaf903390899088908890600401612475565b602060405180830381600087803b158015611ac957600080fd5b505af1925050508015611af9575060408051601f3d908101601f19168201909252611af6918101906122b0565b60015b611b54573d808015611b27576040519150601f19603f3d011682016040523d82523d6000602084013e611b2c565b606091505b508051611b4c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600a805461080a906126d1565b606081611ba45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bce5780611bb88161270c565b9150611bc79050600a8361265b565b9150611ba8565b6000816001600160401b03811115611be857611be861277d565b6040519080825280601f01601f191660200182016040528015611c12576020820181803683370190505b5090505b8415610a5057611c2760018361268e565b9150611c34600a86612727565b611c3f906030612643565b60f81b818381518110611c5457611c54612767565b60200101906001600160f81b031916908160001a905350611c76600a8661265b565b9450611c16565b600081815b8451811015611d21576000858281518110611c9f57611c9f612767565b60200260200101519050808311611ce1576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611d0e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611d198161270c565b915050611c82565b509392505050565b6109e982826040518060200160405280600081525061095a83838360016000546001600160a01b038516611d6f57604051622e076360e81b815260040160405180910390fd5b83611d8d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611e3e57506001600160a01b0387163b15155b15611ec7575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e8f6000888480600101955088611a7a565b611eac576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611e44578260005414611ec257600080fd5b611f0d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611ec8575b50600055610f96565b828054611f22906126d1565b90600052602060002090601f016020900481019282611f445760008555611f8a565b82601f10611f5d57805160ff1916838001178555611f8a565b82800160010185558215611f8a579182015b82811115611f8a578251825591602001919060010190611f6f565b50611f96929150611f9a565b5090565b5b80821115611f965760008155600101611f9b565b60006001600160401b03831115611fc857611fc861277d565b611fdb601f8401601f1916602001612613565b9050828152838383011115611fef57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461201d57600080fd5b919050565b600082601f83011261203357600080fd5b813560206001600160401b0382111561204e5761204e61277d565b8160051b61205d828201612613565b83815282810190868401838801850189101561207857600080fd5b600093505b8584101561209b57803583526001939093019291840191840161207d565b50979650505050505050565b8035801515811461201d57600080fd5b6000602082840312156120c957600080fd5b6114b382612006565b600080604083850312156120e557600080fd5b6120ee83612006565b91506120fc60208401612006565b90509250929050565b60008060006060848603121561211a57600080fd5b61212384612006565b925061213160208501612006565b9150604084013590509250925092565b6000806000806080858703121561215757600080fd5b61216085612006565b935061216e60208601612006565b92506040850135915060608501356001600160401b0381111561219057600080fd5b8501601f810187136121a157600080fd5b6121b087823560208401611faf565b91505092959194509250565b600080604083850312156121cf57600080fd5b6121d883612006565b91506120fc602084016120a7565b600080604083850312156121f957600080fd5b61220283612006565b946020939093013593505050565b60006020828403121561222257600080fd5b6114b3826120a7565b60006020828403121561223d57600080fd5b5035919050565b60008060006060848603121561225957600080fd5b833592506020840135915060408401356001600160401b0381111561227d57600080fd5b61228986828701612022565b9150509250925092565b6000602082840312156122a557600080fd5b81356114b381612793565b6000602082840312156122c257600080fd5b81516114b381612793565b6000602082840312156122df57600080fd5b81356001600160401b038111156122f557600080fd5b8201601f8101841361230657600080fd5b610a5084823560208401611faf565b6000806040838503121561232857600080fd5b823591506120fc60208401612006565b6000806000806080858703121561234e57600080fd5b84359350602085013592506040850135915060608501356001600160401b0381111561237957600080fd5b6121b087828801612022565b6000815180845261239d8160208601602086016126a5565b601f01601f19169290920160200192915050565b6000845160206123c48285838a016126a5565b8551918401916123d78184848a016126a5565b8554920191600090600181811c90808316806123f457607f831692505b85831081141561241257634e487b7160e01b85526022600452602485fd5b808015612426576001811461243757612464565b60ff19851688528388019550612464565b60008b81526020902060005b8581101561245c5781548a820152908401908801612443565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124a890830184612385565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124ea578351835292840192918401916001016124ce565b50909695505050505050565b6020815260006114b36020830184612385565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526022908201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604082015261195960f21b606082015260800190565b604051601f8201601f191681016001600160401b038111828210171561263b5761263b61277d565b604052919050565b600082198211156126565761265661273b565b500190565b60008261266a5761266a612751565b500490565b60008160001904831182151516156126895761268961273b565b500290565b6000828210156126a0576126a061273b565b500390565b60005b838110156126c05781810151838201526020016126a8565b838111156113675750506000910152565b600181811c908216806126e557607f821691505b6020821081141561270657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127205761272061273b565b5060010190565b60008261273657612736612751565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610afa57600080fdfea2646970667358221220e9b318f52d5699bf08cbe7f99ade665d6bab1b4f6a337cb2d43fc30824c4012164736f6c63430008070033

Deployed Bytecode Sourcemap

50076:5394:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32592:305;;;;;;;;;;-1:-1:-1;32592:305:0;;;;;:::i;:::-;;:::i;:::-;;;10142:14:1;;10135:22;10117:41;;10105:2;10090:18;32592:305:0;;;;;;;;35977:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37480:204::-;;;;;;;;;;-1:-1:-1;37480:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8803:32:1;;;8785:51;;8773:2;8758:18;37480:204:0;8639:203:1;37043:371:0;;;;;;;;;;-1:-1:-1;37043:371:0;;;;;:::i;:::-;;:::i;:::-;;54250:83;;;;;;;;;;-1:-1:-1;54250:83:0;;;;;:::i;:::-;;:::i;50276:32::-;;;;;;;;;;;;;;;;;;;15374:25:1;;;15362:2;15347:18;50276:32:0;15228:177:1;54841:100:0;;;;;;;;;;-1:-1:-1;54841:100:0;;;;;:::i;:::-;;:::i;54947:77::-;;;;;;;;;;-1:-1:-1;54947:77:0;;;;;:::i;:::-;;:::i;31841:303::-;;;;;;;;;;;;;:::i;38337:170::-;;;;;;;;;;-1:-1:-1;38337:170:0;;;;;:::i;:::-;;:::i;52724:172::-;;;;;;;;;;-1:-1:-1;52724:172:0;;;;;:::i;:::-;;:::i;55030:155::-;;;;;;;;;;;;;:::i;38578:185::-;;;;;;;;;;-1:-1:-1;38578:185:0;;;;;:::i;:::-;;:::i;52902:635::-;;;;;;;;;;-1:-1:-1;52902:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54081:74::-;;;;;;;;;;-1:-1:-1;54081:74:0;;;;;:::i;:::-;;:::i;54597:132::-;;;;;;;;;;-1:-1:-1;54597:132:0;;;;;:::i;:::-;;:::i;50463:33::-;;;;;;;;;;-1:-1:-1;50463:33:0;;;;;;;;;;;50198;;;;;;;;;;;;;:::i;54161:83::-;;;;;;;;;;-1:-1:-1;54161:83:0;;;;;:::i;:::-;;:::i;51969:749::-;;;;;;:::i;:::-;;:::i;50433:25::-;;;;;;;;;;-1:-1:-1;50433:25:0;;;;;;;;35786:124;;;;;;;;;;-1:-1:-1;35786:124:0;;;;;:::i;:::-;;:::i;50392:34::-;;;;;;;;;;;;;;;;50501:30;;;;;;;;;;-1:-1:-1;50501:30:0;;;;;;;;;;;32961:206;;;;;;;;;;-1:-1:-1;32961:206:0;;;;;:::i;:::-;;:::i;9592:103::-;;;;;;;;;;;;;:::i;54339:116::-;;;;;;;;;;-1:-1:-1;54339:116:0;;;;;:::i;:::-;;:::i;53971:104::-;;;;;;;;;;-1:-1:-1;53971:104:0;;;;;:::i;:::-;;:::i;54735:100::-;;;;;;;;;;-1:-1:-1;54735:100:0;;;;;:::i;:::-;;:::i;8941:87::-;;;;;;;;;;-1:-1:-1;9014:6:0;;-1:-1:-1;;;;;9014:6:0;8941:87;;50349:38;;;;;;;;;;;;;;;;36146:104;;;;;;;;;;;;;:::i;51294:362::-;;;;;;:::i;:::-;;:::i;37756:279::-;;;;;;;;;;-1:-1:-1;37756:279:0;;;;;:::i;:::-;;:::i;50236:31::-;;;;;;;;;;;;;:::i;54461:130::-;;;;;;;;;;-1:-1:-1;54461:130:0;;;;;:::i;:::-;;:::i;38834:369::-;;;;;;;;;;-1:-1:-1;38834:369:0;;;;;:::i;:::-;;:::i;51825:138::-;;;;;;;;;;-1:-1:-1;51825:138:0;;;;;:::i;:::-;;:::i;53543:422::-;;;;;;;;;;-1:-1:-1;53543:422:0;;;;;:::i;:::-;;:::i;50313:31::-;;;;;;;;;;;;;;;;38106:164;;;;;;;;;;-1:-1:-1;38106:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38227:25:0;;;38203:4;38227:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38106:164;51664:155;;;;;;;;;;-1:-1:-1;51664:155:0;;;;;:::i;:::-;;:::i;9850:201::-;;;;;;;;;;-1:-1:-1;9850:201:0;;;;;:::i;:::-;;:::i;32592:305::-;32694:4;-1:-1:-1;;;;;;32731:40:0;;-1:-1:-1;;;32731:40:0;;:105;;-1:-1:-1;;;;;;;32788:48:0;;-1:-1:-1;;;32788:48:0;32731:105;:158;;;-1:-1:-1;;;;;;;;;;21374:40:0;;;32853:36;32711:178;32592:305;-1:-1:-1;;32592:305:0:o;35977:100::-;36031:13;36064:5;36057:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35977:100;:::o;37480:204::-;37548:7;37573:16;37581:7;37573;:16::i;:::-;37568:64;;37598:34;;-1:-1:-1;;;37598:34:0;;;;;;;;;;;37568:64;-1:-1:-1;37652:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37652:24:0;;37480:204::o;37043:371::-;37116:13;37132:24;37148:7;37132:15;:24::i;:::-;37116:40;;37177:5;-1:-1:-1;;;;;37171:11:0;:2;-1:-1:-1;;;;;37171:11:0;;37167:48;;;37191:24;;-1:-1:-1;;;37191:24:0;;;;;;;;;;;37167:48;7772:10;-1:-1:-1;;;;;37232:21:0;;;;;;:63;;-1:-1:-1;37258:37:0;37275:5;7772:10;38106:164;:::i;37258:37::-;37257:38;37232:63;37228:138;;;37319:35;;-1:-1:-1;;;37319:35:0;;;;;;;;;;;37228:138;37378:28;37387:2;37391:7;37400:5;37378:8;:28::i;:::-;37105:309;37043:371;;:::o;54250:83::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;;;;;;;;;54306:13:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;54306:21:0;;::::1;::::0;;;::::1;::::0;;54250:83::o;54841:100::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54913:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54841:100:::0;:::o;54947:77::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;55003:6:::1;:15:::0;;-1:-1:-1;;55003:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54947:77::o;31841:303::-;50790:1;32095:12;31885:7;32079:13;:28;-1:-1:-1;;32079:46:0;;31841:303::o;38337:170::-;38471:28;38481:4;38487:2;38491:7;38471:9;:28::i;52724:172::-;52820:4;52844:44;52863:5;52870:11;52883:4;52844:18;:44::i;:::-;52837:51;52724:172;-1:-1:-1;;;;52724:172:0:o;55030:155::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;55106:1:::1;55082:21;:25;55074:50;;;::::0;-1:-1:-1;;;55074:50:0;;12108:2:1;55074:50:0::1;::::0;::::1;12090:21:1::0;12147:2;12127:18;;;12120:30;-1:-1:-1;;;12166:18:1;;;12159:42;12218:18;;55074:50:0::1;11906:336:1::0;55074:50:0::1;9014:6:::0;;55131:48:::1;::::0;-1:-1:-1;;;;;9014:6:0;;;;55157:21:::1;55131:48:::0;::::1;;;::::0;::::1;::::0;;;55157:21;9014:6;55131:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;55030:155::o:0;38578:185::-;38716:39;38733:4;38739:2;38743:7;38716:39;;;;;;;;;;;;:16;:39::i;52902:635::-;52977:16;53005:23;53031:17;53041:6;53031:9;:17::i;:::-;53005:43;;53055:30;53102:15;-1:-1:-1;;;;;53088:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53088:30:0;-1:-1:-1;53055:63:0;-1:-1:-1;53150:1:0;53125:22;53194:309;53219:15;53201;:33;:64;;;;;53256:9;;53238:14;:27;;53201:64;53194:309;;;53276:25;53304:23;53312:14;53304:7;:23::i;:::-;53276:51;;53363:6;-1:-1:-1;;;;;53342:27:0;:17;-1:-1:-1;;;;;53342:27:0;;53338:131;;;53415:14;53382:13;53396:15;53382:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;53442:17;;;;:::i;:::-;;;;53338:131;53479:16;;;;:::i;:::-;;;;53267:236;53194:309;;;-1:-1:-1;53518:13:0;;52902:635;-1:-1:-1;;;;52902:635:0:o;54081:74::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54137:4:::1;:12:::0;54081:74::o;54597:132::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54685:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;50198:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54161:83::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54220:10:::1;:18:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54220:18:0;;::::1;::::0;;;::::1;::::0;;54161:83::o;51969:749::-;50864:6;;52103:11;;50864:6;;50863:7;50855:43;;;;-1:-1:-1;;;50855:43:0;;;;;;;:::i;:::-;50927:1;50913:11;:15;:52;;;;;50947:18;;50932:11;:33;;50913:52;50905:85;;;;-1:-1:-1;;;50905:85:0;;;;;;;:::i;:::-;51036:9;;51021:11;51005:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50997:73;;;;-1:-1:-1;;;50997:73:0;;;;;;;:::i;:::-;52131:13:::1;::::0;::::1;::::0;::::1;;;52123:45;;;::::0;-1:-1:-1;;;52123:45:0;;11351:2:1;52123:45:0::1;::::0;::::1;11333:21:1::0;11390:2;11370:18;;;11363:30;-1:-1:-1;;;11409:18:1;;;11402:48;11467:18;;52123:45:0::1;11149:342:1::0;52123:45:0::1;52183:10;::::0;52175:48:::1;;;::::0;-1:-1:-1;;;52175:48:0;;12449:2:1;52175:48:0::1;::::0;::::1;12431:21:1::0;12488:2;12468:18;;;12461:30;-1:-1:-1;;;12507:18:1;;;12500:49;12566:18;;52175:48:0::1;12247:343:1::0;52175:48:0::1;52315:40;::::0;-1:-1:-1;;52332:10:0::1;6733:2:1::0;6729:15;6725:53;52315:40:0::1;::::0;::::1;6713:66:1::0;6795:12;;;6788:28;;;52360:4:0;;6832:12:1;;52315:40:0::1;;;;;;;;;;;;52305:51;;;;;;:59;52297:113;;;::::0;-1:-1:-1;;;52297:113:0;;11698:2:1;52297:113:0::1;::::0;::::1;11680:21:1::0;11737:2;11717:18;;;11710:30;11776:34;11756:18;;;11749:62;-1:-1:-1;;;11827:18:1;;;11820:39;11876:19;;52297:113:0::1;11496:405:1::0;52297:113:0::1;52486:31;52493:10;;52505:4;52511:5;52486:6;:31::i;:::-;52478:79;;;::::0;-1:-1:-1;;;52478:79:0;;15026:2:1;52478:79:0::1;::::0;::::1;15008:21:1::0;15065:2;15045:18;;;15038:30;15104:34;15084:18;;;15077:62;-1:-1:-1;;;15155:18:1;;;15148:33;15198:19;;52478:79:0::1;14824:399:1::0;52478:79:0::1;52593:10;52572:32;::::0;;;:20:::1;:32;::::0;;;;;52622:10;;52572:46:::1;::::0;52607:11;;52572:46:::1;:::i;:::-;:60;;52564:107;;;;-1:-1:-1::0;;;52564:107:0::1;;;;;;;:::i;:::-;52678:34;52688:10;52700:11;52678:9;:34::i;:::-;51969:749:::0;;;;;:::o;35786:124::-;35850:7;35877:20;35889:7;35877:11;:20::i;:::-;:25;;35786:124;-1:-1:-1;;35786:124:0:o;32961:206::-;33025:7;-1:-1:-1;;;;;33049:19:0;;33045:60;;33077:28;;-1:-1:-1;;;33077:28:0;;;;;;;;;;;33045:60;-1:-1:-1;;;;;;33131:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33131:27:0;;32961:206::o;9592:103::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;9657:30:::1;9684:1;9657:18;:30::i;:::-;9592:103::o:0;54339:116::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54417:14:::1;:32:::0;54339:116::o;53971:104::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54043:10:::1;:24:::0;53971:104::o;54735:100::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54807:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;36146:104::-:0;36202:13;36235:7;36228:14;;;;;:::i;51294:362::-;50864:6;;51359:11;;50864:6;;50863:7;50855:43;;;;-1:-1:-1;;;50855:43:0;;;;;;;:::i;:::-;50927:1;50913:11;:15;:52;;;;;50947:18;;50932:11;:33;;50913:52;50905:85;;;;-1:-1:-1;;;50905:85:0;;;;;;;:::i;:::-;51036:9;;51021:11;51005:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50997:73;;;;-1:-1:-1;;;50997:73:0;;;;;;;:::i;:::-;51387:10:::1;::::0;;;::::1;;;51379:42;;;::::0;-1:-1:-1;;;51379:42:0;;11351:2:1;51379:42:0::1;::::0;::::1;11333:21:1::0;11390:2;11370:18;;;11363:30;-1:-1:-1;;;11409:18:1;;;11402:48;11467:18;;51379:42:0::1;11149:342:1::0;51379:42:0::1;51456:11;51449:4;;:18;;;;:::i;:::-;51436:9;:31;;51428:63;;;::::0;-1:-1:-1;;;51428:63:0;;14678:2:1;51428:63:0::1;::::0;::::1;14660:21:1::0;14717:2;14697:18;;;14690:30;-1:-1:-1;;;14736:18:1;;;14729:49;14795:18;;51428:63:0::1;14476:343:1::0;51428:63:0::1;51556:14;::::0;51527:10:::1;51506:32;::::0;;;:20:::1;:32;::::0;;;;;:46:::1;::::0;51541:11;;51506:46:::1;:::i;:::-;:64;;51498:111;;;;-1:-1:-1::0;;;51498:111:0::1;;;;;;;:::i;:::-;51616:34;51626:10;51638:11;51616:9;:34::i;37756:279::-:0;-1:-1:-1;;;;;37847:24:0;;7772:10;37847:24;37843:54;;;37880:17;;-1:-1:-1;;;37880:17:0;;;;;;;;;;;37843:54;7772:10;37910:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37910:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37910:53:0;;;;;;;;;;37979:48;;10117:41:1;;;37910:42:0;;7772:10;37979:48;;10090:18:1;37979:48:0;;;;;;;37756:279;;:::o;50236:31::-;;;;;;;:::i;54461:130::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54545:18:::1;:40:::0;54461:130::o;38834:369::-;39001:28;39011:4;39017:2;39021:7;39001:9;:28::i;:::-;-1:-1:-1;;;;;39044:13:0;;11525:20;11573:8;;39044:76;;;;;39064:56;39095:4;39101:2;39105:7;39114:5;39064:30;:56::i;:::-;39063:57;39044:76;39040:156;;;39144:40;;-1:-1:-1;;;39144:40:0;;;;;;;;;;;39040:156;38834:369;;;;:::o;51825:138::-;51893:11;51168:1;51154:11;:15;51146:48;;;;-1:-1:-1;;;51146:48:0;;;;;;;:::i;:::-;51240:9;;51225:11;51209:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51201:73;;;;-1:-1:-1;;;51201:73:0;;;;;;;:::i;:::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23:::1;9153:68;;;;-1:-1:-1::0;;;9153:68:0::1;;;;;;;:::i;53543:422::-:0;53642:13;53683:17;53691:8;53683:7;:17::i;:::-;53667:98;;;;-1:-1:-1;;;53667:98:0;;13510:2:1;53667:98:0;;;13492:21:1;13549:2;13529:18;;;13522:30;13588:34;13568:18;;;13561:62;-1:-1:-1;;;13639:18:1;;;13632:45;13694:19;;53667:98:0;13308:411:1;53667:98:0;53774:28;53805:10;:8;:10::i;:::-;53774:41;;53860:1;53835:14;53829:28;:32;:130;;;;;;;;;;;;;;;;;53897:14;53913:19;:8;:17;:19::i;:::-;53934:9;53880:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53829:130;53822:137;53543:422;-1:-1:-1;;;53543:422:0:o;51664:155::-;50864:6;;51750:11;;50864:6;;50863:7;50855:43;;;;-1:-1:-1;;;50855:43:0;;;;;;;:::i;:::-;50927:1;50913:11;:15;:52;;;;;50947:18;;50932:11;:33;;50913:52;50905:85;;;;-1:-1:-1;;;50905:85:0;;;;;;;:::i;:::-;51036:9;;51021:11;51005:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50997:73;;;;-1:-1:-1;;;50997:73:0;;;;;;;:::i;:::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23:::1;9153:68;;;;-1:-1:-1::0;;;9153:68:0::1;;;;;;;:::i;:::-;51780:33:::2;51790:9;51801:11;51780:9;:33::i;9850:201::-:0;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9939:22:0;::::1;9931:73;;;::::0;-1:-1:-1;;;9931:73:0;;10595:2:1;9931:73:0::1;::::0;::::1;10577:21:1::0;10634:2;10614:18;;;10607:30;10673:34;10653:18;;;10646:62;-1:-1:-1;;;10724:18:1;;;10717:36;10770:19;;9931:73:0::1;10393:402:1::0;9931:73:0::1;10015:28;10034:8;10015:18;:28::i;39458:187::-:0;39515:4;39558:7;50790:1;39539:26;;:53;;;;;39579:13;;39569:7;:23;39539:53;:98;;;;-1:-1:-1;;39610:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;39610:27:0;;;;39609:28;;39458:187::o;47069:196::-;47184:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47184:29:0;-1:-1:-1;;;;;47184:29:0;;;;;;;;;47229:28;;47184:24;;47229:28;;;;;;;47069:196;;;:::o;42571:2112::-;42686:35;42724:20;42736:7;42724:11;:20::i;:::-;42799:18;;42686:58;;-1:-1:-1;42757:22:0;;-1:-1:-1;;;;;42783:34:0;7772:10;-1:-1:-1;;;;;42783:34:0;;:101;;;-1:-1:-1;42851:18:0;;42834:50;;7772:10;38106:164;:::i;42834:50::-;42783:154;;;-1:-1:-1;7772:10:0;42901:20;42913:7;42901:11;:20::i;:::-;-1:-1:-1;;;;;42901:36:0;;42783:154;42757:181;;42956:17;42951:66;;42982:35;;-1:-1:-1;;;42982:35:0;;;;;;;;;;;42951:66;43054:4;-1:-1:-1;;;;;43032:26:0;:13;:18;;;-1:-1:-1;;;;;43032:26:0;;43028:67;;43067:28;;-1:-1:-1;;;43067:28:0;;;;;;;;;;;43028:67;-1:-1:-1;;;;;43110:16:0;;43106:52;;43135:23;;-1:-1:-1;;;43135:23:0;;;;;;;;;;;43106:52;43279:49;43296:1;43300:7;43309:13;:18;;;43279:8;:49::i;:::-;-1:-1:-1;;;;;43624:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;43624:31:0;;;-1:-1:-1;;;;;43624:31:0;;;-1:-1:-1;;43624:31:0;;;;;;;43670:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;43670:29:0;;;;;;;;;;;43716:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;43761:61:0;;;;-1:-1:-1;;;43806:15:0;43761:61;;;;;;;;;;;44096:11;;;44126:24;;;;;:29;44096:11;;44126:29;44122:445;;44351:13;;44337:11;:27;44333:219;;;44421:18;;;44389:24;;;:11;:24;;;;;;;;:50;;44504:28;;;;-1:-1:-1;;;;;44462:70:0;-1:-1:-1;;;44462:70:0;-1:-1:-1;;;;;;44462:70:0;;;-1:-1:-1;;;;;44389:50:0;;;44462:70;;;;;;;44333:219;43599:979;44614:7;44610:2;-1:-1:-1;;;;;44595:27:0;44604:4;-1:-1:-1;;;;;44595:27:0;;;;;;;;;;;44633:42;38834:369;3683:190;3808:4;3861;3832:25;3845:5;3852:4;3832:12;:25::i;:::-;:33;;3683:190;-1:-1:-1;;;;3683:190:0:o;55191:166::-;-1:-1:-1;;;;;55266:31:0;;;;;;:20;:31;;;;;:45;;55300:11;;55266:31;:45;;55300:11;;55266:45;:::i;:::-;;;;-1:-1:-1;55318:33:0;;-1:-1:-1;55328:9:0;55339:11;55318:9;:33::i;34616:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;34726:7:0;;50790:1;34775:23;;:47;;;;;34809:13;;34802:4;:20;34775:47;34771:886;;;34843:31;34877:17;;;:11;:17;;;;;;;;;34843:51;;;;;;;;;-1:-1:-1;;;;;34843:51:0;;;;-1:-1:-1;;;34843:51:0;;-1:-1:-1;;;;;34843:51:0;;;;;;;;-1:-1:-1;;;34843:51:0;;;;;;;;;;;;;;34913:729;;34963:14;;-1:-1:-1;;;;;34963:28:0;;34959:101;;35027:9;34616:1108;-1:-1:-1;;;34616:1108:0:o;34959:101::-;-1:-1:-1;;;35402:6:0;35447:17;;;;:11;:17;;;;;;;;;35435:29;;;;;;;;;-1:-1:-1;;;;;35435:29:0;;;;;-1:-1:-1;;;35435:29:0;;-1:-1:-1;;;;;35435:29:0;;;;;;;;-1:-1:-1;;;35435:29:0;;;;;;;;;;;;;35495:28;35491:109;;35563:9;34616:1108;-1:-1:-1;;;34616:1108:0:o;35491:109::-;35362:261;;;34824:833;34771:886;35685:31;;-1:-1:-1;;;35685:31:0;;;;;;;;;;;10211:191;10304:6;;;-1:-1:-1;;;;;10321:17:0;;;-1:-1:-1;;;;;;10321:17:0;;;;;;;10354:40;;10304:6;;;10321:17;10304:6;;10354:40;;10285:16;;10354:40;10274:128;10211:191;:::o;47757:667::-;47941:72;;-1:-1:-1;;;47941:72:0;;47920:4;;-1:-1:-1;;;;;47941:36:0;;;;;:72;;7772:10;;47992:4;;47998:7;;48007:5;;47941:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47941:72:0;;;;;;;;-1:-1:-1;;47941:72:0;;;;;;;;;;;;:::i;:::-;;;47937:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48175:13:0;;48171:235;;48221:40;;-1:-1:-1;;;48221:40:0;;;;;;;;;;;48171:235;48364:6;48358:13;48349:6;48345:2;48341:15;48334:38;47937:480;-1:-1:-1;;;;;;48060:55:0;-1:-1:-1;;;48060:55:0;;-1:-1:-1;47757:667:0;;;;;;:::o;55363:104::-;55423:13;55452:9;55445:16;;;;;:::i;5281:723::-;5337:13;5558:10;5554:53;;-1:-1:-1;;5585:10:0;;;;;;;;;;;;-1:-1:-1;;;5585:10:0;;;;;5281:723::o;5554:53::-;5632:5;5617:12;5673:78;5680:9;;5673:78;;5706:8;;;;:::i;:::-;;-1:-1:-1;5729:10:0;;-1:-1:-1;5737:2:0;5729:10;;:::i;:::-;;;5673:78;;;5761:19;5793:6;-1:-1:-1;;;;;5783:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5783:17:0;;5761:39;;5811:154;5818:10;;5811:154;;5845:11;5855:1;5845:11;;:::i;:::-;;-1:-1:-1;5914:10:0;5922:2;5914:5;:10;:::i;:::-;5901:24;;:2;:24;:::i;:::-;5888:39;;5871:6;5878;5871:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5871:56:0;;;;;;;;-1:-1:-1;5942:11:0;5951:2;5942:11;;:::i;:::-;;;5811:154;;4235:701;4318:7;4361:4;4318:7;4376:523;4400:5;:12;4396:1;:16;4376:523;;;4434:20;4457:5;4463:1;4457:8;;;;;;;;:::i;:::-;;;;;;;4434:31;;4500:12;4484;:28;4480:408;;4637:44;;;;;;7012:19:1;;;7047:12;;;7040:28;;;7084:12;;4637:44:0;;;;;;;;;;;;4627:55;;;;;;4612:70;;4480:408;;;4827:44;;;;;;7012:19:1;;;7047:12;;;7040:28;;;7084:12;;4827:44:0;;;;;;;;;;;;4817:55;;;;;;4802:70;;4480:408;-1:-1:-1;4414:3:0;;;;:::i;:::-;;;;4376:523;;;-1:-1:-1;4916:12:0;4235:701;-1:-1:-1;;;4235:701:0:o;39653:104::-;39722:27;39732:2;39736:8;39722:27;;;;;;;;;;;;40243:32;40249:2;40253:8;40263:5;40270:4;40681:20;40704:13;-1:-1:-1;;;;;40732:16:0;;40728:48;;40757:19;;-1:-1:-1;;;40757:19:0;;;;;;;;;;;40728:48;40791:13;40787:44;;40813:18;;-1:-1:-1;;;40813:18:0;;;;;;;;;;;40787:44;-1:-1:-1;;;;;41182:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;41241:49:0;;-1:-1:-1;;;;;41182:44:0;;;;;;;41241:49;;;;-1:-1:-1;;41182:44:0;;;;;;41241:49;;;;;;;;;;;;;;;;41307:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;41357:66:0;;;;-1:-1:-1;;;41407:15:0;41357:66;;;;;;;;;;41307:25;41504:23;;;41548:4;:23;;;;-1:-1:-1;;;;;;41556:13:0;;11525:20;11573:8;;41556:15;41544:641;;;41592:314;41623:38;;41648:12;;-1:-1:-1;;;;;41623:38:0;;;41640:1;;41623:38;;41640:1;;41623:38;41689:69;41728:1;41732:2;41736:14;;;;;;41752:5;41689:30;:69::i;:::-;41684:174;;41794:40;;-1:-1:-1;;;41794:40:0;;;;;;;;;;;41684:174;41901:3;41885:12;:19;;41592:314;;41987:12;41970:13;;:29;41966:43;;42001:8;;;41966:43;41544:641;;;42050:120;42081:40;;42106:14;;;;;-1:-1:-1;;;;;42081:40:0;;;42098:1;;42081:40;;42098:1;;42081:40;42165:3;42149:12;:19;;42050:120;;41544:641;-1:-1:-1;42199:13:0;:28;42249:60;38834:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;-1:-1:-1;;;;;809:2:1;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;-1:-1:-1;;;;;2704:6:1;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:254::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3121:29;3140:9;3121:29;:::i;:::-;3111:39;;3169:35;3200:2;3189:9;3185:18;3169:35;:::i;3215:254::-;3283:6;3291;3344:2;3332:9;3323:7;3319:23;3315:32;3312:52;;;3360:1;3357;3350:12;3312:52;3383:29;3402:9;3383:29;:::i;:::-;3373:39;3459:2;3444:18;;;;3431:32;;-1:-1:-1;;;3215:254:1:o;3474:180::-;3530:6;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;3622:26;3638:9;3622:26;:::i;3659:180::-;3718:6;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;-1:-1:-1;3810:23:1;;3659:180;-1:-1:-1;3659:180:1:o;3844:484::-;3946:6;3954;3962;4015:2;4003:9;3994:7;3990:23;3986:32;3983:52;;;4031:1;4028;4021:12;3983:52;4067:9;4054:23;4044:33;;4124:2;4113:9;4109:18;4096:32;4086:42;;4179:2;4168:9;4164:18;4151:32;-1:-1:-1;;;;;4198:6:1;4195:30;4192:50;;;4238:1;4235;4228:12;4192:50;4261:61;4314:7;4305:6;4294:9;4290:22;4261:61;:::i;:::-;4251:71;;;3844:484;;;;;:::o;4333:245::-;4391:6;4444:2;4432:9;4423:7;4419:23;4415:32;4412:52;;;4460:1;4457;4450:12;4412:52;4499:9;4486:23;4518:30;4542:5;4518:30;:::i;4583:249::-;4652:6;4705:2;4693:9;4684:7;4680:23;4676:32;4673:52;;;4721:1;4718;4711:12;4673:52;4753:9;4747:16;4772:30;4796:5;4772:30;:::i;4837:450::-;4906:6;4959:2;4947:9;4938:7;4934:23;4930:32;4927:52;;;4975:1;4972;4965:12;4927:52;5015:9;5002:23;-1:-1:-1;;;;;5040:6:1;5037:30;5034:50;;;5080:1;5077;5070:12;5034:50;5103:22;;5156:4;5148:13;;5144:27;-1:-1:-1;5134:55:1;;5185:1;5182;5175:12;5134:55;5208:73;5273:7;5268:2;5255:16;5250:2;5246;5242:11;5208:73;:::i;5477:254::-;5545:6;5553;5606:2;5594:9;5585:7;5581:23;5577:32;5574:52;;;5622:1;5619;5612:12;5574:52;5658:9;5645:23;5635:33;;5687:38;5721:2;5710:9;5706:18;5687:38;:::i;5736:553::-;5847:6;5855;5863;5871;5924:3;5912:9;5903:7;5899:23;5895:33;5892:53;;;5941:1;5938;5931:12;5892:53;5977:9;5964:23;5954:33;;6034:2;6023:9;6019:18;6006:32;5996:42;;6085:2;6074:9;6070:18;6057:32;6047:42;;6140:2;6129:9;6125:18;6112:32;-1:-1:-1;;;;;6159:6:1;6156:30;6153:50;;;6199:1;6196;6189:12;6153:50;6222:61;6275:7;6266:6;6255:9;6251:22;6222:61;:::i;6294:257::-;6335:3;6373:5;6367:12;6400:6;6395:3;6388:19;6416:63;6472:6;6465:4;6460:3;6456:14;6449:4;6442:5;6438:16;6416:63;:::i;:::-;6533:2;6512:15;-1:-1:-1;;6508:29:1;6499:39;;;;6540:4;6495:50;;6294:257;-1:-1:-1;;6294:257:1:o;7107:1527::-;7331:3;7369:6;7363:13;7395:4;7408:51;7452:6;7447:3;7442:2;7434:6;7430:15;7408:51;:::i;:::-;7522:13;;7481:16;;;;7544:55;7522:13;7481:16;7566:15;;;7544:55;:::i;:::-;7688:13;;7621:20;;;7661:1;;7748;7770:18;;;;7823;;;;7850:93;;7928:4;7918:8;7914:19;7902:31;;7850:93;7991:2;7981:8;7978:16;7958:18;7955:40;7952:167;;;-1:-1:-1;;;8018:33:1;;8074:4;8071:1;8064:15;8104:4;8025:3;8092:17;7952:167;8135:18;8162:110;;;;8286:1;8281:328;;;;8128:481;;8162:110;-1:-1:-1;;8197:24:1;;8183:39;;8242:20;;;;-1:-1:-1;8162:110:1;;8281:328;15763:1;15756:14;;;15800:4;15787:18;;8376:1;8390:169;8404:8;8401:1;8398:15;8390:169;;;8486:14;;8471:13;;;8464:37;8529:16;;;;8421:10;;8390:169;;;8394:3;;8590:8;8583:5;8579:20;8572:27;;8128:481;-1:-1:-1;8625:3:1;;7107:1527;-1:-1:-1;;;;;;;;;;;7107:1527:1:o;8847:488::-;-1:-1:-1;;;;;9116:15:1;;;9098:34;;9168:15;;9163:2;9148:18;;9141:43;9215:2;9200:18;;9193:34;;;9263:3;9258:2;9243:18;;9236:31;;;9041:4;;9284:45;;9309:19;;9301:6;9284:45;:::i;:::-;9276:53;8847:488;-1:-1:-1;;;;;;8847:488:1:o;9340:632::-;9511:2;9563:21;;;9633:13;;9536:18;;;9655:22;;;9482:4;;9511:2;9734:15;;;;9708:2;9693:18;;;9482:4;9777:169;9791:6;9788:1;9785:13;9777:169;;;9852:13;;9840:26;;9921:15;;;;9886:12;;;;9813:1;9806:9;9777:169;;;-1:-1:-1;9963:3:1;;9340:632;-1:-1:-1;;;;;;9340:632:1:o;10169:219::-;10318:2;10307:9;10300:21;10281:4;10338:44;10378:2;10367:9;10363:18;10355:6;10338:44;:::i;10800:344::-;11002:2;10984:21;;;11041:2;11021:18;;;11014:30;-1:-1:-1;;;11075:2:1;11060:18;;11053:50;11135:2;11120:18;;10800:344::o;12595:356::-;12797:2;12779:21;;;12816:18;;;12809:30;12875:34;12870:2;12855:18;;12848:62;12942:2;12927:18;;12595:356::o;12956:347::-;13158:2;13140:21;;;13197:2;13177:18;;;13170:30;13236:25;13231:2;13216:18;;13209:53;13294:2;13279:18;;12956:347::o;13724:344::-;13926:2;13908:21;;;13965:2;13945:18;;;13938:30;-1:-1:-1;;;13999:2:1;13984:18;;13977:50;14059:2;14044:18;;13724:344::o;14073:398::-;14275:2;14257:21;;;14314:2;14294:18;;;14287:30;14353:34;14348:2;14333:18;;14326:62;-1:-1:-1;;;14419:2:1;14404:18;;14397:32;14461:3;14446:19;;14073:398::o;15410:275::-;15481:2;15475:9;15546:2;15527:13;;-1:-1:-1;;15523:27:1;15511:40;;-1:-1:-1;;;;;15566:34:1;;15602:22;;;15563:62;15560:88;;;15628:18;;:::i;:::-;15664:2;15657:22;15410:275;;-1:-1:-1;15410:275:1:o;15816:128::-;15856:3;15887:1;15883:6;15880:1;15877:13;15874:39;;;15893:18;;:::i;:::-;-1:-1:-1;15929:9:1;;15816:128::o;15949:120::-;15989:1;16015;16005:35;;16020:18;;:::i;:::-;-1:-1:-1;16054:9:1;;15949:120::o;16074:168::-;16114:7;16180:1;16176;16172:6;16168:14;16165:1;16162:21;16157:1;16150:9;16143:17;16139:45;16136:71;;;16187:18;;:::i;:::-;-1:-1:-1;16227:9:1;;16074:168::o;16247:125::-;16287:4;16315:1;16312;16309:8;16306:34;;;16320:18;;:::i;:::-;-1:-1:-1;16357:9:1;;16247:125::o;16377:258::-;16449:1;16459:113;16473:6;16470:1;16467:13;16459:113;;;16549:11;;;16543:18;16530:11;;;16523:39;16495:2;16488:10;16459:113;;;16590:6;16587:1;16584:13;16581:48;;;-1:-1:-1;;16625:1:1;16607:16;;16600:27;16377:258::o;16640:380::-;16719:1;16715:12;;;;16762;;;16783:61;;16837:4;16829:6;16825:17;16815:27;;16783:61;16890:2;16882:6;16879:14;16859:18;16856:38;16853:161;;;16936:10;16931:3;16927:20;16924:1;16917:31;16971:4;16968:1;16961:15;16999:4;16996:1;16989:15;16853:161;;16640:380;;;:::o;17025:135::-;17064:3;-1:-1:-1;;17085:17:1;;17082:43;;;17105:18;;:::i;:::-;-1:-1:-1;17152:1:1;17141:13;;17025:135::o;17165:112::-;17197:1;17223;17213:35;;17228:18;;:::i;:::-;-1:-1:-1;17262:9:1;;17165:112::o;17282:127::-;17343:10;17338:3;17334:20;17331:1;17324:31;17374:4;17371:1;17364:15;17398:4;17395:1;17388:15;17414:127;17475:10;17470:3;17466:20;17463:1;17456:31;17506:4;17503:1;17496:15;17530:4;17527:1;17520:15;17546:127;17607:10;17602:3;17598:20;17595:1;17588:31;17638:4;17635:1;17628:15;17662:4;17659:1;17652:15;17678:127;17739:10;17734:3;17730:20;17727:1;17720:31;17770:4;17767:1;17760:15;17794:4;17791:1;17784:15;17810:131;-1:-1:-1;;;;;;17884:32:1;;17874:43;;17864:71;;17931:1;17928;17921:12

Swarm Source

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