ETH Price: $2,469.39 (+5.90%)

Token

The Ape Law (TAL)
 

Overview

Max Total Supply

225 TAL

Holders

120

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TAL
0xA9F6C8338dbCf3BBbB022802f08Ca8e7008ed0DC
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TheApeLaw

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-22
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.7;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: contracts/TheApeLaw.sol


pragma solidity ^0.8.7;





contract TheApeLaw is ERC721A, Ownable, ReentrancyGuard {
    using ECDSA for bytes32;

    enum Status {
        Pending,
        PublicSale,
        Finished
    }

    Status public status;
    string public baseURI;

    uint256 public PRICE = 0.005 * 10**18;

    mapping(address => uint256) public freeMinted;

    uint256 public tokensReserved;
    uint256 public immutable reserveAmount;
    uint256 public immutable maxPerMint;

    string private _contractMetadataURI =
        "https://bafkreifh4qswna7lf7pf66xvhp5hs5uts5s4jmtxoqh7lff2jsvyglaa6y.ipfs.nftstorage.link/";

    event Minted(address minter, uint256 amount);
    event StatusChanged(Status status);
    event BaseURIChanged(string newBaseURI);
    event ReservedToken(address minter, address recipient, uint256 amount);
    event PriceChange(uint256 price);
    event Withdrawed(address addr, uint amount);

    constructor() ERC721A("The Ape Law", "TAL", 3, 225) {
        baseURI = "https://nftstorage.link/ipfs/bafybeifrpta6zdapdrjlfguwnqgytxuxuddyuti2237ausfyoep2l3isu4";
        maxPerMint = 3;
        reserveAmount = 30;
        status = Status.Pending;
    }

    function reserve(address recipient, uint256 amount) external onlyOwner {
        require(recipient != address(0), "Zero address");
        require(amount > 0, "Invalid mint amount!");
        require(
            totalSupply() + amount <= collectionSize,
            "Max supply exceeded"
        );

        require(
            tokensReserved + amount <= reserveAmount,
            "Max reserve amount exceeded"
        );
      
        uint256 numChunks = amount / maxPerMint;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(recipient, maxPerMint);
        }
        tokensReserved += amount;
        emit ReservedToken(msg.sender, recipient, amount);
    }

    function mint(uint256 amount) external payable {
        require(status == Status.PublicSale, "Public sale is not active.");
        require(
            tx.origin == msg.sender,
            "Contract is not allowed to mint."
        );

        require(amount > 0, "Invalid mint amount!");

        require(amount <= maxPerMint, "Exceeds the single maximum limit.");

        require(
            totalSupply() + amount + reserveAmount - tokensReserved <=
                collectionSize,
            "Max supply exceeded."
        );

        uint256 totalPrice;

        if (freeMinted[msg.sender] == 0) {
            freeMinted[msg.sender] = 1;
            totalPrice = (amount - 1) * PRICE;
        } else {
            totalPrice = amount * PRICE;
        }

        _safeMint(msg.sender, amount);
        refundIfOver(totalPrice);

        emit Minted(msg.sender, amount);
    }

    function withdraw() external nonReentrant onlyOwner {
        require(address(this).balance > 0, "Insufficient balance");
        Address.sendValue(payable(owner()), address(this).balance);
        emit Withdrawed(owner(), address(this).balance);
    }

    function contractURI() public view returns (string memory) {
        return _contractMetadataURI;
    }

    function setContractMetadataURI(string calldata newContractMetadataUri)
        public
        onlyOwner
    {
        _contractMetadataURI = newContractMetadataUri;
    }

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
        emit BaseURIChanged(newBaseURI);
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        PRICE = newPrice;
        emit PriceChange(newPrice);
    }

    function setStatus(Status _status) external onlyOwner {
        status = _status;
        emit StatusChanged(_status);
    }

    function setOwnersExplicit(uint256 quantity)
        external
        onlyOwner
        nonReentrant
    {
        _setOwnersExplicit(quantity);
    }

    function maxSupply() external view returns (uint256) {
        return collectionSize;
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

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

    // start from 1
    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"PriceChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ReservedToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum TheApeLaw.Status","name":"status","type":"uint8"}],"name":"StatusChanged","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawed","type":"event"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractMetadataUri","type":"string"}],"name":"setContractMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TheApeLaw.Status","name":"_status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum TheApeLaw.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60006007556611c37937e08000600c55610180604052605961010081815290620030f76101203980516200003c91600f9160209091019062000246565b503480156200004a57600080fd5b506040518060400160405280600b81526020016a54686520417065204c617760a81b8152506040518060400160405280600381526020016215105360ea1b815250600360e160008111620000fc5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200015e5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000f3565b83516200017390600190602087019062000246565b5082516200018990600290602086019062000246565b5060a09190915260805250506001600055620001a533620001f4565b6001600955604080516080810190915260588082526200315060208301398051620001d991600b9160209091019062000246565b50600360e052601e60c052600a805460ff1916905562000329565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200025490620002ec565b90600052602060002090601f016020900481019282620002785760008555620002c3565b82601f106200029357805160ff1916838001178555620002c3565b82800160010185558215620002c3579182015b82811115620002c3578251825591602001919060010190620002a6565b50620002d1929150620002d5565b5090565b5b80821115620002d15760008155600101620002d6565b600181811c908216806200030157607f821691505b602082108114156200032357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051612d47620003b060003960008181610483015281816111140152818161164d015261168501526000818161042f015281816111b201526115cb015260008181611f6c01528181611f9601526124630152600081816106a80152818161118e0152818161155301528181611c580152611c8a0152612d476000f3fe6080604052600436106102255760003560e01c80636c0360eb11610123578063a201fc50116100ab578063d5abeb011161006f578063d5abeb0114610699578063d7224ba0146106cc578063e8a3d485146106e2578063e985e9c5146106f7578063f2fde38b1461074057600080fd5b8063a201fc50146105f9578063a22cb46514610619578063b88d4fde14610639578063c87b56dd14610659578063cc47a40b1461067957600080fd5b80638da5cb5b116100f25780638da5cb5b1461054557806391b7f5ed146105635780639231ab2a1461058357806395d89b41146105d1578063a0712d68146105e657600080fd5b80636c0360eb146104e557806370a08231146104fa578063715018a61461051a5780638d859f3e1461052f57600080fd5b80632f745c59116101b15780634b09b72a116101755780634b09b72a1461041d5780634f6ccce714610451578063507e094f1461047157806355f804b3146104a55780636352211e146104c557600080fd5b80632f745c5914610385578063389fcf06146103a55780633ccfd60b146103d257806342842e0e146103e7578063433adb051461040757600080fd5b806318160ddd116101f857806318160ddd146102db578063200d2ed2146102fe57806323b872dd146103255780632d20fb60146103455780632e49d78b1461036557600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a6102453660046128f9565b610760565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746107cd565b6040516102569190612ace565b34801561028d57600080fd5b506102a161029c3660046129c6565b61085f565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d43660046128cf565b6108ef565b005b3480156102e757600080fd5b506102f0610a07565b604051908152602001610256565b34801561030a57600080fd5b50600a546103189060ff1681565b6040516102569190612a77565b34801561033157600080fd5b506102d961034036600461277b565b610a1d565b34801561035157600080fd5b506102d96103603660046129c6565b610a28565b34801561037157600080fd5b506102d9610380366004612933565b610a99565b34801561039157600080fd5b506102f06103a03660046128cf565b610aff565b3480156103b157600080fd5b506102f06103c036600461272d565b600d6020526000908152604090205481565b3480156103de57600080fd5b506102d9610c77565b3480156103f357600080fd5b506102d961040236600461277b565b610d93565b34801561041357600080fd5b506102f0600e5481565b34801561042957600080fd5b506102f07f000000000000000000000000000000000000000000000000000000000000000081565b34801561045d57600080fd5b506102f061046c3660046129c6565b610dae565b34801561047d57600080fd5b506102f07f000000000000000000000000000000000000000000000000000000000000000081565b3480156104b157600080fd5b506102d96104c0366004612954565b610e16565b3480156104d157600080fd5b506102a16104e03660046129c6565b610e68565b3480156104f157600080fd5b50610274610e7a565b34801561050657600080fd5b506102f061051536600461272d565b610f08565b34801561052657600080fd5b506102d9610f99565b34801561053b57600080fd5b506102f0600c5481565b34801561055157600080fd5b506008546001600160a01b03166102a1565b34801561056f57600080fd5b506102d961057e3660046129c6565b610fad565b34801561058f57600080fd5b506105a361059e3660046129c6565b610fea565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610256565b3480156105dd57600080fd5b50610274611007565b6102d96105f43660046129c6565b611016565b34801561060557600080fd5b506102d9610614366004612954565b6112de565b34801561062557600080fd5b506102d9610634366004612893565b6112f2565b34801561064557600080fd5b506102d96106543660046127b7565b6113b7565b34801561066557600080fd5b506102746106743660046129c6565b6113f0565b34801561068557600080fd5b506102d96106943660046128cf565b6114bd565b3480156106a557600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006102f0565b3480156106d857600080fd5b506102f060075481565b3480156106ee57600080fd5b50610274611721565b34801561070357600080fd5b5061024a610712366004612748565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561074c57600080fd5b506102d961075b36600461272d565b611730565b60006001600160e01b031982166380ac58cd60e01b148061079157506001600160e01b03198216635b5e139f60e01b145b806107ac57506001600160e01b0319821663780e9d6360e01b145b806107c757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107dc90612c23565b80601f016020809104026020016040519081016040528092919081815260200182805461080890612c23565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086c826000541190565b6108d35760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108fa82610e68565b9050806001600160a01b0316836001600160a01b031614156109695760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108ca565b336001600160a01b038216148061098557506109858133610712565b6109f75760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108ca565b610a028383836117a9565b505050565b60006001600054610a189190612bc9565b905090565b610a02838383611805565b610a30611b8d565b60026009541415610a835760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ca565b6002600955610a9181611be7565b506001600955565b610aa1611b8d565b600a805482919060ff19166001836002811115610ac057610ac0612cb9565b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e81604051610af49190612a77565b60405180910390a150565b6000610b0a83610f08565b8210610b635760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108ca565b6000610b6d610a07565b905060008060005b83811015610c17576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bc857805192505b876001600160a01b0316836001600160a01b03161415610c045786841415610bf6575093506107c792505050565b83610c0081612c5e565b9450505b5080610c0f81612c5e565b915050610b75565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108ca565b60026009541415610cca5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ca565b6002600955610cd7611b8d565b60004711610d1e5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016108ca565b610d39610d336008546001600160a01b031690565b47611dd1565b7f6cca423c6ffc06e62a0acc433965e074b11c28479b0449250ce3ff65ac9e39fe610d6c6008546001600160a01b031690565b604080516001600160a01b0390921682524760208301520160405180910390a16001600955565b610a02838383604051806020016040528060008152506113b7565b6000610db8610a07565b8210610e125760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108ca565b5090565b610e1e611b8d565b610e2a600b8383612681565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610e5c929190612a9f565b60405180910390a15050565b6000610e7382611eea565b5192915050565b600b8054610e8790612c23565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb390612c23565b8015610f005780601f10610ed557610100808354040283529160200191610f00565b820191906000526020600020905b815481529060010190602001808311610ee357829003601f168201915b505050505081565b60006001600160a01b038216610f745760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108ca565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610fa1611b8d565b610fab6000612094565b565b610fb5611b8d565b600c8190556040518181527ff347ee99503bf19c028bd6b18f3c676e82a9bb5b2bb5225aebe0fd62fd6a0d1990602001610af4565b60408051808201909152600080825260208201526107c782611eea565b6060600280546107dc90612c23565b6001600a5460ff16600281111561102f5761102f612cb9565b1461107c5760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f74206163746976652e00000000000060448201526064016108ca565b3233146110cb5760405162461bcd60e51b815260206004820181905260248201527f436f6e7472616374206973206e6f7420616c6c6f77656420746f206d696e742e60448201526064016108ca565b600081116111125760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108ca565b7f000000000000000000000000000000000000000000000000000000000000000081111561118c5760405162461bcd60e51b815260206004820152602160248201527f45786365656473207468652073696e676c65206d6178696d756d206c696d69746044820152601760f91b60648201526084016108ca565b7f0000000000000000000000000000000000000000000000000000000000000000600e547f0000000000000000000000000000000000000000000000000000000000000000836111da610a07565b6111e49190612b56565b6111ee9190612b56565b6111f89190612bc9565b111561123d5760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b60448201526064016108ca565b336000908152600d602052604081205461128557336000908152600d60205260409020600190819055600c54906112749084612bc9565b61127e9190612b82565b9050611295565b600c546112929083612b82565b90505b61129f33836120e6565b6112a881612104565b60408051338152602081018490527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe9101610e5c565b6112e6611b8d565b610a02600f8383612681565b6001600160a01b03821633141561134b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108ca565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113c2848484611805565b6113ce8484848461218b565b6113ea5760405162461bcd60e51b81526004016108ca90612ae1565b50505050565b60606113fd826000541190565b6114615760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ca565b600061146b612299565b9050600081511161148b57604051806020016040528060008152506114b6565b80611495846122a8565b6040516020016114a6929190612a0b565b6040516020818303038152906040525b9392505050565b6114c5611b8d565b6001600160a01b03821661150a5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064016108ca565b600081116115515760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108ca565b7f00000000000000000000000000000000000000000000000000000000000000008161157b610a07565b6115859190612b56565b11156115c95760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016108ca565b7f000000000000000000000000000000000000000000000000000000000000000081600e546115f89190612b56565b11156116465760405162461bcd60e51b815260206004820152601b60248201527f4d6178207265736572766520616d6f756e74206578636565646564000000000060448201526064016108ca565b60006116727f000000000000000000000000000000000000000000000000000000000000000083612b6e565b905060005b818110156116bb576116a9847f00000000000000000000000000000000000000000000000000000000000000006120e6565b806116b381612c5e565b915050611677565b5081600e60008282546116ce9190612b56565b9091555050604080513381526001600160a01b03851660208201529081018390527fd729ebd340be850113adba35e3218ac6bd77c375ce35c256e3493fdf30b99f3e9060600160405180910390a1505050565b6060600f80546107dc90612c23565b611738611b8d565b6001600160a01b03811661179d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ca565b6117a681612094565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061181082611eea565b80519091506000906001600160a01b0316336001600160a01b0316148061184757503361183c8461085f565b6001600160a01b0316145b80611859575081516118599033610712565b9050806118c35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108ca565b846001600160a01b031682600001516001600160a01b0316146119375760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108ca565b6001600160a01b03841661199b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108ca565b6119ab60008484600001516117a9565b6001600160a01b03851660009081526004602052604081208054600192906119dd9084906001600160801b0316612ba1565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611a2991859116612b34565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611ab1846001612b56565b6000818152600360205260409020549091506001600160a01b0316611b4357611adb816000541190565b15611b435760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610fab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108ca565b60075481611c375760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108ca565b60006001611c458484612b56565b611c4f9190612bc9565b9050611c7c60017f0000000000000000000000000000000000000000000000000000000000000000612bc9565b811115611cb157611cae60017f0000000000000000000000000000000000000000000000000000000000000000612bc9565b90505b611cbc816000541190565b611d175760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108ca565b815b818111611dbd576000818152600360205260409020546001600160a01b0316611dab576000611d4782611eea565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611db581612c5e565b915050611d19565b50611dc9816001612b56565b600755505050565b80471015611e215760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108ca565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e6e576040519150601f19603f3d011682016040523d82523d6000602084013e611e73565b606091505b5050905080610a025760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108ca565b6040805180820190915260008082526020820152611f09826000541190565b611f685760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108ca565b60007f00000000000000000000000000000000000000000000000000000000000000008310611fc957611fbb7f000000000000000000000000000000000000000000000000000000000000000084612bc9565b611fc6906001612b56565b90505b825b818110612033576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561202057949350505050565b508061202b81612c0c565b915050611fcb565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108ca565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6121008282604051806020016040528060008152506123a6565b5050565b8034101561214d5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016108ca565b803411156117a657336108fc6121638334612bc9565b6040518115909202916000818181858888f19350505050158015612100573d6000803e3d6000fd5b60006001600160a01b0384163b1561228d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121cf903390899088908890600401612a3a565b602060405180830381600087803b1580156121e957600080fd5b505af1925050508015612219575060408051601f3d908101601f1916820190925261221691810190612916565b60015b612273573d808015612247576040519150601f19603f3d011682016040523d82523d6000602084013e61224c565b606091505b50805161226b5760405162461bcd60e51b81526004016108ca90612ae1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612291565b5060015b949350505050565b6060600b80546107dc90612c23565b6060816122cc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122f657806122e081612c5e565b91506122ef9050600a83612b6e565b91506122d0565b60008167ffffffffffffffff81111561231157612311612ce5565b6040519080825280601f01601f19166020018201604052801561233b576020820181803683370190505b5090505b841561229157612350600183612bc9565b915061235d600a86612c79565b612368906030612b56565b60f81b81838151811061237d5761237d612ccf565b60200101906001600160f81b031916908160001a90535061239f600a86612b6e565b945061233f565b6000546001600160a01b0384166124095760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108ca565b612414816000541190565b156124615760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108ca565b7f00000000000000000000000000000000000000000000000000000000000000008311156124dc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108ca565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612538908790612b34565b6001600160801b031681526020018583602001516125569190612b34565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126765760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461263a600088848861218b565b6126565760405162461bcd60e51b81526004016108ca90612ae1565b8161266081612c5e565b925050808061266e90612c5e565b9150506125ed565b506000819055611b85565b82805461268d90612c23565b90600052602060002090601f0160209004810192826126af57600085556126f5565b82601f106126c85782800160ff198235161785556126f5565b828001600101855582156126f5579182015b828111156126f55782358255916020019190600101906126da565b50610e129291505b80821115610e1257600081556001016126fd565b80356001600160a01b038116811461272857600080fd5b919050565b60006020828403121561273f57600080fd5b6114b682612711565b6000806040838503121561275b57600080fd5b61276483612711565b915061277260208401612711565b90509250929050565b60008060006060848603121561279057600080fd5b61279984612711565b92506127a760208501612711565b9150604084013590509250925092565b600080600080608085870312156127cd57600080fd5b6127d685612711565b93506127e460208601612711565b925060408501359150606085013567ffffffffffffffff8082111561280857600080fd5b818701915087601f83011261281c57600080fd5b81358181111561282e5761282e612ce5565b604051601f8201601f19908116603f0116810190838211818310171561285657612856612ce5565b816040528281528a602084870101111561286f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156128a657600080fd5b6128af83612711565b9150602083013580151581146128c457600080fd5b809150509250929050565b600080604083850312156128e257600080fd5b6128eb83612711565b946020939093013593505050565b60006020828403121561290b57600080fd5b81356114b681612cfb565b60006020828403121561292857600080fd5b81516114b681612cfb565b60006020828403121561294557600080fd5b8135600381106114b657600080fd5b6000806020838503121561296757600080fd5b823567ffffffffffffffff8082111561297f57600080fd5b818501915085601f83011261299357600080fd5b8135818111156129a257600080fd5b8660208285010111156129b457600080fd5b60209290920196919550909350505050565b6000602082840312156129d857600080fd5b5035919050565b600081518084526129f7816020860160208601612be0565b601f01601f19169290920160200192915050565b60008351612a1d818460208801612be0565b835190830190612a31818360208801612be0565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a6d908301846129df565b9695505050505050565b6020810160038310612a9957634e487b7160e01b600052602160045260246000fd5b91905290565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6020815260006114b660208301846129df565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612a3157612a31612c8d565b60008219821115612b6957612b69612c8d565b500190565b600082612b7d57612b7d612ca3565b500490565b6000816000190483118215151615612b9c57612b9c612c8d565b500290565b60006001600160801b0383811690831681811015612bc157612bc1612c8d565b039392505050565b600082821015612bdb57612bdb612c8d565b500390565b60005b83811015612bfb578181015183820152602001612be3565b838111156113ea5750506000910152565b600081612c1b57612c1b612c8d565b506000190190565b600181811c90821680612c3757607f821691505b60208210811415612c5857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c7257612c72612c8d565b5060010190565b600082612c8857612c88612ca3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117a657600080fdfea26469706673582212209e6b28814bc02b53acd0a2ef678d98f1e4c860500969b5e523c9919a2350564f64736f6c6343000807003368747470733a2f2f6261666b7265696668347173776e61376c66377066363678766870356873357574733573346a6d74786f7168376c6666326a737679676c616136792e697066732e6e667473746f726167652e6c696e6b2f68747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f626166796265696672707461367a64617064726a6c666775776e71677974787578756464797574693232333761757366796f6570326c3369737534

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636c0360eb11610123578063a201fc50116100ab578063d5abeb011161006f578063d5abeb0114610699578063d7224ba0146106cc578063e8a3d485146106e2578063e985e9c5146106f7578063f2fde38b1461074057600080fd5b8063a201fc50146105f9578063a22cb46514610619578063b88d4fde14610639578063c87b56dd14610659578063cc47a40b1461067957600080fd5b80638da5cb5b116100f25780638da5cb5b1461054557806391b7f5ed146105635780639231ab2a1461058357806395d89b41146105d1578063a0712d68146105e657600080fd5b80636c0360eb146104e557806370a08231146104fa578063715018a61461051a5780638d859f3e1461052f57600080fd5b80632f745c59116101b15780634b09b72a116101755780634b09b72a1461041d5780634f6ccce714610451578063507e094f1461047157806355f804b3146104a55780636352211e146104c557600080fd5b80632f745c5914610385578063389fcf06146103a55780633ccfd60b146103d257806342842e0e146103e7578063433adb051461040757600080fd5b806318160ddd116101f857806318160ddd146102db578063200d2ed2146102fe57806323b872dd146103255780632d20fb60146103455780632e49d78b1461036557600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a6102453660046128f9565b610760565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746107cd565b6040516102569190612ace565b34801561028d57600080fd5b506102a161029c3660046129c6565b61085f565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d43660046128cf565b6108ef565b005b3480156102e757600080fd5b506102f0610a07565b604051908152602001610256565b34801561030a57600080fd5b50600a546103189060ff1681565b6040516102569190612a77565b34801561033157600080fd5b506102d961034036600461277b565b610a1d565b34801561035157600080fd5b506102d96103603660046129c6565b610a28565b34801561037157600080fd5b506102d9610380366004612933565b610a99565b34801561039157600080fd5b506102f06103a03660046128cf565b610aff565b3480156103b157600080fd5b506102f06103c036600461272d565b600d6020526000908152604090205481565b3480156103de57600080fd5b506102d9610c77565b3480156103f357600080fd5b506102d961040236600461277b565b610d93565b34801561041357600080fd5b506102f0600e5481565b34801561042957600080fd5b506102f07f000000000000000000000000000000000000000000000000000000000000001e81565b34801561045d57600080fd5b506102f061046c3660046129c6565b610dae565b34801561047d57600080fd5b506102f07f000000000000000000000000000000000000000000000000000000000000000381565b3480156104b157600080fd5b506102d96104c0366004612954565b610e16565b3480156104d157600080fd5b506102a16104e03660046129c6565b610e68565b3480156104f157600080fd5b50610274610e7a565b34801561050657600080fd5b506102f061051536600461272d565b610f08565b34801561052657600080fd5b506102d9610f99565b34801561053b57600080fd5b506102f0600c5481565b34801561055157600080fd5b506008546001600160a01b03166102a1565b34801561056f57600080fd5b506102d961057e3660046129c6565b610fad565b34801561058f57600080fd5b506105a361059e3660046129c6565b610fea565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610256565b3480156105dd57600080fd5b50610274611007565b6102d96105f43660046129c6565b611016565b34801561060557600080fd5b506102d9610614366004612954565b6112de565b34801561062557600080fd5b506102d9610634366004612893565b6112f2565b34801561064557600080fd5b506102d96106543660046127b7565b6113b7565b34801561066557600080fd5b506102746106743660046129c6565b6113f0565b34801561068557600080fd5b506102d96106943660046128cf565b6114bd565b3480156106a557600080fd5b507f00000000000000000000000000000000000000000000000000000000000000e16102f0565b3480156106d857600080fd5b506102f060075481565b3480156106ee57600080fd5b50610274611721565b34801561070357600080fd5b5061024a610712366004612748565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561074c57600080fd5b506102d961075b36600461272d565b611730565b60006001600160e01b031982166380ac58cd60e01b148061079157506001600160e01b03198216635b5e139f60e01b145b806107ac57506001600160e01b0319821663780e9d6360e01b145b806107c757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107dc90612c23565b80601f016020809104026020016040519081016040528092919081815260200182805461080890612c23565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086c826000541190565b6108d35760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108fa82610e68565b9050806001600160a01b0316836001600160a01b031614156109695760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108ca565b336001600160a01b038216148061098557506109858133610712565b6109f75760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108ca565b610a028383836117a9565b505050565b60006001600054610a189190612bc9565b905090565b610a02838383611805565b610a30611b8d565b60026009541415610a835760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ca565b6002600955610a9181611be7565b506001600955565b610aa1611b8d565b600a805482919060ff19166001836002811115610ac057610ac0612cb9565b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e81604051610af49190612a77565b60405180910390a150565b6000610b0a83610f08565b8210610b635760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108ca565b6000610b6d610a07565b905060008060005b83811015610c17576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bc857805192505b876001600160a01b0316836001600160a01b03161415610c045786841415610bf6575093506107c792505050565b83610c0081612c5e565b9450505b5080610c0f81612c5e565b915050610b75565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108ca565b60026009541415610cca5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ca565b6002600955610cd7611b8d565b60004711610d1e5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016108ca565b610d39610d336008546001600160a01b031690565b47611dd1565b7f6cca423c6ffc06e62a0acc433965e074b11c28479b0449250ce3ff65ac9e39fe610d6c6008546001600160a01b031690565b604080516001600160a01b0390921682524760208301520160405180910390a16001600955565b610a02838383604051806020016040528060008152506113b7565b6000610db8610a07565b8210610e125760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108ca565b5090565b610e1e611b8d565b610e2a600b8383612681565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610e5c929190612a9f565b60405180910390a15050565b6000610e7382611eea565b5192915050565b600b8054610e8790612c23565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb390612c23565b8015610f005780601f10610ed557610100808354040283529160200191610f00565b820191906000526020600020905b815481529060010190602001808311610ee357829003601f168201915b505050505081565b60006001600160a01b038216610f745760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108ca565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610fa1611b8d565b610fab6000612094565b565b610fb5611b8d565b600c8190556040518181527ff347ee99503bf19c028bd6b18f3c676e82a9bb5b2bb5225aebe0fd62fd6a0d1990602001610af4565b60408051808201909152600080825260208201526107c782611eea565b6060600280546107dc90612c23565b6001600a5460ff16600281111561102f5761102f612cb9565b1461107c5760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f74206163746976652e00000000000060448201526064016108ca565b3233146110cb5760405162461bcd60e51b815260206004820181905260248201527f436f6e7472616374206973206e6f7420616c6c6f77656420746f206d696e742e60448201526064016108ca565b600081116111125760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108ca565b7f000000000000000000000000000000000000000000000000000000000000000381111561118c5760405162461bcd60e51b815260206004820152602160248201527f45786365656473207468652073696e676c65206d6178696d756d206c696d69746044820152601760f91b60648201526084016108ca565b7f00000000000000000000000000000000000000000000000000000000000000e1600e547f000000000000000000000000000000000000000000000000000000000000001e836111da610a07565b6111e49190612b56565b6111ee9190612b56565b6111f89190612bc9565b111561123d5760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b60448201526064016108ca565b336000908152600d602052604081205461128557336000908152600d60205260409020600190819055600c54906112749084612bc9565b61127e9190612b82565b9050611295565b600c546112929083612b82565b90505b61129f33836120e6565b6112a881612104565b60408051338152602081018490527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe9101610e5c565b6112e6611b8d565b610a02600f8383612681565b6001600160a01b03821633141561134b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108ca565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113c2848484611805565b6113ce8484848461218b565b6113ea5760405162461bcd60e51b81526004016108ca90612ae1565b50505050565b60606113fd826000541190565b6114615760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ca565b600061146b612299565b9050600081511161148b57604051806020016040528060008152506114b6565b80611495846122a8565b6040516020016114a6929190612a0b565b6040516020818303038152906040525b9392505050565b6114c5611b8d565b6001600160a01b03821661150a5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064016108ca565b600081116115515760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108ca565b7f00000000000000000000000000000000000000000000000000000000000000e18161157b610a07565b6115859190612b56565b11156115c95760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016108ca565b7f000000000000000000000000000000000000000000000000000000000000001e81600e546115f89190612b56565b11156116465760405162461bcd60e51b815260206004820152601b60248201527f4d6178207265736572766520616d6f756e74206578636565646564000000000060448201526064016108ca565b60006116727f000000000000000000000000000000000000000000000000000000000000000383612b6e565b905060005b818110156116bb576116a9847f00000000000000000000000000000000000000000000000000000000000000036120e6565b806116b381612c5e565b915050611677565b5081600e60008282546116ce9190612b56565b9091555050604080513381526001600160a01b03851660208201529081018390527fd729ebd340be850113adba35e3218ac6bd77c375ce35c256e3493fdf30b99f3e9060600160405180910390a1505050565b6060600f80546107dc90612c23565b611738611b8d565b6001600160a01b03811661179d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ca565b6117a681612094565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061181082611eea565b80519091506000906001600160a01b0316336001600160a01b0316148061184757503361183c8461085f565b6001600160a01b0316145b80611859575081516118599033610712565b9050806118c35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108ca565b846001600160a01b031682600001516001600160a01b0316146119375760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108ca565b6001600160a01b03841661199b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108ca565b6119ab60008484600001516117a9565b6001600160a01b03851660009081526004602052604081208054600192906119dd9084906001600160801b0316612ba1565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611a2991859116612b34565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611ab1846001612b56565b6000818152600360205260409020549091506001600160a01b0316611b4357611adb816000541190565b15611b435760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610fab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108ca565b60075481611c375760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108ca565b60006001611c458484612b56565b611c4f9190612bc9565b9050611c7c60017f00000000000000000000000000000000000000000000000000000000000000e1612bc9565b811115611cb157611cae60017f00000000000000000000000000000000000000000000000000000000000000e1612bc9565b90505b611cbc816000541190565b611d175760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108ca565b815b818111611dbd576000818152600360205260409020546001600160a01b0316611dab576000611d4782611eea565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611db581612c5e565b915050611d19565b50611dc9816001612b56565b600755505050565b80471015611e215760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108ca565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e6e576040519150601f19603f3d011682016040523d82523d6000602084013e611e73565b606091505b5050905080610a025760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108ca565b6040805180820190915260008082526020820152611f09826000541190565b611f685760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108ca565b60007f00000000000000000000000000000000000000000000000000000000000000038310611fc957611fbb7f000000000000000000000000000000000000000000000000000000000000000384612bc9565b611fc6906001612b56565b90505b825b818110612033576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561202057949350505050565b508061202b81612c0c565b915050611fcb565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108ca565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6121008282604051806020016040528060008152506123a6565b5050565b8034101561214d5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016108ca565b803411156117a657336108fc6121638334612bc9565b6040518115909202916000818181858888f19350505050158015612100573d6000803e3d6000fd5b60006001600160a01b0384163b1561228d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121cf903390899088908890600401612a3a565b602060405180830381600087803b1580156121e957600080fd5b505af1925050508015612219575060408051601f3d908101601f1916820190925261221691810190612916565b60015b612273573d808015612247576040519150601f19603f3d011682016040523d82523d6000602084013e61224c565b606091505b50805161226b5760405162461bcd60e51b81526004016108ca90612ae1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612291565b5060015b949350505050565b6060600b80546107dc90612c23565b6060816122cc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122f657806122e081612c5e565b91506122ef9050600a83612b6e565b91506122d0565b60008167ffffffffffffffff81111561231157612311612ce5565b6040519080825280601f01601f19166020018201604052801561233b576020820181803683370190505b5090505b841561229157612350600183612bc9565b915061235d600a86612c79565b612368906030612b56565b60f81b81838151811061237d5761237d612ccf565b60200101906001600160f81b031916908160001a90535061239f600a86612b6e565b945061233f565b6000546001600160a01b0384166124095760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108ca565b612414816000541190565b156124615760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108ca565b7f00000000000000000000000000000000000000000000000000000000000000038311156124dc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108ca565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612538908790612b34565b6001600160801b031681526020018583602001516125569190612b34565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126765760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461263a600088848861218b565b6126565760405162461bcd60e51b81526004016108ca90612ae1565b8161266081612c5e565b925050808061266e90612c5e565b9150506125ed565b506000819055611b85565b82805461268d90612c23565b90600052602060002090601f0160209004810192826126af57600085556126f5565b82601f106126c85782800160ff198235161785556126f5565b828001600101855582156126f5579182015b828111156126f55782358255916020019190600101906126da565b50610e129291505b80821115610e1257600081556001016126fd565b80356001600160a01b038116811461272857600080fd5b919050565b60006020828403121561273f57600080fd5b6114b682612711565b6000806040838503121561275b57600080fd5b61276483612711565b915061277260208401612711565b90509250929050565b60008060006060848603121561279057600080fd5b61279984612711565b92506127a760208501612711565b9150604084013590509250925092565b600080600080608085870312156127cd57600080fd5b6127d685612711565b93506127e460208601612711565b925060408501359150606085013567ffffffffffffffff8082111561280857600080fd5b818701915087601f83011261281c57600080fd5b81358181111561282e5761282e612ce5565b604051601f8201601f19908116603f0116810190838211818310171561285657612856612ce5565b816040528281528a602084870101111561286f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156128a657600080fd5b6128af83612711565b9150602083013580151581146128c457600080fd5b809150509250929050565b600080604083850312156128e257600080fd5b6128eb83612711565b946020939093013593505050565b60006020828403121561290b57600080fd5b81356114b681612cfb565b60006020828403121561292857600080fd5b81516114b681612cfb565b60006020828403121561294557600080fd5b8135600381106114b657600080fd5b6000806020838503121561296757600080fd5b823567ffffffffffffffff8082111561297f57600080fd5b818501915085601f83011261299357600080fd5b8135818111156129a257600080fd5b8660208285010111156129b457600080fd5b60209290920196919550909350505050565b6000602082840312156129d857600080fd5b5035919050565b600081518084526129f7816020860160208601612be0565b601f01601f19169290920160200192915050565b60008351612a1d818460208801612be0565b835190830190612a31818360208801612be0565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a6d908301846129df565b9695505050505050565b6020810160038310612a9957634e487b7160e01b600052602160045260246000fd5b91905290565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6020815260006114b660208301846129df565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612a3157612a31612c8d565b60008219821115612b6957612b69612c8d565b500190565b600082612b7d57612b7d612ca3565b500490565b6000816000190483118215151615612b9c57612b9c612c8d565b500290565b60006001600160801b0383811690831681811015612bc157612bc1612c8d565b039392505050565b600082821015612bdb57612bdb612c8d565b500390565b60005b83811015612bfb578181015183820152602001612be3565b838111156113ea5750506000910152565b600081612c1b57612c1b612c8d565b506000190190565b600181811c90821680612c3757607f821691505b60208210811415612c5857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c7257612c72612c8d565b5060010190565b600082612c8857612c88612ca3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117a657600080fdfea26469706673582212209e6b28814bc02b53acd0a2ef678d98f1e4c860500969b5e523c9919a2350564f64736f6c63430008070033

