ETH Price: $3,166.84 (-7.37%)
Gas: 5 Gwei

Token

AIC (AIC)
 

Overview

Max Total Supply

314 AIC

Holders

146

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AIC
0x57cf314bf90623008cfef7182213c54d752f236c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

314 Artificial Intelligence Agents created in a mysterious laboratory. Launching into the unknown.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AIC

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-02-10
*/

// SPDX-License-Identifier: MIT
/*

 ▄▄▄▄▄▄▄▄▄▄▄  ▄▄▄▄▄▄▄▄▄▄▄  ▄▄▄▄▄▄▄▄▄▄▄ 
▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌
▐░█▀▀▀▀▀▀▀█░▌ ▀▀▀▀█░█▀▀▀▀ ▐░█▀▀▀▀▀▀▀▀▀ 
▐░▌       ▐░▌     ▐░▌     ▐░▌          
▐░█▄▄▄▄▄▄▄█░▌     ▐░▌     ▐░▌          
▐░░░░░░░░░░░▌     ▐░▌     ▐░▌          
▐░█▀▀▀▀▀▀▀█░▌     ▐░▌     ▐░▌          
▐░▌       ▐░▌     ▐░▌     ▐░▌          
▐░▌       ▐░▌ ▄▄▄▄█░█▄▄▄▄ ▐░█▄▄▄▄▄▄▄▄▄ 
▐░▌       ▐░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌
 ▀         ▀  ▀▀▀▀▀▀▀▀▀▀▀  ▀▀▀▀▀▀▀▀▀▀▀ 
                                       
           By Devko.dev#7286
 */

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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/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) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        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.
            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 if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } 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;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 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));
    }
}


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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


pragma solidity ^0.8.7;


contract AIC is ERC721, Ownable {

    using Strings for uint256;
    using Counters for Counters.Counter;
    using ECDSA for bytes32;

    string private _tokenBaseURI = "https://gateway.pinata.cloud/ipfs/Qmbo3azCxkdtqfYNcf981itDsL44kb3jTtRLTSPpSJ2ZNJ/";
    uint256 public AIC_MAX = 314;
    uint256 public AIC_PRICE = 0.25 ether;

    mapping(address => bool) public MINTERS_LIST;
    address private SIGNER = 0x7F83ddA23f8001C5c6323C1b205C7f53102AbF32;
    string private constant SIG_WORD = "AIC_SALE";
    bool public mintLive;

    Counters.Counter private _tokensMinted;

    constructor() ERC721("AIC", "AIC") {
        for(uint256 i = 0; i < 4; i++) {
            _tokensMinted.increment();
            _safeMint(msg.sender, _tokensMinted.current());
        }
    }
    
    function gift(address[] calldata receivers) external onlyOwner {
        require(_tokensMinted.current() + receivers.length <= AIC_MAX, "EXCEED_MAX");
        for (uint256 i = 0; i < receivers.length; i++) {
            _tokensMinted.increment();
            _safeMint(receivers[i], _tokensMinted.current());
        }
    }

    function matchAddresSigner(bytes memory signature) private view returns(bool) {
         bytes32 hash = keccak256(abi.encodePacked(
            "\x19Ethereum Signed Message:\n32",
            keccak256(abi.encodePacked(msg.sender, SIG_WORD)))
          );
        return SIGNER == hash.recover(signature);
    }   

    function mint(bytes memory signature) external payable {
        require(mintLive, "MINT_CLOSED");
        require(matchAddresSigner(signature), "DIRECT_MINT_DISALLOWED");
        require(_tokensMinted.current() + 1 <= AIC_MAX, "EXCEED_MAX");
        require(!MINTERS_LIST[msg.sender] , "MINTED_ALREADY");
        require(AIC_PRICE <= msg.value, "INSUFFICIENT_ETH");

        MINTERS_LIST[msg.sender] = true;
        _tokensMinted.increment();
        _safeMint(msg.sender, _tokensMinted.current());
    }
 
    function withdraw() external onlyOwner {
        uint256 currentBalance = address(this).balance;
        payable(0x3FD45f7fc6da24A360E75aFF9DE577ab5fbdcfE7).transfer(currentBalance * 500 / 1000);
        payable(0xbF6c44be5AC250B30726E9405d4fD80Bd16A1ae2).transfer(currentBalance * 115 / 1000);
        payable(0x773DAaCda9E4d7C7955BCef1fbF807D318501F44).transfer(currentBalance * 115 / 1000);
        payable(0xf05eA4Bcee0245020e9aCF59dFDaF4deD01292a5).transfer(currentBalance * 70  / 1000);
        payable(0xbbDC03ab8238eE062fC55673379F905ec1174921).transfer(currentBalance * 100 / 1000);
        payable(0x11111F01570EeAA3e5a2Fd51f4A2f127661B9834).transfer(address(this).balance);
    }
    
    function toggleMintStatus() external onlyOwner {
        mintLive = !mintLive;
    }
    
    function setBaseURI(string calldata URI) external onlyOwner {
        _tokenBaseURI = URI;
    }
    
    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }

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

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AIC_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MINTERS_LIST","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

