ETH Price: $3,265.02 (-0.31%)
Gas: 2 Gwei

Token

SHER NFT (SHERS1)
 

Overview

Max Total Supply

42 SHERS1

Holders

33

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mrsnfty.eth
Balance
1 SHERS1
0x40e14e68a8950affd28c191cd97edc004f798dbd
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:
SHERS1Contract

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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 v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

// 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/security/Pausable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// 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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: SHER_contract_testVer.sol


pragma solidity ^0.8.0;









//****************************************************************************************************//
//       .....                   .        .                  .........                 ........       //
//     :^    .~                  7        !:                 !:   .                    ~^     .~:     //
//     ^^.                       7  .~!:  !.                 !. .~!:                   ~:      ^^     //
//       ....:^.                 7  ~77!. !.                 !. ~77!.                  ~~...:~:.      //
//     ^.     ~^                 7   ..   !:                 !.  ..                    ~^    .^.      //
//      .:...:.                  ^        :.                 ^:.......                 :.      :.     //
//****************************************************************************************************//

// @author teamSHER, METAMO

contract SHERS1Contract is ERC721Enumerable, EIP712, Ownable, Pausable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public supply = 1000;            // Total supply (reserved + whitelist + public sale)
    uint256 public reservedNFTs = 50;        // Reserved token for promotion and giveaway
    uint256 public cost = 0.1 ether;         // Public Sale price
    uint256 public costWL = 0.06 ether;      // Whitelist Price
    uint256 public maxMint = 10;             // Max mint per single transaction
    uint256 public MAX_WL_PER_WALLET = 5;    // Max WL token per Wallet
    uint256 public WHITELIST_NFTS = 500;     // Token Reserved for Whitelist

    uint256 public mintedReservedNFTs=0;
    uint256 public mintedWhitelistedNFTs=0;

    uint256 address1Percentage = 50; // % for Production
    uint256 address2Percentage = 25; // % for Marketing
    uint256 address3Percentage = 25; // % for Digital Ops

    // Addresses for Withdrawral
    address address1 = 0x4D67236FB49e476f80846DD435049d301FB15977; // Production
    address address2 = 0xBBF164aC713cfDa20EeB90EfDF7478ACe9DEDA6d; // Marketing
    address address3 = 0x58e2C833E7Dab378Cf9EC3d8Fd10C89214678991; // Digital Ops

    mapping(address => uint256) public totalMintedWhitelist;     // Return number of tokens minted by each address

    string public baseURI;

    string private SIGNING_DOMAIN;
    string private SIGNATURE_VERSION;

    bool public pauseWL;

    constructor(string memory _initialBaseURI, string memory _SIGNING_DOMAIN, string memory _SIGNATURE_VERSION)
     ERC721("SHER NFT", "SHERS1")
     EIP712(_SIGNING_DOMAIN, _SIGNATURE_VERSION)
     {
        baseURI = _initialBaseURI;
        SIGNING_DOMAIN = _SIGNING_DOMAIN;
        SIGNATURE_VERSION = _SIGNATURE_VERSION;
        pauseWL=true;
        _pause();
    }
    
    function setCost(uint256 _cost) external onlyOwner{
        cost = _cost;
    }

    function setCostWL(uint256 _costWL) external onlyOwner{
        costWL = _costWL;
    }

    function setMaxMintWL(uint256 _maxMintWL) external onlyOwner{
        MAX_WL_PER_WALLET = _maxMintWL;
    }

    function setWhitelistNFTs(uint256 _numberOfWhitelist) external onlyOwner{
        WHITELIST_NFTS = _numberOfWhitelist;
    }

    function setTotalSupply(uint256 _supply) external onlyOwner{
        require(_supply > WHITELIST_NFTS+reservedNFTs + totalSupply() , "Total number of Minted token is > new supply");
        supply = _supply;
    }

    function setMaxMint(uint256 _maxMint) external onlyOwner{
        maxMint = _maxMint;
    }

    function setMaxReserve(uint256 _reservedNFTs) external onlyOwner{
        require(_reservedNFTs > mintedReservedNFTs, "Total number of Minted reserve is > new reserve");
        reservedNFTs = _reservedNFTs;
    }

    function setPause(bool _bool) external onlyOwner{
        if(_bool)_pause();
        else _unpause();
    }

    function setPauseWL(bool _bool) external onlyOwner{
        pauseWL=_bool;
    }

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

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }
   
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    return bytes(_baseURI()).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
    }

    // Minting functions //
    // Giveaway //
    function mintReserved(address _to, uint256 _nftCount) external onlyOwner {
        require(mintedReservedNFTs + _nftCount <= reservedNFTs, "All Reserved NFTs have been minted");
        _mintNFT(_to, _nftCount);
        mintedReservedNFTs += _nftCount;
    }

    function _mintNFT(address _to, uint256 _nftCount) private {
        uint256 totalSupply = totalSupply();
        require(_nftCount > 0, "Must mint at least one NFT");

        for (uint256 i = 1; i <= _nftCount; i++) {
            _safeMint(_to, totalSupply + i);
        }

    }

    function mintNFT(uint256 _nftCount) external payable whenNotPaused {
        uint256 totalSupply = totalSupply();
        require(_nftCount <= maxMint, "Minting Qty is > Max Mint");
        require(cost * _nftCount == msg.value, "ETH amount is incorrect");
        require(totalSupply - mintedReservedNFTs - mintedWhitelistedNFTs + _nftCount <= supply - reservedNFTs - WHITELIST_NFTS , "All NFTs have been minted. Hit the trading floor");

        _mintNFT(msg.sender, _nftCount);
    }

    function mintNFTwhitelist(uint256 _nftCount, string memory hash, string memory code, bytes memory signature) external payable whenNotPaused { 
        require(!pauseWL,"Whitelist is paused.");
        require(_nftCount <= maxMint, "Minting Qty is > Max Mint");
        require(check(hash, code, signature)==msg.sender, "User must be whitelisted in order to Mint");
        require(totalMintedWhitelist[msg.sender] + _nftCount <= MAX_WL_PER_WALLET, "Whitelist amount exceeded in Wallet");
        require(costWL * _nftCount == msg.value, "ETH amount is incorrect");
        require(mintedWhitelistedNFTs + _nftCount <= WHITELIST_NFTS , "All Whitelist Sold Out");

        _mintNFT(msg.sender, _nftCount);
        mintedWhitelistedNFTs += _nftCount;
        totalMintedWhitelist[msg.sender] += _nftCount;
    }

    // Whitelist Checker //
    function check(string memory hash, string memory code, bytes memory signature) public view returns (address) {
        return _verify(hash, code, signature);
    }

    // Verify Address with ECDSA //
    function _verify(string memory hash, string memory code, bytes memory signature) internal view returns (address) {
        bytes32 digest = _hash(hash, code);
        return ECDSA.recover(digest, signature);
    }

    // Response to signTypedData_v4 // 
    function _hash(string memory hash, string memory code) internal view returns (bytes32) {
        return _hashTypedDataV4(keccak256(abi.encode(
            keccak256("Web3Struct(string Action,string Code)"),
            keccak256(bytes(hash)),
            keccak256(bytes(code))
        )));
    }

    // Withdraw //
    function withdraw() external payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Balance must be > 0");
        (bool success1,) = (address1).call{value : balance.mul(address1Percentage).div(100)}("");
        (bool success2,) = (address2).call{value : balance.mul(address2Percentage).div(100)}("");
        (bool success3,) = (address3).call{value : balance.mul(address3Percentage).div(100)}("");
        bool success = success1 && success2 && success3;
        require(success, "Failed to withdraw Ether");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"},{"internalType":"string","name":"_SIGNING_DOMAIN","type":"string"},{"internalType":"string","name":"_SIGNATURE_VERSION","type":"string"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_WL_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_NFTS","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":[{"internalType":"string","name":"hash","type":"string"},{"internalType":"string","name":"code","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"check","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftCount","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftCount","type":"uint256"},{"internalType":"string","name":"hash","type":"string"},{"internalType":"string","name":"code","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintNFTwhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_nftCount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedReservedNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedWhitelistedNFTs","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":[],"name":"pauseWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_costWL","type":"uint256"}],"name":"setCostWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintWL","type":"uint256"}],"name":"setMaxMintWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reservedNFTs","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setPauseWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfWhitelist","type":"uint256"}],"name":"setWhitelistNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalMintedWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6101406040526103e8600b556032600c81905567016345785d8a0000600d5566d529ae9e860000600e55600a600f5560056010556101f460115560006012819055601355601455601960158190556016819055601780546001600160a01b0319908116734d67236fb49e476f80846dd435049d301fb159771790915560188054821673bbf164ac713cfda20eeb90efdf7478ace9deda6d1790558154167358e2c833e7dab378cf9ec3d8fd10c89214678991179055348015620000c157600080fd5b50604051620039a8380380620039a8833981016040819052620000e491620004cf565b604080518082018252600881526714d211548813919560c21b60208083019182528351808501909452600684526553484552533160d01b9084015281518593859392909162000136916000916200035c565b5080516200014c9060019060208401906200035c565b5050825160209384012082519284019290922060e08390526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818901819052818301979097526060810194909452608080850193909352308483018190528151808603909301835260c0948501909152815191909601209052929092526101205250620001e93362000258565b600a805460ff60a01b1916905582516200020b90601b9060208601906200035c565b5081516200022190601c9060208501906200035c565b5080516200023790601d9060208401906200035c565b50601e805460ff191660011790556200024f620002aa565b5050506200059d565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002be600a54600160a01b900460ff1690565b15620003035760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200033f3390565b6040516001600160a01b03909116815260200160405180910390a1565b8280546200036a9062000560565b90600052602060002090601f0160209004810192826200038e5760008555620003d9565b82601f10620003a957805160ff1916838001178555620003d9565b82800160010185558215620003d9579182015b82811115620003d9578251825591602001919060010190620003bc565b50620003e7929150620003eb565b5090565b5b80821115620003e75760008155600101620003ec565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200042a57600080fd5b81516001600160401b038082111562000447576200044762000402565b604051601f8301601f19908116603f0116810190828211818310171562000472576200047262000402565b816040528381526020925086838588010111156200048f57600080fd5b600091505b83821015620004b3578582018301518183018401529082019062000494565b83821115620004c55760008385830101525b9695505050505050565b600080600060608486031215620004e557600080fd5b83516001600160401b0380821115620004fd57600080fd5b6200050b8783880162000418565b945060208601519150808211156200052257600080fd5b620005308783880162000418565b935060408601519150808211156200054757600080fd5b50620005568682870162000418565b9150509250925092565b600181811c908216806200057557607f821691505b602082108114156200059757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051610120516133bb620005ed600039600061286b015260006128ba01526000612895015260006127ee015260006128180152600061284201526133bb6000f3fe6080604052600436106102885760003560e01c80636ed3ec951161015a578063b58be572116100c1578063d9ef45351161007a578063d9ef45351461072b578063e26274831461074b578063e600dec81461076b578063e985e9c514610798578063f2fde38b146107e1578063f7ea7a3d1461080157600080fd5b8063b58be5721461067f578063b88d4fde14610695578063bb8257f0146106b5578063bedb86fb146106cb578063c87b56dd146106eb578063ced2053b1461070b57600080fd5b80638da5cb5b116101135780638da5cb5b146105e9578063926427441461060757806395d89b411461061a5780639c960b3b1461062f578063a22cb46514610649578063a8d07d161461066957600080fd5b80636ed3ec951461054857806370a0823114610568578063715018a61461058857806371c5b4261461059d5780637501f741146105b35780637de55fe1146105c957600080fd5b80633ccfd60b116101fe57806355f804b3116101b757806355f804b3146104a157806356a87caa146104c15780635721db0b146104e15780635c975abb146104f45780636352211e146105135780636c0360eb1461053357600080fd5b80633ccfd60b1461040357806342842e0e1461040b57806344a0d68a1461042b5780634f6ccce71461044b57806351250f6b1461046b578063547520fe1461048157600080fd5b8063095ea7b311610250578063095ea7b31461035657806309bd93741461037857806313faede61461039857806318160ddd146103ae57806323b872dd146103c35780632f745c59146103e357600080fd5b806301ffc9a71461028d578063047fc9aa146102c257806306afd592146102e657806306fdde03146102fc578063081812fc1461031e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612c21565b610821565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d8600b5481565b6040519081526020016102b9565b3480156102f257600080fd5b506102d8600e5481565b34801561030857600080fd5b5061031161084c565b6040516102b99190612c96565b34801561032a57600080fd5b5061033e610339366004612ca9565b6108de565b6040516001600160a01b0390911681526020016102b9565b34801561036257600080fd5b50610376610371366004612cde565b610978565b005b34801561038457600080fd5b5061033e610393366004612dab565b610a8e565b3480156103a457600080fd5b506102d8600d5481565b3480156103ba57600080fd5b506008546102d8565b3480156103cf57600080fd5b506103766103de366004612e33565b610aa3565b3480156103ef57600080fd5b506102d86103fe366004612cde565b610ad4565b610376610b6a565b34801561041757600080fd5b50610376610426366004612e33565b610d8d565b34801561043757600080fd5b50610376610446366004612ca9565b610da8565b34801561045757600080fd5b506102d8610466366004612ca9565b610dd7565b34801561047757600080fd5b506102d860115481565b34801561048d57600080fd5b5061037661049c366004612ca9565b610e6a565b3480156104ad57600080fd5b506103766104bc366004612e6f565b610e99565b3480156104cd57600080fd5b506103766104dc366004612ca9565b610eda565b6103766104ef366004612ea4565b610f72565b34801561050057600080fd5b50600a54600160a01b900460ff166102ad565b34801561051f57600080fd5b5061033e61052e366004612ca9565b611219565b34801561053f57600080fd5b50610311611290565b34801561055457600080fd5b50610376610563366004612ca9565b61131e565b34801561057457600080fd5b506102d8610583366004612f36565b61134d565b34801561059457600080fd5b506103766113d4565b3480156105a957600080fd5b506102d860105481565b3480156105bf57600080fd5b506102d8600f5481565b3480156105d557600080fd5b506103766105e4366004612cde565b61140a565b3480156105f557600080fd5b50600a546001600160a01b031661033e565b610376610615366004612ca9565b6114c3565b34801561062657600080fd5b50610311611652565b34801561063b57600080fd5b50601e546102ad9060ff1681565b34801561065557600080fd5b50610376610664366004612f61565b611661565b34801561067557600080fd5b506102d860125481565b34801561068b57600080fd5b506102d8600c5481565b3480156106a157600080fd5b506103766106b0366004612f94565b61166c565b3480156106c157600080fd5b506102d860135481565b3480156106d757600080fd5b506103766106e6366004612ff0565b6116a4565b3480156106f757600080fd5b50610311610706366004612ca9565b6116e7565b34801561071757600080fd5b50610376610726366004612ca9565b6117bc565b34801561073757600080fd5b50610376610746366004612ca9565b6117eb565b34801561075757600080fd5b50610376610766366004612ff0565b61181a565b34801561077757600080fd5b506102d8610786366004612f36565b601a6020526000908152604090205481565b3480156107a457600080fd5b506102ad6107b336600461300b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ed57600080fd5b506103766107fc366004612f36565b611857565b34801561080d57600080fd5b5061037661081c366004612ca9565b6118ef565b60006001600160e01b0319821663780e9d6360e01b148061084657506108468261199e565b92915050565b60606000805461085b90613035565b80601f016020809104026020016040519081016040528092919081815260200182805461088790613035565b80156108d45780601f106108a9576101008083540402835291602001916108d4565b820191906000526020600020905b8154815290600101906020018083116108b757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661095c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061098382611219565b9050806001600160a01b0316836001600160a01b031614156109f15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610953565b336001600160a01b0382161480610a0d5750610a0d81336107b3565b610a7f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610953565b610a8983836119ee565b505050565b6000610a9b848484611a5c565b949350505050565b610aad3382611a7e565b610ac95760405162461bcd60e51b815260040161095390613070565b610a89838383611b71565b6000610adf8361134d565b8210610b415760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610953565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b945760405162461bcd60e51b8152600401610953906130c1565b4780610bd85760405162461bcd60e51b8152602060048201526013602482015272042616c616e6365206d757374206265203e203606c1b6044820152606401610953565b6017546014546000916001600160a01b031690610c0390606490610bfd908690611d1c565b90611d2f565b604051600081818185875af1925050503d8060008114610c3f576040519150601f19603f3d011682016040523d82523d6000602084013e610c44565b606091505b50506018546015549192506000916001600160a01b0390911690610c7090606490610bfd908790611d1c565b604051600081818185875af1925050503d8060008114610cac576040519150601f19603f3d011682016040523d82523d6000602084013e610cb1565b606091505b50506019546016549192506000916001600160a01b0390911690610cdd90606490610bfd908890611d1c565b604051600081818185875af1925050503d8060008114610d19576040519150601f19603f3d011682016040523d82523d6000602084013e610d1e565b606091505b505090506000838015610d2e5750825b8015610d375750815b905080610d865760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401610953565b5050505050565b610a898383836040518060200160405280600081525061166c565b600a546001600160a01b03163314610dd25760405162461bcd60e51b8152600401610953906130c1565b600d55565b6000610de260085490565b8210610e455760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610953565b60088281548110610e5857610e586130f6565b90600052602060002001549050919050565b600a546001600160a01b03163314610e945760405162461bcd60e51b8152600401610953906130c1565b600f55565b600a546001600160a01b03163314610ec35760405162461bcd60e51b8152600401610953906130c1565b8051610ed690601b906020840190612b72565b5050565b600a546001600160a01b03163314610f045760405162461bcd60e51b8152600401610953906130c1565b6012548111610f6d5760405162461bcd60e51b815260206004820152602f60248201527f546f74616c206e756d626572206f66204d696e7465642072657365727665206960448201526e73203e206e6577207265736572766560881b6064820152608401610953565b600c55565b600a54600160a01b900460ff1615610f9c5760405162461bcd60e51b81526004016109539061310c565b601e5460ff1615610fe65760405162461bcd60e51b81526020600482015260146024820152732bb434ba32b634b9ba1034b9903830bab9b2b21760611b6044820152606401610953565b600f548411156110345760405162461bcd60e51b8152602060048201526019602482015278135a5b9d1a5b99c8145d1e481a5cc80f8813585e08135a5b9d603a1b6044820152606401610953565b33611040848484610a8e565b6001600160a01b0316146110a85760405162461bcd60e51b815260206004820152602960248201527f55736572206d7573742062652077686974656c697374656420696e206f7264656044820152681c881d1bc8135a5b9d60ba1b6064820152608401610953565b601054336000908152601a60205260409020546110c690869061314c565b11156111205760405162461bcd60e51b815260206004820152602360248201527f57686974656c69737420616d6f756e7420657863656564656420696e2057616c6044820152621b195d60ea1b6064820152608401610953565b3484600e5461112f9190613164565b146111765760405162461bcd60e51b815260206004820152601760248201527611551208185b5bdd5b9d081a5cc81a5b98dbdc9c9958dd604a1b6044820152606401610953565b60115484601354611187919061314c565b11156111ce5760405162461bcd60e51b8152602060048201526016602482015275105b1b0815da1a5d195b1a5cdd0814dbdb190813dd5d60521b6044820152606401610953565b6111d83385611d3b565b83601360008282546111ea919061314c565b9091555050336000908152601a60205260408120805486929061120e90849061314c565b909155505050505050565b6000818152600260205260408120546001600160a01b0316806108465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610953565b601b805461129d90613035565b80601f01602080910402602001604051908101604052809291908181526020018280546112c990613035565b80156113165780601f106112eb57610100808354040283529160200191611316565b820191906000526020600020905b8154815290600101906020018083116112f957829003601f168201915b505050505081565b600a546001600160a01b031633146113485760405162461bcd60e51b8152600401610953906130c1565b601155565b60006001600160a01b0382166113b85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610953565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113fe5760405162461bcd60e51b8152600401610953906130c1565b6114086000611dc7565b565b600a546001600160a01b031633146114345760405162461bcd60e51b8152600401610953906130c1565b600c5481601254611445919061314c565b111561149e5760405162461bcd60e51b815260206004820152602260248201527f416c6c205265736572766564204e4654732068617665206265656e206d696e74604482015261195960f21b6064820152608401610953565b6114a88282611d3b565b80601260008282546114ba919061314c565b90915550505050565b600a54600160a01b900460ff16156114ed5760405162461bcd60e51b81526004016109539061310c565b60006114f860085490565b9050600f548211156115485760405162461bcd60e51b8152602060048201526019602482015278135a5b9d1a5b99c8145d1e481a5cc80f8813585e08135a5b9d603a1b6044820152606401610953565b3482600d546115579190613164565b1461159e5760405162461bcd60e51b815260206004820152601760248201527611551208185b5bdd5b9d081a5cc81a5b98dbdc9c9958dd604a1b6044820152606401610953565b601154600c54600b546115b19190613183565b6115bb9190613183565b82601354601254846115cd9190613183565b6115d79190613183565b6115e1919061314c565b11156116485760405162461bcd60e51b815260206004820152603060248201527f416c6c204e4654732068617665206265656e206d696e7465642e20486974207460448201526f3432903a3930b234b73390333637b7b960811b6064820152608401610953565b610ed63383611d3b565b60606001805461085b90613035565b610ed6338383611e19565b6116763383611a7e565b6116925760405162461bcd60e51b815260040161095390613070565b61169e84848484611ee8565b50505050565b600a546001600160a01b031633146116ce5760405162461bcd60e51b8152600401610953906130c1565b80156116df576116dc611f1b565b50565b6116dc611f9d565b6000818152600260205260409020546060906001600160a01b03166117665760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610953565b6000611770612021565b511161178b5760405180602001604052806000815250610846565b601b61179683612030565b6040516020016117a79291906131b6565b60405160208183030381529060405292915050565b600a546001600160a01b031633146117e65760405162461bcd60e51b8152600401610953906130c1565b600e55565b600a546001600160a01b031633146118155760405162461bcd60e51b8152600401610953906130c1565b601055565b600a546001600160a01b031633146118445760405162461bcd60e51b8152600401610953906130c1565b601e805460ff1916911515919091179055565b600a546001600160a01b031633146118815760405162461bcd60e51b8152600401610953906130c1565b6001600160a01b0381166118e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610953565b6116dc81611dc7565b600a546001600160a01b031633146119195760405162461bcd60e51b8152600401610953906130c1565b600854600c5460115461192c919061314c565b611936919061314c565b81116119995760405162461bcd60e51b815260206004820152602c60248201527f546f74616c206e756d626572206f66204d696e74656420746f6b656e2069732060448201526b3e206e657720737570706c7960a01b6064820152608401610953565b600b55565b60006001600160e01b031982166380ac58cd60e01b14806119cf57506001600160e01b03198216635b5e139f60e01b145b8061084657506301ffc9a760e01b6001600160e01b0319831614610846565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a2382611219565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a69858561212e565b9050611a7581846121a2565b95945050505050565b6000818152600260205260408120546001600160a01b0316611af75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610953565b6000611b0283611219565b9050806001600160a01b0316846001600160a01b03161480611b3d5750836001600160a01b0316611b32846108de565b6001600160a01b0316145b80610a9b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610a9b565b826001600160a01b0316611b8482611219565b6001600160a01b031614611bec5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610953565b6001600160a01b038216611c4e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610953565b611c598383836121c6565b611c646000826119ee565b6001600160a01b0383166000908152600360205260408120805460019290611c8d908490613183565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cbb90849061314c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611d288284613164565b9392505050565b6000611d28828461326a565b6000611d4660085490565b905060008211611d985760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374206f6e65204e46540000000000006044820152606401610953565b60015b82811161169e57611db584611db0838561314c565b61227e565b80611dbf8161327e565b915050611d9b565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611e7b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610953565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ef3848484611b71565b611eff84848484612298565b61169e5760405162461bcd60e51b815260040161095390613299565b600a54600160a01b900460ff1615611f455760405162461bcd60e51b81526004016109539061310c565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f803390565b6040516001600160a01b03909116815260200160405180910390a1565b600a54600160a01b900460ff16611fed5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610953565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611f80565b6060601b805461085b90613035565b6060816120545750506040805180820190915260018152600360fc1b602082015290565b8160005b811561207e57806120688161327e565b91506120779050600a8361326a565b9150612058565b60008167ffffffffffffffff81111561209957612099612d08565b6040519080825280601f01601f1916602001820160405280156120c3576020820181803683370190505b5090505b8415610a9b576120d8600183613183565b91506120e5600a866132eb565b6120f090603061314c565b60f81b818381518110612105576121056130f6565b60200101906001600160f81b031916908160001a905350612127600a8661326a565b94506120c7565b6000611d287fdff82b2727c7a9b1cbd433f08ff31a9685a00dda1097e08608b61e3fd328f72984805190602001208480519060200120604051602001612187939291909283526020830191909152604082015260600190565b604051602081830303815290604052805190602001206123a5565b60008060006121b185856123f3565b915091506121be81612463565b509392505050565b6001600160a01b0383166122215761221c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612244565b816001600160a01b0316836001600160a01b03161461224457612244838261261e565b6001600160a01b03821661225b57610a89816126bb565b826001600160a01b0316826001600160a01b031614610a8957610a89828261276a565b610ed68282604051806020016040528060008152506127ae565b60006001600160a01b0384163b1561239a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122dc9033908990889088906004016132ff565b602060405180830381600087803b1580156122f657600080fd5b505af1925050508015612326575060408051601f3d908101601f191682019092526123239181019061333c565b60015b612380573d808015612354576040519150601f19603f3d011682016040523d82523d6000602084013e612359565b606091505b5080516123785760405162461bcd60e51b815260040161095390613299565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a9b565b506001949350505050565b60006108466123b26127e1565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008082516041141561242a5760208301516040840151606085015160001a61241e87828585612908565b9450945050505061245c565b82516040141561245457602083015160408401516124498683836129f5565b93509350505061245c565b506000905060025b9250929050565b600081600481111561247757612477613359565b14156124805750565b600181600481111561249457612494613359565b14156124e25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610953565b60028160048111156124f6576124f6613359565b14156125445760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610953565b600381600481111561255857612558613359565b14156125b15760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610953565b60048160048111156125c5576125c5613359565b14156116dc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610953565b6000600161262b8461134d565b6126359190613183565b600083815260076020526040902054909150808214612688576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126cd90600190613183565b600083815260096020526040812054600880549394509092849081106126f5576126f56130f6565b906000526020600020015490508060088381548110612716576127166130f6565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061274e5761274e61336f565b6001900381819060005260206000200160009055905550505050565b60006127758361134d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6127b88383612a24565b6127c56000848484612298565b610a895760405162461bcd60e51b815260040161095390613299565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561283a57507f000000000000000000000000000000000000000000000000000000000000000046145b1561286457507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561293f57506000905060036129ec565b8460ff16601b1415801561295757508460ff16601c14155b1561296857506000905060046129ec565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156129bc573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166129e5576000600192509250506129ec565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01612a1687828885612908565b935093505050935093915050565b6001600160a01b038216612a7a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610953565b6000818152600260205260409020546001600160a01b031615612adf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610953565b612aeb600083836121c6565b6001600160a01b0382166000908152600360205260408120805460019290612b1490849061314c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612b7e90613035565b90600052602060002090601f016020900481019282612ba05760008555612be6565b82601f10612bb957805160ff1916838001178555612be6565b82800160010185558215612be6579182015b82811115612be6578251825591602001919060010190612bcb565b50612bf2929150612bf6565b5090565b5b80821115612bf25760008155600101612bf7565b6001600160e01b0319811681146116dc57600080fd5b600060208284031215612c3357600080fd5b8135611d2881612c0b565b60005b83811015612c59578181015183820152602001612c41565b8381111561169e5750506000910152565b60008151808452612c82816020860160208601612c3e565b601f01601f19169290920160200192915050565b602081526000611d286020830184612c6a565b600060208284031215612cbb57600080fd5b5035919050565b80356001600160a01b0381168114612cd957600080fd5b919050565b60008060408385031215612cf157600080fd5b612cfa83612cc2565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112612d2f57600080fd5b813567ffffffffffffffff80821115612d4a57612d4a612d08565b604051601f8301601f19908116603f01168101908282118183101715612d7257612d72612d08565b81604052838152866020858801011115612d8b57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600060608486031215612dc057600080fd5b833567ffffffffffffffff80821115612dd857600080fd5b612de487838801612d1e565b94506020860135915080821115612dfa57600080fd5b612e0687838801612d1e565b93506040860135915080821115612e1c57600080fd5b50612e2986828701612d1e565b9150509250925092565b600080600060608486031215612e4857600080fd5b612e5184612cc2565b9250612e5f60208501612cc2565b9150604084013590509250925092565b600060208284031215612e8157600080fd5b813567ffffffffffffffff811115612e9857600080fd5b610a9b84828501612d1e565b60008060008060808587031215612eba57600080fd5b84359350602085013567ffffffffffffffff80821115612ed957600080fd5b612ee588838901612d1e565b94506040870135915080821115612efb57600080fd5b612f0788838901612d1e565b93506060870135915080821115612f1d57600080fd5b50612f2a87828801612d1e565b91505092959194509250565b600060208284031215612f4857600080fd5b611d2882612cc2565b80358015158114612cd957600080fd5b60008060408385031215612f7457600080fd5b612f7d83612cc2565b9150612f8b60208401612f51565b90509250929050565b60008060008060808587031215612faa57600080fd5b612fb385612cc2565b9350612fc160208601612cc2565b925060408501359150606085013567ffffffffffffffff811115612fe457600080fd5b612f2a87828801612d1e565b60006020828403121561300257600080fd5b611d2882612f51565b6000806040838503121561301e57600080fd5b61302783612cc2565b9150612f8b60208401612cc2565b600181811c9082168061304957607f821691505b6020821081141561306a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561315f5761315f613136565b500190565b600081600019048311821515161561317e5761317e613136565b500290565b60008282101561319557613195613136565b500390565b600081516131ac818560208601612c3e565b9290920192915050565b600080845481600182811c9150808316806131d257607f831692505b60208084108214156131f257634e487b7160e01b86526022600452602486fd5b818015613206576001811461321757613244565b60ff19861689528489019650613244565b60008b81526020902060005b8681101561323c5781548b820152908501908301613223565b505084890196505b505050505050611a75818561319a565b634e487b7160e01b600052601260045260246000fd5b60008261327957613279613254565b500490565b600060001982141561329257613292613136565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826132fa576132fa613254565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061333290830184612c6a565b9695505050505050565b60006020828403121561334e57600080fd5b8151611d2881612c0b565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fdfea26469706673582212202fdb67005aab9314cff00f48758db46e0f768e46aba4d06201b4a0444bb8394464736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f6170692e736865726e66742e636f6d2f626173652f0000000000000000000000000000000000000000000000000000000000000000000004534845520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013100000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80636ed3ec951161015a578063b58be572116100c1578063d9ef45351161007a578063d9ef45351461072b578063e26274831461074b578063e600dec81461076b578063e985e9c514610798578063f2fde38b146107e1578063f7ea7a3d1461080157600080fd5b8063b58be5721461067f578063b88d4fde14610695578063bb8257f0146106b5578063bedb86fb146106cb578063c87b56dd146106eb578063ced2053b1461070b57600080fd5b80638da5cb5b116101135780638da5cb5b146105e9578063926427441461060757806395d89b411461061a5780639c960b3b1461062f578063a22cb46514610649578063a8d07d161461066957600080fd5b80636ed3ec951461054857806370a0823114610568578063715018a61461058857806371c5b4261461059d5780637501f741146105b35780637de55fe1146105c957600080fd5b80633ccfd60b116101fe57806355f804b3116101b757806355f804b3146104a157806356a87caa146104c15780635721db0b146104e15780635c975abb146104f45780636352211e146105135780636c0360eb1461053357600080fd5b80633ccfd60b1461040357806342842e0e1461040b57806344a0d68a1461042b5780634f6ccce71461044b57806351250f6b1461046b578063547520fe1461048157600080fd5b8063095ea7b311610250578063095ea7b31461035657806309bd93741461037857806313faede61461039857806318160ddd146103ae57806323b872dd146103c35780632f745c59146103e357600080fd5b806301ffc9a71461028d578063047fc9aa146102c257806306afd592146102e657806306fdde03146102fc578063081812fc1461031e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612c21565b610821565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d8600b5481565b6040519081526020016102b9565b3480156102f257600080fd5b506102d8600e5481565b34801561030857600080fd5b5061031161084c565b6040516102b99190612c96565b34801561032a57600080fd5b5061033e610339366004612ca9565b6108de565b6040516001600160a01b0390911681526020016102b9565b34801561036257600080fd5b50610376610371366004612cde565b610978565b005b34801561038457600080fd5b5061033e610393366004612dab565b610a8e565b3480156103a457600080fd5b506102d8600d5481565b3480156103ba57600080fd5b506008546102d8565b3480156103cf57600080fd5b506103766103de366004612e33565b610aa3565b3480156103ef57600080fd5b506102d86103fe366004612cde565b610ad4565b610376610b6a565b34801561041757600080fd5b50610376610426366004612e33565b610d8d565b34801561043757600080fd5b50610376610446366004612ca9565b610da8565b34801561045757600080fd5b506102d8610466366004612ca9565b610dd7565b34801561047757600080fd5b506102d860115481565b34801561048d57600080fd5b5061037661049c366004612ca9565b610e6a565b3480156104ad57600080fd5b506103766104bc366004612e6f565b610e99565b3480156104cd57600080fd5b506103766104dc366004612ca9565b610eda565b6103766104ef366004612ea4565b610f72565b34801561050057600080fd5b50600a54600160a01b900460ff166102ad565b34801561051f57600080fd5b5061033e61052e366004612ca9565b611219565b34801561053f57600080fd5b50610311611290565b34801561055457600080fd5b50610376610563366004612ca9565b61131e565b34801561057457600080fd5b506102d8610583366004612f36565b61134d565b34801561059457600080fd5b506103766113d4565b3480156105a957600080fd5b506102d860105481565b3480156105bf57600080fd5b506102d8600f5481565b3480156105d557600080fd5b506103766105e4366004612cde565b61140a565b3480156105f557600080fd5b50600a546001600160a01b031661033e565b610376610615366004612ca9565b6114c3565b34801561062657600080fd5b50610311611652565b34801561063b57600080fd5b50601e546102ad9060ff1681565b34801561065557600080fd5b50610376610664366004612f61565b611661565b34801561067557600080fd5b506102d860125481565b34801561068b57600080fd5b506102d8600c5481565b3480156106a157600080fd5b506103766106b0366004612f94565b61166c565b3480156106c157600080fd5b506102d860135481565b3480156106d757600080fd5b506103766106e6366004612ff0565b6116a4565b3480156106f757600080fd5b50610311610706366004612ca9565b6116e7565b34801561071757600080fd5b50610376610726366004612ca9565b6117bc565b34801561073757600080fd5b50610376610746366004612ca9565b6117eb565b34801561075757600080fd5b50610376610766366004612ff0565b61181a565b34801561077757600080fd5b506102d8610786366004612f36565b601a6020526000908152604090205481565b3480156107a457600080fd5b506102ad6107b336600461300b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ed57600080fd5b506103766107fc366004612f36565b611857565b34801561080d57600080fd5b5061037661081c366004612ca9565b6118ef565b60006001600160e01b0319821663780e9d6360e01b148061084657506108468261199e565b92915050565b60606000805461085b90613035565b80601f016020809104026020016040519081016040528092919081815260200182805461088790613035565b80156108d45780601f106108a9576101008083540402835291602001916108d4565b820191906000526020600020905b8154815290600101906020018083116108b757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661095c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061098382611219565b9050806001600160a01b0316836001600160a01b031614156109f15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610953565b336001600160a01b0382161480610a0d5750610a0d81336107b3565b610a7f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610953565b610a8983836119ee565b505050565b6000610a9b848484611a5c565b949350505050565b610aad3382611a7e565b610ac95760405162461bcd60e51b815260040161095390613070565b610a89838383611b71565b6000610adf8361134d565b8210610b415760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610953565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b945760405162461bcd60e51b8152600401610953906130c1565b4780610bd85760405162461bcd60e51b8152602060048201526013602482015272042616c616e6365206d757374206265203e203606c1b6044820152606401610953565b6017546014546000916001600160a01b031690610c0390606490610bfd908690611d1c565b90611d2f565b604051600081818185875af1925050503d8060008114610c3f576040519150601f19603f3d011682016040523d82523d6000602084013e610c44565b606091505b50506018546015549192506000916001600160a01b0390911690610c7090606490610bfd908790611d1c565b604051600081818185875af1925050503d8060008114610cac576040519150601f19603f3d011682016040523d82523d6000602084013e610cb1565b606091505b50506019546016549192506000916001600160a01b0390911690610cdd90606490610bfd908890611d1c565b604051600081818185875af1925050503d8060008114610d19576040519150601f19603f3d011682016040523d82523d6000602084013e610d1e565b606091505b505090506000838015610d2e5750825b8015610d375750815b905080610d865760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401610953565b5050505050565b610a898383836040518060200160405280600081525061166c565b600a546001600160a01b03163314610dd25760405162461bcd60e51b8152600401610953906130c1565b600d55565b6000610de260085490565b8210610e455760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610953565b60088281548110610e5857610e586130f6565b90600052602060002001549050919050565b600a546001600160a01b03163314610e945760405162461bcd60e51b8152600401610953906130c1565b600f55565b600a546001600160a01b03163314610ec35760405162461bcd60e51b8152600401610953906130c1565b8051610ed690601b906020840190612b72565b5050565b600a546001600160a01b03163314610f045760405162461bcd60e51b8152600401610953906130c1565b6012548111610f6d5760405162461bcd60e51b815260206004820152602f60248201527f546f74616c206e756d626572206f66204d696e7465642072657365727665206960448201526e73203e206e6577207265736572766560881b6064820152608401610953565b600c55565b600a54600160a01b900460ff1615610f9c5760405162461bcd60e51b81526004016109539061310c565b601e5460ff1615610fe65760405162461bcd60e51b81526020600482015260146024820152732bb434ba32b634b9ba1034b9903830bab9b2b21760611b6044820152606401610953565b600f548411156110345760405162461bcd60e51b8152602060048201526019602482015278135a5b9d1a5b99c8145d1e481a5cc80f8813585e08135a5b9d603a1b6044820152606401610953565b33611040848484610a8e565b6001600160a01b0316146110a85760405162461bcd60e51b815260206004820152602960248201527f55736572206d7573742062652077686974656c697374656420696e206f7264656044820152681c881d1bc8135a5b9d60ba1b6064820152608401610953565b601054336000908152601a60205260409020546110c690869061314c565b11156111205760405162461bcd60e51b815260206004820152602360248201527f57686974656c69737420616d6f756e7420657863656564656420696e2057616c6044820152621b195d60ea1b6064820152608401610953565b3484600e5461112f9190613164565b146111765760405162461bcd60e51b815260206004820152601760248201527611551208185b5bdd5b9d081a5cc81a5b98dbdc9c9958dd604a1b6044820152606401610953565b60115484601354611187919061314c565b11156111ce5760405162461bcd60e51b8152602060048201526016602482015275105b1b0815da1a5d195b1a5cdd0814dbdb190813dd5d60521b6044820152606401610953565b6111d83385611d3b565b83601360008282546111ea919061314c565b9091555050336000908152601a60205260408120805486929061120e90849061314c565b909155505050505050565b6000818152600260205260408120546001600160a01b0316806108465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610953565b601b805461129d90613035565b80601f01602080910402602001604051908101604052809291908181526020018280546112c990613035565b80156113165780601f106112eb57610100808354040283529160200191611316565b820191906000526020600020905b8154815290600101906020018083116112f957829003601f168201915b505050505081565b600a546001600160a01b031633146113485760405162461bcd60e51b8152600401610953906130c1565b601155565b60006001600160a01b0382166113b85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610953565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113fe5760405162461bcd60e51b8152600401610953906130c1565b6114086000611dc7565b565b600a546001600160a01b031633146114345760405162461bcd60e51b8152600401610953906130c1565b600c5481601254611445919061314c565b111561149e5760405162461bcd60e51b815260206004820152602260248201527f416c6c205265736572766564204e4654732068617665206265656e206d696e74604482015261195960f21b6064820152608401610953565b6114a88282611d3b565b80601260008282546114ba919061314c565b90915550505050565b600a54600160a01b900460ff16156114ed5760405162461bcd60e51b81526004016109539061310c565b60006114f860085490565b9050600f548211156115485760405162461bcd60e51b8152602060048201526019602482015278135a5b9d1a5b99c8145d1e481a5cc80f8813585e08135a5b9d603a1b6044820152606401610953565b3482600d546115579190613164565b1461159e5760405162461bcd60e51b815260206004820152601760248201527611551208185b5bdd5b9d081a5cc81a5b98dbdc9c9958dd604a1b6044820152606401610953565b601154600c54600b546115b19190613183565b6115bb9190613183565b82601354601254846115cd9190613183565b6115d79190613183565b6115e1919061314c565b11156116485760405162461bcd60e51b815260206004820152603060248201527f416c6c204e4654732068617665206265656e206d696e7465642e20486974207460448201526f3432903a3930b234b73390333637b7b960811b6064820152608401610953565b610ed63383611d3b565b60606001805461085b90613035565b610ed6338383611e19565b6116763383611a7e565b6116925760405162461bcd60e51b815260040161095390613070565b61169e84848484611ee8565b50505050565b600a546001600160a01b031633146116ce5760405162461bcd60e51b8152600401610953906130c1565b80156116df576116dc611f1b565b50565b6116dc611f9d565b6000818152600260205260409020546060906001600160a01b03166117665760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610953565b6000611770612021565b511161178b5760405180602001604052806000815250610846565b601b61179683612030565b6040516020016117a79291906131b6565b60405160208183030381529060405292915050565b600a546001600160a01b031633146117e65760405162461bcd60e51b8152600401610953906130c1565b600e55565b600a546001600160a01b031633146118155760405162461bcd60e51b8152600401610953906130c1565b601055565b600a546001600160a01b031633146118445760405162461bcd60e51b8152600401610953906130c1565b601e805460ff1916911515919091179055565b600a546001600160a01b031633146118815760405162461bcd60e51b8152600401610953906130c1565b6001600160a01b0381166118e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610953565b6116dc81611dc7565b600a546001600160a01b031633146119195760405162461bcd60e51b8152600401610953906130c1565b600854600c5460115461192c919061314c565b611936919061314c565b81116119995760405162461bcd60e51b815260206004820152602c60248201527f546f74616c206e756d626572206f66204d696e74656420746f6b656e2069732060448201526b3e206e657720737570706c7960a01b6064820152608401610953565b600b55565b60006001600160e01b031982166380ac58cd60e01b14806119cf57506001600160e01b03198216635b5e139f60e01b145b8061084657506301ffc9a760e01b6001600160e01b0319831614610846565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a2382611219565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a69858561212e565b9050611a7581846121a2565b95945050505050565b6000818152600260205260408120546001600160a01b0316611af75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610953565b6000611b0283611219565b9050806001600160a01b0316846001600160a01b03161480611b3d5750836001600160a01b0316611b32846108de565b6001600160a01b0316145b80610a9b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610a9b565b826001600160a01b0316611b8482611219565b6001600160a01b031614611bec5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610953565b6001600160a01b038216611c4e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610953565b611c598383836121c6565b611c646000826119ee565b6001600160a01b0383166000908152600360205260408120805460019290611c8d908490613183565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cbb90849061314c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611d288284613164565b9392505050565b6000611d28828461326a565b6000611d4660085490565b905060008211611d985760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374206f6e65204e46540000000000006044820152606401610953565b60015b82811161169e57611db584611db0838561314c565b61227e565b80611dbf8161327e565b915050611d9b565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611e7b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610953565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ef3848484611b71565b611eff84848484612298565b61169e5760405162461bcd60e51b815260040161095390613299565b600a54600160a01b900460ff1615611f455760405162461bcd60e51b81526004016109539061310c565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f803390565b6040516001600160a01b03909116815260200160405180910390a1565b600a54600160a01b900460ff16611fed5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610953565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611f80565b6060601b805461085b90613035565b6060816120545750506040805180820190915260018152600360fc1b602082015290565b8160005b811561207e57806120688161327e565b91506120779050600a8361326a565b9150612058565b60008167ffffffffffffffff81111561209957612099612d08565b6040519080825280601f01601f1916602001820160405280156120c3576020820181803683370190505b5090505b8415610a9b576120d8600183613183565b91506120e5600a866132eb565b6120f090603061314c565b60f81b818381518110612105576121056130f6565b60200101906001600160f81b031916908160001a905350612127600a8661326a565b94506120c7565b6000611d287fdff82b2727c7a9b1cbd433f08ff31a9685a00dda1097e08608b61e3fd328f72984805190602001208480519060200120604051602001612187939291909283526020830191909152604082015260600190565b604051602081830303815290604052805190602001206123a5565b60008060006121b185856123f3565b915091506121be81612463565b509392505050565b6001600160a01b0383166122215761221c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612244565b816001600160a01b0316836001600160a01b03161461224457612244838261261e565b6001600160a01b03821661225b57610a89816126bb565b826001600160a01b0316826001600160a01b031614610a8957610a89828261276a565b610ed68282604051806020016040528060008152506127ae565b60006001600160a01b0384163b1561239a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122dc9033908990889088906004016132ff565b602060405180830381600087803b1580156122f657600080fd5b505af1925050508015612326575060408051601f3d908101601f191682019092526123239181019061333c565b60015b612380573d808015612354576040519150601f19603f3d011682016040523d82523d6000602084013e612359565b606091505b5080516123785760405162461bcd60e51b815260040161095390613299565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a9b565b506001949350505050565b60006108466123b26127e1565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008082516041141561242a5760208301516040840151606085015160001a61241e87828585612908565b9450945050505061245c565b82516040141561245457602083015160408401516124498683836129f5565b93509350505061245c565b506000905060025b9250929050565b600081600481111561247757612477613359565b14156124805750565b600181600481111561249457612494613359565b14156124e25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610953565b60028160048111156124f6576124f6613359565b14156125445760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610953565b600381600481111561255857612558613359565b14156125b15760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610953565b60048160048111156125c5576125c5613359565b14156116dc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610953565b6000600161262b8461134d565b6126359190613183565b600083815260076020526040902054909150808214612688576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126cd90600190613183565b600083815260096020526040812054600880549394509092849081106126f5576126f56130f6565b906000526020600020015490508060088381548110612716576127166130f6565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061274e5761274e61336f565b6001900381819060005260206000200160009055905550505050565b60006127758361134d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6127b88383612a24565b6127c56000848484612298565b610a895760405162461bcd60e51b815260040161095390613299565b6000306001600160a01b037f0000000000000000000000008ad352bcf64fe11ff4195a7473b0396e1a5c338c1614801561283a57507f000000000000000000000000000000000000000000000000000000000000000146145b1561286457507f1212c8a0d4d617715fb98b82badcf5afb03e3d16393d18923e3708cdb1e4204d90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527fe17905258883c5032a3a5cc2b9ece4b5198aafef07a16f3b52e2c6ac7f9a90d9828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561293f57506000905060036129ec565b8460ff16601b1415801561295757508460ff16601c14155b1561296857506000905060046129ec565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156129bc573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166129e5576000600192509250506129ec565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01612a1687828885612908565b935093505050935093915050565b6001600160a01b038216612a7a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610953565b6000818152600260205260409020546001600160a01b031615612adf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610953565b612aeb600083836121c6565b6001600160a01b0382166000908152600360205260408120805460019290612b1490849061314c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612b7e90613035565b90600052602060002090601f016020900481019282612ba05760008555612be6565b82601f10612bb957805160ff1916838001178555612be6565b82800160010185558215612be6579182015b82811115612be6578251825591602001919060010190612bcb565b50612bf2929150612bf6565b5090565b5b80821115612bf25760008155600101612bf7565b6001600160e01b0319811681146116dc57600080fd5b600060208284031215612c3357600080fd5b8135611d2881612c0b565b60005b83811015612c59578181015183820152602001612c41565b8381111561169e5750506000910152565b60008151808452612c82816020860160208601612c3e565b601f01601f19169290920160200192915050565b602081526000611d286020830184612c6a565b600060208284031215612cbb57600080fd5b5035919050565b80356001600160a01b0381168114612cd957600080fd5b919050565b60008060408385031215612cf157600080fd5b612cfa83612cc2565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112612d2f57600080fd5b813567ffffffffffffffff80821115612d4a57612d4a612d08565b604051601f8301601f19908116603f01168101908282118183101715612d7257612d72612d08565b81604052838152866020858801011115612d8b57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600060608486031215612dc057600080fd5b833567ffffffffffffffff80821115612dd857600080fd5b612de487838801612d1e565b94506020860135915080821115612dfa57600080fd5b612e0687838801612d1e565b93506040860135915080821115612e1c57600080fd5b50612e2986828701612d1e565b9150509250925092565b600080600060608486031215612e4857600080fd5b612e5184612cc2565b9250612e5f60208501612cc2565b9150604084013590509250925092565b600060208284031215612e8157600080fd5b813567ffffffffffffffff811115612e9857600080fd5b610a9b84828501612d1e565b60008060008060808587031215612eba57600080fd5b84359350602085013567ffffffffffffffff80821115612ed957600080fd5b612ee588838901612d1e565b94506040870135915080821115612efb57600080fd5b612f0788838901612d1e565b93506060870135915080821115612f1d57600080fd5b50612f2a87828801612d1e565b91505092959194509250565b600060208284031215612f4857600080fd5b611d2882612cc2565b80358015158114612cd957600080fd5b60008060408385031215612f7457600080fd5b612f7d83612cc2565b9150612f8b60208401612f51565b90509250929050565b60008060008060808587031215612faa57600080fd5b612fb385612cc2565b9350612fc160208601612cc2565b925060408501359150606085013567ffffffffffffffff811115612fe457600080fd5b612f2a87828801612d1e565b60006020828403121561300257600080fd5b611d2882612f51565b6000806040838503121561301e57600080fd5b61302783612cc2565b9150612f8b60208401612cc2565b600181811c9082168061304957607f821691505b6020821081141561306a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561315f5761315f613136565b500190565b600081600019048311821515161561317e5761317e613136565b500290565b60008282101561319557613195613136565b500390565b600081516131ac818560208601612c3e565b9290920192915050565b600080845481600182811c9150808316806131d257607f831692505b60208084108214156131f257634e487b7160e01b86526022600452602486fd5b818015613206576001811461321757613244565b60ff19861689528489019650613244565b60008b81526020902060005b8681101561323c5781548b820152908501908301613223565b505084890196505b505050505050611a75818561319a565b634e487b7160e01b600052601260045260246000fd5b60008261327957613279613254565b500490565b600060001982141561329257613292613136565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826132fa576132fa613254565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061333290830184612c6a565b9695505050505050565b60006020828403121561334e57600080fd5b8151611d2881612c0b565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fdfea26469706673582212202fdb67005aab9314cff00f48758db46e0f768e46aba4d06201b4a0444bb8394464736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f6170692e736865726e66742e636f6d2f626173652f0000000000000000000000000000000000000000000000000000000000000000000004534845520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013100000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initialBaseURI (string): https://api.shernft.com/base/
Arg [1] : _SIGNING_DOMAIN (string): SHER
Arg [2] : _SIGNATURE_VERSION (string): 1

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [4] : 68747470733a2f2f6170692e736865726e66742e636f6d2f626173652f000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5348455200000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 3100000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

70385:7047:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63273:224;;;;;;;;;;-1:-1:-1;63273:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;63273:224:0;;;;;;;;70530:28;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;70530:28:0;592:177:1;70787:34:0;;;;;;;;;;;;;;;;50767:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;52326:221::-;;;;;;;;;;-1:-1:-1;52326:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;52326:221:0;1732:203:1;51849:411:0;;;;;;;;;;-1:-1:-1;51849:411:0;;;;;:::i;:::-;;:::i;:::-;;76053:165;;;;;;;;;;-1:-1:-1;76053:165:0;;;;;:::i;:::-;;:::i;70720:31::-;;;;;;;;;;;;;;;;63913:113;;;;;;;;;;-1:-1:-1;64001:10:0;:17;63913:113;;53076:339;;;;;;;;;;-1:-1:-1;53076:339:0;;;;;:::i;:::-;;:::i;63581:256::-;;;;;;;;;;-1:-1:-1;63581:256:0;;;;;:::i;:::-;;:::i;76858:569::-;;;:::i;53486:185::-;;;;;;;;;;-1:-1:-1;53486:185:0;;;;;:::i;:::-;;:::i;72275:81::-;;;;;;;;;;-1:-1:-1;72275:81:0;;;;;:::i;:::-;;:::i;64103:233::-;;;;;;;;;;-1:-1:-1;64103:233:0;;;;;:::i;:::-;;:::i;71006:35::-;;;;;;;;;;;;;;;;72936:93;;;;;;;;;;-1:-1:-1;72936:93:0;;;;;:::i;:::-;;:::i;73585:106::-;;;;;;;;;;-1:-1:-1;73585:106:0;;;;;:::i;:::-;;:::i;73037:216::-;;;;;;;;;;-1:-1:-1;73037:216:0;;;;;:::i;:::-;;:::i;75197:819::-;;;;;;:::i;:::-;;:::i;26838:86::-;;;;;;;;;;-1:-1:-1;26909:7:0;;-1:-1:-1;;;26909:7:0;;;;26838:86;;50461:239;;;;;;;;;;-1:-1:-1;50461:239:0;;;;;:::i;:::-;;:::i;71751:21::-;;;;;;;;;;;;;:::i;72578:126::-;;;;;;;;;;-1:-1:-1;72578:126:0;;;;;:::i;:::-;;:::i;50191:208::-;;;;;;;;;;-1:-1:-1;50191:208:0;;;;;:::i;:::-;;:::i;29737:103::-;;;;;;;;;;;;;:::i;70933:36::-;;;;;;;;;;;;;;;;70852:27;;;;;;;;;;;;;;;;74130:262;;;;;;;;;;-1:-1:-1;74130:262:0;;;;;:::i;:::-;;:::i;29086:87::-;;;;;;;;;;-1:-1:-1;29159:6:0;;-1:-1:-1;;;;;29159:6:0;29086:87;;74696:493;;;;;;:::i;:::-;;:::i;50936:104::-;;;;;;;;;;;;;:::i;71858:19::-;;;;;;;;;;-1:-1:-1;71858:19:0;;;;;;;;52619:155;;;;;;;;;;-1:-1:-1;52619:155:0;;;;;:::i;:::-;;:::i;71086:35::-;;;;;;;;;;;;;;;;70629:32;;;;;;;;;;;;;;;;53742:328;;;;;;;;;;-1:-1:-1;53742:328:0;;;;;:::i;:::-;;:::i;71128:38::-;;;;;;;;;;;;;;;;73261:110;;;;;;;;;;-1:-1:-1;73261:110:0;;;;;:::i;:::-;;:::i;73702:371::-;;;;;;;;;;-1:-1:-1;73702:371:0;;;;;:::i;:::-;;:::i;72364:89::-;;;;;;;;;;-1:-1:-1;72364:89:0;;;;;:::i;:::-;;:::i;72461:109::-;;;;;;;;;;-1:-1:-1;72461:109:0;;;;;:::i;:::-;;:::i;73379:82::-;;;;;;;;;;-1:-1:-1;73379:82:0;;;;;:::i;:::-;;:::i;71633:55::-;;;;;;;;;;-1:-1:-1;71633:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;52845:164;;;;;;;;;;-1:-1:-1;52845:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;52966:25:0;;;52942:4;52966:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;52845:164;29995:201;;;;;;;;;;-1:-1:-1;29995:201:0;;;;;:::i;:::-;;:::i;72712:216::-;;;;;;;;;;-1:-1:-1;72712:216:0;;;;;:::i;:::-;;:::i;63273:224::-;63375:4;-1:-1:-1;;;;;;63399:50:0;;-1:-1:-1;;;63399:50:0;;:90;;;63453:36;63477:11;63453:23;:36::i;:::-;63392:97;63273:224;-1:-1:-1;;63273:224:0:o;50767:100::-;50821:13;50854:5;50847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50767:100;:::o;52326:221::-;52402:7;55669:16;;;:7;:16;;;;;;-1:-1:-1;;;;;55669:16:0;52422:73;;;;-1:-1:-1;;;52422:73:0;;7651:2:1;52422:73:0;;;7633:21:1;7690:2;7670:18;;;7663:30;7729:34;7709:18;;;7702:62;-1:-1:-1;;;7780:18:1;;;7773:42;7832:19;;52422:73:0;;;;;;;;;-1:-1:-1;52515:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;52515:24:0;;52326:221::o;51849:411::-;51930:13;51946:23;51961:7;51946:14;:23::i;:::-;51930:39;;51994:5;-1:-1:-1;;;;;51988:11:0;:2;-1:-1:-1;;;;;51988:11:0;;;51980:57;;;;-1:-1:-1;;;51980:57:0;;8064:2:1;51980:57:0;;;8046:21:1;8103:2;8083:18;;;8076:30;8142:34;8122:18;;;8115:62;-1:-1:-1;;;8193:18:1;;;8186:31;8234:19;;51980:57:0;7862:397:1;51980:57:0;25572:10;-1:-1:-1;;;;;52072:21:0;;;;:62;;-1:-1:-1;52097:37:0;52114:5;25572:10;52845:164;:::i;52097:37::-;52050:168;;;;-1:-1:-1;;;52050:168:0;;8466:2:1;52050:168:0;;;8448:21:1;8505:2;8485:18;;;8478:30;8544:34;8524:18;;;8517:62;8615:26;8595:18;;;8588:54;8659:19;;52050:168:0;8264:420:1;52050:168:0;52231:21;52240:2;52244:7;52231:8;:21::i;:::-;51919:341;51849:411;;:::o;76053:165::-;76153:7;76180:30;76188:4;76194;76200:9;76180:7;:30::i;:::-;76173:37;76053:165;-1:-1:-1;;;;76053:165:0:o;53076:339::-;53271:41;25572:10;53304:7;53271:18;:41::i;:::-;53263:103;;;;-1:-1:-1;;;53263:103:0;;;;;;;:::i;:::-;53379:28;53389:4;53395:2;53399:7;53379:9;:28::i;63581:256::-;63678:7;63714:23;63731:5;63714:16;:23::i;:::-;63706:5;:31;63698:87;;;;-1:-1:-1;;;63698:87:0;;9309:2:1;63698:87:0;;;9291:21:1;9348:2;9328:18;;;9321:30;9387:34;9367:18;;;9360:62;-1:-1:-1;;;9438:18:1;;;9431:41;9489:19;;63698:87:0;9107:407:1;63698:87:0;-1:-1:-1;;;;;;63803:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;63581:256::o;76858:569::-;29159:6;;-1:-1:-1;;;;;29159:6:0;25572:10;29306:23;29298:68;;;;-1:-1:-1;;;29298:68:0;;;;;;;:::i;:::-;76934:21:::1;76974:11:::0;76966:43:::1;;;::::0;-1:-1:-1;;;76966:43:0;;10082:2:1;76966:43:0::1;::::0;::::1;10064:21:1::0;10121:2;10101:18;;;10094:30;-1:-1:-1;;;10140:18:1;;;10133:49;10199:18;;76966:43:0::1;9880:343:1::0;76966:43:0::1;77040:8;::::0;77075:18:::1;::::0;77021:13:::1;::::0;-1:-1:-1;;;;;77040:8:0::1;::::0;77063:40:::1;::::0;77099:3:::1;::::0;77063:31:::1;::::0;:7;;:11:::1;:31::i;:::-;:35:::0;::::1;:40::i;:::-;77039:69;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;77139:8:0::1;::::0;77174:18:::1;::::0;77020:88;;-1:-1:-1;77120:13:0::1;::::0;-1:-1:-1;;;;;77139:8:0;;::::1;::::0;77162:40:::1;::::0;77198:3:::1;::::0;77162:31:::1;::::0;:7;;:11:::1;:31::i;:40::-;77138:69;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;77238:8:0::1;::::0;77273:18:::1;::::0;77119:88;;-1:-1:-1;77219:13:0::1;::::0;-1:-1:-1;;;;;77238:8:0;;::::1;::::0;77261:40:::1;::::0;77297:3:::1;::::0;77261:31:::1;::::0;:7;;:11:::1;:31::i;:40::-;77237:69;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77218:88;;;77317:12;77332:8;:20;;;;;77344:8;77332:20;:32;;;;;77356:8;77332:32;77317:47;;77383:7;77375:44;;;::::0;-1:-1:-1;;;77375:44:0;;10640:2:1;77375:44:0::1;::::0;::::1;10622:21:1::0;10679:2;10659:18;;;10652:30;10718:26;10698:18;;;10691:54;10762:18;;77375:44:0::1;10438:348:1::0;77375:44:0::1;76905:522;;;;;76858:569::o:0;53486:185::-;53624:39;53641:4;53647:2;53651:7;53624:39;;;;;;;;;;;;:16;:39::i;72275:81::-;29159:6;;-1:-1:-1;;;;;29159:6:0;25572:10;29306:23;29298:68;;;;-1:-1:-1;;;29298:68:0;;;;;;;:::i;:::-;72336:4:::1;:12:::0;72275:81::o;64103:233::-;64178:7;64214:30;64001:10;:17;;63913:113;64214:30;64206:5;:38;64198:95;;;;-1:-1:-1;;;64198:95:0;;10993:2:1;64198:95:0;;;10975:21:1;11032:2;11012:18;;;11005:30;11071:34;11051:18;;;11044:62;-1:-1:-1;;;11122:18:1;;;11115:42;11174:19;;64198:95:0;10791:408:1;64198:95:0;64311:10;64322:5;64311:17;;;;;;;;:::i;:::-;;;;;;;;;64304:24;;64103:233;;;:::o;72936:93::-;29159:6;;-1:-1:-1;;;;;29159:6:0;25572:10;29306:23;29298:68;;;;-1:-1:-1;;;29298:68:0;;;;;;;:::i;:::-;73003:7:::1;:18:::0;72936:93::o;73585:106::-;29159:6;;-1:-1:-1;;;;;29159:6:0;25572:10;29306:23;29298:68;;;;-1:-1:-1;;;29298:68:0;;;;;;;:::i;:::-;73662:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;73585:106:::0;:::o;73037:216::-;29159:6;;-1:-1:-1;;;;;29159:6:0;25572:10;29306:23;29298:68;;;;-1:-1:-1;;;29298:68:0;;;;;;;:::i;:::-;73136:18:::1;;73120:13;:34;73112:94;;;::::0;-1:-1:-1;;;73112:94:0;;11538:2:1;73112:94:0::1;::::0;::::1;11520:21:1::0;11577:2;11557:18;;;11550:30;11616:34;11596:18;;;11589:62;-1:-1:-1;;;11667:18:1;;;11660:45;11722:19;;73112:94:0::1;11336:411:1::0;73112:94:0::1;73217:12;:28:::0;73037:216::o;75197:819::-;26909:7;;-1:-1:-1;;;26909:7:0;;;;27163:9;27155:38;;;;-1:-1:-1;;;27155:38:0;;;;;;;:::i;:::-;75358:7:::1;::::0;::::1;;75357:8;75349:40;;;::::0;-1:-1:-1;;;75349:40:0;;12299:2:1;75349:40:0::1;::::0;::::1;12281:21:1::0;12338:2;12318:18;;;12311:30;-1:-1:-1;;;12357:18:1;;;12350:50;12417:18;;75349:40:0::1;12097:344:1::0;75349:40:0::1;75421:7;;75408:9;:20;;75400:58;;;::::0;-1:-1:-1;;;75400:58:0;;12648:2:1;75400:58:0::1;::::0;::::1;12630:21:1::0;12687:2;12667:18;;;12660:30;-1:-1:-1;;;12706:18:1;;;12699:55;12771:18;;75400:58:0::1;12446:349:1::0;75400:58:0::1;75507:10;75477:28;75483:4:::0;75489;75495:9;75477:5:::1;:28::i;:::-;-1:-1:-1::0;;;;;75477:40:0::1;;75469:94;;;::::0;-1:-1:-1;;;75469:94:0;;13002:2:1;75469:94:0::1;::::0;::::1;12984:21:1::0;13041:2;13021:18;;;13014:30;13080:34;13060:18;;;13053:62;-1:-1:-1;;;13131:18:1;;;13124:39;13180:19;;75469:94:0::1;12800:405:1::0;75469:94:0::1;75630:17;::::0;75603:10:::1;75582:32;::::0;;;:20:::1;:32;::::0;;;;;:44:::1;::::0;75617:9;;75582:44:::1;:::i;:::-;:65;;75574:113;;;::::0;-1:-1:-1;;;75574:113:0;;13677:2:1;75574:113:0::1;::::0;::::1;13659:21:1::0;13716:2;13696:18;;;13689:30;13755:34;13735:18;;;13728:62;-1:-1:-1;;;13806:18:1;;;13799:33;13849:19;;75574:113:0::1;13475:399:1::0;75574:113:0::1;75728:9;75715;75706:6;;:18;;;;:::i;:::-;:31;75698:67;;;::::0;-1:-1:-1;;;75698:67:0;;14254:2:1;75698:67:0::1;::::0;::::1;14236:21:1::0;14293:2;14273:18;;;14266:30;-1:-1:-1;;;14312:18:1;;;14305:53;14375:18;;75698:67:0::1;14052:347:1::0;75698:67:0::1;75821:14;;75808:9;75784:21;;:33;;;;:::i;:::-;:51;;75776:87;;;::::0;-1:-1:-1;;;75776:87:0;;14606:2:1;75776:87:0::1;::::0;::::1;14588:21:1::0;14645:2;14625:18;;;14618:30;-1:-1:-1;;;14664:18:1;;;14657:52;14726:18;;75776:87:0::1;14404:346:1::0;75776:87:0::1;75876:31;75885:10;75897:9;75876:8;:31::i;:::-;75943:9;75918:21;;:34;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;75984:10:0::1;75963:32;::::0;;;:20:::1;:32;::::0;;;;:45;;75999:9;;75963:32;:45:::1;::::0;75999:9;;75963:45:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;75197:819:0:o;50461:239::-;50533:7;50569:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50569:16:0;50604:19;50596:73;;;;-1:-1:-1;;;50596:73:0;;14957:2:1;50596:73:0;;;14939:21:1;14996:2;14976:18;;;14969:30;15035:34;15015:18;;;15008:62;-1:-1:-1;;;15086:18:1;;;15079:39;15135:19;;50596:73:0;14755:405:1;71751:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72578:126::-;29159:6;;-1:-1:-1;;;;;29159:6:0;25572:10;29306:23;29298:68;;;;-1:-1:-1;;;29298:68:0;;;;;;;:::i;:::-;72661:14:::1;:35:::0;72578:126::o;50191:208::-;50263:7;-1:-1:-1;;;;;50291:19:0;;50283:74;;;;-1:-1:-1;;;50283:74:0;;15367:2:1;50283:74:0;;;15349:21:1;15406:2;15386:18;;;15379:30;15445:34;15425:18;;;15418:62;-1:-1:-1;;;15496:18:1;;;15489:40;15546:19;;50283:74:0;15165:406:1;50283:74:0;-1:-1:-1;;;;;;50375:16:0;;;;;:9;:16;;;;;;;50191:208::o;29737:103::-;29159:6;;-1:-1:-1;;;;;29159:6:0;25572:10;29306:23;29298:68;;;;-1:-1:-1;;;29298:68:0;;;;;;;:::i;:::-;29802:30:::1;29829:1;29802:18;:30::i;:::-;29737:103::o:0;74130:262::-;29159:6;;-1:-1:-1;;;;;29159:6:0;25572:10;29306:23;29298:68;;;;-1:-1:-1;;;29298:68:0;;;;;;;:::i;:::-;74256:12:::1;;74243:9;74222:18;;:30;;;;:::i;:::-;:46;;74214:93;;;::::0;-1:-1:-1;;;74214:93:0;;15778:2:1;74214:93:0::1;::::0;::::1;15760:21:1::0;15817:2;15797:18;;;15790:30;15856:34;15836:18;;;15829:62;-1:-1:-1;;;15907:18:1;;;15900:32;15949:19;;74214:93:0::1;15576:398:1::0;74214:93:0::1;74318:24;74327:3;74332:9;74318:8;:24::i;:::-;74375:9;74353:18;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;74130:262:0:o;74696:493::-;26909:7;;-1:-1:-1;;;26909:7:0;;;;27163:9;27155:38;;;;-1:-1:-1;;;27155:38:0;;;;;;;:::i;:::-;74774:19:::1;74796:13;64001:10:::0;:17;;63913:113;74796:13:::1;74774:35;;74841:7;;74828:9;:20;;74820:58;;;::::0;-1:-1:-1;;;74820:58:0;;12648:2:1;74820:58:0::1;::::0;::::1;12630:21:1::0;12687:2;12667:18;;;12660:30;-1:-1:-1;;;12706:18:1;;;12699:55;12771:18;;74820:58:0::1;12446:349:1::0;74820:58:0::1;74917:9;74904;74897:4;;:16;;;;:::i;:::-;:29;74889:65;;;::::0;-1:-1:-1;;;74889:65:0;;14254:2:1;74889:65:0::1;::::0;::::1;14236:21:1::0;14293:2;14273:18;;;14266:30;-1:-1:-1;;;14312:18:1;;;14305:53;14375:18;;74889:65:0::1;14052:347:1::0;74889:65:0::1;75069:14;;75054:12;;75045:6;;:21;;;;:::i;:::-;:38;;;;:::i;:::-;75032:9;75008:21;;74987:18;;74973:11;:32;;;;:::i;:::-;:56;;;;:::i;:::-;:68;;;;:::i;:::-;:110;;74965:172;;;::::0;-1:-1:-1;;;74965:172:0;;16311:2:1;74965:172:0::1;::::0;::::1;16293:21:1::0;16350:2;16330:18;;;16323:30;16389:34;16369:18;;;16362:62;-1:-1:-1;;;16440:18:1;;;16433:46;16496:19;;74965:172:0::1;16109:412:1::0;74965:172:0::1;75150:31;75159:10;75171:9;75150:8;:31::i;50936:104::-:0;50992:13;51025:7;51018:14;;;;;:::i;52619:155::-;52714:52;25572:10;52747:8;52757;52714:18;:52::i;53742:328::-;53917:41;25572:10;53950:7;53917:18;:41::i;:::-;53909:103;;;;-1:-1:-1;;;53909:103:0;;;;;;;:::i;:::-;54023:39;54037:4;54043:2;54047:7;54056:5;54023:13;:39::i;:::-;53742:328;;;;:::o;73261:110::-;29159:6;;-1:-1:-1;;;;;29159:6:0;25572:10;29306:23;29298:68;;;;-1:-1:-1;;;29298:68:0;;;;;;;:::i;:::-;73323:5:::1;73320:43;;;73329:8;:6;:8::i;:::-;73261:110:::0;:::o;73320:43::-:1;73353:10;:8;:10::i;73702:371::-:0;55645:4;55669:16;;;:7;:16;;;;;;73820:13;;-1:-1:-1;;;;;55669:16:0;73847:97;;;;-1:-1:-1;;;73847:97:0;;16728:2:1;73847:97:0;;;16710:21:1;16767:2;16747:18;;;16740:30;16806:34;16786:18;;;16779:62;-1:-1:-1;;;16857:18:1;;;16850:45;16912:19;;73847:97:0;16526:411:1;73847:97:0;73985:1;73964:10;:8;:10::i;:::-;73958:24;:28;:107;;;;;;;;;;;;;;;;;74022:7;74031:18;:7;:16;:18::i;:::-;74005:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73951:114;73702:371;-1:-1:-1;;73702:371:0:o;72364:89::-;29159:6;;-1:-1:-1;;;;;29159:6:0;25572:10;29306:23;29298:68;;;;-1:-1:-1;;;29298:68:0;;;;;;;:::i;:::-;72429:6:::1;:16:::0;72364:89::o;72461:109::-;29159:6;;-1:-1:-1;;;;;29159:6:0;25572:10;29306:23;29298:68;;;;-1:-1:-1;;;29298:68:0;;;;;;;:::i;:::-;72532:17:::1;:30:::0;72461:109::o;73379:82::-;29159:6;;-1:-1:-1;;;;;29159:6:0;25572:10;29306:23;29298:68;;;;-1:-1:-1;;;29298:68:0;;;;;;;:::i;:::-;73440:7:::1;:13:::0;;-1:-1:-1;;73440:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;73379:82::o;29995:201::-;29159:6;;-1:-1:-1;;;;;29159:6:0;25572:10;29306:23;29298:68;;;;-1:-1:-1;;;29298:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30084:22:0;::::1;30076:73;;;::::0;-1:-1:-1;;;30076:73:0;;18639:2:1;30076:73:0::1;::::0;::::1;18621:21:1::0;18678:2;18658:18;;;18651:30;18717:34;18697:18;;;18690:62;-1:-1:-1;;;18768:18:1;;;18761:36;18814:19;;30076:73:0::1;18437:402:1::0;30076:73:0::1;30160:28;30179:8;30160:18;:28::i;72712:216::-:0;29159:6;;-1:-1:-1;;;;;29159:6:0;25572:10;29306:23;29298:68;;;;-1:-1:-1;;;29298:68:0;;;;;;;:::i;:::-;64001:10;:17;72815:12:::1;;72800:14;;:27;;;;:::i;:::-;:43;;;;:::i;:::-;72790:7;:53;72782:111;;;::::0;-1:-1:-1;;;72782:111:0;;19046:2:1;72782:111:0::1;::::0;::::1;19028:21:1::0;19085:2;19065:18;;;19058:30;19124:34;19104:18;;;19097:62;-1:-1:-1;;;19175:18:1;;;19168:42;19227:19;;72782:111:0::1;18844:408:1::0;72782:111:0::1;72904:6;:16:::0;72712:216::o;49822:305::-;49924:4;-1:-1:-1;;;;;;49961:40:0;;-1:-1:-1;;;49961:40:0;;:105;;-1:-1:-1;;;;;;;50018:48:0;;-1:-1:-1;;;50018:48:0;49961:105;:158;;;-1:-1:-1;;;;;;;;;;41627:40:0;;;50083:36;41518:157;59562:174;59637:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;59637:29:0;-1:-1:-1;;;;;59637:29:0;;;;;;;;:24;;59691:23;59637:24;59691:14;:23::i;:::-;-1:-1:-1;;;;;59682:46:0;;;;;;;;;;;59562:174;;:::o;76263:216::-;76367:7;76387:14;76404:17;76410:4;76416;76404:5;:17::i;:::-;76387:34;;76439:32;76453:6;76461:9;76439:13;:32::i;:::-;76432:39;76263:216;-1:-1:-1;;;;;76263:216:0:o;55874:348::-;55967:4;55669:16;;;:7;:16;;;;;;-1:-1:-1;;;;;55669:16:0;55984:73;;;;-1:-1:-1;;;55984:73:0;;19459:2:1;55984:73:0;;;19441:21:1;19498:2;19478:18;;;19471:30;19537:34;19517:18;;;19510:62;-1:-1:-1;;;19588:18:1;;;19581:42;19640:19;;55984:73:0;19257:408:1;55984:73:0;56068:13;56084:23;56099:7;56084:14;:23::i;:::-;56068:39;;56137:5;-1:-1:-1;;;;;56126:16:0;:7;-1:-1:-1;;;;;56126:16:0;;:51;;;;56170:7;-1:-1:-1;;;;;56146:31:0;:20;56158:7;56146:11;:20::i;:::-;-1:-1:-1;;;;;56146:31:0;;56126:51;:87;;;-1:-1:-1;;;;;;52966:25:0;;;52942:4;52966:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;56181:32;52845:164;58866:578;59025:4;-1:-1:-1;;;;;58998:31:0;:23;59013:7;58998:14;:23::i;:::-;-1:-1:-1;;;;;58998:31:0;;58990:85;;;;-1:-1:-1;;;58990:85:0;;19872:2:1;58990:85:0;;;19854:21:1;19911:2;19891:18;;;19884:30;19950:34;19930:18;;;19923:62;-1:-1:-1;;;20001:18:1;;;19994:39;20050:19;;58990:85:0;19670:405:1;58990:85:0;-1:-1:-1;;;;;59094:16:0;;59086:65;;;;-1:-1:-1;;;59086:65:0;;20282:2:1;59086:65:0;;;20264:21:1;20321:2;20301:18;;;20294:30;20360:34;20340:18;;;20333:62;-1:-1:-1;;;20411:18:1;;;20404:34;20455:19;;59086:65:0;20080:400:1;59086:65:0;59164:39;59185:4;59191:2;59195:7;59164:20;:39::i;:::-;59268:29;59285:1;59289:7;59268:8;:29::i;:::-;-1:-1:-1;;;;;59310:15:0;;;;;;:9;:15;;;;;:20;;59329:1;;59310:15;:20;;59329:1;;59310:20;:::i;:::-;;;;-1:-1:-1;;;;;;;59341:13:0;;;;;;:9;:13;;;;;:18;;59358:1;;59341:13;:18;;59358:1;;59341:18;:::i;:::-;;;;-1:-1:-1;;59370:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;59370:21:0;-1:-1:-1;;;;;59370:21:0;;;;;;;;;59409:27;;59370:16;;59409:27;;;;;;;58866:578;;;:::o;5065:98::-;5123:7;5150:5;5154:1;5150;:5;:::i;:::-;5143:12;5065:98;-1:-1:-1;;;5065:98:0:o;5464:::-;5522:7;5549:5;5553:1;5549;:5;:::i;74400:288::-;74469:19;74491:13;64001:10;:17;;63913:113;74491:13;74469:35;;74535:1;74523:9;:13;74515:52;;;;-1:-1:-1;;;74515:52:0;;20944:2:1;74515:52:0;;;20926:21:1;20983:2;20963:18;;;20956:30;21022:28;21002:18;;;20995:56;21068:18;;74515:52:0;20742:350:1;74515:52:0;74597:1;74580:99;74605:9;74600:1;:14;74580:99;;74636:31;74646:3;74651:15;74665:1;74651:11;:15;:::i;:::-;74636:9;:31::i;:::-;74616:3;;;;:::i;:::-;;;;74580:99;;30356:191;30449:6;;;-1:-1:-1;;;;;30466:17:0;;;-1:-1:-1;;;;;;30466:17:0;;;;;;;30499:40;;30449:6;;;30466:17;30449:6;;30499:40;;30430:16;;30499:40;30419:128;30356:191;:::o;59878:315::-;60033:8;-1:-1:-1;;;;;60024:17:0;:5;-1:-1:-1;;;;;60024:17:0;;;60016:55;;;;-1:-1:-1;;;60016:55:0;;21439:2:1;60016:55:0;;;21421:21:1;21478:2;21458:18;;;21451:30;21517:27;21497:18;;;21490:55;21562:18;;60016:55:0;21237:349:1;60016:55:0;-1:-1:-1;;;;;60082:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;60082:46:0;;;;;;;;;;60144:41;;540::1;;;60144::0;;513:18:1;60144:41:0;;;;;;;59878:315;;;:::o;54952:::-;55109:28;55119:4;55125:2;55129:7;55109:9;:28::i;:::-;55156:48;55179:4;55185:2;55189:7;55198:5;55156:22;:48::i;:::-;55148:111;;;;-1:-1:-1;;;55148:111:0;;;;;;;:::i;27638:118::-;26909:7;;-1:-1:-1;;;26909:7:0;;;;27163:9;27155:38;;;;-1:-1:-1;;;27155:38:0;;;;;;;:::i;:::-;27698:7:::1;:14:::0;;-1:-1:-1;;;;27698:14:0::1;-1:-1:-1::0;;;27698:14:0::1;::::0;;27728:20:::1;27735:12;25572:10:::0;;25492:98;27735:12:::1;27728:20;::::0;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;27728:20:0::1;;;;;;;27638:118::o:0;27897:120::-;26909:7;;-1:-1:-1;;;26909:7:0;;;;27433:41;;;;-1:-1:-1;;;27433:41:0;;22212:2:1;27433:41:0;;;22194:21:1;22251:2;22231:18;;;22224:30;-1:-1:-1;;;22270:18:1;;;22263:50;22330:18;;27433:41:0;22010:344:1;27433:41:0;27956:7:::1;:15:::0;;-1:-1:-1;;;;27956:15:0::1;::::0;;27987:22:::1;25572:10:::0;27996:12:::1;25492:98:::0;73469:108;73529:13;73562:7;73555:14;;;;;:::i;8857:723::-;8913:13;9134:10;9130:53;;-1:-1:-1;;9161:10:0;;;;;;;;;;;;-1:-1:-1;;;9161:10:0;;;;;8857:723::o;9130:53::-;9208:5;9193:12;9249:78;9256:9;;9249:78;;9282:8;;;;:::i;:::-;;-1:-1:-1;9305:10:0;;-1:-1:-1;9313:2:0;9305:10;;:::i;:::-;;;9249:78;;;9337:19;9369:6;9359:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9359:17:0;;9337:39;;9387:154;9394:10;;9387:154;;9421:11;9431:1;9421:11;;:::i;:::-;;-1:-1:-1;9490:10:0;9498:2;9490:5;:10;:::i;:::-;9477:24;;:2;:24;:::i;:::-;9464:39;;9447:6;9454;9447:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9447:56:0;;;;;;;;-1:-1:-1;9518:11:0;9527:2;9518:11;;:::i;:::-;;;9387:154;;76528:302;76606:7;76633:189;76685:50;76766:4;76750:22;;;;;;76803:4;76787:22;;;;;;76660:160;;;;;;;;;22678:25:1;;;22734:2;22719:18;;22712:34;;;;22777:2;22762:18;;22755:34;22666:2;22651:18;;22476:319;76660:160:0;;;;;;;;;;;;;76650:171;;;;;;76633:16;:189::i;15018:231::-;15096:7;15117:17;15136:18;15158:27;15169:4;15175:9;15158:10;:27::i;:::-;15116:69;;;;15196:18;15208:5;15196:11;:18::i;:::-;-1:-1:-1;15232:9:0;15018:231;-1:-1:-1;;;15018:231:0:o;64949:589::-;-1:-1:-1;;;;;65155:18:0;;65151:187;;65190:40;65222:7;66365:10;:17;;66338:24;;;;:15;:24;;;;;:44;;;66393:24;;;;;;;;;;;;66261:164;65190:40;65151:187;;;65260:2;-1:-1:-1;;;;;65252:10:0;:4;-1:-1:-1;;;;;65252:10:0;;65248:90;;65279:47;65312:4;65318:7;65279:32;:47::i;:::-;-1:-1:-1;;;;;65352:16:0;;65348:183;;65385:45;65422:7;65385:36;:45::i;65348:183::-;65458:4;-1:-1:-1;;;;;65452:10:0;:2;-1:-1:-1;;;;;65452:10:0;;65448:83;;65479:40;65507:2;65511:7;65479:27;:40::i;56564:110::-;56640:26;56650:2;56654:7;56640:26;;;;;;;;;;;;:9;:26::i;60758:799::-;60913:4;-1:-1:-1;;;;;60934:13:0;;31697:20;31745:8;60930:620;;60970:72;;-1:-1:-1;;;60970:72:0;;-1:-1:-1;;;;;60970:36:0;;;;;:72;;25572:10;;61021:4;;61027:7;;61036:5;;60970:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60970:72:0;;;;;;;;-1:-1:-1;;60970:72:0;;;;;;;;;;;;:::i;:::-;;;60966:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61212:13:0;;61208:272;;61255:60;;-1:-1:-1;;;61255:60:0;;;;;;;:::i;61208:272::-;61430:6;61424:13;61415:6;61411:2;61407:15;61400:38;60966:529;-1:-1:-1;;;;;;61093:51:0;-1:-1:-1;;;61093:51:0;;-1:-1:-1;61086:58:0;;60930:620;-1:-1:-1;61534:4:0;60758:799;;;;;;:::o;24639:167::-;24716:7;24743:55;24765:20;:18;:20::i;:::-;24787:10;20109:57;;-1:-1:-1;;;20109:57:0;;;25600:27:1;25643:11;;;25636:27;;;25679:12;;;25672:28;;;20072:7:0;;25716:12:1;;20109:57:0;;;;;;;;;;;;20099:68;;;;;;20092:75;;19979:196;;;;;12908:1308;12989:7;12998:12;13223:9;:16;13243:2;13223:22;13219:990;;;13519:4;13504:20;;13498:27;13569:4;13554:20;;13548:27;13627:4;13612:20;;13606:27;13262:9;13598:36;13670:25;13681:4;13598:36;13498:27;13548;13670:10;:25::i;:::-;13663:32;;;;;;;;;13219:990;13717:9;:16;13737:2;13717:22;13713:496;;;13992:4;13977:20;;13971:27;14043:4;14028:20;;14022:27;14085:23;14096:4;13971:27;14022;14085:10;:23::i;:::-;14078:30;;;;;;;;13713:496;-1:-1:-1;14157:1:0;;-1:-1:-1;14161:35:0;13713:496;12908:1308;;;;;:::o;11179:643::-;11257:20;11248:5;:29;;;;;;;;:::i;:::-;;11244:571;;;11179:643;:::o;11244:571::-;11355:29;11346:5;:38;;;;;;;;:::i;:::-;;11342:473;;;11401:34;;-1:-1:-1;;;11401:34:0;;23893:2:1;11401:34:0;;;23875:21:1;23932:2;23912:18;;;23905:30;23971:26;23951:18;;;23944:54;24015:18;;11401:34:0;23691:348:1;11342:473:0;11466:35;11457:5;:44;;;;;;;;:::i;:::-;;11453:362;;;11518:41;;-1:-1:-1;;;11518:41:0;;24246:2:1;11518:41:0;;;24228:21:1;24285:2;24265:18;;;24258:30;24324:33;24304:18;;;24297:61;24375:18;;11518:41:0;24044:355:1;11453:362:0;11590:30;11581:5;:39;;;;;;;;:::i;:::-;;11577:238;;;11637:44;;-1:-1:-1;;;11637:44:0;;24606:2:1;11637:44:0;;;24588:21:1;24645:2;24625:18;;;24618:30;24684:34;24664:18;;;24657:62;-1:-1:-1;;;24735:18:1;;;24728:32;24777:19;;11637:44:0;24404:398:1;11577:238:0;11712:30;11703:5;:39;;;;;;;;:::i;:::-;;11699:116;;;11759:44;;-1:-1:-1;;;11759:44:0;;25009:2:1;11759:44:0;;;24991:21:1;25048:2;25028:18;;;25021:30;25087:34;25067:18;;;25060:62;-1:-1:-1;;;25138:18:1;;;25131:32;25180:19;;11759:44:0;24807:398:1;67052:988:0;67318:22;67368:1;67343:22;67360:4;67343:16;:22::i;:::-;:26;;;;:::i;:::-;67380:18;67401:26;;;:17;:26;;;;;;67318:51;;-1:-1:-1;67534:28:0;;;67530:328;;-1:-1:-1;;;;;67601:18:0;;67579:19;67601:18;;;:12;:18;;;;;;;;:34;;;;;;;;;67652:30;;;;;;:44;;;67769:30;;:17;:30;;;;;:43;;;67530:328;-1:-1:-1;67954:26:0;;;;:17;:26;;;;;;;;67947:33;;;-1:-1:-1;;;;;67998:18:0;;;;;:12;:18;;;;;:34;;;;;;;67991:41;67052:988::o;68335:1079::-;68613:10;:17;68588:22;;68613:21;;68633:1;;68613:21;:::i;:::-;68645:18;68666:24;;;:15;:24;;;;;;69039:10;:26;;68588:46;;-1:-1:-1;68666:24:0;;68588:46;;69039:26;;;;;;:::i;:::-;;;;;;;;;69017:48;;69103:11;69078:10;69089;69078:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;69183:28;;;:15;:28;;;;;;;:41;;;69355:24;;;;;69348:31;69390:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;68406:1008;;;68335:1079;:::o;65839:221::-;65924:14;65941:20;65958:2;65941:16;:20::i;:::-;-1:-1:-1;;;;;65972:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;66017:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;65839:221:0:o;56901:321::-;57031:18;57037:2;57041:7;57031:5;:18::i;:::-;57082:54;57113:1;57117:2;57121:7;57130:5;57082:22;:54::i;:::-;57060:154;;;;-1:-1:-1;;;57060:154:0;;;;;;;:::i;23412:314::-;23465:7;23497:4;-1:-1:-1;;;;;23506:12:0;23489:29;;:66;;;;;23539:16;23522:13;:33;23489:66;23485:234;;;-1:-1:-1;23579:24:0;;23412:314::o;23485:234::-;-1:-1:-1;23915:73:0;;;23665:10;23915:73;;;;27119:25:1;;;;23677:12:0;27160:18:1;;;27153:34;23691:15:0;27203:18:1;;;27196:34;23959:13:0;27246:18:1;;;27239:34;23982:4:0;27289:19:1;;;;27282:61;;;;23915:73:0;;;;;;;;;;27091:19:1;;;;23915:73:0;;;23905:84;;;;;;23412:314::o;16517:1632::-;16648:7;;17582:66;17569:79;;17565:163;;;-1:-1:-1;17681:1:0;;-1:-1:-1;17685:30:0;17665:51;;17565:163;17742:1;:7;;17747:2;17742:7;;:18;;;;;17753:1;:7;;17758:2;17753:7;;17742:18;17738:102;;;-1:-1:-1;17793:1:0;;-1:-1:-1;17797:30:0;17777:51;;17738:102;17954:24;;;17937:14;17954:24;;;;;;;;;25966:25:1;;;26039:4;26027:17;;26007:18;;;26000:45;;;;26061:18;;;26054:34;;;26104:18;;;26097:34;;;17954:24:0;;25938:19:1;;17954:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;17954:24:0;;-1:-1:-1;;17954:24:0;;;-1:-1:-1;;;;;;;17993:20:0;;17989:103;;18046:1;18050:29;18030:50;;;;;;;17989:103;18112:6;-1:-1:-1;18120:20:0;;-1:-1:-1;16517:1632:0;;;;;;;;:::o;15512:391::-;15626:7;;-1:-1:-1;;;;;15727:75:0;;15829:3;15825:12;;;15839:2;15821:21;15870:25;15881:4;15821:21;15890:1;15727:75;15870:10;:25::i;:::-;15863:32;;;;;;15512:391;;;;;;:::o;57558:382::-;-1:-1:-1;;;;;57638:16:0;;57630:61;;;;-1:-1:-1;;;57630:61:0;;26344:2:1;57630:61:0;;;26326:21:1;;;26363:18;;;26356:30;26422:34;26402:18;;;26395:62;26474:18;;57630:61:0;26142:356:1;57630:61:0;55645:4;55669:16;;;:7;:16;;;;;;-1:-1:-1;;;;;55669:16:0;:30;57702:58;;;;-1:-1:-1;;;57702:58:0;;26705:2:1;57702:58:0;;;26687:21:1;26744:2;26724:18;;;26717:30;26783;26763:18;;;26756:58;26831:18;;57702:58:0;26503:352:1;57702:58:0;57773:45;57802:1;57806:2;57810:7;57773:20;:45::i;:::-;-1:-1:-1;;;;;57831:13:0;;;;;;:9;:13;;;;;:18;;57848:1;;57831:13;:18;;57848:1;;57831:18;:::i;:::-;;;;-1:-1:-1;;57860:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;57860:21:0;-1:-1:-1;;;;;57860:21:0;;;;;;;;57899:33;;57860:16;;;57899:33;;57860:16;;57899:33;57558:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:269::-;1090:3;1128:5;1122:12;1155:6;1150:3;1143:19;1171:63;1227:6;1220:4;1215:3;1211:14;1204:4;1197:5;1193:16;1171:63;:::i;:::-;1288:2;1267:15;-1:-1:-1;;1263:29:1;1254:39;;;;1295:4;1250:50;;1037:269;-1:-1:-1;;1037:269:1:o;1311:231::-;1460:2;1449:9;1442:21;1423:4;1480:56;1532:2;1521:9;1517:18;1509:6;1480:56;:::i;1547:180::-;1606:6;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;-1:-1:-1;1698:23:1;;1547:180;-1:-1:-1;1547:180:1:o;1940:173::-;2008:20;;-1:-1:-1;;;;;2057:31:1;;2047:42;;2037:70;;2103:1;2100;2093:12;2037:70;1940:173;;;:::o;2118:254::-;2186:6;2194;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2286:29;2305:9;2286:29;:::i;:::-;2276:39;2362:2;2347:18;;;;2334:32;;-1:-1:-1;;;2118:254:1:o;2377:127::-;2438:10;2433:3;2429:20;2426:1;2419:31;2469:4;2466:1;2459:15;2493:4;2490:1;2483:15;2509:719;2552:5;2605:3;2598:4;2590:6;2586:17;2582:27;2572:55;;2623:1;2620;2613:12;2572:55;2659:6;2646:20;2685:18;2722:2;2718;2715:10;2712:36;;;2728:18;;:::i;:::-;2803:2;2797:9;2771:2;2857:13;;-1:-1:-1;;2853:22:1;;;2877:2;2849:31;2845:40;2833:53;;;2901:18;;;2921:22;;;2898:46;2895:72;;;2947:18;;:::i;:::-;2987:10;2983:2;2976:22;3022:2;3014:6;3007:18;3068:3;3061:4;3056:2;3048:6;3044:15;3040:26;3037:35;3034:55;;;3085:1;3082;3075:12;3034:55;3149:2;3142:4;3134:6;3130:17;3123:4;3115:6;3111:17;3098:54;3196:1;3189:4;3184:2;3176:6;3172:15;3168:26;3161:37;3216:6;3207:15;;;;;;2509:719;;;;:::o;3233:742::-;3339:6;3347;3355;3408:2;3396:9;3387:7;3383:23;3379:32;3376:52;;;3424:1;3421;3414:12;3376:52;3464:9;3451:23;3493:18;3534:2;3526:6;3523:14;3520:34;;;3550:1;3547;3540:12;3520:34;3573:50;3615:7;3606:6;3595:9;3591:22;3573:50;:::i;:::-;3563:60;;3676:2;3665:9;3661:18;3648:32;3632:48;;3705:2;3695:8;3692:16;3689:36;;;3721:1;3718;3711:12;3689:36;3744:52;3788:7;3777:8;3766:9;3762:24;3744:52;:::i;:::-;3734:62;;3849:2;3838:9;3834:18;3821:32;3805:48;;3878:2;3868:8;3865:16;3862:36;;;3894:1;3891;3884:12;3862:36;;3917:52;3961:7;3950:8;3939:9;3935:24;3917:52;:::i;:::-;3907:62;;;3233:742;;;;;:::o;3980:328::-;4057:6;4065;4073;4126:2;4114:9;4105:7;4101:23;4097:32;4094:52;;;4142:1;4139;4132:12;4094:52;4165:29;4184:9;4165:29;:::i;:::-;4155:39;;4213:38;4247:2;4236:9;4232:18;4213:38;:::i;:::-;4203:48;;4298:2;4287:9;4283:18;4270:32;4260:42;;3980:328;;;;;:::o;4313:322::-;4382:6;4435:2;4423:9;4414:7;4410:23;4406:32;4403:52;;;4451:1;4448;4441:12;4403:52;4491:9;4478:23;4524:18;4516:6;4513:30;4510:50;;;4556:1;4553;4546:12;4510:50;4579;4621:7;4612:6;4601:9;4597:22;4579:50;:::i;4640:811::-;4755:6;4763;4771;4779;4832:3;4820:9;4811:7;4807:23;4803:33;4800:53;;;4849:1;4846;4839:12;4800:53;4885:9;4872:23;4862:33;;4946:2;4935:9;4931:18;4918:32;4969:18;5010:2;5002:6;4999:14;4996:34;;;5026:1;5023;5016:12;4996:34;5049:50;5091:7;5082:6;5071:9;5067:22;5049:50;:::i;:::-;5039:60;;5152:2;5141:9;5137:18;5124:32;5108:48;;5181:2;5171:8;5168:16;5165:36;;;5197:1;5194;5187:12;5165:36;5220:52;5264:7;5253:8;5242:9;5238:24;5220:52;:::i;:::-;5210:62;;5325:2;5314:9;5310:18;5297:32;5281:48;;5354:2;5344:8;5341:16;5338:36;;;5370:1;5367;5360:12;5338:36;;5393:52;5437:7;5426:8;5415:9;5411:24;5393:52;:::i;:::-;5383:62;;;4640:811;;;;;;;:::o;5456:186::-;5515:6;5568:2;5556:9;5547:7;5543:23;5539:32;5536:52;;;5584:1;5581;5574:12;5536:52;5607:29;5626:9;5607:29;:::i;5647:160::-;5712:20;;5768:13;;5761:21;5751:32;;5741:60;;5797:1;5794;5787:12;5812:254;5877:6;5885;5938:2;5926:9;5917:7;5913:23;5909:32;5906:52;;;5954:1;5951;5944:12;5906:52;5977:29;5996:9;5977:29;:::i;:::-;5967:39;;6025:35;6056:2;6045:9;6041:18;6025:35;:::i;:::-;6015:45;;5812:254;;;;;:::o;6071:538::-;6166:6;6174;6182;6190;6243:3;6231:9;6222:7;6218:23;6214:33;6211:53;;;6260:1;6257;6250:12;6211:53;6283:29;6302:9;6283:29;:::i;:::-;6273:39;;6331:38;6365:2;6354:9;6350:18;6331:38;:::i;:::-;6321:48;;6416:2;6405:9;6401:18;6388:32;6378:42;;6471:2;6460:9;6456:18;6443:32;6498:18;6490:6;6487:30;6484:50;;;6530:1;6527;6520:12;6484:50;6553;6595:7;6586:6;6575:9;6571:22;6553:50;:::i;6614:180::-;6670:6;6723:2;6711:9;6702:7;6698:23;6694:32;6691:52;;;6739:1;6736;6729:12;6691:52;6762:26;6778:9;6762:26;:::i;6799:260::-;6867:6;6875;6928:2;6916:9;6907:7;6903:23;6899:32;6896:52;;;6944:1;6941;6934:12;6896:52;6967:29;6986:9;6967:29;:::i;:::-;6957:39;;7015:38;7049:2;7038:9;7034:18;7015:38;:::i;7064:380::-;7143:1;7139:12;;;;7186;;;7207:61;;7261:4;7253:6;7249:17;7239:27;;7207:61;7314:2;7306:6;7303:14;7283:18;7280:38;7277:161;;;7360:10;7355:3;7351:20;7348:1;7341:31;7395:4;7392:1;7385:15;7423:4;7420:1;7413:15;7277:161;;7064:380;;;:::o;8689:413::-;8891:2;8873:21;;;8930:2;8910:18;;;8903:30;8969:34;8964:2;8949:18;;8942:62;-1:-1:-1;;;9035:2:1;9020:18;;9013:47;9092:3;9077:19;;8689:413::o;9519:356::-;9721:2;9703:21;;;9740:18;;;9733:30;9799:34;9794:2;9779:18;;9772:62;9866:2;9851:18;;9519:356::o;11204:127::-;11265:10;11260:3;11256:20;11253:1;11246:31;11296:4;11293:1;11286:15;11320:4;11317:1;11310:15;11752:340;11954:2;11936:21;;;11993:2;11973:18;;;11966:30;-1:-1:-1;;;12027:2:1;12012:18;;12005:46;12083:2;12068:18;;11752:340::o;13210:127::-;13271:10;13266:3;13262:20;13259:1;13252:31;13302:4;13299:1;13292:15;13326:4;13323:1;13316:15;13342:128;13382:3;13413:1;13409:6;13406:1;13403:13;13400:39;;;13419:18;;:::i;:::-;-1:-1:-1;13455:9:1;;13342:128::o;13879:168::-;13919:7;13985:1;13981;13977:6;13973:14;13970:1;13967:21;13962:1;13955:9;13948:17;13944:45;13941:71;;;13992:18;;:::i;:::-;-1:-1:-1;14032:9:1;;13879:168::o;15979:125::-;16019:4;16047:1;16044;16041:8;16038:34;;;16052:18;;:::i;:::-;-1:-1:-1;16089:9:1;;15979:125::o;17068:185::-;17110:3;17148:5;17142:12;17163:52;17208:6;17203:3;17196:4;17189:5;17185:16;17163:52;:::i;:::-;17231:16;;;;;17068:185;-1:-1:-1;;17068:185:1:o;17258:1174::-;17434:3;17463:1;17496:6;17490:13;17526:3;17548:1;17576:9;17572:2;17568:18;17558:28;;17636:2;17625:9;17621:18;17658;17648:61;;17702:4;17694:6;17690:17;17680:27;;17648:61;17728:2;17776;17768:6;17765:14;17745:18;17742:38;17739:165;;;-1:-1:-1;;;17803:33:1;;17859:4;17856:1;17849:15;17889:4;17810:3;17877:17;17739:165;17920:18;17947:104;;;;18065:1;18060:320;;;;17913:467;;17947:104;-1:-1:-1;;17980:24:1;;17968:37;;18025:16;;;;-1:-1:-1;17947:104:1;;18060:320;17015:1;17008:14;;;17052:4;17039:18;;18155:1;18169:165;18183:6;18180:1;18177:13;18169:165;;;18261:14;;18248:11;;;18241:35;18304:16;;;;18198:10;;18169:165;;;18173:3;;18363:6;18358:3;18354:16;18347:23;;17913:467;;;;;;;18396:30;18422:3;18414:6;18396:30;:::i;20485:127::-;20546:10;20541:3;20537:20;20534:1;20527:31;20577:4;20574:1;20567:15;20601:4;20598:1;20591:15;20617:120;20657:1;20683;20673:35;;20688:18;;:::i;:::-;-1:-1:-1;20722:9:1;;20617:120::o;21097:135::-;21136:3;-1:-1:-1;;21157:17:1;;21154:43;;;21177:18;;:::i;:::-;-1:-1:-1;21224:1:1;21213:13;;21097:135::o;21591:414::-;21793:2;21775:21;;;21832:2;21812:18;;;21805:30;21871:34;21866:2;21851:18;;21844:62;-1:-1:-1;;;21937:2:1;21922:18;;21915:48;21995:3;21980:19;;21591:414::o;22359:112::-;22391:1;22417;22407:35;;22422:18;;:::i;:::-;-1:-1:-1;22456:9:1;;22359:112::o;22800:500::-;-1:-1:-1;;;;;23069:15:1;;;23051:34;;23121:15;;23116:2;23101:18;;23094:43;23168:2;23153:18;;23146:34;;;23216:3;23211:2;23196:18;;23189:31;;;22994:4;;23237:57;;23274:19;;23266:6;23237:57;:::i;:::-;23229:65;22800:500;-1:-1:-1;;;;;;22800:500:1:o;23305:249::-;23374:6;23427:2;23415:9;23406:7;23402:23;23398:32;23395:52;;;23443:1;23440;23433:12;23395:52;23475:9;23469:16;23494:30;23518:5;23494:30;:::i;23559:127::-;23620:10;23615:3;23611:20;23608:1;23601:31;23651:4;23648:1;23641:15;23675:4;23672:1;23665:15;25210:127;25271:10;25266:3;25262:20;25259:1;25252:31;25302:4;25299:1;25292:15;25326:4;25323:1;25316:15

Swarm Source

ipfs://2fdb67005aab9314cff00f48758db46e0f768e46aba4d06201b4a0444bb83944
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.