ETH Price: $3,453.45 (+1.63%)
Gas: 10 Gwei

Token

OPERATOR GRUNTZ (GRUNTZOG)
 

Overview

Max Total Supply

400 GRUNTZOG

Holders

133

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
13 GRUNTZOG
0x1e18677d4c9391ecbbbf63a0dc56f1b10f099f7f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
OPERATORGRUNTZ

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-04-13
*/

/*
 ██████  ██████  ███████ ██████   █████  ████████  ██████  ██████       ██████  ██████  ██    ██ ███    ██ ████████ ███████ 
██    ██ ██   ██ ██      ██   ██ ██   ██    ██    ██    ██ ██   ██     ██       ██   ██ ██    ██ ████   ██    ██       ███  
██    ██ ██████  █████   ██████  ███████    ██    ██    ██ ██████      ██   ███ ██████  ██    ██ ██ ██  ██    ██      ███   
██    ██ ██      ██      ██   ██ ██   ██    ██    ██    ██ ██   ██     ██    ██ ██   ██ ██    ██ ██  ██ ██    ██     ███    
 ██████  ██      ███████ ██   ██ ██   ██    ██     ██████  ██   ██      ██████  ██   ██  ██████  ██   ████    ██    ███████ 
                                                                                                                            
      

Website: Gruntz.io

                                                                   
*/                                                        



// File: @openzeppelin/contracts/interfaces/IERC1271.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC1271.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC1271 standard signature validation method for
 * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].
 *
 * _Available since v4.1._
 */
interface IERC1271 {
    /**
     * @dev Should return whether the signature provided is valid for the provided data
     * @param hash      Hash of the data to be signed
     * @param signature Signature byte array associated with _data
     */
    function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);
}

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


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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/draft-EIP712.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;


/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;




/**
 * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA
 * signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like
 * Argent and Gnosis Safe.
 *
 * _Available since v4.1._
 */
library SignatureChecker {
    /**
     * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the
     * signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`.
     *
     * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus
     * change through time. It could return true at block N and false at block N+1 (or the opposite).
     */
    function isValidSignatureNow(
        address signer,
        bytes32 hash,
        bytes memory signature
    ) internal view returns (bool) {
        (address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature);
        if (error == ECDSA.RecoverError.NoError && recovered == signer) {
            return true;
        }

        (bool success, bytes memory result) = signer.staticcall(
            abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature)
        );
        return (success && result.length == 32 && abi.decode(result, (bytes4)) == IERC1271.isValidSignature.selector);
    }
}

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


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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

//SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}