610100604052605160808181529062002b0d60a03980516200002a9160079160209091019062000500565b5061013a6008556703782dace9d90000600955600b80546001600160a01b031916737f83dda23f8001c5c6323c1b205c7f53102abf321790553480156200007057600080fd5b5060408051808201825260038082526241494360e81b602080840182815285518087019096529285528401528151919291620000af9160009162000500565b508051620000c590600190602084019062000500565b505050620000e2620000dc6200014460201b60201c565b62000148565b60005b60048110156200013d5762000106600c6200019a60201b62000fd21760201c565b620001283362000122600c620001a360201b62000fdb1760201c565b620001a7565b806200013481620006ac565b915050620000e5565b50620006e0565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b5490565b620001c9828260405180602001604052806000815250620001cd60201b60201c565b5050565b620001d9838362000249565b620001e8600084848462000391565b620002445760405162461bcd60e51b8152602060048201526032602482015260008051602062002aed83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b038216620002a15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200023b565b6000818152600260205260409020546001600160a01b031615620003085760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200023b565b6001600160a01b03821660009081526003602052604081208054600192906200033390849062000654565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620003b2846001600160a01b0316620004fa60201b62000fdf1760201c565b15620004ee57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620003ec903390899088908890600401620005d9565b602060405180830381600087803b1580156200040757600080fd5b505af19250505080156200043a575060408051601f3d908101601f191682019092526200043791810190620005a6565b60015b620004d3573d8080156200046b576040519150601f19603f3d011682016040523d82523d6000602084013e62000470565b606091505b508051620004cb5760405162461bcd60e51b8152602060048201526032602482015260008051602062002aed83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200023b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620004f2565b5060015b949350505050565b3b151590565b8280546200050e906200066f565b90600052602060002090601f0160209004810192826200053257600085556200057d565b82601f106200054d57805160ff19168380011785556200057d565b828001600101855582156200057d579182015b828111156200057d57825182559160200191906001019062000560565b506200058b9291506200058f565b5090565b5b808211156200058b576000815560010162000590565b600060208284031215620005b957600080fd5b81516001600160e01b031981168114620005d257600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006285785810182015185820160a0015281016200060a565b828111156200063b57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600082198211156200066a576200066a620006ca565b500190565b600181811c908216806200068457607f821691505b60208210811415620006a657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620006c357620006c3620006ca565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6123fd80620006f06000396000f3fe6080604052600436106101855760003560e01c806370a08231116100d1578063b88d4fde1161008a578063d8cfb99911610064578063d8cfb99914610451578063e8656fcc14610466578063e985e9c514610487578063f2fde38b146104d057600080fd5b8063b88d4fde146103e1578063b8b1b6a914610401578063c87b56dd1461043157600080fd5b806370a0823114610346578063715018a6146103665780637ba0e2e71461037b5780638da5cb5b1461038e57806395d89b41146103ac578063a22cb465146103c157600080fd5b806323b872dd1161013e57806355f804b31161011857806355f804b3146102da57806356dc4076146102fa5780636352211e146103105780636c0e51a01461033057600080fd5b806323b872dd146102855780633ccfd60b146102a557806342842e0e146102ba57600080fd5b806301ffc9a71461019157806306fdde03146101c6578063081812fc146101e8578063095ea7b314610220578063163e1e611461024257806318160ddd1461026257600080fd5b3661018c57005b600080fd5b34801561019d57600080fd5b506101b16101ac366004611f14565b6104f0565b60405190151581526020015b60405180910390f35b3480156101d257600080fd5b506101db610542565b6040516101bd9190612160565b3480156101f457600080fd5b50610208610203366004611fe3565b6105d4565b6040516001600160a01b0390911681526020016101bd565b34801561022c57600080fd5b5061024061023b366004611e75565b61066e565b005b34801561024e57600080fd5b5061024061025d366004611e9f565b610784565b34801561026e57600080fd5b50610277610862565b6040519081526020016101bd565b34801561029157600080fd5b506102406102a0366004611d95565b610872565b3480156102b157600080fd5b506102406108a3565b3480156102c657600080fd5b506102406102d5366004611d95565b610ad0565b3480156102e657600080fd5b506102406102f5366004611f83565b610aeb565b34801561030657600080fd5b5061027760095481565b34801561031c57600080fd5b5061020861032b366004611fe3565b610b21565b34801561033c57600080fd5b5061027760085481565b34801561035257600080fd5b50610277610361366004611d40565b610b98565b34801561037257600080fd5b50610240610c1f565b610240610389366004611f4e565b610c55565b34801561039a57600080fd5b506006546001600160a01b0316610208565b3480156103b857600080fd5b506101db610e04565b3480156103cd57600080fd5b506102406103dc366004611e39565b610e13565b3480156103ed57600080fd5b506102406103fc366004611dd1565b610e1e565b34801561040d57600080fd5b506101b161041c366004611d40565b600a6020526000908152604090205460ff1681565b34801561043d57600080fd5b506101db61044c366004611fe3565b610e56565b34801561045d57600080fd5b50610240610eef565b34801561047257600080fd5b50600b546101b190600160a01b900460ff1681565b34801561049357600080fd5b506101b16104a2366004611d62565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104dc57600080fd5b506102406104eb366004611d40565b610f3a565b60006001600160e01b031982166380ac58cd60e01b148061052157506001600160e01b03198216635b5e139f60e01b145b8061053c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610551906122d9565b80601f016020809104026020016040519081016040528092919081815260200182805461057d906122d9565b80156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061067982610b21565b9050806001600160a01b0316836001600160a01b031614156106e75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610649565b336001600160a01b0382161480610703575061070381336104a2565b6107755760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610649565b61077f8383610fe5565b505050565b6006546001600160a01b031633146107ae5760405162461bcd60e51b8152600401610649906121c5565b600854816107bb600c5490565b6107c5919061224b565b11156108005760405162461bcd60e51b815260206004820152600a60248201526908ab0868a8a88be9a82b60b31b6044820152606401610649565b60005b8181101561077f57610819600c80546001019055565b61085083838381811061082e5761082e612385565b90506020020160208101906108439190611d40565b600c54611053565b611053565b8061085a81612314565b915050610803565b600061086d600c5490565b905090565b61087c338261106d565b6108985760405162461bcd60e51b8152600401610649906121fa565b61077f838383611164565b6006546001600160a01b031633146108cd5760405162461bcd60e51b8152600401610649906121c5565b47733fd45f7fc6da24a360e75aff9de577ab5fbdcfe76108fc6103e86108f5846101f4612277565b6108ff9190612263565b6040518115909202916000818181858888f19350505050158015610927573d6000803e3d6000fd5b5073bf6c44be5ac250b30726e9405d4fd80bd16a1ae26108fc6103e861094e846073612277565b6109589190612263565b6040518115909202916000818181858888f19350505050158015610980573d6000803e3d6000fd5b5073773daacda9e4d7c7955bcef1fbf807d318501f446108fc6103e86109a7846073612277565b6109b19190612263565b6040518115909202916000818181858888f193505050501580156109d9573d6000803e3d6000fd5b5073f05ea4bcee0245020e9acf59dfdaf4ded01292a56108fc6103e8610a00846046612277565b610a0a9190612263565b6040518115909202916000818181858888f19350505050158015610a32573d6000803e3d6000fd5b5073bbdc03ab8238ee062fc55673379f905ec11749216108fc6103e8610a59846064612277565b610a639190612263565b6040518115909202916000818181858888f19350505050158015610a8b573d6000803e3d6000fd5b506040517311111f01570eeaa3e5a2fd51f4a2f127661b9834904780156108fc02916000818181858888f19350505050158015610acc573d6000803e3d6000fd5b5050565b61077f83838360405180602001604052806000815250610e1e565b6006546001600160a01b03163314610b155760405162461bcd60e51b8152600401610649906121c5565b61077f60078383611bfe565b6000818152600260205260408120546001600160a01b03168061053c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610649565b60006001600160a01b038216610c035760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610649565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c495760405162461bcd60e51b8152600401610649906121c5565b610c536000611304565b565b600b54600160a01b900460ff16610c9c5760405162461bcd60e51b815260206004820152600b60248201526a1352539517d0d313d4d15160aa1b6044820152606401610649565b610ca581611356565b610cea5760405162461bcd60e51b81526020600482015260166024820152751112549150d517d352539517d11254d0531313d5d15160521b6044820152606401610649565b600854600c54610cfb90600161224b565b1115610d365760405162461bcd60e51b815260206004820152600a60248201526908ab0868a8a88be9a82b60b31b6044820152606401610649565b336000908152600a602052604090205460ff1615610d875760405162461bcd60e51b815260206004820152600e60248201526d4d494e5445445f414c524541445960901b6044820152606401610649565b346009541115610dcc5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b6044820152606401610649565b336000908152600a60205260409020805460ff19166001179055610df4600c80546001019055565b610e013361084b600c5490565b50565b606060018054610551906122d9565b610acc338383611411565b610e28338361106d565b610e445760405162461bcd60e51b8152600401610649906121fa565b610e50848484846114e0565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ebd5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610649565b6007610ec883611513565b604051602001610ed992919061207c565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610f195760405162461bcd60e51b8152600401610649906121c5565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6006546001600160a01b03163314610f645760405162461bcd60e51b8152600401610649906121c5565b6001600160a01b038116610fc95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610649565b610e0181611304565b80546001019055565b5490565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061101a82610b21565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610acc828260405180602001604052806000815250611611565b6000818152600260205260408120546001600160a01b03166110e65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610649565b60006110f183610b21565b9050806001600160a01b0316846001600160a01b0316148061112c5750836001600160a01b0316611121846105d4565b6001600160a01b0316145b8061115c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661117782610b21565b6001600160a01b0316146111df5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610649565b6001600160a01b0382166112415760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610649565b61124c600082610fe5565b6001600160a01b0383166000908152600360205260408120805460019290611275908490612296565b90915550506001600160a01b03821660009081526003602052604081208054600192906112a390849061224b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008033604051806040016040528060088152602001674149435f53414c4560c01b81525060405160200161138c929190612044565b60408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051601f19818403018152919052805160209091012090506113f98184611644565b600b546001600160a01b039081169116149392505050565b816001600160a01b0316836001600160a01b031614156114735760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610649565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114eb848484611164565b6114f784848484611668565b610e505760405162461bcd60e51b815260040161064990612173565b6060816115375750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611561578061154b81612314565b915061155a9050600a83612263565b915061153b565b60008167ffffffffffffffff81111561157c5761157c61239b565b6040519080825280601f01601f1916602001820160405280156115a6576020820181803683370190505b5090505b841561115c576115bb600183612296565b91506115c8600a8661232f565b6115d390603061224b565b60f81b8183815181106115e8576115e8612385565b60200101906001600160f81b031916908160001a90535061160a600a86612263565b94506115aa565b61161b8383611775565b6116286000848484611668565b61077f5760405162461bcd60e51b815260040161064990612173565b600080600061165385856118b7565b9150915061166081611927565b509392505050565b60006001600160a01b0384163b1561176a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116ac903390899088908890600401612123565b602060405180830381600087803b1580156116c657600080fd5b505af19250505080156116f6575060408051601f3d908101601f191682019092526116f391810190611f31565b60015b611750573d808015611724576040519150601f19603f3d011682016040523d82523d6000602084013e611729565b606091505b5080516117485760405162461bcd60e51b815260040161064990612173565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061115c565b506001949350505050565b6001600160a01b0382166117cb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610649565b6000818152600260205260409020546001600160a01b0316156118305760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610649565b6001600160a01b038216600090815260036020526040812080546001929061185990849061224b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000808251604114156118ee5760208301516040840151606085015160001a6118e287828585611ae2565b94509450505050611920565b825160401415611918576020830151604084015161190d868383611bcf565b935093505050611920565b506000905060025b9250929050565b600081600481111561193b5761193b61236f565b14156119445750565b60018160048111156119585761195861236f565b14156119a65760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610649565b60028160048111156119ba576119ba61236f565b1415611a085760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610649565b6003816004811115611a1c57611a1c61236f565b1415611a755760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610649565b6004816004811115611a8957611a8961236f565b1415610e015760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610649565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611b195750600090506003611bc6565b8460ff16601b14158015611b3157508460ff16601c14155b15611b425750600090506004611bc6565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611b96573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611bbf57600060019250925050611bc6565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01611bf087828885611ae2565b935093505050935093915050565b828054611c0a906122d9565b90600052602060002090601f016020900481019282611c2c5760008555611c72565b82601f10611c455782800160ff19823516178555611c72565b82800160010185558215611c72579182015b82811115611c72578235825591602001919060010190611c57565b50611c7e929150611c82565b5090565b5b80821115611c7e5760008155600101611c83565b80356001600160a01b0381168114611cae57600080fd5b919050565b600082601f830112611cc457600080fd5b813567ffffffffffffffff80821115611cdf57611cdf61239b565b604051601f8301601f19908116603f01168101908282118183101715611d0757611d0761239b565b81604052838152866020858801011115611d2057600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215611d5257600080fd5b611d5b82611c97565b9392505050565b60008060408385031215611d7557600080fd5b611d7e83611c97565b9150611d8c60208401611c97565b90509250929050565b600080600060608486031215611daa57600080fd5b611db384611c97565b9250611dc160208501611c97565b9150604084013590509250925092565b60008060008060808587031215611de757600080fd5b611df085611c97565b9350611dfe60208601611c97565b925060408501359150606085013567ffffffffffffffff811115611e2157600080fd5b611e2d87828801611cb3565b91505092959194509250565b60008060408385031215611e4c57600080fd5b611e5583611c97565b915060208301358015158114611e6a57600080fd5b809150509250929050565b60008060408385031215611e8857600080fd5b611e9183611c97565b946020939093013593505050565b60008060208385031215611eb257600080fd5b823567ffffffffffffffff80821115611eca57600080fd5b818501915085601f830112611ede57600080fd5b813581811115611eed57600080fd5b8660208260051b8501011115611f0257600080fd5b60209290920196919550909350505050565b600060208284031215611f2657600080fd5b8135611d5b816123b1565b600060208284031215611f4357600080fd5b8151611d5b816123b1565b600060208284031215611f6057600080fd5b813567ffffffffffffffff811115611f7757600080fd5b61115c84828501611cb3565b60008060208385031215611f9657600080fd5b823567ffffffffffffffff80821115611fae57600080fd5b818501915085601f830112611fc257600080fd5b813581811115611fd157600080fd5b866020828501011115611f0257600080fd5b600060208284031215611ff557600080fd5b5035919050565b600081518084526120148160208601602086016122ad565b601f01601f19169290920160200192915050565b6000815161203a8185602086016122ad565b9290920192915050565b6bffffffffffffffffffffffff198360601b1681526000825161206e8160148501602087016122ad565b919091016014019392505050565b600080845481600182811c91508083168061209857607f831692505b60208084108214156120b857634e487b7160e01b86526022600452602486fd5b8180156120cc57600181146120dd5761210a565b60ff1986168952848901965061210a565b60008b81526020902060005b868110156121025781548b8201529085019083016120e9565b505084890196505b50505050505061211a8185612028565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061215690830184611ffc565b9695505050505050565b602081526000611d5b6020830184611ffc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561225e5761225e612343565b500190565b60008261227257612272612359565b500490565b600081600019048311821515161561229157612291612343565b500290565b6000828210156122a8576122a8612343565b500390565b60005b838110156122c85781810151838201526020016122b0565b83811115610e505750506000910152565b600181811c908216806122ed57607f821691505b6020821081141561230e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561232857612328612343565b5060010190565b60008261233e5761233e612359565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0157600080fdfea26469706673582212204e5e58371e3c53cdfd486a5b0c761981489f6185279ea9eb115d7a6386bd39b764736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e20455243373231526568747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d626f33617a43786b64747166594e6366393831697444734c34346b62336a5474524c54535070534a325a4e4a2f