Deployed Bytecode Sourcemap

54207:4700:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37691:374;;;;;;;;;;-1:-1:-1;37691:374:0;;;;;:::i;:::-;;:::i;:::-;;;6765:14:1;;6758:22;6740:41;;6728:2;6713:18;37691:374:0;;;;;;;;39592:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41247:276::-;;;;;;;;;;-1:-1:-1;41247:276:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5404:32:1;;;5386:51;;5374:2;5359:18;41247:276:0;5240:203:1;40768:413:0;;;;;;;;;;-1:-1:-1;40768:413:0;;;;;:::i;:::-;;:::i;:::-;;36061:118;;;;;;;;;;;;;:::i;:::-;;;21792:25:1;;;21780:2;21765:18;36061:118:0;21646:177:1;54387:20:0;;;;;;;;;;-1:-1:-1;54387:20:0;;;;;;;;;;;;;;;:::i;42230:162::-;;;;;;;;;;-1:-1:-1;42230:162:0;;;;;:::i;:::-;;:::i;58010:156::-;;;;;;;;;;-1:-1:-1;58010:156:0;;;;;:::i;:::-;;:::i;57875:127::-;;;;;;;;;;-1:-1:-1;57875:127:0;;;;;:::i;:::-;;:::i;36771:848::-;;;;;;;;;;-1:-1:-1;36771:848:0;;;;;:::i;:::-;;:::i;54490:45::-;;;;;;;;;;-1:-1:-1;54490:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;57023:256;;;;;;;;;;;;;:::i;42463:177::-;;;;;;;;;;-1:-1:-1;42463:177:0;;;;;:::i;:::-;;:::i;54544:29::-;;;;;;;;;;;;;;;;54580:38;;;;;;;;;;;;;;;36256:212;;;;;;;;;;-1:-1:-1;36256:212:0;;;;;:::i;:::-;;:::i;54625:35::-;;;;;;;;;;;;;;;57584:148;;;;;;;;;;-1:-1:-1;57584:148:0;;;;;:::i;:::-;;:::i;39401:124::-;;;;;;;;;;-1:-1:-1;39401:124:0;;;;;:::i;:::-;;:::i;54414:21::-;;;;;;;;;;;;;:::i;38129:258::-;;;;;;;;;;-1:-1:-1;38129:258:0;;;;;:::i;:::-;;:::i;53317:103::-;;;;;;;;;;;;;:::i;54444:37::-;;;;;;;;;;;;;;;;52669:87;;;;;;;;;;-1:-1:-1;52742:6:0;;-1:-1:-1;;;;;52742:6:0;52669:87;;57740:127;;;;;;;;;;-1:-1:-1;57740:127:0;;;;;:::i;:::-;;:::i;58275:167::-;;;;;;;;;;-1:-1:-1;58275:167:0;;;;;:::i;:::-;;:::i;:::-;;;;21511:13:1;;-1:-1:-1;;;;;21507:39:1;21489:58;;21607:4;21595:17;;;21589:24;21615:18;21585:49;21563:20;;;21556:79;;;;21462:18;58275:167:0;21279:362:1;39761:104:0;;;;;;;;;;;;;:::i;56101:914::-;;;;;;:::i;:::-;;:::i;57400:176::-;;;;;;;;;;-1:-1:-1;57400:176:0;;;;;:::i;:::-;;:::i;41595:303::-;;;;;;;;;;-1:-1:-1;41595:303:0;;;;;:::i;:::-;;:::i;42711:355::-;;;;;;;;;;-1:-1:-1;42711:355:0;;;;;:::i;:::-;;:::i;39936:428::-;;;;;;;;;;-1:-1:-1;39936:428:0;;;;;:::i;:::-;;:::i;55389:704::-;;;;;;;;;;-1:-1:-1;55389:704:0;;;;;:::i;:::-;;:::i;58174:93::-;;;;;;;;;;-1:-1:-1;58245:14:0;58174:93;;47584:43;;;;;;;;;;;;;;;;57287:105;;;;;;;;;;;;;:::i;41969:194::-;;;;;;;;;;-1:-1:-1;41969:194:0;;;;;:::i;:::-;-1:-1:-1;;;;;42120:25:0;;;42091:4;42120:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41969:194;53575:201;;;;;;;;;;-1:-1:-1;53575:201:0;;;;;:::i;:::-;;:::i;37691:374::-;37818:4;-1:-1:-1;;;;;;37856:40:0;;-1:-1:-1;;;37856:40:0;;:97;;-1:-1:-1;;;;;;;37905:48:0;;-1:-1:-1;;;37905:48:0;37856:97;:156;;;-1:-1:-1;;;;;;;37962:50:0;;-1:-1:-1;;;37962:50:0;37856:156;:201;;;-1:-1:-1;;;;;;;;;;11533:40:0;;;38021:36;37840:217;37691:374;-1:-1:-1;;37691:374:0:o;39592:100::-;39646:13;39679:5;39672:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39592:100;:::o;41247:276::-;41335:7;41382:16;41390:7;43378:4;43412:12;-1:-1:-1;43402:22:0;43321:111;41382:16;41360:111;;;;-1:-1:-1;;;41360:111:0;;20315:2:1;41360:111:0;;;20297:21:1;20354:2;20334:18;;;20327:30;20393:34;20373:18;;;20366:62;-1:-1:-1;;;20444:18:1;;;20437:43;20497:19;;41360:111:0;;;;;;;;;-1:-1:-1;41491:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41491:24:0;;41247:276::o;40768:413::-;40841:13;40857:24;40873:7;40857:15;:24::i;:::-;40841:40;;40906:5;-1:-1:-1;;;;;40900:11:0;:2;-1:-1:-1;;;;;40900:11:0;;;40892:58;;;;-1:-1:-1;;;40892:58:0;;16025:2:1;40892:58:0;;;16007:21:1;16064:2;16044:18;;;16037:30;16103:34;16083:18;;;16076:62;-1:-1:-1;;;16154:18:1;;;16147:32;16196:19;;40892:58:0;15823:398:1;40892:58:0;33343:10;-1:-1:-1;;;;;40985:21:0;;;;:62;;-1:-1:-1;41010:37:0;41027:5;33343:10;41969:194;:::i;41010:37::-;40963:169;;;;-1:-1:-1;;;40963:169:0;;12876:2:1;40963:169:0;;;12858:21:1;12915:2;12895:18;;;12888:30;12954:34;12934:18;;;12927:62;13025:27;13005:18;;;12998:55;13070:19;;40963:169:0;12674:421:1;40963:169:0;41145:28;41154:2;41158:7;41167:5;41145:8;:28::i;:::-;40830:351;40768:413;;:::o;36061:118::-;36114:7;58895:1;36141:12;;:30;;;;:::i;:::-;36134:37;;36061:118;:::o;42230:162::-;42356:28;42366:4;42372:2;42376:7;42356:9;:28::i;58010:156::-;52555:13;:11;:13::i;:::-;31637:1:::1;32235:7;;:19;;32227:63;;;::::0;-1:-1:-1;;;32227:63:0;;19539:2:1;32227:63:0::1;::::0;::::1;19521:21:1::0;19578:2;19558:18;;;19551:30;19617:33;19597:18;;;19590:61;19668:18;;32227:63:0::1;19337:355:1::0;32227:63:0::1;31637:1;32368:7;:18:::0;58130:28:::2;58149:8:::0;58130:18:::2;:28::i;:::-;-1:-1:-1::0;31593:1:0::1;32547:7;:22:::0;58010:156::o;57875:127::-;52555:13;:11;:13::i;:::-;57940:6:::1;:16:::0;;57949:7;;57940:6;-1:-1:-1;;57940:16:0::1;::::0;57949:7;57940:16:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;57972:22;57986:7;57972:22;;;;;;:::i;:::-;;;;;;;;57875:127:::0;:::o;36771:848::-;36880:7;36921:16;36931:5;36921:9;:16::i;:::-;36913:5;:24;36905:71;;;;-1:-1:-1;;;36905:71:0;;7957:2:1;36905:71:0;;;7939:21:1;7996:2;7976:18;;;7969:30;8035:34;8015:18;;;8008:62;-1:-1:-1;;;8086:18:1;;;8079:32;8128:19;;36905:71:0;7755:398:1;36905:71:0;36987:22;37012:13;:11;:13::i;:::-;36987:38;;37036:19;37070:25;37124:9;37119:426;37143:14;37139:1;:18;37119:426;;;37179:31;37213:14;;;:11;:14;;;;;;;;;37179:48;;;;;;;;;-1:-1:-1;;;;;37179:48:0;;;;;-1:-1:-1;;;37179:48:0;;;;;;;;;;;;37246:28;37242:103;;37315:14;;;-1:-1:-1;37242:103:0;37384:5;-1:-1:-1;;;;;37363:26:0;:17;-1:-1:-1;;;;;37363:26:0;;37359:175;;;37429:5;37414:11;:20;37410:77;;;-1:-1:-1;37466:1:0;-1:-1:-1;37459:8:0;;-1:-1:-1;;;37459:8:0;37410:77;37505:13;;;;:::i;:::-;;;;37359:175;-1:-1:-1;37159:3:0;;;;:::i;:::-;;;;37119:426;;;-1:-1:-1;37555:56:0;;-1:-1:-1;;;37555:56:0;;18315:2:1;37555:56:0;;;18297:21:1;18354:2;18334:18;;;18327:30;18393:34;18373:18;;;18366:62;-1:-1:-1;;;18444:18:1;;;18437:44;18498:19;;37555:56:0;18113:410:1;57023:256:0;31637:1;32235:7;;:19;;32227:63;;;;-1:-1:-1;;;32227:63:0;;19539:2:1;32227:63:0;;;19521:21:1;19578:2;19558:18;;;19551:30;19617:33;19597:18;;;19590:61;19668:18;;32227:63:0;19337:355:1;32227:63:0;31637:1;32368:7;:18;52555:13:::1;:11;:13::i;:::-;57118:1:::2;57094:21;:25;57086:58;;;::::0;-1:-1:-1;;;57086:58:0;;11401:2:1;57086:58:0::2;::::0;::::2;11383:21:1::0;11440:2;11420:18;;;11413:30;-1:-1:-1;;;11459:18:1;;;11452:50;11519:18;;57086:58:0::2;11199:344:1::0;57086:58:0::2;57155;57181:7;52742:6:::0;;-1:-1:-1;;;;;52742:6:0;;52669:87;57181:7:::2;57191:21;57155:17;:58::i;:::-;57229:42;57240:7;52742:6:::0;;-1:-1:-1;;;;;52742:6:0;;52669:87;57240:7:::2;57229:42;::::0;;-1:-1:-1;;;;;6513:32:1;;;6495:51;;57249:21:0::2;6577:2:1::0;6562:18;;6555:34;6468:18;57229:42:0::2;;;;;;;31593:1:::0;32547:7;:22;57023:256::o;42463:177::-;42593:39;42610:4;42616:2;42620:7;42593:39;;;;;;;;;;;;:16;:39::i;36256:212::-;36343:7;36384:13;:11;:13::i;:::-;36376:5;:21;36368:69;;;;-1:-1:-1;;;36368:69:0;;10591:2:1;36368:69:0;;;10573:21:1;10630:2;10610:18;;;10603:30;10669:34;10649:18;;;10642:62;-1:-1:-1;;;10720:18:1;;;10713:33;10763:19;;36368:69:0;10389:399:1;36368:69:0;-1:-1:-1;36455:5:0;36256:212::o;57584:148::-;52555:13;:11;:13::i;:::-;57662:20:::1;:7;57672:10:::0;;57662:20:::1;:::i;:::-;;57698:26;57713:10;;57698:26;;;;;;;:::i;:::-;;;;;;;;57584:148:::0;;:::o;39401:124::-;39465:7;39492:20;39504:7;39492:11;:20::i;:::-;:25;;39401:124;-1:-1:-1;;39401:124:0:o;54414:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38129:258::-;38193:7;-1:-1:-1;;;;;38235:19:0;;38213:112;;;;-1:-1:-1;;;38213:112:0;;13655:2:1;38213:112:0;;;13637:21:1;13694:2;13674:18;;;13667:30;13733:34;13713:18;;;13706:62;-1:-1:-1;;;13784:18:1;;;13777:41;13835:19;;38213:112:0;13453:407:1;38213:112:0;-1:-1:-1;;;;;;38351:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38351:27:0;;38129:258::o;53317:103::-;52555:13;:11;:13::i;:::-;53382:30:::1;53409:1;53382:18;:30::i;:::-;53317:103::o:0;57740:127::-;52555:13;:11;:13::i;:::-;57806:5:::1;:16:::0;;;57838:21:::1;::::0;21792:25:1;;;57838:21:0::1;::::0;21780:2:1;21765:18;57838:21:0::1;21646:177:1::0;58275:167:0;-1:-1:-1;;;;;;;;;;;;;;;;;58414:20:0;58426:7;58414:11;:20::i;39761:104::-;39817:13;39850:7;39843:14;;;;;:::i;56101:914::-;56177:17;56167:6;;;;:27;;;;;;;;:::i;:::-;;56159:66;;;;-1:-1:-1;;;56159:66:0;;10236:2:1;56159:66:0;;;10218:21:1;10275:2;10255:18;;;10248:30;10314:28;10294:18;;;10287:56;10360:18;;56159:66:0;10034:350:1;56159:66:0;56258:9;56271:10;56258:23;56236:105;;;;-1:-1:-1;;;56236:105:0;;9875:2:1;56236:105:0;;;9857:21:1;;;9894:18;;;9887:30;9953:34;9933:18;;;9926:62;10005:18;;56236:105:0;9673:356:1;56236:105:0;56371:1;56362:6;:10;56354:43;;;;-1:-1:-1;;;56354:43:0;;9526:2:1;56354:43:0;;;9508:21:1;9565:2;9545:18;;;9538:30;-1:-1:-1;;;9584:18:1;;;9577:50;9644:18;;56354:43:0;9324:344:1;56354:43:0;56428:10;56418:6;:20;;56410:66;;;;-1:-1:-1;;;56410:66:0;;19137:2:1;56410:66:0;;;19119:21:1;19176:2;19156:18;;;19149:30;19215:34;19195:18;;;19188:62;-1:-1:-1;;;19266:18:1;;;19259:31;19307:19;;56410:66:0;18935:397:1;56410:66:0;56587:14;56552;;56536:13;56527:6;56511:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;;;;:::i;:::-;:55;;;;:::i;:::-;:90;;56489:160;;;;-1:-1:-1;;;56489:160:0;;21132:2:1;56489:160:0;;;21114:21:1;21171:2;21151:18;;;21144:30;-1:-1:-1;;;21190:18:1;;;21183:50;21250:18;;56489:160:0;20930:344:1;56489:160:0;56708:10;56662:18;56697:22;;;:10;:22;;;;;;56693:194;;56752:10;56741:22;;;;:10;:22;;;;;56766:1;56741:26;;;;56810:5;;;56796:10;;:6;:10;:::i;:::-;56795:20;;;;:::i;:::-;56782:33;;56693:194;;;56870:5;;56861:14;;:6;:14;:::i;:::-;56848:27;;56693:194;56899:29;56909:10;56921:6;56899:9;:29::i;:::-;56939:24;56952:10;56939:12;:24::i;:::-;56981:26;;;56988:10;6495:51:1;;6577:2;6562:18;;6555:34;;;56981:26:0;;6468:18:1;56981:26:0;6321:274:1;57400:176:0;52555:13;:11;:13::i;:::-;57523:45:::1;:20;57546:22:::0;;57523:45:::1;:::i;41595:303::-:0;-1:-1:-1;;;;;41705:24:0;;33343:10;41705:24;;41697:63;;;;-1:-1:-1;;;41697:63:0;;15251:2:1;41697:63:0;;;15233:21:1;15290:2;15270:18;;;15263:30;15329:28;15309:18;;;15302:56;15375:18;;41697:63:0;15049:350:1;41697:63:0;33343:10;41773:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41773:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41773:53:0;;;;;;;;;;41842:48;;6740:41:1;;;41773:42:0;;33343:10;41842:48;;6713:18:1;41842:48:0;;;;;;;41595:303;;:::o;42711:355::-;42870:28;42880:4;42886:2;42890:7;42870:9;:28::i;:::-;42931:48;42954:4;42960:2;42964:7;42973:5;42931:22;:48::i;:::-;42909:149;;;;-1:-1:-1;;;42909:149:0;;;;;;;:::i;:::-;42711:355;;;;:::o;39936:428::-;40034:13;40087:16;40095:7;43378:4;43412:12;-1:-1:-1;43402:22:0;43321:111;40087:16;40065:113;;;;-1:-1:-1;;;40065:113:0;;14835:2:1;40065:113:0;;;14817:21:1;14874:2;14854:18;;;14847:30;14913:34;14893:18;;;14886:62;-1:-1:-1;;;14964:18:1;;;14957:45;15019:19;;40065:113:0;14633:411:1;40065:113:0;40191:21;40215:10;:8;:10::i;:::-;40191:34;;40276:1;40258:7;40252:21;:25;:104;;;;;;;;;;;;;;;;;40313:7;40322:18;:7;:16;:18::i;:::-;40296:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40252:104;40236:120;39936:428;-1:-1:-1;;;39936:428:0:o;55389:704::-;52555:13;:11;:13::i;:::-;-1:-1:-1;;;;;55479:23:0;::::1;55471:48;;;::::0;-1:-1:-1;;;55471:48:0;;12177:2:1;55471:48:0::1;::::0;::::1;12159:21:1::0;12216:2;12196:18;;;12189:30;-1:-1:-1;;;12235:18:1;;;12228:42;12287:18;;55471:48:0::1;11975:336:1::0;55471:48:0::1;55547:1;55538:6;:10;55530:43;;;::::0;-1:-1:-1;;;55530:43:0;;9526:2:1;55530:43:0::1;::::0;::::1;9508:21:1::0;9565:2;9545:18;;;9538:30;-1:-1:-1;;;9584:18:1;;;9577:50;9644:18;;55530:43:0::1;9324:344:1::0;55530:43:0::1;55632:14;55622:6;55606:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:40;;55584:109;;;::::0;-1:-1:-1;;;55584:109:0;;8360:2:1;55584:109:0::1;::::0;::::1;8342:21:1::0;8399:2;8379:18;;;8372:30;-1:-1:-1;;;8418:18:1;;;8411:49;8477:18;;55584:109:0::1;8158:343:1::0;55584:109:0::1;55755:13;55745:6;55728:14;;:23;;;;:::i;:::-;:40;;55706:117;;;::::0;-1:-1:-1;;;55706:117:0;;17959:2:1;55706:117:0::1;::::0;::::1;17941:21:1::0;17998:2;17978:18;;;17971:30;18037:29;18017:18;;;18010:57;18084:18;;55706:117:0::1;17757:351:1::0;55706:117:0::1;55842:17;55862:19;55871:10;55862:6:::0;:19:::1;:::i;:::-;55842:39;;55897:9;55892:99;55916:9;55912:1;:13;55892:99;;;55947:32;55957:9;55968:10;55947:9;:32::i;:::-;55927:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55892:99;;;;56019:6;56001:14;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;56041:44:0::1;::::0;;56055:10:::1;5688:34:1::0;;-1:-1:-1;;;;;5758:15:1;;5753:2;5738:18;;5731:43;5790:18;;;5783:34;;;56041:44:0::1;::::0;5638:2:1;5623:18;56041:44:0::1;;;;;;;55460:633;55389:704:::0;;:::o;57287:105::-;57331:13;57364:20;57357:27;;;;;:::i;53575:201::-;52555:13;:11;:13::i;:::-;-1:-1:-1;;;;;53664:22:0;::::1;53656:73;;;::::0;-1:-1:-1;;;53656:73:0;;8708:2:1;53656:73:0::1;::::0;::::1;8690:21:1::0;8747:2;8727:18;;;8720:30;8786:34;8766:18;;;8759:62;-1:-1:-1;;;8837:18:1;;;8830:36;8883:19;;53656:73:0::1;8506:402:1::0;53656:73:0::1;53740:28;53759:8;53740:18;:28::i;:::-;53575:201:::0;:::o;47380:196::-;47495:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47495:29:0;-1:-1:-1;;;;;47495:29:0;;;;;;;;;47540:28;;47495:24;;47540:28;;;;;;;47380:196;;;:::o;45561:1701::-;45676:35;45714:20;45726:7;45714:11;:20::i;:::-;45789:18;;45676:58;;-1:-1:-1;45747:22:0;;-1:-1:-1;;;;;45773:34:0;33343:10;-1:-1:-1;;;;;45773:34:0;;:83;;;-1:-1:-1;33343:10:0;45820:20;45832:7;45820:11;:20::i;:::-;-1:-1:-1;;;;;45820:36:0;;45773:83;:146;;;-1:-1:-1;45886:18:0;;45869:50;;33343:10;41969:194;:::i;45869:50::-;45747:173;;45955:17;45933:117;;;;-1:-1:-1;;;45933:117:0;;15606:2:1;45933:117:0;;;15588:21:1;15645:2;15625:18;;;15618:30;15684:34;15664:18;;;15657:62;-1:-1:-1;;;15735:18:1;;;15728:48;15793:19;;45933:117:0;15404:414:1;45933:117:0;46107:4;-1:-1:-1;;;;;46085:26:0;:13;:18;;;-1:-1:-1;;;;;46085:26:0;;46063:114;;;;-1:-1:-1;;;46063:114:0;;14067:2:1;46063:114:0;;;14049:21:1;14106:2;14086:18;;;14079:30;14145:34;14125:18;;;14118:62;-1:-1:-1;;;14196:18:1;;;14189:36;14242:19;;46063:114:0;13865:402:1;46063:114:0;-1:-1:-1;;;;;46196:16:0;;46188:66;;;;-1:-1:-1;;;46188:66:0;;10995:2:1;46188:66:0;;;10977:21:1;11034:2;11014:18;;;11007:30;11073:34;11053:18;;;11046:62;-1:-1:-1;;;11124:18:1;;;11117:35;11169:19;;46188:66:0;10793:401:1;46188:66:0;46375:49;46392:1;46396:7;46405:13;:18;;;46375:8;:49::i;:::-;-1:-1:-1;;;;;46437:18:0;;;;;;:12;:18;;;;;:31;;46467:1;;46437:18;:31;;46467:1;;-1:-1:-1;;;;;46437:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;46437:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46479:16:0;;-1:-1:-1;46479:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;46479:16:0;;:29;;-1:-1:-1;;46479:29:0;;:::i;:::-;;;-1:-1:-1;;;;;46479:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46542:43:0;;;;;;;;-1:-1:-1;;;;;46542:43:0;;;;;;46568:15;46542:43;;;;;;;;;-1:-1:-1;46519:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;46519:66:0;-1:-1:-1;;;;;;46519:66:0;;;;;;;;;;;46847:11;46531:7;-1:-1:-1;46847:11:0;:::i;:::-;46914:1;46873:24;;;:11;:24;;;;;:29;46825:33;;-1:-1:-1;;;;;;46873:29:0;46869:288;;46937:20;46945:11;43378:4;43412:12;-1:-1:-1;43402:22:0;43321:111;46937:20;46933:213;;;47005:125;;;;;;;;47042:18;;-1:-1:-1;;;;;47005:125:0;;;;;;47083:28;;;;47005:125;;;;;;;;;;-1:-1:-1;46978:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;46978:152:0;-1:-1:-1;;;;;;46978:152:0;;;;;;;;;;;;46933:213;47193:7;47189:2;-1:-1:-1;;;;;47174:27:0;47183:4;-1:-1:-1;;;;;47174:27:0;;;;;;;;;;;47212:42;45665:1597;;;45561:1701;;;:::o;52834:132::-;52742:6;;-1:-1:-1;;;;;52742:6:0;33343:10;52898:23;52890:68;;;;-1:-1:-1;;;52890:68:0;;14474:2:1;52890:68:0;;;14456:21:1;;;14493:18;;;14486:30;14552:34;14532:18;;;14525:62;14604:18;;52890:68:0;14272:356:1;47740:950:0;47834:24;;47877:12;47869:49;;;;-1:-1:-1;;;47869:49:0;;13302:2:1;47869:49:0;;;13284:21:1;13341:2;13321:18;;;13314:30;13380:26;13360:18;;;13353:54;13424:18;;47869:49:0;13100:348:1;47869:49:0;47929:16;47979:1;47948:28;47968:8;47948:17;:28;:::i;:::-;:32;;;;:::i;:::-;47929:51;-1:-1:-1;48006:18:0;48023:1;48006:14;:18;:::i;:::-;47995:8;:29;47991:91;;;48052:18;48069:1;48052:14;:18;:::i;:::-;48041:29;;47991:91;48205:17;48213:8;43378:4;43412:12;-1:-1:-1;43402:22:0;43321:111;48205:17;48197:68;;;;-1:-1:-1;;;48197:68:0;;18730:2:1;48197:68:0;;;18712:21:1;18769:2;18749:18;;;18742:30;18808:34;18788:18;;;18781:62;-1:-1:-1;;;18859:18:1;;;18852:36;18905:19;;48197:68:0;18528:402:1;48197:68:0;48293:17;48276:357;48317:8;48312:1;:13;48276:357;;48382:1;48351:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;48351:19:0;48347:275;;48405:31;48439:14;48451:1;48439:11;:14::i;:::-;48489:117;;;;;;;;48526:14;;-1:-1:-1;;;;;48489:117:0;;;;;;48563:24;;;;48489:117;;;;;;;;;;-1:-1:-1;48472:14:0;;;:11;:14;;;;;;;:134;;;;;;;;;-1:-1:-1;;;48472:134:0;-1:-1:-1;;;;;;48472:134:0;;;;;;;;;;;;-1:-1:-1;48347:275:0;48327:3;;;;:::i;:::-;;;;48276:357;;;-1:-1:-1;48670:12:0;:8;48681:1;48670:12;:::i;:::-;48643:24;:39;-1:-1:-1;;;47740:950:0:o;2529:317::-;2644:6;2619:21;:31;;2611:73;;;;-1:-1:-1;;;2611:73:0;;12518:2:1;2611:73:0;;;12500:21:1;12557:2;12537:18;;;12530:30;12596:31;12576:18;;;12569:59;12645:18;;2611:73:0;12316:353:1;2611:73:0;2698:12;2716:9;-1:-1:-1;;;;;2716:14:0;2738:6;2716:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2697:52;;;2768:7;2760:78;;;;-1:-1:-1;;;2760:78:0;;11750:2:1;2760:78:0;;;11732:21:1;11789:2;11769:18;;;11762:30;11828:34;11808:18;;;11801:62;11899:28;11879:18;;;11872:56;11945:19;;2760:78:0;11548:422:1;38669:670:0;-1:-1:-1;;;;;;;;;;;;;;;;;38792:16:0;38800:7;43378:4;43412:12;-1:-1:-1;43402:22:0;43321:111;38792:16;38784:71;;;;-1:-1:-1;;;38784:71:0;;9115:2:1;38784:71:0;;;9097:21:1;9154:2;9134:18;;;9127:30;9193:34;9173:18;;;9166:62;-1:-1:-1;;;9244:18:1;;;9237:40;9294:19;;38784:71:0;8913:406:1;38784:71:0;38868:26;38920:12;38909:7;:23;38905:103;;38970:22;38980:12;38970:7;:22;:::i;:::-;:26;;38995:1;38970:26;:::i;:::-;38949:47;;38905:103;39040:7;39020:242;39057:18;39049:4;:26;39020:242;;39100:31;39134:17;;;:11;:17;;;;;;;;;39100:51;;;;;;;;;-1:-1:-1;;;;;39100:51:0;;;;;-1:-1:-1;;;39100:51:0;;;;;;;;;;;;39170:28;39166:85;;39226:9;38669:670;-1:-1:-1;;;;38669:670:0:o;39166:85::-;-1:-1:-1;39077:6:0;;;;:::i;:::-;;;;39020:242;;;-1:-1:-1;39274:57:0;;-1:-1:-1;;;39274:57:0;;19899:2:1;39274:57:0;;;19881:21:1;19938:2;19918:18;;;19911:30;19977:34;19957:18;;;19950:62;-1:-1:-1;;;20028:18:1;;;20021:45;20083:19;;39274:57:0;19697:411:1;53936:191:0;54029:6;;;-1:-1:-1;;;;;54046:17:0;;;-1:-1:-1;;;;;;54046:17:0;;;;;;;54079:40;;54029:6;;;54046:17;54029:6;;54079:40;;54010:16;;54079:40;53999:128;53936:191;:::o;43440:104::-;43509:27;43519:2;43523:8;43509:27;;;;;;;;;;;;:9;:27::i;:::-;43440:104;;:::o;58450:224::-;58527:5;58514:9;:18;;58506:53;;;;-1:-1:-1;;;58506:53:0;;16848:2:1;58506:53:0;;;16830:21:1;16887:2;16867:18;;;16860:30;-1:-1:-1;;;16906:18:1;;;16899:52;16968:18;;58506:53:0;16646:346:1;58506:53:0;58586:5;58574:9;:17;58570:97;;;58616:10;58608:47;58637:17;58649:5;58637:9;:17;:::i;:::-;58608:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49255:957;49410:4;-1:-1:-1;;;;;49431:13:0;;1563:19;:23;49427:778;;49480:155;;-1:-1:-1;;;49480:155:0;;-1:-1:-1;;;;;49480:36:0;;;;;:155;;33343:10;;49566:4;;49589:7;;49615:5;;49480:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49480:155:0;;;;;;;;-1:-1:-1;;49480:155:0;;;;;;;;;;;;:::i;:::-;;;49463:687;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49822:13:0;;49818:317;;49865:105;;-1:-1:-1;;;49865:105:0;;;;;;;:::i;49818:317::-;50085:6;50079:13;50070:6;50066:2;50062:15;50055:38;49463:687;-1:-1:-1;;;;;;49699:55:0;-1:-1:-1;;;49699:55:0;;-1:-1:-1;49692:62:0;;49427:778;-1:-1:-1;50189:4:0;49427:778;49255:957;;;;;;:::o;58682:100::-;58734:13;58767:7;58760:14;;;;;:::i;18785:723::-;18841:13;19062:10;19058:53;;-1:-1:-1;;19089:10:0;;;;;;;;;;;;-1:-1:-1;;;19089:10:0;;;;;18785:723::o;19058:53::-;19136:5;19121:12;19177:78;19184:9;;19177:78;;19210:8;;;;:::i;:::-;;-1:-1:-1;19233:10:0;;-1:-1:-1;19241:2:0;19233:10;;:::i;:::-;;;19177:78;;;19265:19;19297:6;19287:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19287:17:0;;19265:39;;19315:154;19322:10;;19315:154;;19349:11;19359:1;19349:11;;:::i;:::-;;-1:-1:-1;19418:10:0;19426:2;19418:5;:10;:::i;:::-;19405:24;;:2;:24;:::i;:::-;19392:39;;19375:6;19382;19375:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19375:56:0;;;;;;;;-1:-1:-1;19446:11:0;19455:2;19446:11;;:::i;:::-;;;19315:154;;43907:1400;44030:20;44053:12;-1:-1:-1;;;;;44084:16:0;;44076:62;;;;-1:-1:-1;;;44076:62:0;;17557:2:1;44076:62:0;;;17539:21:1;17596:2;17576:18;;;17569:30;17635:34;17615:18;;;17608:62;-1:-1:-1;;;17686:18:1;;;17679:31;17727:19;;44076:62:0;17355:397:1;44076:62:0;44283:21;44291:12;43378:4;43412:12;-1:-1:-1;43402:22:0;43321:111;44283:21;44282:22;44274:64;;;;-1:-1:-1;;;44274:64:0;;17199:2:1;44274:64:0;;;17181:21:1;17238:2;17218:18;;;17211:30;17277:31;17257:18;;;17250:59;17326:18;;44274:64:0;16997:353:1;44274:64:0;44369:12;44357:8;:24;;44349:71;;;;-1:-1:-1;;;44349:71:0;;20729:2:1;44349:71:0;;;20711:21:1;20768:2;20748:18;;;20741:30;20807:34;20787:18;;;20780:62;-1:-1:-1;;;20858:18:1;;;20851:32;20900:19;;44349:71:0;20527:398:1;44349:71:0;-1:-1:-1;;;;;44540:16:0;;44507:30;44540:16;;;:12;:16;;;;;;;;;44507:49;;;;;;;;;-1:-1:-1;;;;;44507:49:0;;;;;-1:-1:-1;;;44507:49:0;;;;;;;;;;;44586:135;;;;;;;;44612:19;;44507:49;;44586:135;;;44612:39;;44642:8;;44612:39;:::i;:::-;-1:-1:-1;;;;;44586:135:0;;;;;44701:8;44666:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;44586:135:0;;;;;;-1:-1:-1;;;;;44567:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;44567:154:0;;;;;;;;;;;;44760:43;;;;;;;;;;;44786:15;44760:43;;;;;;;;44732:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;44732:71:0;-1:-1:-1;;;;;;44732:71:0;;;;;;;;;;;;;;;;;;44744:12;;44864:325;44888:8;44884:1;:12;44864:325;;;44923:38;;44948:12;;-1:-1:-1;;;;;44923:38:0;;;44940:1;;44923:38;;44940:1;;44923:38;45002:59;45033:1;45037:2;45041:12;45055:5;45002:22;:59::i;:::-;44976:172;;;;-1:-1:-1;;;44976:172:0;;;;;;;:::i;:::-;45163:14;;;;:::i;:::-;;;;44898:3;;;;;:::i;:::-;;;;44864:325;;;-1:-1:-1;45201:12:0;:27;;;45239:60;42711:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:267::-;3309:6;3362:2;3350:9;3341:7;3337:23;3333:32;3330:52;;;3378:1;3375;3368:12;3330:52;3417:9;3404:23;3456:1;3449:5;3446:12;3436:40;;3472:1;3469;3462:12;3511:592;3582:6;3590;3643:2;3631:9;3622:7;3618:23;3614:32;3611:52;;;3659:1;3656;3649:12;3611:52;3699:9;3686:23;3728:18;3769:2;3761:6;3758:14;3755:34;;;3785:1;3782;3775:12;3755:34;3823:6;3812:9;3808:22;3798:32;;3868:7;3861:4;3857:2;3853:13;3849:27;3839:55;;3890:1;3887;3880:12;3839:55;3930:2;3917:16;3956:2;3948:6;3945:14;3942:34;;;3972:1;3969;3962:12;3942:34;4017:7;4012:2;4003:6;3999:2;3995:15;3991:24;3988:37;3985:57;;;4038:1;4035;4028:12;3985:57;4069:2;4061:11;;;;;4091:6;;-1:-1:-1;3511:592:1;;-1:-1:-1;;;;3511:592:1:o;4108:180::-;4167:6;4220:2;4208:9;4199:7;4195:23;4191:32;4188:52;;;4236:1;4233;4226:12;4188:52;-1:-1:-1;4259:23:1;;4108:180;-1:-1:-1;4108:180:1:o;4293:257::-;4334:3;4372:5;4366:12;4399:6;4394:3;4387:19;4415:63;4471:6;4464:4;4459:3;4455:14;4448:4;4441:5;4437:16;4415:63;:::i;:::-;4532:2;4511:15;-1:-1:-1;;4507:29:1;4498:39;;;;4539:4;4494:50;;4293:257;-1:-1:-1;;4293:257:1:o;4555:470::-;4734:3;4772:6;4766:13;4788:53;4834:6;4829:3;4822:4;4814:6;4810:17;4788:53;:::i;:::-;4904:13;;4863:16;;;;4926:57;4904:13;4863:16;4960:4;4948:17;;4926:57;:::i;:::-;4999:20;;4555:470;-1:-1:-1;;;;4555:470:1:o;5828:488::-;-1:-1:-1;;;;;6097:15:1;;;6079:34;;6149:15;;6144:2;6129:18;;6122:43;6196:2;6181:18;;6174:34;;;6244:3;6239:2;6224:18;;6217:31;;;6022:4;;6265:45;;6290:19;;6282:6;6265:45;:::i;:::-;6257:53;5828:488;-1:-1:-1;;;;;;5828:488:1:o;6792:339::-;6935:2;6920:18;;6968:1;6957:13;;6947:144;;7013:10;7008:3;7004:20;7001:1;6994:31;7048:4;7045:1;7038:15;7076:4;7073:1;7066:15;6947:144;7100:25;;;6792:339;:::o;7136:390::-;7295:2;7284:9;7277:21;7334:6;7329:2;7318:9;7314:18;7307:34;7391:6;7383;7378:2;7367:9;7363:18;7350:48;7447:1;7418:22;;;7442:2;7414:31;;;7407:42;;;;7510:2;7489:15;;;-1:-1:-1;;7485:29:1;7470:45;7466:54;;7136:390;-1:-1:-1;7136:390:1:o;7531:219::-;7680:2;7669:9;7662:21;7643:4;7700:44;7740:2;7729:9;7725:18;7717:6;7700:44;:::i;16226:415::-;16428:2;16410:21;;;16467:2;16447:18;;;16440:30;16506:34;16501:2;16486:18;;16479:62;-1:-1:-1;;;16572:2:1;16557:18;;16550:49;16631:3;16616:19;;16226:415::o;21828:253::-;21868:3;-1:-1:-1;;;;;21957:2:1;21954:1;21950:10;21987:2;21984:1;21980:10;22018:3;22014:2;22010:12;22005:3;22002:21;21999:47;;;22026:18;;:::i;22086:128::-;22126:3;22157:1;22153:6;22150:1;22147:13;22144:39;;;22163:18;;:::i;:::-;-1:-1:-1;22199:9:1;;22086:128::o;22219:120::-;22259:1;22285;22275:35;;22290:18;;:::i;:::-;-1:-1:-1;22324:9:1;;22219:120::o;22344:168::-;22384:7;22450:1;22446;22442:6;22438:14;22435:1;22432:21;22427:1;22420:9;22413:17;22409:45;22406:71;;;22457:18;;:::i;:::-;-1:-1:-1;22497:9:1;;22344:168::o;22517:246::-;22557:4;-1:-1:-1;;;;;22670:10:1;;;;22640;;22692:12;;;22689:38;;;22707:18;;:::i;:::-;22744:13;;22517:246;-1:-1:-1;;;22517:246:1:o;22768:125::-;22808:4;22836:1;22833;22830:8;22827:34;;;22841:18;;:::i;:::-;-1:-1:-1;22878:9:1;;22768:125::o;22898:258::-;22970:1;22980:113;22994:6;22991:1;22988:13;22980:113;;;23070:11;;;23064:18;23051:11;;;23044:39;23016:2;23009:10;22980:113;;;23111:6;23108:1;23105:13;23102:48;;;-1:-1:-1;;23146:1:1;23128:16;;23121:27;22898:258::o;23161:136::-;23200:3;23228:5;23218:39;;23237:18;;:::i;:::-;-1:-1:-1;;;23273:18:1;;23161:136::o;23302:380::-;23381:1;23377:12;;;;23424;;;23445:61;;23499:4;23491:6;23487:17;23477:27;;23445:61;23552:2;23544:6;23541:14;23521:18;23518:38;23515:161;;;23598:10;23593:3;23589:20;23586:1;23579:31;23633:4;23630:1;23623:15;23661:4;23658:1;23651:15;23515:161;;23302:380;;;:::o;23687:135::-;23726:3;-1:-1:-1;;23747:17:1;;23744:43;;;23767:18;;:::i;:::-;-1:-1:-1;23814:1:1;23803:13;;23687:135::o;23827:112::-;23859:1;23885;23875:35;;23890:18;;:::i;:::-;-1:-1:-1;23924:9:1;;23827:112::o;23944:127::-;24005:10;24000:3;23996:20;23993:1;23986:31;24036:4;24033:1;24026:15;24060:4;24057:1;24050:15;24076:127;24137:10;24132:3;24128:20;24125:1;24118:31;24168:4;24165:1;24158:15;24192:4;24189:1;24182:15;24208:127;24269:10;24264:3;24260:20;24257:1;24250:31;24300:4;24297:1;24290:15;24324:4;24321:1;24314:15;24340:127;24401:10;24396:3;24392:20;24389:1;24382:31;24432:4;24429:1;24422:15;24456:4;24453:1;24446:15;24472:127;24533:10;24528:3;24524:20;24521:1;24514:31;24564:4;24561:1;24554:15;24588:4;24585:1;24578:15;24604:131;-1:-1:-1;;;;;;24678:32:1;;24668:43;;24658:71;;24725:1;24722;24715:12

Swarm Source

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