contract OPERATORGRUNTZ is ERC721, EIP712, Ownable{
    
    using Counters for Counters.Counter;
    using ECDSA for bytes32;
    using Strings for uint256;

    address WHITELIST_SIGNER = 0xfCd646fe2f419818D85D336AB6a7358b17a7c0f4;
    address FREE_MINT_SIGNER = 0xb9D5ABEf51766fA7DEC228a6Dd1Fcf19325d3F17;
    address public proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    Counters.Counter private _tokenIds;

    string public baseUri;
    uint256 public mintFee = 0.05 ether;
    uint256 public whitelistMintFee = 0.03 ether;
    bool public publicSale = false;
    uint256 public MAX_SUPPLY = 1776;
    uint256 public totalSupply;

    mapping(address => bool) public projectProxy;

    //claimed bitmask
    mapping(uint256 => uint256) private freeMintClaimBitMask;

    constructor() 
    ERC721("OPERATOR GRUNTZ", "GRUNTZOG")
    EIP712("OPERATOR GRUNTZ", "1.0.0"){}

    function mint(bytes calldata _signature, uint256 _nftIndex, uint256 _quantity) external payable {
      require(totalSupply + _quantity < MAX_SUPPLY, "NFT: Cannot mint more than maximum supply!");
      if(msg.value == 0){
        claimNFT(_signature, _nftIndex, _quantity);
      }
      else{
        if(publicSale){
          safeMint(_quantity);
        }else{
          claimWhitelist(_signature, _nftIndex, _quantity);
        }
      }
    }

    function safeMint(uint256 _quantity) internal{
      require(msg.value >= mintFee * _quantity, "NFT: Not enough funds.");
      for(uint i=0; i < _quantity; i++){
        _tokenIds.increment();
        _mint(msg.sender, _tokenIds.current());
      }
      totalSupply += _quantity;
    }

    function claimNFT(bytes calldata _signature, uint256 _nftIndex, uint256 _quantity) internal {
        require(!isClaimed(_nftIndex), "NFT: Token already claimed!");
        require(_verify(_hash(msg.sender, _nftIndex, _quantity), _signature, false), "NFT: Invalid Claiming!");
        _setClaimed(_nftIndex);
        for(uint i=0; i< _quantity; i++){
            _tokenIds.increment();
            uint256 newTokenId = _tokenIds.current();
            _mint(msg.sender, newTokenId);
        }
        totalSupply += _quantity;
    }

    function claimWhitelist(bytes calldata _signature, uint256 _nftIndex, uint256 _quantity) internal{
        require(msg.value >= whitelistMintFee * _quantity, "NFT: Not enough Mint Fee!");
        require(_verify(_whitelistHash(msg.sender, _nftIndex), _signature, true), "NFT: Invalid Claiming!");
        for (uint i =0 ;i <_quantity ; i++){
            _tokenIds.increment();
            uint256 newTokenId = _tokenIds.current();
            _mint(msg.sender, newTokenId);
        }
        totalSupply += _quantity;
    }

    function isClaimed(uint256 _nftIndex) public view returns (bool) {
        uint256 wordIndex = _nftIndex / 256;
        uint256 bitIndex = _nftIndex % 256;
        uint256 mask = 1 << bitIndex;
        return freeMintClaimBitMask[wordIndex] & mask == mask;
    }

    function _setClaimed(uint256 _nftIndex) internal{
        uint256 wordIndex = _nftIndex / 256;
        uint256 bitIndex = _nftIndex % 256;
        uint256 mask = 1 << bitIndex;
        freeMintClaimBitMask[wordIndex] |= mask;
    }

    function _hash(address _account, uint256 _nftIndex, uint256 _quantity)
    internal view returns (bytes32)
    {
        return _hashTypedDataV4(keccak256(abi.encode(
            keccak256("NFT(address _account,uint256 _nftIndex,uint256 _quantity)"),
            _account,
            _nftIndex,
            _quantity
        )));
    }

    function _whitelistHash(address _account, uint256 _nftIndex)
    internal view returns (bytes32)
    {
        return _hashTypedDataV4(keccak256(abi.encode(
            keccak256("NFT(address _account,uint256 _nftIndex)"),
            _account,
            _nftIndex
        )));
    }

    function _verify(bytes32 digest, bytes memory signature, bool isWhitelist)
    internal view returns (bool)
    {   
        if(isWhitelist)
          return SignatureChecker.isValidSignatureNow(WHITELIST_SIGNER, digest, signature);
        else
          return SignatureChecker.isValidSignatureNow(FREE_MINT_SIGNER, digest, signature);

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

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "NFT: URI query for nonexistent token");
        return bytes(baseUri).length > 0 ? string(abi.encodePacked(baseUri, _tokenId.toString(), ".json")) : "";
    }

    function setProxyRegistry(address preg) external onlyOwner {
        proxyRegistryAddress = preg;
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }


    function updatePublicSale() external onlyOwner {
        publicSale = !publicSale;
    }
    
    function setBaseURI(string memory newBaseURI) external onlyOwner {
        baseUri = newBaseURI;
    }

    function burnSupply() external onlyOwner {
        MAX_SUPPLY = totalSupply;
    }

    function withdraw() external payable onlyOwner {
                (bool os, ) = payable(owner()).call{value: address(this).balance}("");
                require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"_nftIndex","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_nftIndex","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"preg","type":"address"}],"name":"setProxyRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updatePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

610140604052600780546001600160a01b031990811673fcd646fe2f419818d85d336ab6a7358b17a7c0f41790915560088054821673b9d5abef51766fa7dec228a6dd1fcf19325d3f171790556009805490911673a5409ec958c83c3f309868babaca7c86dcb077c117905566b1a2bc2ec50000600c55666a94d74f430000600d55600e805460ff191690556106f0600f553480156200009e57600080fd5b506040518060400160405280600f81526020016e27a822a920aa27a91023a92aa72a2d60891b815250604051806040016040528060058152602001640312e302e360dc1b8152506040518060400160405280600f81526020016e27a822a920aa27a91023a92aa72a2d60891b815250604051806040016040528060088152602001674752554e545a4f4760c01b8152508160009080519060200190620001469291906200025f565b5080516200015c9060019060208401906200025f565b5050825160208085019190912083518483012060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81880181905281830187905260608201869052608082019490945230818401528151808203909301835260c0019052805194019390932091935091906080523060601b60c0526101205250620002079250620002019150503390565b6200020d565b62000342565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200026d9062000305565b90600052602060002090601f016020900481019282620002915760008555620002dc565b82601f10620002ac57805160ff1916838001178555620002dc565b82800160010185558215620002dc579182015b82811115620002dc578251825591602001919060010190620002bf565b50620002ea929150620002ee565b5090565b5b80821115620002ea5760008155600101620002ef565b600181811c908216806200031a57607f821691505b602082108114156200033c57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160601c60e0516101005161012051612756620003956000396000611d3f01526000611d8e01526000611d6901526000611cc201526000611cec01526000611d1601526127566000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063adfdeef911610095578063cac96b4a11610064578063cac96b4a1461050b578063cd7c032614610520578063e985e9c514610540578063f2fde38b1461056057600080fd5b8063adfdeef914610496578063b03e6478146104b6578063b88d4fde146104cb578063c87b56dd146104eb57600080fd5b806395d89b41116100d157806395d89b411461042c5780639abc8320146104415780639e34070f14610456578063a22cb4651461047657600080fd5b806370a08231146103c657806370f93ede146103e6578063715018a6146103f95780638da5cb5b1461040e57600080fd5b806332cb6b0c1161017a578063544f7fc611610149578063544f7fc61461034057806355f804b3146103565780635bab26e2146103765780636352211e146103a657600080fd5b806332cb6b0c146102e857806333bc1c5c146102fe5780633ccfd60b1461031857806342842e0e1461032057600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806313966db51461028e57806318160ddd146102b257806323b872dd146102c857600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046121f7565b610580565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105d2565b60405161020991906124a4565b34801561024057600080fd5b5061025461024f366004612316565b610664565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c6102873660046121cb565b6106fe565b005b34801561029a57600080fd5b506102a4600c5481565b604051908152602001610209565b3480156102be57600080fd5b506102a460105481565b3480156102d457600080fd5b5061028c6102e33660046120d7565b610814565b3480156102f457600080fd5b506102a4600f5481565b34801561030a57600080fd5b50600e546101fd9060ff1681565b61028c610845565b34801561032c57600080fd5b5061028c61033b3660046120d7565b6108e3565b34801561034c57600080fd5b506102a4600d5481565b34801561036257600080fd5b5061028c6103713660046122cd565b6108fe565b34801561038257600080fd5b506101fd610391366004612081565b60116020526000908152604090205460ff1681565b3480156103b257600080fd5b506102546103c1366004612316565b61093f565b3480156103d257600080fd5b506102a46103e1366004612081565b6109b6565b61028c6103f4366004612231565b610a3d565b34801561040557600080fd5b5061028c610aea565b34801561041a57600080fd5b506006546001600160a01b0316610254565b34801561043857600080fd5b50610227610b20565b34801561044d57600080fd5b50610227610b2f565b34801561046257600080fd5b506101fd610471366004612316565b610bbd565b34801561048257600080fd5b5061028c610491366004612198565b610bfe565b3480156104a257600080fd5b5061028c6104b1366004612081565b610c09565b3480156104c257600080fd5b5061028c610c55565b3480156104d757600080fd5b5061028c6104e6366004612118565b610c87565b3480156104f757600080fd5b50610227610506366004612316565b610cb9565b34801561051757600080fd5b5061028c610d88565b34801561052c57600080fd5b50600954610254906001600160a01b031681565b34801561054c57600080fd5b506101fd61055b36600461209e565b610dc6565b34801561056c57600080fd5b5061028c61057b366004612081565b610e96565b60006001600160e01b031982166380ac58cd60e01b14806105b157506001600160e01b03198216635b5e139f60e01b145b806105cc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105e19061261d565b80601f016020809104026020016040519081016040528092919081815260200182805461060d9061261d565b801561065a5780601f1061062f5761010080835404028352916020019161065a565b820191906000526020600020905b81548152906001019060200180831161063d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106e25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107098261093f565b9050806001600160a01b0316836001600160a01b031614156107775760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d9565b336001600160a01b038216148061079357506107938133610dc6565b6108055760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d9565b61080f8383610f2e565b505050565b61081e3382610f9c565b61083a5760405162461bcd60e51b81526004016106d99061253e565b61080f83838361106b565b6006546001600160a01b0316331461086f5760405162461bcd60e51b81526004016106d990612509565b60006108836006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146108cd576040519150601f19603f3d011682016040523d82523d6000602084013e6108d2565b606091505b50509050806108e057600080fd5b50565b61080f83838360405180602001604052806000815250610c87565b6006546001600160a01b031633146109285760405162461bcd60e51b81526004016106d990612509565b805161093b90600b906020840190611f72565b5050565b6000818152600260205260408120546001600160a01b0316806105cc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d9565b60006001600160a01b038216610a215760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d9565b506001600160a01b031660009081526003602052604090205490565b600f5481601054610a4e919061258f565b10610aae5760405162461bcd60e51b815260206004820152602a60248201527f4e46543a2043616e6e6f74206d696e74206d6f7265207468616e206d6178696d604482015269756d20737570706c792160b01b60648201526084016106d9565b34610ac457610abf84848484611207565b610ae4565b600e5460ff1615610ad857610abf81611356565b610ae484848484611404565b50505050565b6006546001600160a01b03163314610b145760405162461bcd60e51b81526004016106d990612509565b610b1e6000611535565b565b6060600180546105e19061261d565b600b8054610b3c9061261d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b689061261d565b8015610bb55780601f10610b8a57610100808354040283529160200191610bb5565b820191906000526020600020905b815481529060010190602001808311610b9857829003601f168201915b505050505081565b600080610bcc610100846125a7565b90506000610bdc61010085612673565b60009283526012602052604090922054600190921b9182169091149392505050565b61093b338383611587565b6006546001600160a01b03163314610c335760405162461bcd60e51b81526004016106d990612509565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610c7f5760405162461bcd60e51b81526004016106d990612509565b601054600f55565b610c913383610f9c565b610cad5760405162461bcd60e51b81526004016106d99061253e565b610ae484848484611656565b6000818152600260205260409020546060906001600160a01b0316610d2c5760405162461bcd60e51b8152602060048201526024808201527f4e46543a2055524920717565727920666f72206e6f6e6578697374656e74207460448201526337b5b2b760e11b60648201526084016106d9565b6000600b8054610d3b9061261d565b905011610d5757604051806020016040528060008152506105cc565b600b610d6283611689565b604051602001610d73929190612393565b60405160208183030381529060405292915050565b6006546001600160a01b03163314610db25760405162461bcd60e51b81526004016106d990612509565b600e805460ff19811660ff90911615179055565b60095460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015610e1357600080fd5b505afa158015610e27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4b91906122b0565b6001600160a01b03161415610e645760019150506105cc565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b03163314610ec05760405162461bcd60e51b81526004016106d990612509565b6001600160a01b038116610f255760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d9565b6108e081611535565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f638261093f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d9565b60006110208361093f565b9050806001600160a01b0316846001600160a01b0316148061105b5750836001600160a01b031661105084610664565b6001600160a01b0316145b80610e8e5750610e8e8185610dc6565b826001600160a01b031661107e8261093f565b6001600160a01b0316146110e25760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106d9565b6001600160a01b0382166111445760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d9565b61114f600082610f2e565b6001600160a01b03831660009081526003602052604081208054600192906111789084906125da565b90915550506001600160a01b03821660009081526003602052604081208054600192906111a690849061258f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61121082610bbd565b1561125d5760405162461bcd60e51b815260206004820152601b60248201527f4e46543a20546f6b656e20616c726561647920636c61696d656421000000000060448201526064016106d9565b6112a761126b338484611787565b85858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509250611800915050565b6112ec5760405162461bcd60e51b81526020600482015260166024820152754e46543a20496e76616c696420436c61696d696e672160501b60448201526064016106d9565b6112f58261183d565b60005b818110156113385761130e600a80546001019055565b6000611319600a5490565b9050611325338261187b565b508061133081612658565b9150506112f8565b50806010600082825461134b919061258f565b909155505050505050565b80600c5461136491906125bb565b3410156113ac5760405162461bcd60e51b815260206004820152601660248201527527232a1d102737ba1032b737bab3b410333ab732399760511b60448201526064016106d9565b60005b818110156113e9576113c5600a80546001019055565b6113d7336113d2600a5490565b61187b565b806113e181612658565b9150506113af565b5080601060008282546113fc919061258f565b909155505050565b80600d5461141291906125bb565b3410156114615760405162461bcd60e51b815260206004820152601960248201527f4e46543a204e6f7420656e6f756768204d696e7420466565210000000000000060448201526064016106d9565b6114ad61146e33846119bd565b85858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060019250611800915050565b6114f25760405162461bcd60e51b81526020600482015260166024820152754e46543a20496e76616c696420436c61696d696e672160501b60448201526064016106d9565b60005b818110156113385761150b600a80546001019055565b6000611516600a5490565b9050611522338261187b565b508061152d81612658565b9150506114f5565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115e95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d9565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61166184848461106b565b61166d84848484611a0e565b610ae45760405162461bcd60e51b81526004016106d9906124b7565b6060816116ad5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116d757806116c181612658565b91506116d09050600a836125a7565b91506116b1565b60008167ffffffffffffffff8111156116f2576116f26126df565b6040519080825280601f01601f19166020018201604052801561171c576020820181803683370190505b5090505b8415610e8e576117316001836125da565b915061173e600a86612673565b61174990603061258f565b60f81b81838151811061175e5761175e6126c9565b60200101906001600160f81b031916908160001a905350611780600a866125a7565b9450611720565b604080517f4aadc35a16311a12361a2969cd93cb68fd9e86dd1b9efcdc7a55fb106378bc4360208201526001600160a01b0385169181019190915260608101839052608081018290526000906117f69060a0015b60405160208183030381529060405280519060200120611b1b565b90505b9392505050565b600081156118265760075461181f906001600160a01b03168585611b69565b90506117f9565b60085461181f906001600160a01b03168585611b69565b600061184b610100836125a7565b9050600061185b61010084612673565b6000928352601260205260409092208054600190931b9092179091555050565b6001600160a01b0382166118d15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d9565b6000818152600260205260409020546001600160a01b0316156119365760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d9565b6001600160a01b038216600090815260036020526040812080546001929061195f90849061258f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b604080517fee88d01f5707c72756f3217bfb7ca77ba5e86da7e6db74fbf6c701255c58926f60208201526001600160a01b03841691810191909152606081018290526000906117f9906080016117db565b60006001600160a01b0384163b15611b1057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a5290339089908890889060040161244e565b602060405180830381600087803b158015611a6c57600080fd5b505af1925050508015611a9c575060408051601f3d908101601f19168201909252611a9991810190612214565b60015b611af6573d808015611aca576040519150601f19603f3d011682016040523d82523d6000602084013e611acf565b606091505b508051611aee5760405162461bcd60e51b81526004016106d9906124b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e8e565b506001949350505050565b60006105cc611b28611cb5565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611b788585611ddc565b90925090506000816004811115611b9157611b916126b3565b148015611baf5750856001600160a01b0316826001600160a01b0316145b15611bbf576001925050506117f9565b600080876001600160a01b0316631626ba7e60e01b8888604051602401611be792919061248b565b60408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909416939093179092529051611c259190612377565b600060405180830381855afa9150503d8060008114611c60576040519150601f19603f3d011682016040523d82523d6000602084013e611c65565b606091505b5091509150818015611c78575080516020145b8015611ca957508051630b135d3f60e11b90611c9d9083016020908101908401612214565b6001600160e01b031916145b98975050505050505050565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015611d0e57507f000000000000000000000000000000000000000000000000000000000000000046145b15611d3857507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b600080825160411415611e135760208301516040840151606085015160001a611e0787828585611e4c565b94509450505050611e45565b825160401415611e3d5760208301516040840151611e32868383611f39565b935093505050611e45565b506000905060025b9250929050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611e835750600090506003611f30565b8460ff16601b14158015611e9b57508460ff16601c14155b15611eac5750600090506004611f30565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611f00573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611f2957600060019250925050611f30565b9150600090505b94509492505050565b6000806001600160ff1b03831681611f5660ff86901c601b61258f565b9050611f6487828885611e4c565b935093505050935093915050565b828054611f7e9061261d565b90600052602060002090601f016020900481019282611fa05760008555611fe6565b82601f10611fb957805160ff1916838001178555611fe6565b82800160010185558215611fe6579182015b82811115611fe6578251825591602001919060010190611fcb565b50611ff2929150611ff6565b5090565b5b80821115611ff25760008155600101611ff7565b600067ffffffffffffffff80841115612026576120266126df565b604051601f8501601f19908116603f0116810190828211818310171561204e5761204e6126df565b8160405280935085815286868601111561206757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561209357600080fd5b81356117f9816126f5565b600080604083850312156120b157600080fd5b82356120bc816126f5565b915060208301356120cc816126f5565b809150509250929050565b6000806000606084860312156120ec57600080fd5b83356120f7816126f5565b92506020840135612107816126f5565b929592945050506040919091013590565b6000806000806080858703121561212e57600080fd5b8435612139816126f5565b93506020850135612149816126f5565b925060408501359150606085013567ffffffffffffffff81111561216c57600080fd5b8501601f8101871361217d57600080fd5b61218c8782356020840161200b565b91505092959194509250565b600080604083850312156121ab57600080fd5b82356121b6816126f5565b9150602083013580151581146120cc57600080fd5b600080604083850312156121de57600080fd5b82356121e9816126f5565b946020939093013593505050565b60006020828403121561220957600080fd5b81356117f98161270a565b60006020828403121561222657600080fd5b81516117f98161270a565b6000806000806060858703121561224757600080fd5b843567ffffffffffffffff8082111561225f57600080fd5b818701915087601f83011261227357600080fd5b81358181111561228257600080fd5b88602082850101111561229457600080fd5b6020928301999098509187013596604001359550909350505050565b6000602082840312156122c257600080fd5b81516117f9816126f5565b6000602082840312156122df57600080fd5b813567ffffffffffffffff8111156122f657600080fd5b8201601f8101841361230757600080fd5b610e8e8482356020840161200b565b60006020828403121561232857600080fd5b5035919050565b600081518084526123478160208601602086016125f1565b601f01601f19169290920160200192915050565b6000815161236d8185602086016125f1565b9290920192915050565b600082516123898184602087016125f1565b9190910192915050565b600080845481600182811c9150808316806123af57607f831692505b60208084108214156123cf57634e487b7160e01b86526022600452602486fd5b8180156123e357600181146123f457612421565b60ff19861689528489019650612421565b60008b81526020902060005b868110156124195781548b820152908501908301612400565b505084890196505b505050505050612445612434828661235b565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124819083018461232f565b9695505050505050565b8281526040602082015260006117f6604083018461232f565b6020815260006117f9602083018461232f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125a2576125a2612687565b500190565b6000826125b6576125b661269d565b500490565b60008160001904831182151516156125d5576125d5612687565b500290565b6000828210156125ec576125ec612687565b500390565b60005b8381101561260c5781810151838201526020016125f4565b83811115610ae45750506000910152565b600181811c9082168061263157607f821691505b6020821081141561265257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561266c5761266c612687565b5060010190565b6000826126825761268261269d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146108e057600080fd5b6001600160e01b0319811681146108e057600080fdfea2646970667358221220e0e0a4e748e11b7890ac602571b862714b4c83fdde832b0c5e6506bd6f9e400064736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063adfdeef911610095578063cac96b4a11610064578063cac96b4a1461050b578063cd7c032614610520578063e985e9c514610540578063f2fde38b1461056057600080fd5b8063adfdeef914610496578063b03e6478146104b6578063b88d4fde146104cb578063c87b56dd146104eb57600080fd5b806395d89b41116100d157806395d89b411461042c5780639abc8320146104415780639e34070f14610456578063a22cb4651461047657600080fd5b806370a08231146103c657806370f93ede146103e6578063715018a6146103f95780638da5cb5b1461040e57600080fd5b806332cb6b0c1161017a578063544f7fc611610149578063544f7fc61461034057806355f804b3146103565780635bab26e2146103765780636352211e146103a657600080fd5b806332cb6b0c146102e857806333bc1c5c146102fe5780633ccfd60b1461031857806342842e0e1461032057600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806313966db51461028e57806318160ddd146102b257806323b872dd146102c857600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046121f7565b610580565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105d2565b60405161020991906124a4565b34801561024057600080fd5b5061025461024f366004612316565b610664565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c6102873660046121cb565b6106fe565b005b34801561029a57600080fd5b506102a4600c5481565b604051908152602001610209565b3480156102be57600080fd5b506102a460105481565b3480156102d457600080fd5b5061028c6102e33660046120d7565b610814565b3480156102f457600080fd5b506102a4600f5481565b34801561030a57600080fd5b50600e546101fd9060ff1681565b61028c610845565b34801561032c57600080fd5b5061028c61033b3660046120d7565b6108e3565b34801561034c57600080fd5b506102a4600d5481565b34801561036257600080fd5b5061028c6103713660046122cd565b6108fe565b34801561038257600080fd5b506101fd610391366004612081565b60116020526000908152604090205460ff1681565b3480156103b257600080fd5b506102546103c1366004612316565b61093f565b3480156103d257600080fd5b506102a46103e1366004612081565b6109b6565b61028c6103f4366004612231565b610a3d565b34801561040557600080fd5b5061028c610aea565b34801561041a57600080fd5b506006546001600160a01b0316610254565b34801561043857600080fd5b50610227610b20565b34801561044d57600080fd5b50610227610b2f565b34801561046257600080fd5b506101fd610471366004612316565b610bbd565b34801561048257600080fd5b5061028c610491366004612198565b610bfe565b3480156104a257600080fd5b5061028c6104b1366004612081565b610c09565b3480156104c257600080fd5b5061028c610c55565b3480156104d757600080fd5b5061028c6104e6366004612118565b610c87565b3480156104f757600080fd5b50610227610506366004612316565b610cb9565b34801561051757600080fd5b5061028c610d88565b34801561052c57600080fd5b50600954610254906001600160a01b031681565b34801561054c57600080fd5b506101fd61055b36600461209e565b610dc6565b34801561056c57600080fd5b5061028c61057b366004612081565b610e96565b60006001600160e01b031982166380ac58cd60e01b14806105b157506001600160e01b03198216635b5e139f60e01b145b806105cc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105e19061261d565b80601f016020809104026020016040519081016040528092919081815260200182805461060d9061261d565b801561065a5780601f1061062f5761010080835404028352916020019161065a565b820191906000526020600020905b81548152906001019060200180831161063d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106e25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107098261093f565b9050806001600160a01b0316836001600160a01b031614156107775760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d9565b336001600160a01b038216148061079357506107938133610dc6565b6108055760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d9565b61080f8383610f2e565b505050565b61081e3382610f9c565b61083a5760405162461bcd60e51b81526004016106d99061253e565b61080f83838361106b565b6006546001600160a01b0316331461086f5760405162461bcd60e51b81526004016106d990612509565b60006108836006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146108cd576040519150601f19603f3d011682016040523d82523d6000602084013e6108d2565b606091505b50509050806108e057600080fd5b50565b61080f83838360405180602001604052806000815250610c87565b6006546001600160a01b031633146109285760405162461bcd60e51b81526004016106d990612509565b805161093b90600b906020840190611f72565b5050565b6000818152600260205260408120546001600160a01b0316806105cc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d9565b60006001600160a01b038216610a215760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d9565b506001600160a01b031660009081526003602052604090205490565b600f5481601054610a4e919061258f565b10610aae5760405162461bcd60e51b815260206004820152602a60248201527f4e46543a2043616e6e6f74206d696e74206d6f7265207468616e206d6178696d604482015269756d20737570706c792160b01b60648201526084016106d9565b34610ac457610abf84848484611207565b610ae4565b600e5460ff1615610ad857610abf81611356565b610ae484848484611404565b50505050565b6006546001600160a01b03163314610b145760405162461bcd60e51b81526004016106d990612509565b610b1e6000611535565b565b6060600180546105e19061261d565b600b8054610b3c9061261d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b689061261d565b8015610bb55780601f10610b8a57610100808354040283529160200191610bb5565b820191906000526020600020905b815481529060010190602001808311610b9857829003601f168201915b505050505081565b600080610bcc610100846125a7565b90506000610bdc61010085612673565b60009283526012602052604090922054600190921b9182169091149392505050565b61093b338383611587565b6006546001600160a01b03163314610c335760405162461bcd60e51b81526004016106d990612509565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610c7f5760405162461bcd60e51b81526004016106d990612509565b601054600f55565b610c913383610f9c565b610cad5760405162461bcd60e51b81526004016106d99061253e565b610ae484848484611656565b6000818152600260205260409020546060906001600160a01b0316610d2c5760405162461bcd60e51b8152602060048201526024808201527f4e46543a2055524920717565727920666f72206e6f6e6578697374656e74207460448201526337b5b2b760e11b60648201526084016106d9565b6000600b8054610d3b9061261d565b905011610d5757604051806020016040528060008152506105cc565b600b610d6283611689565b604051602001610d73929190612393565b60405160208183030381529060405292915050565b6006546001600160a01b03163314610db25760405162461bcd60e51b81526004016106d990612509565b600e805460ff19811660ff90911615179055565b60095460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015610e1357600080fd5b505afa158015610e27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4b91906122b0565b6001600160a01b03161415610e645760019150506105cc565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b03163314610ec05760405162461bcd60e51b81526004016106d990612509565b6001600160a01b038116610f255760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d9565b6108e081611535565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f638261093f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d9565b60006110208361093f565b9050806001600160a01b0316846001600160a01b0316148061105b5750836001600160a01b031661105084610664565b6001600160a01b0316145b80610e8e5750610e8e8185610dc6565b826001600160a01b031661107e8261093f565b6001600160a01b0316146110e25760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106d9565b6001600160a01b0382166111445760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d9565b61114f600082610f2e565b6001600160a01b03831660009081526003602052604081208054600192906111789084906125da565b90915550506001600160a01b03821660009081526003602052604081208054600192906111a690849061258f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61121082610bbd565b1561125d5760405162461bcd60e51b815260206004820152601b60248201527f4e46543a20546f6b656e20616c726561647920636c61696d656421000000000060448201526064016106d9565b6112a761126b338484611787565b85858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509250611800915050565b6112ec5760405162461bcd60e51b81526020600482015260166024820152754e46543a20496e76616c696420436c61696d696e672160501b60448201526064016106d9565b6112f58261183d565b60005b818110156113385761130e600a80546001019055565b6000611319600a5490565b9050611325338261187b565b508061133081612658565b9150506112f8565b50806010600082825461134b919061258f565b909155505050505050565b80600c5461136491906125bb565b3410156113ac5760405162461bcd60e51b815260206004820152601660248201527527232a1d102737ba1032b737bab3b410333ab732399760511b60448201526064016106d9565b60005b818110156113e9576113c5600a80546001019055565b6113d7336113d2600a5490565b61187b565b806113e181612658565b9150506113af565b5080601060008282546113fc919061258f565b909155505050565b80600d5461141291906125bb565b3410156114615760405162461bcd60e51b815260206004820152601960248201527f4e46543a204e6f7420656e6f756768204d696e7420466565210000000000000060448201526064016106d9565b6114ad61146e33846119bd565b85858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060019250611800915050565b6114f25760405162461bcd60e51b81526020600482015260166024820152754e46543a20496e76616c696420436c61696d696e672160501b60448201526064016106d9565b60005b818110156113385761150b600a80546001019055565b6000611516600a5490565b9050611522338261187b565b508061152d81612658565b9150506114f5565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115e95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d9565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61166184848461106b565b61166d84848484611a0e565b610ae45760405162461bcd60e51b81526004016106d9906124b7565b6060816116ad5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116d757806116c181612658565b91506116d09050600a836125a7565b91506116b1565b60008167ffffffffffffffff8111156116f2576116f26126df565b6040519080825280601f01601f19166020018201604052801561171c576020820181803683370190505b5090505b8415610e8e576117316001836125da565b915061173e600a86612673565b61174990603061258f565b60f81b81838151811061175e5761175e6126c9565b60200101906001600160f81b031916908160001a905350611780600a866125a7565b9450611720565b604080517f4aadc35a16311a12361a2969cd93cb68fd9e86dd1b9efcdc7a55fb106378bc4360208201526001600160a01b0385169181019190915260608101839052608081018290526000906117f69060a0015b60405160208183030381529060405280519060200120611b1b565b90505b9392505050565b600081156118265760075461181f906001600160a01b03168585611b69565b90506117f9565b60085461181f906001600160a01b03168585611b69565b600061184b610100836125a7565b9050600061185b61010084612673565b6000928352601260205260409092208054600190931b9092179091555050565b6001600160a01b0382166118d15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d9565b6000818152600260205260409020546001600160a01b0316156119365760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d9565b6001600160a01b038216600090815260036020526040812080546001929061195f90849061258f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b604080517fee88d01f5707c72756f3217bfb7ca77ba5e86da7e6db74fbf6c701255c58926f60208201526001600160a01b03841691810191909152606081018290526000906117f9906080016117db565b60006001600160a01b0384163b15611b1057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a5290339089908890889060040161244e565b602060405180830381600087803b158015611a6c57600080fd5b505af1925050508015611a9c575060408051601f3d908101601f19168201909252611a9991810190612214565b60015b611af6573d808015611aca576040519150601f19603f3d011682016040523d82523d6000602084013e611acf565b606091505b508051611aee5760405162461bcd60e51b81526004016106d9906124b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e8e565b506001949350505050565b60006105cc611b28611cb5565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611b788585611ddc565b90925090506000816004811115611b9157611b916126b3565b148015611baf5750856001600160a01b0316826001600160a01b0316145b15611bbf576001925050506117f9565b600080876001600160a01b0316631626ba7e60e01b8888604051602401611be792919061248b565b60408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909416939093179092529051611c259190612377565b600060405180830381855afa9150503d8060008114611c60576040519150601f19603f3d011682016040523d82523d6000602084013e611c65565b606091505b5091509150818015611c78575080516020145b8015611ca957508051630b135d3f60e11b90611c9d9083016020908101908401612214565b6001600160e01b031916145b98975050505050505050565b6000306001600160a01b037f000000000000000000000000b2f35598c80b8ca841c34235babb8d3d1dd78d6716148015611d0e57507f000000000000000000000000000000000000000000000000000000000000000146145b15611d3857507f1666558379a70790e55c58e1b6f06dc3f61028767bbfef2373105783b75811bc90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f97bf892bfe02a0d68d75dd49d86ee7fc382d323dfc9780862165d9b280c7e1dd828401527f06c015bd22b4c69690933c1058878ebdfef31f9aaae40bbe86d8a09fe1b2972c60608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b600080825160411415611e135760208301516040840151606085015160001a611e0787828585611e4c565b94509450505050611e45565b825160401415611e3d5760208301516040840151611e32868383611f39565b935093505050611e45565b506000905060025b9250929050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611e835750600090506003611f30565b8460ff16601b14158015611e9b57508460ff16601c14155b15611eac5750600090506004611f30565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611f00573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611f2957600060019250925050611f30565b9150600090505b94509492505050565b6000806001600160ff1b03831681611f5660ff86901c601b61258f565b9050611f6487828885611e4c565b935093505050935093915050565b828054611f7e9061261d565b90600052602060002090601f016020900481019282611fa05760008555611fe6565b82601f10611fb957805160ff1916838001178555611fe6565b82800160010185558215611fe6579182015b82811115611fe6578251825591602001919060010190611fcb565b50611ff2929150611ff6565b5090565b5b80821115611ff25760008155600101611ff7565b600067ffffffffffffffff80841115612026576120266126df565b604051601f8501601f19908116603f0116810190828211818310171561204e5761204e6126df565b8160405280935085815286868601111561206757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561209357600080fd5b81356117f9816126f5565b600080604083850312156120b157600080fd5b82356120bc816126f5565b915060208301356120cc816126f5565b809150509250929050565b6000806000606084860312156120ec57600080fd5b83356120f7816126f5565b92506020840135612107816126f5565b929592945050506040919091013590565b6000806000806080858703121561212e57600080fd5b8435612139816126f5565b93506020850135612149816126f5565b925060408501359150606085013567ffffffffffffffff81111561216c57600080fd5b8501601f8101871361217d57600080fd5b61218c8782356020840161200b565b91505092959194509250565b600080604083850312156121ab57600080fd5b82356121b6816126f5565b9150602083013580151581146120cc57600080fd5b600080604083850312156121de57600080fd5b82356121e9816126f5565b946020939093013593505050565b60006020828403121561220957600080fd5b81356117f98161270a565b60006020828403121561222657600080fd5b81516117f98161270a565b6000806000806060858703121561224757600080fd5b843567ffffffffffffffff8082111561225f57600080fd5b818701915087601f83011261227357600080fd5b81358181111561228257600080fd5b88602082850101111561229457600080fd5b6020928301999098509187013596604001359550909350505050565b6000602082840312156122c257600080fd5b81516117f9816126f5565b6000602082840312156122df57600080fd5b813567ffffffffffffffff8111156122f657600080fd5b8201601f8101841361230757600080fd5b610e8e8482356020840161200b565b60006020828403121561232857600080fd5b5035919050565b600081518084526123478160208601602086016125f1565b601f01601f19169290920160200192915050565b6000815161236d8185602086016125f1565b9290920192915050565b600082516123898184602087016125f1565b9190910192915050565b600080845481600182811c9150808316806123af57607f831692505b60208084108214156123cf57634e487b7160e01b86526022600452602486fd5b8180156123e357600181146123f457612421565b60ff19861689528489019650612421565b60008b81526020902060005b868110156124195781548b820152908501908301612400565b505084890196505b505050505050612445612434828661235b565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124819083018461232f565b9695505050505050565b8281526040602082015260006117f6604083018461232f565b6020815260006117f9602083018461232f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125a2576125a2612687565b500190565b6000826125b6576125b661269d565b500490565b60008160001904831182151516156125d5576125d5612687565b500290565b6000828210156125ec576125ec612687565b500390565b60005b8381101561260c5781810151838201526020016125f4565b83811115610ae45750506000910152565b600181811c9082168061263157607f821691505b6020821081141561265257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561266c5761266c612687565b5060010190565b6000826126825761268261269d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146108e057600080fd5b6001600160e01b0319811681146108e057600080fdfea2646970667358221220e0e0a4e748e11b7890ac602571b862714b4c83fdde832b0c5e6506bd6f9e400064736f6c63430008070033

Deployed Bytecode Sourcemap

56995:5723:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43690:305;;;;;;;;;;-1:-1:-1;43690:305:0;;;;;:::i;:::-;;:::i;:::-;;;9111:14:1;;9104:22;9086:41;;9074:2;9059:18;43690:305:0;;;;;;;;44635:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46194:221::-;;;;;;;;;;-1:-1:-1;46194:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8398:32:1;;;8380:51;;8368:2;8353:18;46194:221:0;8234:203:1;45717:411:0;;;;;;;;;;-1:-1:-1;45717:411:0;;;;;:::i;:::-;;:::i;:::-;;57476:35;;;;;;;;;;;;;;;;;;;19682:25:1;;;19670:2;19655:18;57476:35:0;19536:177:1;57645:26:0;;;;;;;;;;;;;;;;46944:339;;;;;;;;;;-1:-1:-1;46944:339:0;;;;;:::i;:::-;;:::i;57606:32::-;;;;;;;;;;;;;;;;57569:30;;;;;;;;;;-1:-1:-1;57569:30:0;;;;;;;;62542:173;;;:::i;47354:185::-;;;;;;;;;;-1:-1:-1;47354:185:0;;;;;:::i;:::-;;:::i;57518:44::-;;;;;;;;;;;;;;;;62338:104;;;;;;;;;;-1:-1:-1;62338:104:0;;;;;:::i;:::-;;:::i;57680:44::-;;;;;;;;;;-1:-1:-1;57680:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;44329:239;;;;;;;;;;-1:-1:-1;44329:239:0;;;;;:::i;:::-;;:::i;44059:208::-;;;;;;;;;;-1:-1:-1;44059:208:0;;;;;:::i;:::-;;:::i;57928:460::-;;;;;;:::i;:::-;;:::i;22635:103::-;;;;;;;;;;;;;:::i;21984:87::-;;;;;;;;;;-1:-1:-1;22057:6:0;;-1:-1:-1;;;;;22057:6:0;21984:87;;44804:104;;;;;;;;;;;;;:::i;57448:21::-;;;;;;;;;;;;;:::i;59788:267::-;;;;;;;;;;-1:-1:-1;59788:267:0;;;;;:::i;:::-;;:::i;46487:155::-;;;;;;;;;;-1:-1:-1;46487:155:0;;;;;:::i;:::-;;:::i;61731:105::-;;;;;;;;;;-1:-1:-1;61731:105:0;;;;;:::i;:::-;;:::i;62450:84::-;;;;;;;;;;;;;:::i;47610:328::-;;;;;;;;;;-1:-1:-1;47610:328:0;;;;;:::i;:::-;;:::i;61435:288::-;;;;;;;;;;-1:-1:-1;61435:288:0;;;;;:::i;:::-;;:::i;62236:90::-;;;;;;;;;;;;;:::i;57316:80::-;;;;;;;;;;-1:-1:-1;57316:80:0;;;;-1:-1:-1;;;;;57316:80:0;;;61844:382;;;;;;;;;;-1:-1:-1;61844:382:0;;;;;:::i;:::-;;:::i;22893:201::-;;;;;;;;;;-1:-1:-1;22893:201:0;;;;;:::i;:::-;;:::i;43690:305::-;43792:4;-1:-1:-1;;;;;;43829:40:0;;-1:-1:-1;;;43829:40:0;;:105;;-1:-1:-1;;;;;;;43886:48:0;;-1:-1:-1;;;43886:48:0;43829:105;:158;;;-1:-1:-1;;;;;;;;;;36553:40:0;;;43951:36;43809:178;43690:305;-1:-1:-1;;43690:305:0:o;44635:100::-;44689:13;44722:5;44715:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44635:100;:::o;46194:221::-;46270:7;49537:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49537:16:0;46290:73;;;;-1:-1:-1;;;46290:73:0;;17434:2:1;46290:73:0;;;17416:21:1;17473:2;17453:18;;;17446:30;17512:34;17492:18;;;17485:62;-1:-1:-1;;;17563:18:1;;;17556:42;17615:19;;46290:73:0;;;;;;;;;-1:-1:-1;46383:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;46383:24:0;;46194:221::o;45717:411::-;45798:13;45814:23;45829:7;45814:14;:23::i;:::-;45798:39;;45862:5;-1:-1:-1;;;;;45856:11:0;:2;-1:-1:-1;;;;;45856:11:0;;;45848:57;;;;-1:-1:-1;;;45848:57:0;;18918:2:1;45848:57:0;;;18900:21:1;18957:2;18937:18;;;18930:30;18996:34;18976:18;;;18969:62;-1:-1:-1;;;19047:18:1;;;19040:31;19088:19;;45848:57:0;18716:397:1;45848:57:0;20788:10;-1:-1:-1;;;;;45940:21:0;;;;:62;;-1:-1:-1;45965:37:0;45982:5;20788:10;61844:382;:::i;45965:37::-;45918:168;;;;-1:-1:-1;;;45918:168:0;;15011:2:1;45918:168:0;;;14993:21:1;15050:2;15030:18;;;15023:30;15089:34;15069:18;;;15062:62;15160:26;15140:18;;;15133:54;15204:19;;45918:168:0;14809:420:1;45918:168:0;46099:21;46108:2;46112:7;46099:8;:21::i;:::-;45787:341;45717:411;;:::o;46944:339::-;47139:41;20788:10;47172:7;47139:18;:41::i;:::-;47131:103;;;;-1:-1:-1;;;47131:103:0;;;;;;;:::i;:::-;47247:28;47257:4;47263:2;47267:7;47247:9;:28::i;62542:173::-;22057:6;;-1:-1:-1;;;;;22057:6:0;20788:10;22204:23;22196:68;;;;-1:-1:-1;;;22196:68:0;;;;;;;:::i;:::-;62609:7:::1;62630;22057:6:::0;;-1:-1:-1;;;;;22057:6:0;;21984:87;62630:7:::1;-1:-1:-1::0;;;;;62622:21:0::1;62651;62622:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62608:69;;;62704:2;62696:11;;;::::0;::::1;;62589:126;62542:173::o:0;47354:185::-;47492:39;47509:4;47515:2;47519:7;47492:39;;;;;;;;;;;;:16;:39::i;62338:104::-;22057:6;;-1:-1:-1;;;;;22057:6:0;20788:10;22204:23;22196:68;;;;-1:-1:-1;;;22196:68:0;;;;;;;:::i;:::-;62414:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;62338:104:::0;:::o;44329:239::-;44401:7;44437:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44437:16:0;44472:19;44464:73;;;;-1:-1:-1;;;44464:73:0;;16663:2:1;44464:73:0;;;16645:21:1;16702:2;16682:18;;;16675:30;16741:34;16721:18;;;16714:62;-1:-1:-1;;;16792:18:1;;;16785:39;16841:19;;44464:73:0;16461:405:1;44059:208:0;44131:7;-1:-1:-1;;;;;44159:19:0;;44151:74;;;;-1:-1:-1;;;44151:74:0;;16252:2:1;44151:74:0;;;16234:21:1;16291:2;16271:18;;;16264:30;16330:34;16310:18;;;16303:62;-1:-1:-1;;;16381:18:1;;;16374:40;16431:19;;44151:74:0;16050:406:1;44151:74:0;-1:-1:-1;;;;;;44243:16:0;;;;;:9;:16;;;;;;;44059:208::o;57928:460::-;58067:10;;58055:9;58041:11;;:23;;;;:::i;:::-;:36;58033:91;;;;-1:-1:-1;;;58033:91:0;;15436:2:1;58033:91:0;;;15418:21:1;15475:2;15455:18;;;15448:30;15514:34;15494:18;;;15487:62;-1:-1:-1;;;15565:18:1;;;15558:40;15615:19;;58033:91:0;15234:406:1;58033:91:0;58136:9;58133:248;;58162:42;58171:10;;58183:9;58194;58162:8;:42::i;:::-;58133:248;;;58240:10;;;;58237:135;;;58264:19;58273:9;58264:8;:19::i;58237:135::-;58312:48;58327:10;;58339:9;58350;58312:14;:48::i;:::-;57928:460;;;;:::o;22635:103::-;22057:6;;-1:-1:-1;;;;;22057:6:0;20788:10;22204:23;22196:68;;;;-1:-1:-1;;;22196:68:0;;;;;;;:::i;:::-;22700:30:::1;22727:1;22700:18;:30::i;:::-;22635:103::o:0;44804:104::-;44860:13;44893:7;44886:14;;;;;:::i;57448:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59788:267::-;59847:4;;59884:15;59896:3;59884:9;:15;:::i;:::-;59864:35;-1:-1:-1;59910:16:0;59929:15;59941:3;59929:9;:15;:::i;:::-;59955:12;60001:31;;;:20;:31;;;;;;;59970:1;:13;;;60001:38;;;:46;;;;59788:267;-1:-1:-1;;;59788:267:0:o;46487:155::-;46582:52;20788:10;46615:8;46625;46582:18;:52::i;61731:105::-;22057:6;;-1:-1:-1;;;;;22057:6:0;20788:10;22204:23;22196:68;;;;-1:-1:-1;;;22196:68:0;;;;;;;:::i;:::-;61801:20:::1;:27:::0;;-1:-1:-1;;;;;;61801:27:0::1;-1:-1:-1::0;;;;;61801:27:0;;;::::1;::::0;;;::::1;::::0;;61731:105::o;62450:84::-;22057:6;;-1:-1:-1;;;;;22057:6:0;20788:10;22204:23;22196:68;;;;-1:-1:-1;;;22196:68:0;;;;;;;:::i;:::-;62515:11:::1;::::0;62502:10:::1;:24:::0;62450:84::o;47610:328::-;47785:41;20788:10;47818:7;47785:18;:41::i;:::-;47777:103;;;;-1:-1:-1;;;47777:103:0;;;;;;;:::i;:::-;47891:39;47905:4;47911:2;47915:7;47924:5;47891:13;:39::i;61435:288::-;49513:4;49537:16;;;:7;:16;;;;;;61509:13;;-1:-1:-1;;;;;49537:16:0;61535:66;;;;-1:-1:-1;;;61535:66:0;;15847:2:1;61535:66:0;;;15829:21:1;15886:2;15866:18;;;15859:30;15925:34;15905:18;;;15898:62;-1:-1:-1;;;15976:18:1;;;15969:34;16020:19;;61535:66:0;15645:400:1;61535:66:0;61643:1;61625:7;61619:21;;;;;:::i;:::-;;;:25;:96;;;;;;;;;;;;;;;;;61671:7;61680:19;:8;:17;:19::i;:::-;61654:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61612:103;61435:288;-1:-1:-1;;61435:288:0:o;62236:90::-;22057:6;;-1:-1:-1;;;;;22057:6:0;20788:10;22204:23;22196:68;;;;-1:-1:-1;;;22196:68:0;;;;;;;:::i;:::-;62308:10:::1;::::0;;-1:-1:-1;;62294:24:0;::::1;62308:10;::::0;;::::1;62307:11;62294:24;::::0;;62236:90::o;61844:382::-;62035:20;;62079:28;;-1:-1:-1;;;62079:28:0;;-1:-1:-1;;;;;8398:32:1;;;62079:28:0;;;8380:51:1;61969:4:0;;62035:20;;;62071:49;;;;62035:20;;62079:21;;8353:18:1;;62079:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;62071:49:0;;62067:93;;;62144:4;62137:11;;;;;62067:93;-1:-1:-1;;;;;46834:25:0;;;46810:4;46834:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;62179:39;62172:46;61844:382;-1:-1:-1;;;;61844:382:0:o;22893:201::-;22057:6;;-1:-1:-1;;;;;22057:6:0;20788:10;22204:23;22196:68;;;;-1:-1:-1;;;22196:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22982:22:0;::::1;22974:73;;;::::0;-1:-1:-1;;;22974:73:0;;12318:2:1;22974:73:0::1;::::0;::::1;12300:21:1::0;12357:2;12337:18;;;12330:30;12396:34;12376:18;;;12369:62;-1:-1:-1;;;12447:18:1;;;12440:36;12493:19;;22974:73:0::1;12116:402:1::0;22974:73:0::1;23058:28;23077:8;23058:18;:28::i;53594:174::-:0;53669:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;53669:29:0;-1:-1:-1;;;;;53669:29:0;;;;;;;;:24;;53723:23;53669:24;53723:14;:23::i;:::-;-1:-1:-1;;;;;53714:46:0;;;;;;;;;;;53594:174;;:::o;49742:348::-;49835:4;49537:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49537:16:0;49852:73;;;;-1:-1:-1;;;49852:73:0;;14247:2:1;49852:73:0;;;14229:21:1;14286:2;14266:18;;;14259:30;14325:34;14305:18;;;14298:62;-1:-1:-1;;;14376:18:1;;;14369:42;14428:19;;49852:73:0;14045:408:1;49852:73:0;49936:13;49952:23;49967:7;49952:14;:23::i;:::-;49936:39;;50005:5;-1:-1:-1;;;;;49994:16:0;:7;-1:-1:-1;;;;;49994:16:0;;:51;;;;50038:7;-1:-1:-1;;;;;50014:31:0;:20;50026:7;50014:11;:20::i;:::-;-1:-1:-1;;;;;50014:31:0;;49994:51;:87;;;;50049:32;50066:5;50073:7;50049:16;:32::i;52851:625::-;53010:4;-1:-1:-1;;;;;52983:31:0;:23;52998:7;52983:14;:23::i;:::-;-1:-1:-1;;;;;52983:31:0;;52975:81;;;;-1:-1:-1;;;52975:81:0;;12725:2:1;52975:81:0;;;12707:21:1;12764:2;12744:18;;;12737:30;12803:34;12783:18;;;12776:62;-1:-1:-1;;;12854:18:1;;;12847:35;12899:19;;52975:81:0;12523:401:1;52975:81:0;-1:-1:-1;;;;;53075:16:0;;53067:65;;;;-1:-1:-1;;;53067:65:0;;13488:2:1;53067:65:0;;;13470:21:1;13527:2;13507:18;;;13500:30;13566:34;13546:18;;;13539:62;-1:-1:-1;;;13617:18:1;;;13610:34;13661:19;;53067:65:0;13286:400:1;53067:65:0;53249:29;53266:1;53270:7;53249:8;:29::i;:::-;-1:-1:-1;;;;;53291:15:0;;;;;;:9;:15;;;;;:20;;53310:1;;53291:15;:20;;53310:1;;53291:20;:::i;:::-;;;;-1:-1:-1;;;;;;;53322:13:0;;;;;;:9;:13;;;;;:18;;53339:1;;53322:13;:18;;53339:1;;53322:18;:::i;:::-;;;;-1:-1:-1;;53351:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;53351:21:0;-1:-1:-1;;;;;53351:21:0;;;;;;;;;53390:27;;53351:16;;53390:27;;;;;;;45787:341;45717:411;;:::o;58698:542::-;58810:20;58820:9;58810;:20::i;:::-;58809:21;58801:61;;;;-1:-1:-1;;;58801:61:0;;18562:2:1;58801:61:0;;;18544:21:1;18601:2;18581:18;;;18574:30;18640:29;18620:18;;;18613:57;18687:18;;58801:61:0;18360:351:1;58801:61:0;58881:67;58889:39;58895:10;58907:9;58918;58889:5;:39::i;:::-;58930:10;;58881:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58881:67:0;-1:-1:-1;58881:7:0;;-1:-1:-1;;58881:67:0:i;:::-;58873:102;;;;-1:-1:-1;;;58873:102:0;;14660:2:1;58873:102:0;;;14642:21:1;14699:2;14679:18;;;14672:30;-1:-1:-1;;;14718:18:1;;;14711:52;14780:18;;58873:102:0;14458:346:1;58873:102:0;58986:22;58998:9;58986:11;:22::i;:::-;59023:6;59019:179;59036:9;59033:1;:12;59019:179;;;59066:21;:9;3358:19;;3376:1;3358:19;;;3269:127;59066:21;59102:18;59123:19;:9;3239:14;;3147:114;59123:19;59102:40;;59157:29;59163:10;59175;59157:5;:29::i;:::-;-1:-1:-1;59047:3:0;;;;:::i;:::-;;;;59019:179;;;;59223:9;59208:11;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;58698:542:0:o;58396:294::-;58481:9;58471:7;;:19;;;;:::i;:::-;58458:9;:32;;58450:67;;;;-1:-1:-1;;;58450:67:0;;11548:2:1;58450:67:0;;;11530:21:1;11587:2;11567:18;;;11560:30;-1:-1:-1;;;11606:18:1;;;11599:52;11668:18;;58450:67:0;11346:346:1;58450:67:0;58530:6;58526:124;58544:9;58540:1;:13;58526:124;;;58570:21;:9;3358:19;;3376:1;3358:19;;;3269:127;58570:21;58602:38;58608:10;58620:19;:9;3239:14;;3147:114;58620:19;58602:5;:38::i;:::-;58555:3;;;;:::i;:::-;;;;58526:124;;;;58673:9;58658:11;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;;;58396:294:0:o;59248:532::-;59396:9;59377:16;;:28;;;;:::i;:::-;59364:9;:41;;59356:79;;;;-1:-1:-1;;;59356:79:0;;17847:2:1;59356:79:0;;;17829:21:1;17886:2;17866:18;;;17859:30;17925:27;17905:18;;;17898:55;17970:18;;59356:79:0;17645:349:1;59356:79:0;59454:64;59462:37;59477:10;59489:9;59462:14;:37::i;:::-;59501:10;;59454:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59513:4:0;;-1:-1:-1;59454:7:0;;-1:-1:-1;;59454:64:0:i;:::-;59446:99;;;;-1:-1:-1;;;59446:99:0;;14660:2:1;59446:99:0;;;14642:21:1;14699:2;14679:18;;;14672:30;-1:-1:-1;;;14718:18:1;;;14711:52;14780:18;;59446:99:0;14458:346:1;59446:99:0;59561:6;59556:182;59575:9;59572:1;:12;59556:182;;;59606:21;:9;3358:19;;3376:1;3358:19;;;3269:127;59606:21;59642:18;59663:19;:9;3239:14;;3147:114;59663:19;59642:40;;59697:29;59703:10;59715;59697:5;:29::i;:::-;-1:-1:-1;59587:3:0;;;;:::i;:::-;;;;59556:182;;23254:191;23347:6;;;-1:-1:-1;;;;;23364:17:0;;;-1:-1:-1;;;;;;23364:17:0;;;;;;;23397:40;;23347:6;;;23364:17;23347:6;;23397:40;;23328:16;;23397:40;23317:128;23254:191;:::o;53910:315::-;54065:8;-1:-1:-1;;;;;54056:17:0;:5;-1:-1:-1;;;;;54056:17:0;;;54048:55;;;;-1:-1:-1;;;54048:55:0;;13893:2:1;54048:55:0;;;13875:21:1;13932:2;13912:18;;;13905:30;13971:27;13951:18;;;13944:55;14016:18;;54048:55:0;13691:349:1;54048:55:0;-1:-1:-1;;;;;54114:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;54114:46:0;;;;;;;;;;54176:41;;9086::1;;;54176::0;;9059:18:1;54176:41:0;;;;;;;53910:315;;;:::o;48820:::-;48977:28;48987:4;48993:2;48997:7;48977:9;:28::i;:::-;49024:48;49047:4;49053:2;49057:7;49066:5;49024:22;:48::i;:::-;49016:111;;;;-1:-1:-1;;;49016:111:0;;;;;;;:::i;4105:723::-;4161:13;4382:10;4378:53;;-1:-1:-1;;4409:10:0;;;;;;;;;;;;-1:-1:-1;;;4409:10:0;;;;;4105:723::o;4378:53::-;4456:5;4441:12;4497:78;4504:9;;4497:78;;4530:8;;;;:::i;:::-;;-1:-1:-1;4553:10:0;;-1:-1:-1;4561:2:0;4553:10;;:::i;:::-;;;4497:78;;;4585:19;4617:6;4607:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4607:17:0;;4585:39;;4635:154;4642:10;;4635:154;;4669:11;4679:1;4669:11;;:::i;:::-;;-1:-1:-1;4738:10:0;4746:2;4738:5;:10;:::i;:::-;4725:24;;:2;:24;:::i;:::-;4712:39;;4695:6;4702;4695:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4695:56:0;;;;;;;;-1:-1:-1;4766:11:0;4775:2;4766:11;;:::i;:::-;;;4635:154;;60307:345;60465:177;;;60490:70;60465:177;;;9719:25:1;-1:-1:-1;;;;;9780:32:1;;9760:18;;;9753:60;;;;9829:18;;;9822:34;;;9872:18;;;9865:34;;;60406:7:0;;60438:206;;9691:19:1;;60465:177:0;;;;;;;;;;;;;60455:188;;;;;;60438:16;:206::i;:::-;60431:213;;60307:345;;;;;;:::o;60961:352::-;61064:4;61092:11;61089:214;;;61160:16;;61123:73;;-1:-1:-1;;;;;61160:16:0;61178:6;61186:9;61123:36;:73::i;:::-;61116:80;;;;61089:214;61267:16;;61230:73;;-1:-1:-1;;;;;61267:16:0;61285:6;61293:9;61230:36;:73::i;60063:236::-;60122:17;60142:15;60154:3;60142:9;:15;:::i;:::-;60122:35;-1:-1:-1;60168:16:0;60187:15;60199:3;60187:9;:15;:::i;:::-;60213:12;60252:31;;;:20;:31;;;;;;:39;;60228:1;:13;;;60252:39;;;;;;-1:-1:-1;;60063:236:0:o;51426:439::-;-1:-1:-1;;;;;51506:16:0;;51498:61;;;;-1:-1:-1;;;51498:61:0;;17073:2:1;51498:61:0;;;17055:21:1;;;17092:18;;;17085:30;17151:34;17131:18;;;17124:62;17203:18;;51498:61:0;16871:356:1;51498:61:0;49513:4;49537:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49537:16:0;:30;51570:58;;;;-1:-1:-1;;;51570:58:0;;13131:2:1;51570:58:0;;;13113:21:1;13170:2;13150:18;;;13143:30;13209;13189:18;;;13182:58;13257:18;;51570:58:0;12929:352:1;51570:58:0;-1:-1:-1;;;;;51699:13:0;;;;;;:9;:13;;;;;:18;;51716:1;;51699:13;:18;;51716:1;;51699:18;:::i;:::-;;;;-1:-1:-1;;51728:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;51728:21:0;-1:-1:-1;;;;;51728:21:0;;;;;;;;51767:33;;51728:16;;;51767:33;;51728:16;;51767:33;62414:20:::1;62338:104:::0;:::o;60660:293::-;60808:135;;;60833:52;60808:135;;;9340:25:1;-1:-1:-1;;;;;9401:32:1;;9381:18;;;9374:60;;;;9450:18;;;9443:34;;;60749:7:0;;60781:164;;9313:18:1;;60808:135:0;9138:345:1;54790:799:0;54945:4;-1:-1:-1;;;;;54966:13:0;;24980:19;:23;54962:620;;55002:72;;-1:-1:-1;;;55002:72:0;;-1:-1:-1;;;;;55002:36:0;;;;;:72;;20788:10;;55053:4;;55059:7;;55068:5;;55002:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55002:72:0;;;;;;;;-1:-1:-1;;55002:72:0;;;;;;;;;;;;:::i;:::-;;;54998:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55244:13:0;;55240:272;;55287:60;;-1:-1:-1;;;55287:60:0;;;;;;;:::i;55240:272::-;55462:6;55456:13;55447:6;55443:2;55439:15;55432:38;54998:529;-1:-1:-1;;;;;;55125:51:0;-1:-1:-1;;;55125:51:0;;-1:-1:-1;55118:58:0;;54962:620;-1:-1:-1;55566:4:0;54790:799;;;;;;:::o;19855:167::-;19932:7;19959:55;19981:20;:18;:20::i;:::-;20003:10;15325:57;;-1:-1:-1;;;15325:57:0;;;7885:27:1;7928:11;;;7921:27;;;7964:12;;;7957:28;;;15288:7:0;;8001:12:1;;15325:57:0;;;;;;;;;;;;15315:68;;;;;;15308:75;;15195:196;;;;;32977:647;33117:4;33135:17;33154:24;33182:33;33199:4;33205:9;33182:16;:33::i;:::-;33134:81;;-1:-1:-1;33134:81:0;-1:-1:-1;33239:26:0;33230:5;:35;;;;;;;;:::i;:::-;;:58;;;;;33282:6;-1:-1:-1;;;;;33269:19:0;:9;-1:-1:-1;;;;;33269:19:0;;33230:58;33226:102;;;33312:4;33305:11;;;;;;33226:102;33341:12;33355:19;33378:6;-1:-1:-1;;;;;33378:17:0;33433:34;;;33469:4;33475:9;33410:75;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;33410:75:0;;;;;;;;;;;;;;-1:-1:-1;;;;;33410:75:0;-1:-1:-1;;;;;;33410:75:0;;;;;;;;;;33378:118;;;;33410:75;33378:118;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33340:156;;;;33515:7;:30;;;;;33526:6;:13;33543:2;33526:19;33515:30;:100;;;;-1:-1:-1;33549:28:0;;-1:-1:-1;;;33581:34:0;33549:28;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;33549:66:0;;33515:100;33507:109;32977:647;-1:-1:-1;;;;;;;;32977:647:0:o;18628:314::-;18681:7;18713:4;-1:-1:-1;;;;;18722:12:0;18705:29;;:66;;;;;18755:16;18738:13;:33;18705:66;18701:234;;;-1:-1:-1;18795:24:0;;18628:314::o;18701:234::-;-1:-1:-1;19131:73:0;;;18881:10;19131:73;;;;10169:25:1;;;;18893:12:0;10210:18:1;;;10203:34;18907:15:0;10253:18:1;;;10246:34;19175:13:0;10296:18:1;;;10289:34;19198:4:0;10339:19:1;;;;10332:61;;;;19131:73:0;;;;;;;;;;10141:19:1;;;;19131:73:0;;;19121:84;;;;;;18628:314::o;8171:1308::-;8252:7;8261:12;8486:9;:16;8506:2;8486:22;8482:990;;;8782:4;8767:20;;8761:27;8832:4;8817:20;;8811:27;8890:4;8875:20;;8869:27;8525:9;8861:36;8933:25;8944:4;8861:36;8761:27;8811;8933:10;:25::i;:::-;8926:32;;;;;;;;;8482:990;8980:9;:16;9000:2;8980:22;8976:496;;;9255:4;9240:20;;9234:27;9306:4;9291:20;;9285:27;9348:23;9359:4;9234:27;9285;9348:10;:23::i;:::-;9341:30;;;;;;;;8976:496;-1:-1:-1;9420:1:0;;-1:-1:-1;9424:35:0;8976:496;8171:1308;;;;;:::o;11733:1632::-;11864:7;;12798:66;12785:79;;12781:163;;;-1:-1:-1;12897:1:0;;-1:-1:-1;12901:30:0;12881:51;;12781:163;12958:1;:7;;12963:2;12958:7;;:18;;;;;12969:1;:7;;12974:2;12969:7;;12958:18;12954:102;;;-1:-1:-1;13009:1:0;;-1:-1:-1;13013:30:0;12993:51;;12954:102;13170:24;;;13153:14;13170:24;;;;;;;;;10935:25:1;;;11008:4;10996:17;;10976:18;;;10969:45;;;;11030:18;;;11023:34;;;11073:18;;;11066:34;;;13170:24:0;;10907:19:1;;13170:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;13170:24:0;;-1:-1:-1;;13170:24:0;;;-1:-1:-1;;;;;;;13209:20:0;;13205:103;;13262:1;13266:29;13246:50;;;;;;;13205:103;13328:6;-1:-1:-1;13336:20:0;;-1:-1:-1;11733:1632:0;;;;;;;;:::o;10775:344::-;10889:7;;-1:-1:-1;;;;;10935:80:0;;10889:7;11042:25;11058:3;11043:18;;;11065:2;11042:25;:::i;:::-;11026:42;;11086:25;11097:4;11103:1;11106;11109;11086:10;:25::i;:::-;11079:32;;;;;;10775:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:52;;;1047:1;1044;1037:12;999:52;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;902:388;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1295:456;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1295:456::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:53;;;1945:1;1942;1935:12;1896:53;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;2311:18;2300:30;;2297:50;;;2343:1;2340;2333:12;2297:50;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:55:1;;2448:1;2445;2438:12;2397:55;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1756:794;;;;;;;:::o;2555:416::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2904:15;;2897:23;2885:36;;2875:64;;2935:1;2932;2925:12;2976:315;3044:6;3052;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3160:9;3147:23;3179:31;3204:5;3179:31;:::i;:::-;3229:5;3281:2;3266:18;;;;3253:32;;-1:-1:-1;;;2976:315:1:o;3296:245::-;3354:6;3407:2;3395:9;3386:7;3382:23;3378:32;3375:52;;;3423:1;3420;3413:12;3375:52;3462:9;3449:23;3481:30;3505:5;3481:30;:::i;3546:249::-;3615:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:52;;;3684:1;3681;3674:12;3636:52;3716:9;3710:16;3735:30;3759:5;3735:30;:::i;3800:733::-;3888:6;3896;3904;3912;3965:2;3953:9;3944:7;3940:23;3936:32;3933:52;;;3981:1;3978;3971:12;3933:52;4021:9;4008:23;4050:18;4091:2;4083:6;4080:14;4077:34;;;4107:1;4104;4097:12;4077:34;4145:6;4134:9;4130:22;4120:32;;4190:7;4183:4;4179:2;4175:13;4171:27;4161:55;;4212:1;4209;4202:12;4161:55;4252:2;4239:16;4278:2;4270:6;4267:14;4264:34;;;4294:1;4291;4284:12;4264:34;4341:7;4334:4;4325:6;4321:2;4317:15;4313:26;4310:39;4307:59;;;4362:1;4359;4352:12;4307:59;4393:4;4385:13;;;;4417:6;;-1:-1:-1;4455:20:1;;;4442:34;;4523:2;4508:18;4495:32;;-1:-1:-1;3800:733:1;;-1:-1:-1;;;;3800:733:1:o;4538:280::-;4637:6;4690:2;4678:9;4669:7;4665:23;4661:32;4658:52;;;4706:1;4703;4696:12;4658:52;4738:9;4732:16;4757:31;4782:5;4757:31;:::i;4823:450::-;4892:6;4945:2;4933:9;4924:7;4920:23;4916:32;4913:52;;;4961:1;4958;4951:12;4913:52;5001:9;4988:23;5034:18;5026:6;5023:30;5020:50;;;5066:1;5063;5056:12;5020:50;5089:22;;5142:4;5134:13;;5130:27;-1:-1:-1;5120:55:1;;5171:1;5168;5161:12;5120:55;5194:73;5259:7;5254:2;5241:16;5236:2;5232;5228:11;5194:73;:::i;5278:180::-;5337:6;5390:2;5378:9;5369:7;5365:23;5361:32;5358:52;;;5406:1;5403;5396:12;5358:52;-1:-1:-1;5429:23:1;;5278:180;-1:-1:-1;5278:180:1:o;5463:268::-;5515:3;5553:5;5547:12;5580:6;5575:3;5568:19;5596:63;5652:6;5645:4;5640:3;5636:14;5629:4;5622:5;5618:16;5596:63;:::i;:::-;5713:2;5692:15;-1:-1:-1;;5688:29:1;5679:39;;;;5720:4;5675:50;;5463:268;-1:-1:-1;;5463:268:1:o;5736:184::-;5777:3;5815:5;5809:12;5830:52;5875:6;5870:3;5863:4;5856:5;5852:16;5830:52;:::i;:::-;5898:16;;;;;5736:184;-1:-1:-1;;5736:184:1:o;6043:274::-;6172:3;6210:6;6204:13;6226:53;6272:6;6267:3;6260:4;6252:6;6248:17;6226:53;:::i;:::-;6295:16;;;;;6043:274;-1:-1:-1;;6043:274:1:o;6322:1300::-;6599:3;6628:1;6661:6;6655:13;6691:3;6713:1;6741:9;6737:2;6733:18;6723:28;;6801:2;6790:9;6786:18;6823;6813:61;;6867:4;6859:6;6855:17;6845:27;;6813:61;6893:2;6941;6933:6;6930:14;6910:18;6907:38;6904:165;;;-1:-1:-1;;;6968:33:1;;7024:4;7021:1;7014:15;7054:4;6975:3;7042:17;6904:165;7085:18;7112:104;;;;7230:1;7225:320;;;;7078:467;;7112:104;-1:-1:-1;;7145:24:1;;7133:37;;7190:16;;;;-1:-1:-1;7112:104:1;;7225:320;19791:1;19784:14;;;19828:4;19815:18;;7320:1;7334:165;7348:6;7345:1;7342:13;7334:165;;;7426:14;;7413:11;;;7406:35;7469:16;;;;7363:10;;7334:165;;;7338:3;;7528:6;7523:3;7519:16;7512:23;;7078:467;;;;;;;7561:55;7586:29;7611:3;7603:6;7586:29;:::i;:::-;-1:-1:-1;;;5985:20:1;;6030:1;6021:11;;5925:113;7561:55;7554:62;6322:1300;-1:-1:-1;;;;;6322:1300:1:o;8442:499::-;-1:-1:-1;;;;;8711:15:1;;;8693:34;;8763:15;;8758:2;8743:18;;8736:43;8810:2;8795:18;;8788:34;;;8858:3;8853:2;8838:18;;8831:31;;;8636:4;;8879:56;;8915:19;;8907:6;8879:56;:::i;:::-;8871:64;8442:499;-1:-1:-1;;;;;;8442:499:1:o;10404:299::-;10579:6;10568:9;10561:25;10622:2;10617;10606:9;10602:18;10595:30;10542:4;10642:55;10693:2;10682:9;10678:18;10670:6;10642:55;:::i;11111:230::-;11260:2;11249:9;11242:21;11223:4;11280:55;11331:2;11320:9;11316:18;11308:6;11280:55;:::i;11697:414::-;11899:2;11881:21;;;11938:2;11918:18;;;11911:30;11977:34;11972:2;11957:18;;11950:62;-1:-1:-1;;;12043:2:1;12028:18;;12021:48;12101:3;12086:19;;11697:414::o;17999:356::-;18201:2;18183:21;;;18220:18;;;18213:30;18279:34;18274:2;18259:18;;18252:62;18346:2;18331:18;;17999:356::o;19118:413::-;19320:2;19302:21;;;19359:2;19339:18;;;19332:30;19398:34;19393:2;19378:18;;19371:62;-1:-1:-1;;;19464:2:1;19449:18;;19442:47;19521:3;19506:19;;19118:413::o;19844:128::-;19884:3;19915:1;19911:6;19908:1;19905:13;19902:39;;;19921:18;;:::i;:::-;-1:-1:-1;19957:9:1;;19844:128::o;19977:120::-;20017:1;20043;20033:35;;20048:18;;:::i;:::-;-1:-1:-1;20082:9:1;;19977:120::o;20102:168::-;20142:7;20208:1;20204;20200:6;20196:14;20193:1;20190:21;20185:1;20178:9;20171:17;20167:45;20164:71;;;20215:18;;:::i;:::-;-1:-1:-1;20255:9:1;;20102:168::o;20275:125::-;20315:4;20343:1;20340;20337:8;20334:34;;;20348:18;;:::i;:::-;-1:-1:-1;20385:9:1;;20275:125::o;20405:258::-;20477:1;20487:113;20501:6;20498:1;20495:13;20487:113;;;20577:11;;;20571:18;20558:11;;;20551:39;20523:2;20516:10;20487:113;;;20618:6;20615:1;20612:13;20609:48;;;-1:-1:-1;;20653:1:1;20635:16;;20628:27;20405:258::o;20668:380::-;20747:1;20743:12;;;;20790;;;20811:61;;20865:4;20857:6;20853:17;20843:27;;20811:61;20918:2;20910:6;20907:14;20887:18;20884:38;20881:161;;;20964:10;20959:3;20955:20;20952:1;20945:31;20999:4;20996:1;20989:15;21027:4;21024:1;21017:15;20881:161;;20668:380;;;:::o;21053:135::-;21092:3;-1:-1:-1;;21113:17:1;;21110:43;;;21133:18;;:::i;:::-;-1:-1:-1;21180:1:1;21169:13;;21053:135::o;21193:112::-;21225:1;21251;21241:35;;21256:18;;:::i;:::-;-1:-1:-1;21290:9:1;;21193:112::o;21310:127::-;21371:10;21366:3;21362:20;21359:1;21352:31;21402:4;21399:1;21392:15;21426:4;21423:1;21416:15;21442:127;21503:10;21498:3;21494:20;21491:1;21484:31;21534:4;21531:1;21524:15;21558:4;21555:1;21548:15;21574:127;21635:10;21630:3;21626:20;21623:1;21616:31;21666:4;21663:1;21656:15;21690:4;21687:1;21680:15;21706:127;21767:10;21762:3;21758:20;21755:1;21748:31;21798:4;21795:1;21788:15;21822:4;21819:1;21812:15;21838:127;21899:10;21894:3;21890:20;21887:1;21880:31;21930:4;21927:1;21920:15;21954:4;21951:1;21944:15;21970:131;-1:-1:-1;;;;;22045:31:1;;22035:42;;22025:70;;22091:1;22088;22081:12;22106:131;-1:-1:-1;;;;;;22180:32:1;;22170:43;;22160:71;;22227:1;22224;22217:12

Swarm Source

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