Deployed Bytecode

0x6080604052600436106101855760003560e01c806370a08231116100d1578063b88d4fde1161008a578063d8cfb99911610064578063d8cfb99914610451578063e8656fcc14610466578063e985e9c514610487578063f2fde38b146104d057600080fd5b8063b88d4fde146103e1578063b8b1b6a914610401578063c87b56dd1461043157600080fd5b806370a0823114610346578063715018a6146103665780637ba0e2e71461037b5780638da5cb5b1461038e57806395d89b41146103ac578063a22cb465146103c157600080fd5b806323b872dd1161013e57806355f804b31161011857806355f804b3146102da57806356dc4076146102fa5780636352211e146103105780636c0e51a01461033057600080fd5b806323b872dd146102855780633ccfd60b146102a557806342842e0e146102ba57600080fd5b806301ffc9a71461019157806306fdde03146101c6578063081812fc146101e8578063095ea7b314610220578063163e1e611461024257806318160ddd1461026257600080fd5b3661018c57005b600080fd5b34801561019d57600080fd5b506101b16101ac366004611f14565b6104f0565b60405190151581526020015b60405180910390f35b3480156101d257600080fd5b506101db610542565b6040516101bd9190612160565b3480156101f457600080fd5b50610208610203366004611fe3565b6105d4565b6040516001600160a01b0390911681526020016101bd565b34801561022c57600080fd5b5061024061023b366004611e75565b61066e565b005b34801561024e57600080fd5b5061024061025d366004611e9f565b610784565b34801561026e57600080fd5b50610277610862565b6040519081526020016101bd565b34801561029157600080fd5b506102406102a0366004611d95565b610872565b3480156102b157600080fd5b506102406108a3565b3480156102c657600080fd5b506102406102d5366004611d95565b610ad0565b3480156102e657600080fd5b506102406102f5366004611f83565b610aeb565b34801561030657600080fd5b5061027760095481565b34801561031c57600080fd5b5061020861032b366004611fe3565b610b21565b34801561033c57600080fd5b5061027760085481565b34801561035257600080fd5b50610277610361366004611d40565b610b98565b34801561037257600080fd5b50610240610c1f565b610240610389366004611f4e565b610c55565b34801561039a57600080fd5b506006546001600160a01b0316610208565b3480156103b857600080fd5b506101db610e04565b3480156103cd57600080fd5b506102406103dc366004611e39565b610e13565b3480156103ed57600080fd5b506102406103fc366004611dd1565b610e1e565b34801561040d57600080fd5b506101b161041c366004611d40565b600a6020526000908152604090205460ff1681565b34801561043d57600080fd5b506101db61044c366004611fe3565b610e56565b34801561045d57600080fd5b50610240610eef565b34801561047257600080fd5b50600b546101b190600160a01b900460ff1681565b34801561049357600080fd5b506101b16104a2366004611d62565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104dc57600080fd5b506102406104eb366004611d40565b610f3a565b60006001600160e01b031982166380ac58cd60e01b148061052157506001600160e01b03198216635b5e139f60e01b145b8061053c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610551906122d9565b80601f016020809104026020016040519081016040528092919081815260200182805461057d906122d9565b80156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061067982610b21565b9050806001600160a01b0316836001600160a01b031614156106e75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610649565b336001600160a01b0382161480610703575061070381336104a2565b6107755760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610649565b61077f8383610fe5565b505050565b6006546001600160a01b031633146107ae5760405162461bcd60e51b8152600401610649906121c5565b600854816107bb600c5490565b6107c5919061224b565b11156108005760405162461bcd60e51b815260206004820152600a60248201526908ab0868a8a88be9a82b60b31b6044820152606401610649565b60005b8181101561077f57610819600c80546001019055565b61085083838381811061082e5761082e612385565b90506020020160208101906108439190611d40565b600c54611053565b611053565b8061085a81612314565b915050610803565b600061086d600c5490565b905090565b61087c338261106d565b6108985760405162461bcd60e51b8152600401610649906121fa565b61077f838383611164565b6006546001600160a01b031633146108cd5760405162461bcd60e51b8152600401610649906121c5565b47733fd45f7fc6da24a360e75aff9de577ab5fbdcfe76108fc6103e86108f5846101f4612277565b6108ff9190612263565b6040518115909202916000818181858888f19350505050158015610927573d6000803e3d6000fd5b5073bf6c44be5ac250b30726e9405d4fd80bd16a1ae26108fc6103e861094e846073612277565b6109589190612263565b6040518115909202916000818181858888f19350505050158015610980573d6000803e3d6000fd5b5073773daacda9e4d7c7955bcef1fbf807d318501f446108fc6103e86109a7846073612277565b6109b19190612263565b6040518115909202916000818181858888f193505050501580156109d9573d6000803e3d6000fd5b5073f05ea4bcee0245020e9acf59dfdaf4ded01292a56108fc6103e8610a00846046612277565b610a0a9190612263565b6040518115909202916000818181858888f19350505050158015610a32573d6000803e3d6000fd5b5073bbdc03ab8238ee062fc55673379f905ec11749216108fc6103e8610a59846064612277565b610a639190612263565b6040518115909202916000818181858888f19350505050158015610a8b573d6000803e3d6000fd5b506040517311111f01570eeaa3e5a2fd51f4a2f127661b9834904780156108fc02916000818181858888f19350505050158015610acc573d6000803e3d6000fd5b5050565b61077f83838360405180602001604052806000815250610e1e565b6006546001600160a01b03163314610b155760405162461bcd60e51b8152600401610649906121c5565b61077f60078383611bfe565b6000818152600260205260408120546001600160a01b03168061053c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610649565b60006001600160a01b038216610c035760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610649565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c495760405162461bcd60e51b8152600401610649906121c5565b610c536000611304565b565b600b54600160a01b900460ff16610c9c5760405162461bcd60e51b815260206004820152600b60248201526a1352539517d0d313d4d15160aa1b6044820152606401610649565b610ca581611356565b610cea5760405162461bcd60e51b81526020600482015260166024820152751112549150d517d352539517d11254d0531313d5d15160521b6044820152606401610649565b600854600c54610cfb90600161224b565b1115610d365760405162461bcd60e51b815260206004820152600a60248201526908ab0868a8a88be9a82b60b31b6044820152606401610649565b336000908152600a602052604090205460ff1615610d875760405162461bcd60e51b815260206004820152600e60248201526d4d494e5445445f414c524541445960901b6044820152606401610649565b346009541115610dcc5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b6044820152606401610649565b336000908152600a60205260409020805460ff19166001179055610df4600c80546001019055565b610e013361084b600c5490565b50565b606060018054610551906122d9565b610acc338383611411565b610e28338361106d565b610e445760405162461bcd60e51b8152600401610649906121fa565b610e50848484846114e0565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ebd5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610649565b6007610ec883611513565b604051602001610ed992919061207c565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610f195760405162461bcd60e51b8152600401610649906121c5565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6006546001600160a01b03163314610f645760405162461bcd60e51b8152600401610649906121c5565b6001600160a01b038116610fc95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610649565b610e0181611304565b80546001019055565b5490565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061101a82610b21565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610acc828260405180602001604052806000815250611611565b6000818152600260205260408120546001600160a01b03166110e65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610649565b60006110f183610b21565b9050806001600160a01b0316846001600160a01b0316148061112c5750836001600160a01b0316611121846105d4565b6001600160a01b0316145b8061115c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661117782610b21565b6001600160a01b0316146111df5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610649565b6001600160a01b0382166112415760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610649565b61124c600082610fe5565b6001600160a01b0383166000908152600360205260408120805460019290611275908490612296565b90915550506001600160a01b03821660009081526003602052604081208054600192906112a390849061224b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008033604051806040016040528060088152602001674149435f53414c4560c01b81525060405160200161138c929190612044565b60408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051601f19818403018152919052805160209091012090506113f98184611644565b600b546001600160a01b039081169116149392505050565b816001600160a01b0316836001600160a01b031614156114735760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610649565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114eb848484611164565b6114f784848484611668565b610e505760405162461bcd60e51b815260040161064990612173565b6060816115375750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611561578061154b81612314565b915061155a9050600a83612263565b915061153b565b60008167ffffffffffffffff81111561157c5761157c61239b565b6040519080825280601f01601f1916602001820160405280156115a6576020820181803683370190505b5090505b841561115c576115bb600183612296565b91506115c8600a8661232f565b6115d390603061224b565b60f81b8183815181106115e8576115e8612385565b60200101906001600160f81b031916908160001a90535061160a600a86612263565b94506115aa565b61161b8383611775565b6116286000848484611668565b61077f5760405162461bcd60e51b815260040161064990612173565b600080600061165385856118b7565b9150915061166081611927565b509392505050565b60006001600160a01b0384163b1561176a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116ac903390899088908890600401612123565b602060405180830381600087803b1580156116c657600080fd5b505af19250505080156116f6575060408051601f3d908101601f191682019092526116f391810190611f31565b60015b611750573d808015611724576040519150601f19603f3d011682016040523d82523d6000602084013e611729565b606091505b5080516117485760405162461bcd60e51b815260040161064990612173565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061115c565b506001949350505050565b6001600160a01b0382166117cb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610649565b6000818152600260205260409020546001600160a01b0316156118305760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610649565b6001600160a01b038216600090815260036020526040812080546001929061185990849061224b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000808251604114156118ee5760208301516040840151606085015160001a6118e287828585611ae2565b94509450505050611920565b825160401415611918576020830151604084015161190d868383611bcf565b935093505050611920565b506000905060025b9250929050565b600081600481111561193b5761193b61236f565b14156119445750565b60018160048111156119585761195861236f565b14156119a65760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610649565b60028160048111156119ba576119ba61236f565b1415611a085760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610649565b6003816004811115611a1c57611a1c61236f565b1415611a755760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610649565b6004816004811115611a8957611a8961236f565b1415610e015760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610649565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611b195750600090506003611bc6565b8460ff16601b14158015611b3157508460ff16601c14155b15611b425750600090506004611bc6565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611b96573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611bbf57600060019250925050611bc6565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01611bf087828885611ae2565b935093505050935093915050565b828054611c0a906122d9565b90600052602060002090601f016020900481019282611c2c5760008555611c72565b82601f10611c455782800160ff19823516178555611c72565b82800160010185558215611c72579182015b82811115611c72578235825591602001919060010190611c57565b50611c7e929150611c82565b5090565b5b80821115611c7e5760008155600101611c83565b80356001600160a01b0381168114611cae57600080fd5b919050565b600082601f830112611cc457600080fd5b813567ffffffffffffffff80821115611cdf57611cdf61239b565b604051601f8301601f19908116603f01168101908282118183101715611d0757611d0761239b565b81604052838152866020858801011115611d2057600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215611d5257600080fd5b611d5b82611c97565b9392505050565b60008060408385031215611d7557600080fd5b611d7e83611c97565b9150611d8c60208401611c97565b90509250929050565b600080600060608486031215611daa57600080fd5b611db384611c97565b9250611dc160208501611c97565b9150604084013590509250925092565b60008060008060808587031215611de757600080fd5b611df085611c97565b9350611dfe60208601611c97565b925060408501359150606085013567ffffffffffffffff811115611e2157600080fd5b611e2d87828801611cb3565b91505092959194509250565b60008060408385031215611e4c57600080fd5b611e5583611c97565b915060208301358015158114611e6a57600080fd5b809150509250929050565b60008060408385031215611e8857600080fd5b611e9183611c97565b946020939093013593505050565b60008060208385031215611eb257600080fd5b823567ffffffffffffffff80821115611eca57600080fd5b818501915085601f830112611ede57600080fd5b813581811115611eed57600080fd5b8660208260051b8501011115611f0257600080fd5b60209290920196919550909350505050565b600060208284031215611f2657600080fd5b8135611d5b816123b1565b600060208284031215611f4357600080fd5b8151611d5b816123b1565b600060208284031215611f6057600080fd5b813567ffffffffffffffff811115611f7757600080fd5b61115c84828501611cb3565b60008060208385031215611f9657600080fd5b823567ffffffffffffffff80821115611fae57600080fd5b818501915085601f830112611fc257600080fd5b813581811115611fd157600080fd5b866020828501011115611f0257600080fd5b600060208284031215611ff557600080fd5b5035919050565b600081518084526120148160208601602086016122ad565b601f01601f19169290920160200192915050565b6000815161203a8185602086016122ad565b9290920192915050565b6bffffffffffffffffffffffff198360601b1681526000825161206e8160148501602087016122ad565b919091016014019392505050565b600080845481600182811c91508083168061209857607f831692505b60208084108214156120b857634e487b7160e01b86526022600452602486fd5b8180156120cc57600181146120dd5761210a565b60ff1986168952848901965061210a565b60008b81526020902060005b868110156121025781548b8201529085019083016120e9565b505084890196505b50505050505061211a8185612028565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061215690830184611ffc565b9695505050505050565b602081526000611d5b6020830184611ffc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561225e5761225e612343565b500190565b60008261227257612272612359565b500490565b600081600019048311821515161561229157612291612343565b500290565b6000828210156122a8576122a8612343565b500390565b60005b838110156122c85781810151838201526020016122b0565b83811115610e505750506000910152565b600181811c908216806122ed57607f821691505b6020821081141561230e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561232857612328612343565b5060010190565b60008261233e5761233e612359565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0157600080fdfea26469706673582212204e5e58371e3c53cdfd486a5b0c761981489f6185279ea9eb115d7a6386bd39b764736f6c63430008070033

Deployed Bytecode Sourcemap

47616:3313:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35145:305;;;;;;;;;;-1:-1:-1;35145:305:0;;;;;:::i;:::-;;:::i;:::-;;;8372:14:1;;8365:22;8347:41;;8335:2;8320:18;35145:305:0;;;;;;;;36090:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37649:221::-;;;;;;;;;;-1:-1:-1;37649:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7670:32:1;;;7652:51;;7640:2;7625:18;37649:221:0;7506:203:1;37172:411:0;;;;;;;;;;-1:-1:-1;37172:411:0;;;;;:::i;:::-;;:::i;:::-;;48427:330;;;;;;;;;;-1:-1:-1;48427:330:0;;;;;:::i;:::-;;:::i;50787:102::-;;;;;;;;;;;;;:::i;:::-;;;18735:25:1;;;18723:2;18708:18;50787:102:0;18589:177:1;38399:339:0;;;;;;;;;;-1:-1:-1;38399:339:0;;;;;:::i;:::-;;:::i;49617:698::-;;;;;;;;;;;;;:::i;38809:185::-;;;;;;;;;;-1:-1:-1;38809:185:0;;;;;:::i;:::-;;:::i;50425:98::-;;;;;;;;;;-1:-1:-1;50425:98:0;;;;;:::i;:::-;;:::i;47919:37::-;;;;;;;;;;;;;;;;35784:239;;;;;;;;;;-1:-1:-1;35784:239:0;;;;;:::i;:::-;;:::i;47884:28::-;;;;;;;;;;;;;;;;35514:208;;;;;;;;;;-1:-1:-1;35514:208:0;;;;;:::i;:::-;;:::i;16592:103::-;;;;;;;;;;;;;:::i;49093:515::-;;;;;;:::i;:::-;;:::i;15941:87::-;;;;;;;;;;-1:-1:-1;16014:6:0;;-1:-1:-1;;;;;16014:6:0;15941:87;;36259:104;;;;;;;;;;;;;:::i;37942:155::-;;;;;;;;;;-1:-1:-1;37942:155:0;;;;;:::i;:::-;;:::i;39065:328::-;;;;;;;;;;-1:-1:-1;39065:328:0;;;;;:::i;:::-;;:::i;47965:44::-;;;;;;;;;;-1:-1:-1;47965:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;50535:244;;;;;;;;;;-1:-1:-1;50535:244:0;;;;;:::i;:::-;;:::i;50327:86::-;;;;;;;;;;;;;:::i;48142:20::-;;;;;;;;;;-1:-1:-1;48142:20:0;;;;-1:-1:-1;;;48142:20:0;;;;;;38168:164;;;;;;;;;;-1:-1:-1;38168:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38289:25:0;;;38265:4;38289:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38168:164;16850:201;;;;;;;;;;-1:-1:-1;16850:201:0;;;;;:::i;:::-;;:::i;35145:305::-;35247:4;-1:-1:-1;;;;;;35284:40:0;;-1:-1:-1;;;35284:40:0;;:105;;-1:-1:-1;;;;;;;35341:48:0;;-1:-1:-1;;;35341:48:0;35284:105;:158;;;-1:-1:-1;;;;;;;;;;28224:40:0;;;35406:36;35264:178;35145:305;-1:-1:-1;;35145:305:0:o;36090:100::-;36144:13;36177:5;36170:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36090:100;:::o;37649:221::-;37725:7;40992:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40992:16:0;37745:73;;;;-1:-1:-1;;;37745:73:0;;15743:2:1;37745:73:0;;;15725:21:1;15782:2;15762:18;;;15755:30;15821:34;15801:18;;;15794:62;-1:-1:-1;;;15872:18:1;;;15865:42;15924:19;;37745:73:0;;;;;;;;;-1:-1:-1;37838:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37838:24:0;;37649:221::o;37172:411::-;37253:13;37269:23;37284:7;37269:14;:23::i;:::-;37253:39;;37317:5;-1:-1:-1;;;;;37311:11:0;:2;-1:-1:-1;;;;;37311:11:0;;;37303:57;;;;-1:-1:-1;;;37303:57:0;;17287:2:1;37303:57:0;;;17269:21:1;17326:2;17306:18;;;17299:30;17365:34;17345:18;;;17338:62;-1:-1:-1;;;17416:18:1;;;17409:31;17457:19;;37303:57:0;17085:397:1;37303:57:0;14800:10;-1:-1:-1;;;;;37395:21:0;;;;:62;;-1:-1:-1;37420:37:0;37437:5;14800:10;38168:164;:::i;37420:37::-;37373:168;;;;-1:-1:-1;;;37373:168:0;;13733:2:1;37373:168:0;;;13715:21:1;13772:2;13752:18;;;13745:30;13811:34;13791:18;;;13784:62;13882:26;13862:18;;;13855:54;13926:19;;37373:168:0;13531:420:1;37373:168:0;37554:21;37563:2;37567:7;37554:8;:21::i;:::-;37242:341;37172:411;;:::o;48427:330::-;16014:6;;-1:-1:-1;;;;;16014:6:0;14800:10;16161:23;16153:68;;;;-1:-1:-1;;;16153:68:0;;;;;;;:::i;:::-;48555:7:::1;::::0;48535:9;48509:23:::1;:13;2023:14:::0;;1931:114;48509:23:::1;:42;;;;:::i;:::-;:53;;48501:76;;;::::0;-1:-1:-1;;;48501:76:0;;17689:2:1;48501:76:0::1;::::0;::::1;17671:21:1::0;17728:2;17708:18;;;17701:30;-1:-1:-1;;;17747:18:1;;;17740:40;17797:18;;48501:76:0::1;17487:334:1::0;48501:76:0::1;48593:9;48588:162;48608:20:::0;;::::1;48588:162;;;48650:25;:13;2142:19:::0;;2160:1;2142:19;;;2053:127;48650:25:::1;48690:48;48700:9;;48710:1;48700:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;48714:13;2023:14:::0;48690:9:::1;:48::i;48714:23::-;48690:9;:48::i;:::-;48630:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48588:162;;50787:102:::0;50831:7;50858:23;:13;2023:14;;1931:114;50858:23;50851:30;;50787:102;:::o;38399:339::-;38594:41;14800:10;38627:7;38594:18;:41::i;:::-;38586:103;;;;-1:-1:-1;;;38586:103:0;;;;;;;:::i;:::-;38702:28;38712:4;38718:2;38722:7;38702:9;:28::i;49617:698::-;16014:6;;-1:-1:-1;;;;;16014:6:0;14800:10;16161:23;16153:68;;;;-1:-1:-1;;;16153:68:0;;;;;;;:::i;:::-;49692:21:::1;49732:42;49724:89;49808:4;49785:20;49692:21:::0;49802:3:::1;49785:20;:::i;:::-;:27;;;;:::i;:::-;49724:89;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49832:42:0::1;49824:89;49908:4;49885:20;:14:::0;49902:3:::1;49885:20;:::i;:::-;:27;;;;:::i;:::-;49824:89;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49932:42:0::1;49924:89;50008:4;49985:20;:14:::0;50002:3:::1;49985:20;:::i;:::-;:27;;;;:::i;:::-;49924:89;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;50032:42:0::1;50024:89;50108:4;50085:19;:14:::0;50102:2:::1;50085:19;:::i;:::-;:27;;;;:::i;:::-;50024:89;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;50132:42:0::1;50124:89;50208:4;50185:20;:14:::0;50202:3:::1;50185:20;:::i;:::-;:27;;;;:::i;:::-;50124:89;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;50224:83:0::1;::::0;50232:42:::1;::::0;50285:21:::1;50224:83:::0;::::1;;;::::0;::::1;::::0;;;50285:21;50232:42;50224:83;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49656:659;49617:698::o:0;38809:185::-;38947:39;38964:4;38970:2;38974:7;38947:39;;;;;;;;;;;;:16;:39::i;50425:98::-;16014:6;;-1:-1:-1;;;;;16014:6:0;14800:10;16161:23;16153:68;;;;-1:-1:-1;;;16153:68:0;;;;;;;:::i;:::-;50496:19:::1;:13;50512:3:::0;;50496:19:::1;:::i;35784:239::-:0;35856:7;35892:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35892:16:0;35927:19;35919:73;;;;-1:-1:-1;;;35919:73:0;;14569:2:1;35919:73:0;;;14551:21:1;14608:2;14588:18;;;14581:30;14647:34;14627:18;;;14620:62;-1:-1:-1;;;14698:18:1;;;14691:39;14747:19;;35919:73:0;14367:405:1;35514:208:0;35586:7;-1:-1:-1;;;;;35614:19:0;;35606:74;;;;-1:-1:-1;;;35606:74:0;;14158:2:1;35606:74:0;;;14140:21:1;14197:2;14177:18;;;14170:30;14236:34;14216:18;;;14209:62;-1:-1:-1;;;14287:18:1;;;14280:40;14337:19;;35606:74:0;13956:406:1;35606:74:0;-1:-1:-1;;;;;;35698:16:0;;;;;:9;:16;;;;;;;35514:208::o;16592:103::-;16014:6;;-1:-1:-1;;;;;16014:6:0;14800:10;16161:23;16153:68;;;;-1:-1:-1;;;16153:68:0;;;;;;;:::i;:::-;16657:30:::1;16684:1;16657:18;:30::i;:::-;16592:103::o:0;49093:515::-;49167:8;;-1:-1:-1;;;49167:8:0;;;;49159:32;;;;-1:-1:-1;;;49159:32:0;;11475:2:1;49159:32:0;;;11457:21:1;11514:2;11494:18;;;11487:30;-1:-1:-1;;;11533:18:1;;;11526:41;11584:18;;49159:32:0;11273:335:1;49159:32:0;49210:28;49228:9;49210:17;:28::i;:::-;49202:63;;;;-1:-1:-1;;;49202:63:0;;9581:2:1;49202:63:0;;;9563:21:1;9620:2;9600:18;;;9593:30;-1:-1:-1;;;9639:18:1;;;9632:52;9701:18;;49202:63:0;9379:346:1;49202:63:0;49315:7;;49284:13;2023:14;49284:27;;49310:1;49284:27;:::i;:::-;:38;;49276:61;;;;-1:-1:-1;;;49276:61:0;;17689:2:1;49276:61:0;;;17671:21:1;17728:2;17708:18;;;17701:30;-1:-1:-1;;;17747:18:1;;;17740:40;17797:18;;49276:61:0;17487:334:1;49276:61:0;49370:10;49357:24;;;;:12;:24;;;;;;;;49356:25;49348:53;;;;-1:-1:-1;;;49348:53:0;;13390:2:1;49348:53:0;;;13372:21:1;13429:2;13409:18;;;13402:30;-1:-1:-1;;;13448:18:1;;;13441:44;13502:18;;49348:53:0;13188:338:1;49348:53:0;49433:9;49420;;:22;;49412:51;;;;-1:-1:-1;;;49412:51:0;;18446:2:1;49412:51:0;;;18428:21:1;18485:2;18465:18;;;18458:30;-1:-1:-1;;;18504:18:1;;;18497:46;18560:18;;49412:51:0;18244:340:1;49412:51:0;49489:10;49476:24;;;;:12;:24;;;;;:31;;-1:-1:-1;;49476:31:0;49503:4;49476:31;;;49518:25;:13;2142:19;;2160:1;2142:19;;;2053:127;49518:25;49554:46;49564:10;49576:23;:13;2023:14;;1931:114;49554:46;49093:515;:::o;36259:104::-;36315:13;36348:7;36341:14;;;;;:::i;37942:155::-;38037:52;14800:10;38070:8;38080;38037:18;:52::i;39065:328::-;39240:41;14800:10;39273:7;39240:18;:41::i;:::-;39232:103;;;;-1:-1:-1;;;39232:103:0;;;;;;;:::i;:::-;39346:39;39360:4;39366:2;39370:7;39379:5;39346:13;:39::i;:::-;39065:328;;;;:::o;50535:244::-;40968:4;40992:16;;;:7;:16;;;;;;50608:13;;-1:-1:-1;;;;;40992:16:0;50634:60;;;;-1:-1:-1;;;50634:60:0;;16927:2:1;50634:60:0;;;16909:21:1;16966:2;16946:18;;;16939:30;17005:33;16985:18;;;16978:61;17056:18;;50634:60:0;16725:355:1;50634:60:0;50736:13;50751:18;:7;:16;:18::i;:::-;50719:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50705:66;;50535:244;;;:::o;50327:86::-;16014:6;;-1:-1:-1;;;;;16014:6:0;14800:10;16161:23;16153:68;;;;-1:-1:-1;;;16153:68:0;;;;;;;:::i;:::-;50397:8:::1;::::0;;-1:-1:-1;;;;50385:20:0;::::1;-1:-1:-1::0;;;50397:8:0;;;::::1;;;50396:9;50385:20:::0;;::::1;;::::0;;50327:86::o;16850:201::-;16014:6;;-1:-1:-1;;;;;16014:6:0;14800:10;16161:23;16153:68;;;;-1:-1:-1;;;16153:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16939:22:0;::::1;16931:73;;;::::0;-1:-1:-1;;;16931:73:0;;10711:2:1;16931:73:0::1;::::0;::::1;10693:21:1::0;10750:2;10730:18;;;10723:30;10789:34;10769:18;;;10762:62;-1:-1:-1;;;10840:18:1;;;10833:36;10886:19;;16931:73:0::1;10509:402:1::0;16931:73:0::1;17015:28;17034:8;17015:18;:28::i;2053:127::-:0;2142:19;;2160:1;2142:19;;;2053:127::o;1931:114::-;2023:14;;1931:114::o;18175:387::-;18498:20;18546:8;;;18175:387::o;44885:174::-;44960:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44960:29:0;-1:-1:-1;;;;;44960:29:0;;;;;;;;:24;;45014:23;44960:24;45014:14;:23::i;:::-;-1:-1:-1;;;;;45005:46:0;;;;;;;;;;;44885:174;;:::o;41887:110::-;41963:26;41973:2;41977:7;41963:26;;;;;;;;;;;;:9;:26::i;41197:348::-;41290:4;40992:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40992:16:0;41307:73;;;;-1:-1:-1;;;41307:73:0;;12977:2:1;41307:73:0;;;12959:21:1;13016:2;12996:18;;;12989:30;13055:34;13035:18;;;13028:62;-1:-1:-1;;;13106:18:1;;;13099:42;13158:19;;41307:73:0;12775:408:1;41307:73:0;41391:13;41407:23;41422:7;41407:14;:23::i;:::-;41391:39;;41460:5;-1:-1:-1;;;;;41449:16:0;:7;-1:-1:-1;;;;;41449:16:0;;:51;;;;41493:7;-1:-1:-1;;;;;41469:31:0;:20;41481:7;41469:11;:20::i;:::-;-1:-1:-1;;;;;41469:31:0;;41449:51;:87;;;-1:-1:-1;;;;;;38289:25:0;;;38265:4;38289:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41504:32;41441:96;41197:348;-1:-1:-1;;;;41197:348:0:o;44189:578::-;44348:4;-1:-1:-1;;;;;44321:31:0;:23;44336:7;44321:14;:23::i;:::-;-1:-1:-1;;;;;44321:31:0;;44313:85;;;;-1:-1:-1;;;44313:85:0;;16517:2:1;44313:85:0;;;16499:21:1;16556:2;16536:18;;;16529:30;16595:34;16575:18;;;16568:62;-1:-1:-1;;;16646:18:1;;;16639:39;16695:19;;44313:85:0;16315:405:1;44313:85:0;-1:-1:-1;;;;;44417:16:0;;44409:65;;;;-1:-1:-1;;;44409:65:0;;11815:2:1;44409:65:0;;;11797:21:1;11854:2;11834:18;;;11827:30;11893:34;11873:18;;;11866:62;-1:-1:-1;;;11944:18:1;;;11937:34;11988:19;;44409:65:0;11613:400:1;44409:65:0;44591:29;44608:1;44612:7;44591:8;:29::i;:::-;-1:-1:-1;;;;;44633:15:0;;;;;;:9;:15;;;;;:20;;44652:1;;44633:15;:20;;44652:1;;44633:20;:::i;:::-;;;;-1:-1:-1;;;;;;;44664:13:0;;;;;;:9;:13;;;;;:18;;44681:1;;44664:13;:18;;44681:1;;44664:18;:::i;:::-;;;;-1:-1:-1;;44693:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44693:21:0;-1:-1:-1;;;;;44693:21:0;;;;;;;;;44732:27;;44693:16;;44732:27;;;;;;;44189:578;;;:::o;17211:191::-;17304:6;;;-1:-1:-1;;;;;17321:17:0;;;-1:-1:-1;;;;;;17321:17:0;;;;;;;17354:40;;17304:6;;;17321:17;17304:6;;17354:40;;17285:16;;17354:40;17274:128;17211:191;:::o;48765:317::-;48837:4;48855:12;48987:10;48999:8;;;;;;;;;;;;;-1:-1:-1;;;48999:8:0;;;48970:38;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;48970:38:0;;;;;;;;;;48960:49;;48970:38;48960:49;;;;7363:66:1;48880:130:0;;;7351:79:1;;;;7446:12;;;7439:28;7483:12;;48880:130:0;;;-1:-1:-1;;48880:130:0;;;;;;;;;48870:153;;48880:130;48870:153;;;;;-1:-1:-1;49051:23:0;48870:153;49064:9;49051:12;:23::i;:::-;49041:6;;-1:-1:-1;;;;;49041:6:0;;;:33;;;;48765:317;-1:-1:-1;;;48765:317:0:o;45201:315::-;45356:8;-1:-1:-1;;;;;45347:17:0;:5;-1:-1:-1;;;;;45347:17:0;;;45339:55;;;;-1:-1:-1;;;45339:55:0;;12220:2:1;45339:55:0;;;12202:21:1;12259:2;12239:18;;;12232:30;12298:27;12278:18;;;12271:55;12343:18;;45339:55:0;12018:349:1;45339:55:0;-1:-1:-1;;;;;45405:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;45405:46:0;;;;;;;;;;45467:41;;8347::1;;;45467::0;;8320:18:1;45467:41:0;;;;;;;45201:315;;;:::o;40275:::-;40432:28;40442:4;40448:2;40452:7;40432:9;:28::i;:::-;40479:48;40502:4;40508:2;40512:7;40521:5;40479:22;:48::i;:::-;40471:111;;;;-1:-1:-1;;;40471:111:0;;;;;;;:::i;2835:723::-;2891:13;3112:10;3108:53;;-1:-1:-1;;3139:10:0;;;;;;;;;;;;-1:-1:-1;;;3139:10:0;;;;;2835:723::o;3108:53::-;3186:5;3171:12;3227:78;3234:9;;3227:78;;3260:8;;;;:::i;:::-;;-1:-1:-1;3283:10:0;;-1:-1:-1;3291:2:0;3283:10;;:::i;:::-;;;3227:78;;;3315:19;3347:6;3337:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3337:17:0;;3315:39;;3365:154;3372:10;;3365:154;;3399:11;3409:1;3399:11;;:::i;:::-;;-1:-1:-1;3468:10:0;3476:2;3468:5;:10;:::i;:::-;3455:24;;:2;:24;:::i;:::-;3442:39;;3425:6;3432;3425:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3425:56:0;;;;;;;;-1:-1:-1;3496:11:0;3505:2;3496:11;;:::i;:::-;;;3365:154;;42224:321;42354:18;42360:2;42364:7;42354:5;:18::i;:::-;42405:54;42436:1;42440:2;42444:7;42453:5;42405:22;:54::i;:::-;42383:154;;;;-1:-1:-1;;;42383:154:0;;;;;;;:::i;8931:231::-;9009:7;9030:17;9049:18;9071:27;9082:4;9088:9;9071:10;:27::i;:::-;9029:69;;;;9109:18;9121:5;9109:11;:18::i;:::-;-1:-1:-1;9145:9:0;8931:231;-1:-1:-1;;;8931:231:0:o;46081:799::-;46236:4;-1:-1:-1;;;;;46257:13:0;;18498:20;18546:8;46253:620;;46293:72;;-1:-1:-1;;;46293:72:0;;-1:-1:-1;;;;;46293:36:0;;;;;:72;;14800:10;;46344:4;;46350:7;;46359:5;;46293:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46293:72:0;;;;;;;;-1:-1:-1;;46293:72:0;;;;;;;;;;;;:::i;:::-;;;46289:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46535:13:0;;46531:272;;46578:60;;-1:-1:-1;;;46578:60:0;;;;;;;:::i;46531:272::-;46753:6;46747:13;46738:6;46734:2;46730:15;46723:38;46289:529;-1:-1:-1;;;;;;46416:51:0;-1:-1:-1;;;46416:51:0;;-1:-1:-1;46409:58:0;;46253:620;-1:-1:-1;46857:4:0;46081:799;;;;;;:::o;42881:382::-;-1:-1:-1;;;;;42961:16:0;;42953:61;;;;-1:-1:-1;;;42953:61:0;;15382:2:1;42953:61:0;;;15364:21:1;;;15401:18;;;15394:30;15460:34;15440:18;;;15433:62;15512:18;;42953:61:0;15180:356:1;42953:61:0;40968:4;40992:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40992:16:0;:30;43025:58;;;;-1:-1:-1;;;43025:58:0;;11118:2:1;43025:58:0;;;11100:21:1;11157:2;11137:18;;;11130:30;11196;11176:18;;;11169:58;11244:18;;43025:58:0;10916:352:1;43025:58:0;-1:-1:-1;;;;;43154:13:0;;;;;;:9;:13;;;;;:18;;43171:1;;43154:13;:18;;43171:1;;43154:18;:::i;:::-;;;;-1:-1:-1;;43183:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43183:21:0;-1:-1:-1;;;;;43183:21:0;;;;;;;;43222:33;;43183:16;;;43222:33;;43183:16;;43222:33;42881:382;;:::o;6821:1308::-;6902:7;6911:12;7136:9;:16;7156:2;7136:22;7132:990;;;7432:4;7417:20;;7411:27;7482:4;7467:20;;7461:27;7540:4;7525:20;;7519:27;7175:9;7511:36;7583:25;7594:4;7511:36;7411:27;7461;7583:10;:25::i;:::-;7576:32;;;;;;;;;7132:990;7630:9;:16;7650:2;7630:22;7626:496;;;7905:4;7890:20;;7884:27;7956:4;7941:20;;7935:27;7998:23;8009:4;7884:27;7935;7998:10;:23::i;:::-;7991:30;;;;;;;;7626:496;-1:-1:-1;8070:1:0;;-1:-1:-1;8074:35:0;7626:496;6821:1308;;;;;:::o;5092:643::-;5170:20;5161:5;:29;;;;;;;;:::i;:::-;;5157:571;;;5092:643;:::o;5157:571::-;5268:29;5259:5;:38;;;;;;;;:::i;:::-;;5255:473;;;5314:34;;-1:-1:-1;;;5314:34:0;;9228:2:1;5314:34:0;;;9210:21:1;9267:2;9247:18;;;9240:30;9306:26;9286:18;;;9279:54;9350:18;;5314:34:0;9026:348:1;5255:473:0;5379:35;5370:5;:44;;;;;;;;:::i;:::-;;5366:362;;;5431:41;;-1:-1:-1;;;5431:41:0;;9932:2:1;5431:41:0;;;9914:21:1;9971:2;9951:18;;;9944:30;10010:33;9990:18;;;9983:61;10061:18;;5431:41:0;9730:355:1;5366:362:0;5503:30;5494:5;:39;;;;;;;;:::i;:::-;;5490:238;;;5550:44;;-1:-1:-1;;;5550:44:0;;12574:2:1;5550:44:0;;;12556:21:1;12613:2;12593:18;;;12586:30;12652:34;12632:18;;;12625:62;-1:-1:-1;;;12703:18:1;;;12696:32;12745:19;;5550:44:0;12372:398:1;5490:238:0;5625:30;5616:5;:39;;;;;;;;:::i;:::-;;5612:116;;;5672:44;;-1:-1:-1;;;5672:44:0;;14979:2:1;5672:44:0;;;14961:21:1;15018:2;14998:18;;;14991:30;15057:34;15037:18;;;15030:62;-1:-1:-1;;;15108:18:1;;;15101:32;15150:19;;5672:44:0;14777:398:1;10430:1632:0;10561:7;;11495:66;11482:79;;11478:163;;;-1:-1:-1;11594:1:0;;-1:-1:-1;11598:30:0;11578:51;;11478:163;11655:1;:7;;11660:2;11655:7;;:18;;;;;11666:1;:7;;11671:2;11666:7;;11655:18;11651:102;;;-1:-1:-1;11706:1:0;;-1:-1:-1;11710:30:0;11690:51;;11651:102;11867:24;;;11850:14;11867:24;;;;;;;;;8626:25:1;;;8699:4;8687:17;;8667:18;;;8660:45;;;;8721:18;;;8714:34;;;8764:18;;;8757:34;;;11867:24:0;;8598:19:1;;11867:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;11867:24:0;;-1:-1:-1;;11867:24:0;;;-1:-1:-1;;;;;;;11906:20:0;;11902:103;;11959:1;11963:29;11943:50;;;;;;;11902:103;12025:6;-1:-1:-1;12033:20:0;;-1:-1:-1;10430:1632:0;;;;;;;;:::o;9425:391::-;9539:7;;-1:-1:-1;;;;;9640:75:0;;9742:3;9738:12;;;9752:2;9734:21;9783:25;9794:4;9734:21;9803:1;9640:75;9783:10;:25::i;:::-;9776:32;;;;;;9425:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:718::-;234:5;287:3;280:4;272:6;268:17;264:27;254:55;;305:1;302;295:12;254:55;341:6;328:20;367:18;404:2;400;397:10;394:36;;;410:18;;:::i;:::-;485:2;479:9;453:2;539:13;;-1:-1:-1;;535:22:1;;;559:2;531:31;527:40;515:53;;;583:18;;;603:22;;;580:46;577:72;;;629:18;;:::i;:::-;669:10;665:2;658:22;704:2;696:6;689:18;750:3;743:4;738:2;730:6;726:15;722:26;719:35;716:55;;;767:1;764;757:12;716:55;831:2;824:4;816:6;812:17;805:4;797:6;793:17;780:54;878:1;871:4;866:2;858:6;854:15;850:26;843:37;898:6;889:15;;;;;;192:718;;;;:::o;915:186::-;974:6;1027:2;1015:9;1006:7;1002:23;998:32;995:52;;;1043:1;1040;1033:12;995:52;1066:29;1085:9;1066:29;:::i;:::-;1056:39;915:186;-1:-1:-1;;;915:186:1:o;1106:260::-;1174:6;1182;1235:2;1223:9;1214:7;1210:23;1206:32;1203:52;;;1251:1;1248;1241:12;1203:52;1274:29;1293:9;1274:29;:::i;:::-;1264:39;;1322:38;1356:2;1345:9;1341:18;1322:38;:::i;:::-;1312:48;;1106:260;;;;;:::o;1371:328::-;1448:6;1456;1464;1517:2;1505:9;1496:7;1492:23;1488:32;1485:52;;;1533:1;1530;1523:12;1485:52;1556:29;1575:9;1556:29;:::i;:::-;1546:39;;1604:38;1638:2;1627:9;1623:18;1604:38;:::i;:::-;1594:48;;1689:2;1678:9;1674:18;1661:32;1651:42;;1371:328;;;;;:::o;1704:537::-;1799:6;1807;1815;1823;1876:3;1864:9;1855:7;1851:23;1847:33;1844:53;;;1893:1;1890;1883:12;1844:53;1916:29;1935:9;1916:29;:::i;:::-;1906:39;;1964:38;1998:2;1987:9;1983:18;1964:38;:::i;:::-;1954:48;;2049:2;2038:9;2034:18;2021:32;2011:42;;2104:2;2093:9;2089:18;2076:32;2131:18;2123:6;2120:30;2117:50;;;2163:1;2160;2153:12;2117:50;2186:49;2227:7;2218:6;2207:9;2203:22;2186:49;:::i;:::-;2176:59;;;1704:537;;;;;;;:::o;2246:347::-;2311:6;2319;2372:2;2360:9;2351:7;2347:23;2343:32;2340:52;;;2388:1;2385;2378:12;2340:52;2411:29;2430:9;2411:29;:::i;:::-;2401:39;;2490:2;2479:9;2475:18;2462:32;2537:5;2530:13;2523:21;2516:5;2513:32;2503:60;;2559:1;2556;2549:12;2503:60;2582:5;2572:15;;;2246:347;;;;;:::o;2598:254::-;2666:6;2674;2727:2;2715:9;2706:7;2702:23;2698:32;2695:52;;;2743:1;2740;2733:12;2695:52;2766:29;2785:9;2766:29;:::i;:::-;2756:39;2842:2;2827:18;;;;2814:32;;-1:-1:-1;;;2598:254:1:o;2857:615::-;2943:6;2951;3004:2;2992:9;2983:7;2979:23;2975:32;2972:52;;;3020:1;3017;3010:12;2972:52;3060:9;3047:23;3089:18;3130:2;3122:6;3119:14;3116:34;;;3146:1;3143;3136:12;3116:34;3184:6;3173:9;3169:22;3159:32;;3229:7;3222:4;3218:2;3214:13;3210:27;3200:55;;3251:1;3248;3241:12;3200:55;3291:2;3278:16;3317:2;3309:6;3306:14;3303:34;;;3333:1;3330;3323:12;3303:34;3386:7;3381:2;3371:6;3368:1;3364:14;3360:2;3356:23;3352:32;3349:45;3346:65;;;3407:1;3404;3397:12;3346:65;3438:2;3430:11;;;;;3460:6;;-1:-1:-1;2857:615:1;;-1:-1:-1;;;;2857:615:1:o;3477:245::-;3535:6;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:30;3686:5;3662:30;:::i;3727:249::-;3796:6;3849:2;3837:9;3828:7;3824:23;3820:32;3817:52;;;3865:1;3862;3855:12;3817:52;3897:9;3891:16;3916:30;3940:5;3916:30;:::i;3981:320::-;4049:6;4102:2;4090:9;4081:7;4077:23;4073:32;4070:52;;;4118:1;4115;4108:12;4070:52;4158:9;4145:23;4191:18;4183:6;4180:30;4177:50;;;4223:1;4220;4213:12;4177:50;4246:49;4287:7;4278:6;4267:9;4263:22;4246:49;:::i;4306:592::-;4377:6;4385;4438:2;4426:9;4417:7;4413:23;4409:32;4406:52;;;4454:1;4451;4444:12;4406:52;4494:9;4481:23;4523:18;4564:2;4556:6;4553:14;4550:34;;;4580:1;4577;4570:12;4550:34;4618:6;4607:9;4603:22;4593:32;;4663:7;4656:4;4652:2;4648:13;4644:27;4634:55;;4685:1;4682;4675:12;4634:55;4725:2;4712:16;4751:2;4743:6;4740:14;4737:34;;;4767:1;4764;4757:12;4737:34;4812:7;4807:2;4798:6;4794:2;4790:15;4786:24;4783:37;4780:57;;;4833:1;4830;4823:12;4903:180;4962:6;5015:2;5003:9;4994:7;4990:23;4986:32;4983:52;;;5031:1;5028;5021:12;4983:52;-1:-1:-1;5054:23:1;;4903:180;-1:-1:-1;4903:180:1:o;5088:257::-;5129:3;5167:5;5161:12;5194:6;5189:3;5182:19;5210:63;5266:6;5259:4;5254:3;5250:14;5243:4;5236:5;5232:16;5210:63;:::i;:::-;5327:2;5306:15;-1:-1:-1;;5302:29:1;5293:39;;;;5334:4;5289:50;;5088:257;-1:-1:-1;;5088:257:1:o;5350:185::-;5392:3;5430:5;5424:12;5445:52;5490:6;5485:3;5478:4;5471:5;5467:16;5445:52;:::i;:::-;5513:16;;;;;5350:185;-1:-1:-1;;5350:185:1:o;5540:397::-;5754:26;5750:31;5741:6;5737:2;5733:15;5729:53;5724:3;5717:66;5699:3;5812:6;5806:13;5828:62;5883:6;5878:2;5873:3;5869:12;5862:4;5854:6;5850:17;5828:62;:::i;:::-;5910:16;;;;5928:2;5906:25;;5540:397;-1:-1:-1;;;5540:397:1:o;5942:1174::-;6118:3;6147:1;6180:6;6174:13;6210:3;6232:1;6260:9;6256:2;6252:18;6242:28;;6320:2;6309:9;6305:18;6342;6332:61;;6386:4;6378:6;6374:17;6364:27;;6332:61;6412:2;6460;6452:6;6449:14;6429:18;6426:38;6423:165;;;-1:-1:-1;;;6487:33:1;;6543:4;6540:1;6533:15;6573:4;6494:3;6561:17;6423:165;6604:18;6631:104;;;;6749:1;6744:320;;;;6597:467;;6631:104;-1:-1:-1;;6664:24:1;;6652:37;;6709:16;;;;-1:-1:-1;6631:104:1;;6744:320;18844:1;18837:14;;;18881:4;18868:18;;6839:1;6853:165;6867:6;6864:1;6861:13;6853:165;;;6945:14;;6932:11;;;6925:35;6988:16;;;;6882:10;;6853:165;;;6857:3;;7047:6;7042:3;7038:16;7031:23;;6597:467;;;;;;;7080:30;7106:3;7098:6;7080:30;:::i;:::-;7073:37;5942:1174;-1:-1:-1;;;;;5942:1174:1:o;7714:488::-;-1:-1:-1;;;;;7983:15:1;;;7965:34;;8035:15;;8030:2;8015:18;;8008:43;8082:2;8067:18;;8060:34;;;8130:3;8125:2;8110:18;;8103:31;;;7908:4;;8151:45;;8176:19;;8168:6;8151:45;:::i;:::-;8143:53;7714:488;-1:-1:-1;;;;;;7714:488:1:o;8802:219::-;8951:2;8940:9;8933:21;8914:4;8971:44;9011:2;9000:9;8996:18;8988:6;8971:44;:::i;10090:414::-;10292:2;10274:21;;;10331:2;10311:18;;;10304:30;10370:34;10365:2;10350:18;;10343:62;-1:-1:-1;;;10436:2:1;10421:18;;10414:48;10494:3;10479:19;;10090:414::o;15954:356::-;16156:2;16138:21;;;16175:18;;;16168:30;16234:34;16229:2;16214:18;;16207:62;16301:2;16286:18;;15954:356::o;17826:413::-;18028:2;18010:21;;;18067:2;18047:18;;;18040:30;18106:34;18101:2;18086:18;;18079:62;-1:-1:-1;;;18172:2:1;18157:18;;18150:47;18229:3;18214:19;;17826:413::o;18897:128::-;18937:3;18968:1;18964:6;18961:1;18958:13;18955:39;;;18974:18;;:::i;:::-;-1:-1:-1;19010:9:1;;18897:128::o;19030:120::-;19070:1;19096;19086:35;;19101:18;;:::i;:::-;-1:-1:-1;19135:9:1;;19030:120::o;19155:168::-;19195:7;19261:1;19257;19253:6;19249:14;19246:1;19243:21;19238:1;19231:9;19224:17;19220:45;19217:71;;;19268:18;;:::i;:::-;-1:-1:-1;19308:9:1;;19155:168::o;19328:125::-;19368:4;19396:1;19393;19390:8;19387:34;;;19401:18;;:::i;:::-;-1:-1:-1;19438:9:1;;19328:125::o;19458:258::-;19530:1;19540:113;19554:6;19551:1;19548:13;19540:113;;;19630:11;;;19624:18;19611:11;;;19604:39;19576:2;19569:10;19540:113;;;19671:6;19668:1;19665:13;19662:48;;;-1:-1:-1;;19706:1:1;19688:16;;19681:27;19458:258::o;19721:380::-;19800:1;19796:12;;;;19843;;;19864:61;;19918:4;19910:6;19906:17;19896:27;;19864:61;19971:2;19963:6;19960:14;19940:18;19937:38;19934:161;;;20017:10;20012:3;20008:20;20005:1;19998:31;20052:4;20049:1;20042:15;20080:4;20077:1;20070:15;19934:161;;19721:380;;;:::o;20106:135::-;20145:3;-1:-1:-1;;20166:17:1;;20163:43;;;20186:18;;:::i;:::-;-1:-1:-1;20233:1:1;20222:13;;20106:135::o;20246:112::-;20278:1;20304;20294:35;;20309:18;;:::i;:::-;-1:-1:-1;20343:9:1;;20246:112::o;20363:127::-;20424:10;20419:3;20415:20;20412:1;20405:31;20455:4;20452:1;20445:15;20479:4;20476:1;20469:15;20495:127;20556:10;20551:3;20547:20;20544:1;20537:31;20587:4;20584:1;20577:15;20611:4;20608:1;20601:15;20627:127;20688:10;20683:3;20679:20;20676:1;20669:31;20719:4;20716:1;20709:15;20743:4;20740:1;20733:15;20759:127;20820:10;20815:3;20811:20;20808:1;20801:31;20851:4;20848:1;20841:15;20875:4;20872:1;20865:15;20891:127;20952:10;20947:3;20943:20;20940:1;20933:31;20983:4;20980:1;20973:15;21007:4;21004:1;20997:15;21023:131;-1:-1:-1;;;;;;21097:32:1;;21087:43;;21077:71;;21144:1;21141;21134:12

Swarm Source

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