ETH Price: $2,463.47 (+0.48%)

Token

Cozy Bears (CBEARS)
 

Overview

Max Total Supply

444 CBEARS

Holders

211

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 CBEARS
0xe6678a93dbaa801e52a32b528e943836e499fd5a
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:
CozyBears

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: cozybears.sol

// ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
// ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
// ,,,,,,,,,,,,,,,%%,,,,,,,,,,,,,,,,,..,,,,,,...,,,,,,,,,,,,,,,,,,,,,,,,,*&,,,,,,,,
// ,,,,,,,,,,,,,,&(&%,,,,.....,,,,,......,,......,,,,,...,,,,,,,,,,...,,,@,@,,,,,,,
// ,,,,,,,,,,,,,%%./&,,,,(&@*...,,................,......,,,,,,...&(%.,,*@ (&,,,,,,
// ,,,,,,,,,,,,#&.  %@*,,%%.@............................,,,.....(#*&,,*@, .##,,,,,
// ,,,,,,,,.....@(...  #@,  &/../............................./..&. .@(   ..@.,,,,,
// ,,,,,,,,,.....,&@*...... *&%&/&.......,,,,................%*@/@    ...(@*.,,,,,,
// ,,,,,,,,,,,........(@@&, ... (@@@(  ..  .#@@ .#@@&........#/ ....%@@/....,,,,,,,
// ,,,,,,,,,,,,,............/@@#. ,@@,                ,@@,%@/ .%@#,........,,,,,,,,
// ,,,,,............#@(   ,&@.   (@/..@.                (#..@%   .@%.....,,,,,,,,,,
// ,,,,,,.........,@    /#*         .*        ,,,,,,,,,. ,* (@@*%# (&........,,,,,,
// ,,,,,,,,,......%%  .....,@               ,,,,     .,,,.    @/.. *&..........,,,,
// ,,,,,,,,,,,....*@  .......                                  @( #@........,,,,,,,
// ,,,,,,,,,,,,.....@#               .&@@#....     ...  .%@@&.  @*.......,,,,,,,,,,
// ,,,,..............&(#&,     ..,,,@(,,,.....     ...  .,,,,/@ @/.........,,,,,,,,
// ,,,,,,...........(&..      ,,,,,,,,,,,,.....    ...  .,,,,   @/............,,,,,
// ,,,,,,,,,........@/..             ..(@&&@%..    ... .@@&@@, ,@.............,,,,,
// ,,,,,,,,,,,......@/..             .&@@@@@@@.     ..(@&&&&&@*&@.........,,,,,,,,,
// ,,,,,,,..........(%..      .....  .,@,   @#.   /#, (@#   #@..,@,..........,,,,,,
// ,,,,..............@/.     .. .... .........    @@@@@@*   .... /@............,,,,
// ,,,,,,,,,..........&&     ......   .......       ,@        ...*@.......,,,,,,,,,
// ,,,,,,,,,,,,,....../@@#                       ,@@@@@&        .@*.......,,,,,,,,,
// ,,,,,,,,,,,........,@&,%@*                       @,         @&...........,,,,,,,
// ,,,,,,,,,,.......*@/*%&,,.(@#                             /@@,...........,,,,,,,
// ,,,,,,,,........@#, ,,/@,,,  *@&                         &&,%&.....,,,,,,,,,,,,,
// ,,,,,,,,,,,,,,(@,,,,,.,,@@,,.....&@,          (......  /@*..*@@/....,,,,,,,,,,,,
// ,,,,,,,,,,,,,#&, ,,, ,/@(,@&,,... ..#@*  #@*          @#,...*@  &@,,,,,,,,,,,,,,
// ,,,,,,,,,,,,%&..,,.... ..%@,@&,,... . .%@.          *@, ....(@*,..&%,,,,,,,,,,,,
// ,,,,,,,,,,,(@,,,,.   ......@#,(@@@@@/,. .,@@%*,,*%@@@,. .@%#*.%&,..(@,,,,,,,,,,,
// ,,,,,,,,,,,@/,,,..... ......@#,, ,,@/,......@%    @/, ...%&,...%@. .(@,,,,,,,,,,
// ,,,,,,,,,,(@,,,..... ........@,...,,*%@@/,,. .@( @*. (@&*,,... .@/, .@(,,,,,,,,,

pragma solidity ^0.8.4;




contract CozyBears is ERC721A, Ownable {
    using ECDSA for bytes32;

    address public allowListSigningAddress = address(0x5c0A83276d1F4953d985243559683F68cA9b7790);

    string private base;
    string public PROVENANCE;
    uint256 public MAX_SUPPLY = 8888;
    uint256 public price = 60000000000000000;
    uint256 public maxPublicMints = 10;
    uint256 public maxAllowMints = 3;
    
    bool private reserved;
    bool public mintIsActive;
    
    constructor() ERC721A("Cozy Bears", "CBEARS") {}

    function setBaseURI(string memory baseURI) public onlyOwner {
        base = baseURI;
    }

    function setAllowListSigner(address _signingAddress) external onlyOwner {
        allowListSigningAddress = _signingAddress;
    }

    function togglePublicSale() external onlyOwner {
        mintIsActive = !mintIsActive;
    }

    function setMaxPublicMints(uint256 _maxPublicMints) external onlyOwner {
        maxPublicMints = _maxPublicMints;
    }

    modifier mintCompliance(uint256 amount) {
        unchecked {
            require(_totalMinted() + amount <= MAX_SUPPLY, "max supply");
        }
        require(msg.value >= price*amount, "wrong price");
        _;
    }
    
    function mint(uint256 amount) external payable mintCompliance(amount) {
        require(mintIsActive, "Minting is paused");
        require(amount <= maxPublicMints, "max amount");
        require(msg.sender == tx.origin, "no bots");
        _mint(msg.sender, amount, "", false);
    }

    function allowlistMint(uint64 amount, bytes calldata _signature) external payable mintCompliance(amount) {
        require(
                allowListSigningAddress ==
                    keccak256(
                        abi.encodePacked(
                            "\x19Ethereum Signed Message:\n32",
                            bytes32(uint256(uint160(msg.sender)))
                        )
                    ).recover(_signature),
                "not allowed"
        );
        unchecked {
            uint64 numWhitelistMinted = _getAux(msg.sender) + amount;
            // MAX AMOUNT PER WALLET: 3
            require(numWhitelistMinted < 4, "max allowlist amount");
            _setAux(msg.sender,numWhitelistMinted);
        }
        _mint(msg.sender, amount, "", false);
    }

    function getAllowlistMinted(address _address) external view returns (uint64) {
        return _getAux(_address);
    }

    function setProvenanceHash(string memory provenanceHash) external onlyOwner {
        PROVENANCE = provenanceHash;
    }

    // Set some Cozy Bears aside
    function reserveBears() external onlyOwner {
        require(!reserved, "reserve redeemed");
        require(_totalMinted()<8718, "not enough supply");
        reserved = true;
        for (uint256 i = 0; i < 17; i++) {
            _mint(msg.sender, 10, "", false);
        }
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function burnSupply(uint256 newSupply) external onlyOwner {
        require(newSupply < MAX_SUPPLY, "newSupply too high");
        require(newSupply > _totalMinted(), "newSupply too low");
        MAX_SUPPLY = newSupply;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"AuxQueryForZeroAddress","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListSigningAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"amount","type":"uint64"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"burnSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getAllowlistMinted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"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":"maxAllowMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveBears","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signingAddress","type":"address"}],"name":"setAllowListSigner","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublicMints","type":"uint256"}],"name":"setMaxPublicMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600980546001600160a01b031916735c0a83276d1f4953d985243559683f68ca9b77901790556122b8600c5566d529ae9e860000600d55600a600e556003600f553480156200005257600080fd5b50604080518082018252600a815269436f7a7920426561727360b01b60208083019182528351808501909452600684526543424541525360d01b908401528151919291620000a39160029162000123565b508051620000b990600390602084019062000123565b50506000805550620000cb33620000d1565b62000206565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013190620001c9565b90600052602060002090601f016020900481019282620001555760008555620001a0565b82601f106200017057805160ff1916838001178555620001a0565b82800160010185558215620001a0579182015b82811115620001a057825182559160200191906001019062000183565b50620001ae929150620001b2565b5090565b5b80821115620001ae5760008155600101620001b3565b600181811c90821680620001de57607f821691505b602082108114156200020057634e487b7160e01b600052602260045260246000fd5b50919050565b61290180620002166000396000f3fe60806040526004361061024f5760003560e01c8063715018a611610138578063b88d4fde116100b0578063d595c3311161007f578063e985e9c511610064578063e985e9c514610637578063f2fde38b14610680578063f62222cb146106a057600080fd5b8063d595c33114610602578063e222c7f91461062257600080fd5b8063b88d4fde14610597578063bdc7ebc7146105b7578063c7b0dcbc146105cc578063c87b56dd146105e257600080fd5b8063a035b1fe11610107578063a22cb465116100ec578063a22cb46514610537578063a93fef3b14610557578063b37ef4431461057757600080fd5b8063a035b1fe1461050e578063a0712d681461052457600080fd5b8063715018a6146104a65780638da5cb5b146104bb57806391b7f5ed146104d957806395d89b41146104f957600080fd5b806332cb6b0c116101cb5780634af6b94e1161019a5780636352211e1161017f5780636352211e146104515780636373a6b11461047157806370a082311461048657600080fd5b80634af6b94e146103f857806355f804b31461043157600080fd5b806332cb6b0c1461039b5780633ccfd60b146103b157806342842e0e146103b9578063471a4294146103d957600080fd5b80630b97b7051161022257806318160ddd1161020757806318160ddd146103385780631c33c3551461035b57806323b872dd1461037b57600080fd5b80630b97b70514610305578063109695231461031857600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f366004612375565b6106b6565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e610753565b60405161028091906123ea565b3480156102b757600080fd5b506102cb6102c63660046123fd565b6107e5565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe366004612432565b610842565b005b61030361031336600461245c565b610902565b34801561032457600080fd5b50610303610333366004612574565b610b39565b34801561034457600080fd5b50600154600054035b604051908152602001610280565b34801561036757600080fd5b506103036103763660046125bd565b610b98565b34801561038757600080fd5b506103036103963660046125d8565b610c0f565b3480156103a757600080fd5b5061034d600c5481565b610303610c1a565b3480156103c557600080fd5b506103036103d43660046125d8565b610c88565b3480156103e557600080fd5b5060105461027490610100900460ff1681565b34801561040457600080fd5b506104186104133660046125bd565b610ca3565b60405167ffffffffffffffff9091168152602001610280565b34801561043d57600080fd5b5061030361044c366004612574565b610cae565b34801561045d57600080fd5b506102cb61046c3660046123fd565b610d09565b34801561047d57600080fd5b5061029e610d1b565b34801561049257600080fd5b5061034d6104a13660046125bd565b610da9565b3480156104b257600080fd5b50610303610e11565b3480156104c757600080fd5b506008546001600160a01b03166102cb565b3480156104e557600080fd5b506103036104f43660046123fd565b610e63565b34801561050557600080fd5b5061029e610eb0565b34801561051a57600080fd5b5061034d600d5481565b6103036105323660046123fd565b610ebf565b34801561054357600080fd5b50610303610552366004612614565b611068565b34801561056357600080fd5b506103036105723660046123fd565b611117565b34801561058357600080fd5b506009546102cb906001600160a01b031681565b3480156105a357600080fd5b506103036105b2366004612650565b611164565b3480156105c357600080fd5b506103036111af565b3480156105d857600080fd5b5061034d600e5481565b3480156105ee57600080fd5b5061029e6105fd3660046123fd565b6112ee565b34801561060e57600080fd5b5061030361061d3660046123fd565b61138c565b34801561062e57600080fd5b5061030361147b565b34801561064357600080fd5b506102746106523660046126cc565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068c57600080fd5b5061030361069b3660046125bd565b6114e0565b3480156106ac57600080fd5b5061034d600f5481565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061071957506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061074d57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060028054610762906126ff565b80601f016020809104026020016040519081016040528092919081815260200182805461078e906126ff565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b5050505050905090565b60006107f0826115ad565b610826576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061084d82610d09565b9050806001600160a01b0316836001600160a01b0316141561089b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906108bb57506108b98133610652565b155b156108f2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108fd8383836115d8565b505050565b8267ffffffffffffffff16600c548161091a60005490565b01111561095b5760405162461bcd60e51b815260206004820152600a6024820152696d617820737570706c7960b01b60448201526064015b60405180910390fd5b80600d546109699190612750565b3410156109a65760405162461bcd60e51b815260206004820152600b60248201526a77726f6e6720707269636560a81b6044820152606401610952565b610a3c83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c019150610a189050565b6040516020818303038152906040528051906020012061164190919063ffffffff16565b6009546001600160a01b03908116911614610a995760405162461bcd60e51b815260206004820152600b60248201527f6e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610952565b600084610aa533611665565b01905060048167ffffffffffffffff1610610b025760405162461bcd60e51b815260206004820152601460248201527f6d617820616c6c6f776c69737420616d6f756e740000000000000000000000006044820152606401610952565b610b0c33826116bb565b50610b33338567ffffffffffffffff16604051806020016040528060008152506000611733565b50505050565b6008546001600160a01b03163314610b815760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b8051610b9490600b9060208401906122c6565b5050565b6008546001600160a01b03163314610be05760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6108fd838383611949565b6008546001600160a01b03163314610c625760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b60405133904780156108fc02916000818181858888f19350505050610c8657600080fd5b565b6108fd83838360405180602001604052806000815250611164565b600061074d82611665565b6008546001600160a01b03163314610cf65760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b8051610b9490600a9060208401906122c6565b6000610d1482611ba8565b5192915050565b600b8054610d28906126ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610d54906126ff565b8015610da15780601f10610d7657610100808354040283529160200191610da1565b820191906000526020600020905b815481529060010190602001808311610d8457829003601f168201915b505050505081565b60006001600160a01b038216610deb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e595760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b610c866000611cdd565b6008546001600160a01b03163314610eab5760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b600d55565b606060038054610762906126ff565b80600c5481610ecd60005490565b011115610f095760405162461bcd60e51b815260206004820152600a6024820152696d617820737570706c7960b01b6044820152606401610952565b80600d54610f179190612750565b341015610f545760405162461bcd60e51b815260206004820152600b60248201526a77726f6e6720707269636560a81b6044820152606401610952565b601054610100900460ff16610fab5760405162461bcd60e51b815260206004820152601160248201527f4d696e74696e67206973207061757365640000000000000000000000000000006044820152606401610952565b600e54821115610ffd5760405162461bcd60e51b815260206004820152600a60248201527f6d617820616d6f756e74000000000000000000000000000000000000000000006044820152606401610952565b33321461104c5760405162461bcd60e51b815260206004820152600760248201527f6e6f20626f7473000000000000000000000000000000000000000000000000006044820152606401610952565b610b943383604051806020016040528060008152506000611733565b6001600160a01b0382163314156110ab576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461115f5760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b600e55565b61116f848484611949565b6001600160a01b0383163b15158015611191575061118f84848484611d3c565b155b15610b33576040516368d2bf6b60e11b815260040160405180910390fd5b6008546001600160a01b031633146111f75760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b60105460ff161561124a5760405162461bcd60e51b815260206004820152601060248201527f726573657276652072656465656d6564000000000000000000000000000000006044820152606401610952565b61220e61125660005490565b106112a35760405162461bcd60e51b815260206004820152601160248201527f6e6f7420656e6f75676820737570706c790000000000000000000000000000006044820152606401610952565b6010805460ff1916600117905560005b60118110156112eb576112d933600a604051806020016040528060008152506000611733565b806112e38161276f565b9150506112b3565b50565b60606112f9826115ad565b61132f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611339611e25565b905080516000141561135a5760405180602001604052806000815250611385565b8061136484611e34565b60405160200161137592919061278a565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113d45760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b600c5481106114255760405162461bcd60e51b815260206004820152601260248201527f6e6577537570706c7920746f6f206869676800000000000000000000000000006044820152606401610952565b60005481116114765760405162461bcd60e51b815260206004820152601160248201527f6e6577537570706c7920746f6f206c6f770000000000000000000000000000006044820152606401610952565b600c55565b6008546001600160a01b031633146114c35760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146115285760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b6001600160a01b0381166115a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610952565b6112eb81611cdd565b600080548210801561074d575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60008060006116508585611f66565b9150915061165d81611fd6565b509392505050565b60006001600160a01b03821661168e5760405163561b93dd60e11b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160c01b900467ffffffffffffffff1690565b6001600160a01b0382166116e25760405163561b93dd60e11b815260040160405180910390fd5b6001600160a01b039091166000908152600560205260409020805467ffffffffffffffff909216600160c01b0277ffffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000546001600160a01b038516611776576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836117ad576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561186e57506001600160a01b0387163b15155b156118f7575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118bf6000888480600101955088611d3c565b6118dc576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118745782600054146118f257600080fd5b61193d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156118f8575b506000555b5050505050565b600061195482611ba8565b80519091506000906001600160a01b0316336001600160a01b03161480611982575081516119829033610652565b8061199d575033611992846107e5565b6001600160a01b0316145b9050806119d6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a25576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611a65576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a7560008484600001516115d8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611b6157600054811015611b61578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611942565b604080516060810182526000808252602082018190529181019190915281600054811015611cab57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611ca95780516001600160a01b031615611c3f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611ca4579392505050565b611c3f565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d719033908990889088906004016127b9565b6020604051808303816000875af1925050508015611dac575060408051601f3d908101601f19168201909252611da9918101906127f5565b60015b611e07573d808015611dda576040519150601f19603f3d011682016040523d82523d6000602084013e611ddf565b606091505b508051611dff576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610762906126ff565b606081611e7457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611e9e5780611e888161276f565b9150611e979050600a83612828565b9150611e78565b60008167ffffffffffffffff811115611eb957611eb96124e8565b6040519080825280601f01601f191660200182016040528015611ee3576020820181803683370190505b5090505b8415611e1d57611ef860018361283c565b9150611f05600a86612853565b611f10906030612867565b60f81b818381518110611f2557611f2561287f565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611f5f600a86612828565b9450611ee7565b600080825160411415611f9d5760208301516040840151606085015160001a611f9187828585612191565b94509450505050611fcf565b825160401415611fc75760208301516040840151611fbc86838361227e565b935093505050611fcf565b506000905060025b9250929050565b6000816004811115611fea57611fea612895565b1415611ff35750565b600181600481111561200757612007612895565b14156120555760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610952565b600281600481111561206957612069612895565b14156120b75760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610952565b60038160048111156120cb576120cb612895565b14156121245760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610952565b600481600481111561213857612138612895565b14156112eb5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610952565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156121c85750600090506003612275565b8460ff16601b141580156121e057508460ff16601c14155b156121f15750600090506004612275565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612245573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661226e57600060019250925050612275565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016122b887828885612191565b935093505050935093915050565b8280546122d2906126ff565b90600052602060002090601f0160209004810192826122f4576000855561233a565b82601f1061230d57805160ff191683800117855561233a565b8280016001018555821561233a579182015b8281111561233a57825182559160200191906001019061231f565b5061234692915061234a565b5090565b5b80821115612346576000815560010161234b565b6001600160e01b0319811681146112eb57600080fd5b60006020828403121561238757600080fd5b81356113858161235f565b60005b838110156123ad578181015183820152602001612395565b83811115610b335750506000910152565b600081518084526123d6816020860160208601612392565b601f01601f19169290920160200192915050565b60208152600061138560208301846123be565b60006020828403121561240f57600080fd5b5035919050565b80356001600160a01b038116811461242d57600080fd5b919050565b6000806040838503121561244557600080fd5b61244e83612416565b946020939093013593505050565b60008060006040848603121561247157600080fd5b833567ffffffffffffffff808216821461248a57600080fd5b909350602085013590808211156124a057600080fd5b818601915086601f8301126124b457600080fd5b8135818111156124c357600080fd5b8760208285010111156124d557600080fd5b6020830194508093505050509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612519576125196124e8565b604051601f8501601f19908116603f01168101908282118183101715612541576125416124e8565b8160405280935085815286868601111561255a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561258657600080fd5b813567ffffffffffffffff81111561259d57600080fd5b8201601f810184136125ae57600080fd5b611e1d848235602084016124fe565b6000602082840312156125cf57600080fd5b61138582612416565b6000806000606084860312156125ed57600080fd5b6125f684612416565b925061260460208501612416565b9150604084013590509250925092565b6000806040838503121561262757600080fd5b61263083612416565b91506020830135801515811461264557600080fd5b809150509250929050565b6000806000806080858703121561266657600080fd5b61266f85612416565b935061267d60208601612416565b925060408501359150606085013567ffffffffffffffff8111156126a057600080fd5b8501601f810187136126b157600080fd5b6126c0878235602084016124fe565b91505092959194509250565b600080604083850312156126df57600080fd5b6126e883612416565b91506126f660208401612416565b90509250929050565b600181811c9082168061271357607f821691505b6020821081141561273457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561276a5761276a61273a565b500290565b60006000198214156127835761278361273a565b5060010190565b6000835161279c818460208801612392565b8351908301906127b0818360208801612392565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526127eb60808301846123be565b9695505050505050565b60006020828403121561280757600080fd5b81516113858161235f565b634e487b7160e01b600052601260045260246000fd5b60008261283757612837612812565b500490565b60008282101561284e5761284e61273a565b500390565b60008261286257612862612812565b500690565b6000821982111561287a5761287a61273a565b500190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212202cf4659d23a8a7162b4cce13cf8335cf11cd3b212a43d38b7f5dcc94bb934a8c64736f6c634300080c0033

Deployed Bytecode

0x60806040526004361061024f5760003560e01c8063715018a611610138578063b88d4fde116100b0578063d595c3311161007f578063e985e9c511610064578063e985e9c514610637578063f2fde38b14610680578063f62222cb146106a057600080fd5b8063d595c33114610602578063e222c7f91461062257600080fd5b8063b88d4fde14610597578063bdc7ebc7146105b7578063c7b0dcbc146105cc578063c87b56dd146105e257600080fd5b8063a035b1fe11610107578063a22cb465116100ec578063a22cb46514610537578063a93fef3b14610557578063b37ef4431461057757600080fd5b8063a035b1fe1461050e578063a0712d681461052457600080fd5b8063715018a6146104a65780638da5cb5b146104bb57806391b7f5ed146104d957806395d89b41146104f957600080fd5b806332cb6b0c116101cb5780634af6b94e1161019a5780636352211e1161017f5780636352211e146104515780636373a6b11461047157806370a082311461048657600080fd5b80634af6b94e146103f857806355f804b31461043157600080fd5b806332cb6b0c1461039b5780633ccfd60b146103b157806342842e0e146103b9578063471a4294146103d957600080fd5b80630b97b7051161022257806318160ddd1161020757806318160ddd146103385780631c33c3551461035b57806323b872dd1461037b57600080fd5b80630b97b70514610305578063109695231461031857600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f366004612375565b6106b6565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e610753565b60405161028091906123ea565b3480156102b757600080fd5b506102cb6102c63660046123fd565b6107e5565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe366004612432565b610842565b005b61030361031336600461245c565b610902565b34801561032457600080fd5b50610303610333366004612574565b610b39565b34801561034457600080fd5b50600154600054035b604051908152602001610280565b34801561036757600080fd5b506103036103763660046125bd565b610b98565b34801561038757600080fd5b506103036103963660046125d8565b610c0f565b3480156103a757600080fd5b5061034d600c5481565b610303610c1a565b3480156103c557600080fd5b506103036103d43660046125d8565b610c88565b3480156103e557600080fd5b5060105461027490610100900460ff1681565b34801561040457600080fd5b506104186104133660046125bd565b610ca3565b60405167ffffffffffffffff9091168152602001610280565b34801561043d57600080fd5b5061030361044c366004612574565b610cae565b34801561045d57600080fd5b506102cb61046c3660046123fd565b610d09565b34801561047d57600080fd5b5061029e610d1b565b34801561049257600080fd5b5061034d6104a13660046125bd565b610da9565b3480156104b257600080fd5b50610303610e11565b3480156104c757600080fd5b506008546001600160a01b03166102cb565b3480156104e557600080fd5b506103036104f43660046123fd565b610e63565b34801561050557600080fd5b5061029e610eb0565b34801561051a57600080fd5b5061034d600d5481565b6103036105323660046123fd565b610ebf565b34801561054357600080fd5b50610303610552366004612614565b611068565b34801561056357600080fd5b506103036105723660046123fd565b611117565b34801561058357600080fd5b506009546102cb906001600160a01b031681565b3480156105a357600080fd5b506103036105b2366004612650565b611164565b3480156105c357600080fd5b506103036111af565b3480156105d857600080fd5b5061034d600e5481565b3480156105ee57600080fd5b5061029e6105fd3660046123fd565b6112ee565b34801561060e57600080fd5b5061030361061d3660046123fd565b61138c565b34801561062e57600080fd5b5061030361147b565b34801561064357600080fd5b506102746106523660046126cc565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068c57600080fd5b5061030361069b3660046125bd565b6114e0565b3480156106ac57600080fd5b5061034d600f5481565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061071957506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061074d57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060028054610762906126ff565b80601f016020809104026020016040519081016040528092919081815260200182805461078e906126ff565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b5050505050905090565b60006107f0826115ad565b610826576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061084d82610d09565b9050806001600160a01b0316836001600160a01b0316141561089b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906108bb57506108b98133610652565b155b156108f2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108fd8383836115d8565b505050565b8267ffffffffffffffff16600c548161091a60005490565b01111561095b5760405162461bcd60e51b815260206004820152600a6024820152696d617820737570706c7960b01b60448201526064015b60405180910390fd5b80600d546109699190612750565b3410156109a65760405162461bcd60e51b815260206004820152600b60248201526a77726f6e6720707269636560a81b6044820152606401610952565b610a3c83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c019150610a189050565b6040516020818303038152906040528051906020012061164190919063ffffffff16565b6009546001600160a01b03908116911614610a995760405162461bcd60e51b815260206004820152600b60248201527f6e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610952565b600084610aa533611665565b01905060048167ffffffffffffffff1610610b025760405162461bcd60e51b815260206004820152601460248201527f6d617820616c6c6f776c69737420616d6f756e740000000000000000000000006044820152606401610952565b610b0c33826116bb565b50610b33338567ffffffffffffffff16604051806020016040528060008152506000611733565b50505050565b6008546001600160a01b03163314610b815760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b8051610b9490600b9060208401906122c6565b5050565b6008546001600160a01b03163314610be05760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6108fd838383611949565b6008546001600160a01b03163314610c625760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b60405133904780156108fc02916000818181858888f19350505050610c8657600080fd5b565b6108fd83838360405180602001604052806000815250611164565b600061074d82611665565b6008546001600160a01b03163314610cf65760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b8051610b9490600a9060208401906122c6565b6000610d1482611ba8565b5192915050565b600b8054610d28906126ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610d54906126ff565b8015610da15780601f10610d7657610100808354040283529160200191610da1565b820191906000526020600020905b815481529060010190602001808311610d8457829003601f168201915b505050505081565b60006001600160a01b038216610deb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e595760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b610c866000611cdd565b6008546001600160a01b03163314610eab5760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b600d55565b606060038054610762906126ff565b80600c5481610ecd60005490565b011115610f095760405162461bcd60e51b815260206004820152600a6024820152696d617820737570706c7960b01b6044820152606401610952565b80600d54610f179190612750565b341015610f545760405162461bcd60e51b815260206004820152600b60248201526a77726f6e6720707269636560a81b6044820152606401610952565b601054610100900460ff16610fab5760405162461bcd60e51b815260206004820152601160248201527f4d696e74696e67206973207061757365640000000000000000000000000000006044820152606401610952565b600e54821115610ffd5760405162461bcd60e51b815260206004820152600a60248201527f6d617820616d6f756e74000000000000000000000000000000000000000000006044820152606401610952565b33321461104c5760405162461bcd60e51b815260206004820152600760248201527f6e6f20626f7473000000000000000000000000000000000000000000000000006044820152606401610952565b610b943383604051806020016040528060008152506000611733565b6001600160a01b0382163314156110ab576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461115f5760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b600e55565b61116f848484611949565b6001600160a01b0383163b15158015611191575061118f84848484611d3c565b155b15610b33576040516368d2bf6b60e11b815260040160405180910390fd5b6008546001600160a01b031633146111f75760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b60105460ff161561124a5760405162461bcd60e51b815260206004820152601060248201527f726573657276652072656465656d6564000000000000000000000000000000006044820152606401610952565b61220e61125660005490565b106112a35760405162461bcd60e51b815260206004820152601160248201527f6e6f7420656e6f75676820737570706c790000000000000000000000000000006044820152606401610952565b6010805460ff1916600117905560005b60118110156112eb576112d933600a604051806020016040528060008152506000611733565b806112e38161276f565b9150506112b3565b50565b60606112f9826115ad565b61132f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611339611e25565b905080516000141561135a5760405180602001604052806000815250611385565b8061136484611e34565b60405160200161137592919061278a565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113d45760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b600c5481106114255760405162461bcd60e51b815260206004820152601260248201527f6e6577537570706c7920746f6f206869676800000000000000000000000000006044820152606401610952565b60005481116114765760405162461bcd60e51b815260206004820152601160248201527f6e6577537570706c7920746f6f206c6f770000000000000000000000000000006044820152606401610952565b600c55565b6008546001600160a01b031633146114c35760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146115285760405162461bcd60e51b815260206004820181905260248201526000805160206128ac8339815191526044820152606401610952565b6001600160a01b0381166115a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610952565b6112eb81611cdd565b600080548210801561074d575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60008060006116508585611f66565b9150915061165d81611fd6565b509392505050565b60006001600160a01b03821661168e5760405163561b93dd60e11b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160c01b900467ffffffffffffffff1690565b6001600160a01b0382166116e25760405163561b93dd60e11b815260040160405180910390fd5b6001600160a01b039091166000908152600560205260409020805467ffffffffffffffff909216600160c01b0277ffffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000546001600160a01b038516611776576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836117ad576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561186e57506001600160a01b0387163b15155b156118f7575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118bf6000888480600101955088611d3c565b6118dc576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118745782600054146118f257600080fd5b61193d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156118f8575b506000555b5050505050565b600061195482611ba8565b80519091506000906001600160a01b0316336001600160a01b03161480611982575081516119829033610652565b8061199d575033611992846107e5565b6001600160a01b0316145b9050806119d6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a25576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611a65576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a7560008484600001516115d8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611b6157600054811015611b61578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611942565b604080516060810182526000808252602082018190529181019190915281600054811015611cab57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611ca95780516001600160a01b031615611c3f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611ca4579392505050565b611c3f565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d719033908990889088906004016127b9565b6020604051808303816000875af1925050508015611dac575060408051601f3d908101601f19168201909252611da9918101906127f5565b60015b611e07573d808015611dda576040519150601f19603f3d011682016040523d82523d6000602084013e611ddf565b606091505b508051611dff576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610762906126ff565b606081611e7457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611e9e5780611e888161276f565b9150611e979050600a83612828565b9150611e78565b60008167ffffffffffffffff811115611eb957611eb96124e8565b6040519080825280601f01601f191660200182016040528015611ee3576020820181803683370190505b5090505b8415611e1d57611ef860018361283c565b9150611f05600a86612853565b611f10906030612867565b60f81b818381518110611f2557611f2561287f565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611f5f600a86612828565b9450611ee7565b600080825160411415611f9d5760208301516040840151606085015160001a611f9187828585612191565b94509450505050611fcf565b825160401415611fc75760208301516040840151611fbc86838361227e565b935093505050611fcf565b506000905060025b9250929050565b6000816004811115611fea57611fea612895565b1415611ff35750565b600181600481111561200757612007612895565b14156120555760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610952565b600281600481111561206957612069612895565b14156120b75760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610952565b60038160048111156120cb576120cb612895565b14156121245760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610952565b600481600481111561213857612138612895565b14156112eb5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610952565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156121c85750600090506003612275565b8460ff16601b141580156121e057508460ff16601c14155b156121f15750600090506004612275565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612245573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661226e57600060019250925050612275565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016122b887828885612191565b935093505050935093915050565b8280546122d2906126ff565b90600052602060002090601f0160209004810192826122f4576000855561233a565b82601f1061230d57805160ff191683800117855561233a565b8280016001018555821561233a579182015b8281111561233a57825182559160200191906001019061231f565b5061234692915061234a565b5090565b5b80821115612346576000815560010161234b565b6001600160e01b0319811681146112eb57600080fd5b60006020828403121561238757600080fd5b81356113858161235f565b60005b838110156123ad578181015183820152602001612395565b83811115610b335750506000910152565b600081518084526123d6816020860160208601612392565b601f01601f19169290920160200192915050565b60208152600061138560208301846123be565b60006020828403121561240f57600080fd5b5035919050565b80356001600160a01b038116811461242d57600080fd5b919050565b6000806040838503121561244557600080fd5b61244e83612416565b946020939093013593505050565b60008060006040848603121561247157600080fd5b833567ffffffffffffffff808216821461248a57600080fd5b909350602085013590808211156124a057600080fd5b818601915086601f8301126124b457600080fd5b8135818111156124c357600080fd5b8760208285010111156124d557600080fd5b6020830194508093505050509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612519576125196124e8565b604051601f8501601f19908116603f01168101908282118183101715612541576125416124e8565b8160405280935085815286868601111561255a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561258657600080fd5b813567ffffffffffffffff81111561259d57600080fd5b8201601f810184136125ae57600080fd5b611e1d848235602084016124fe565b6000602082840312156125cf57600080fd5b61138582612416565b6000806000606084860312156125ed57600080fd5b6125f684612416565b925061260460208501612416565b9150604084013590509250925092565b6000806040838503121561262757600080fd5b61263083612416565b91506020830135801515811461264557600080fd5b809150509250929050565b6000806000806080858703121561266657600080fd5b61266f85612416565b935061267d60208601612416565b925060408501359150606085013567ffffffffffffffff8111156126a057600080fd5b8501601f810187136126b157600080fd5b6126c0878235602084016124fe565b91505092959194509250565b600080604083850312156126df57600080fd5b6126e883612416565b91506126f660208401612416565b90509250929050565b600181811c9082168061271357607f821691505b6020821081141561273457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561276a5761276a61273a565b500290565b60006000198214156127835761278361273a565b5060010190565b6000835161279c818460208801612392565b8351908301906127b0818360208801612392565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526127eb60808301846123be565b9695505050505050565b60006020828403121561280757600080fd5b81516113858161235f565b634e487b7160e01b600052601260045260246000fd5b60008261283757612837612812565b500490565b60008282101561284e5761284e61273a565b500390565b60008261286257612862612812565b500690565b6000821982111561287a5761287a61273a565b500190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212202cf4659d23a8a7162b4cce13cf8335cf11cd3b212a43d38b7f5dcc94bb934a8c64736f6c634300080c0033

Deployed Bytecode Sourcemap

57771:3505:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37527:305;;;;;;;;;;-1:-1:-1;37527:305:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;37527:305:0;;;;;;;;40912:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42415:204::-;;;;;;;;;;-1:-1:-1;42415:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1738:55:1;;;1720:74;;1708:2;1693:18;42415:204:0;1574:226:1;41978:371:0;;;;;;;;;;-1:-1:-1;41978:371:0;;;;;:::i;:::-;;:::i;:::-;;59310:810;;;;;;:::i;:::-;;:::i;60256:122::-;;;;;;;;;;-1:-1:-1;60256:122:0;;;;;:::i;:::-;;:::i;36776:303::-;;;;;;;;;;-1:-1:-1;37030:12:0;;36820:7;37014:13;:28;36776:303;;;4445:25:1;;;4433:2;4418:18;36776:303:0;4299:177:1;58401:132:0;;;;;;;;;;-1:-1:-1;58401:132:0;;;;;:::i;:::-;;:::i;43272:170::-;;;;;;;;;;-1:-1:-1;43272:170:0;;;;;:::i;:::-;;:::i;58007:32::-;;;;;;;;;;;;;;;;60810:120;;;:::i;43513:185::-;;;;;;;;;;-1:-1:-1;43513:185:0;;;;;:::i;:::-;;:::i;58207:24::-;;;;;;;;;;-1:-1:-1;58207:24:0;;;;;;;;;;;60128:120;;;;;;;;;;-1:-1:-1;60128:120:0;;;;;:::i;:::-;;:::i;:::-;;;5179:18:1;5167:31;;;5149:50;;5137:2;5122:18;60128:120:0;5005:200:1;58300:93:0;;;;;;;;;;-1:-1:-1;58300:93:0;;;;;:::i;:::-;;:::i;40721:124::-;;;;;;;;;;-1:-1:-1;40721:124:0;;;;;:::i;:::-;;:::i;57976:24::-;;;;;;;;;;;;;:::i;37896:206::-;;;;;;;;;;-1:-1:-1;37896:206:0;;;;;:::i;:::-;;:::i;14320:103::-;;;;;;;;;;;;;:::i;13669:87::-;;;;;;;;;;-1:-1:-1;13742:6:0;;-1:-1:-1;;;;;13742:6:0;13669:87;;60716:86;;;;;;;;;;-1:-1:-1;60716:86:0;;;;;:::i;:::-;;:::i;41081:104::-;;;;;;;;;;;;;:::i;58046:40::-;;;;;;;;;;;;;;;;59012:290;;;;;;:::i;:::-;;:::i;42691:279::-;;;;;;;;;;-1:-1:-1;42691:279:0;;;;;:::i;:::-;;:::i;58643:122::-;;;;;;;;;;-1:-1:-1;58643:122:0;;;;;:::i;:::-;;:::i;57849:92::-;;;;;;;;;;-1:-1:-1;57849:92:0;;;;-1:-1:-1;;;;;57849:92:0;;;43769:369;;;;;;;;;;-1:-1:-1;43769:369:0;;;;;:::i;:::-;;:::i;60420:288::-;;;;;;;;;;;;;:::i;58093:34::-;;;;;;;;;;;;;;;;41256:318;;;;;;;;;;-1:-1:-1;41256:318:0;;;;;:::i;:::-;;:::i;60938:230::-;;;;;;;;;;-1:-1:-1;60938:230:0;;;;;:::i;:::-;;:::i;58541:94::-;;;;;;;;;;;;;:::i;43041:164::-;;;;;;;;;;-1:-1:-1;43041:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43162:25:0;;;43138:4;43162:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43041:164;14578:201;;;;;;;;;;-1:-1:-1;14578:201:0;;;;;:::i;:::-;;:::i;58134:32::-;;;;;;;;;;;;;;;;37527:305;37629:4;-1:-1:-1;;;;;;37666:40:0;;37681:25;37666:40;;:105;;-1:-1:-1;;;;;;;37723:48:0;;37738:33;37723:48;37666:105;:158;;;-1:-1:-1;26249:25:0;-1:-1:-1;;;;;;26234:40:0;;;37788:36;37646:178;37527:305;-1:-1:-1;;37527:305:0:o;40912:100::-;40966:13;40999:5;40992:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40912:100;:::o;42415:204::-;42483:7;42508:16;42516:7;42508;:16::i;:::-;42503:64;;42533:34;;;;;;;;;;;;;;42503:64;-1:-1:-1;42587:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42587:24:0;;42415:204::o;41978:371::-;42051:13;42067:24;42083:7;42067:15;:24::i;:::-;42051:40;;42112:5;-1:-1:-1;;;;;42106:11:0;:2;-1:-1:-1;;;;;42106:11:0;;42102:48;;;42126:24;;;;;;;;;;;;;;42102:48;12467:10;-1:-1:-1;;;;;42167:21:0;;;;;;:63;;-1:-1:-1;42193:37:0;42210:5;12467:10;43041:164;:::i;42193:37::-;42192:38;42167:63;42163:138;;;42254:35;;;;;;;;;;;;;;42163:138;42313:28;42322:2;42326:7;42335:5;42313:8;:28::i;:::-;42040:309;41978:371;;:::o;59310:810::-;59407:6;58773:227;;58884:10;;58874:6;58857:14;37219:7;37405:13;;37172:283;58857:14;:23;:37;;58849:60;;;;-1:-1:-1;;;58849:60:0;;7143:2:1;58849:60:0;;;7125:21:1;7182:2;7162:18;;;7155:30;-1:-1:-1;;;7201:18:1;;;7194:40;7251:18;;58849:60:0;;;;;;;;;58958:6;58952:5;;:12;;;;:::i;:::-;58939:9;:25;;58931:49;;;;-1:-1:-1;;;58931:49:0;;7844:2:1;58931:49:0;;;7826:21:1;7883:2;7863:18;;;7856:30;-1:-1:-1;;;7902:18:1;;;7895:41;7953:18;;58931:49:0;7642:335:1;58931:49:0;59500:255:::1;59744:10;;59500:255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;59536:176:0::1;::::0;8224:66:1;59536:176:0::1;::::0;::::1;8212:79:1::0;59672:10:0::1;8307:12:1::0;;;8300:28;8344:12;;;-1:-1:-1;59536:176:0::1;::::0;-1:-1:-1;7982:380:1;59536:176:0::1;;;;;;;;;;;;;59500:235;;;;;;:243;;:255;;;;:::i;:::-;59452:23;::::0;-1:-1:-1;;;;;59452:23:0;;::::1;:303:::0;::::1;;59426:372;;;::::0;-1:-1:-1;;;59426:372:0;;8569:2:1;59426:372:0::1;::::0;::::1;8551:21:1::0;8608:2;8588:18;;;8581:30;8647:13;8627:18;;;8620:41;8678:18;;59426:372:0::1;8367:335:1::0;59426:372:0::1;59834:25;59884:6;59862:19;59870:10;59862:7;:19::i;:::-;:28;59834:56;;59975:1;59954:18;:22;;;59946:55;;;::::0;-1:-1:-1;;;59946:55:0;;8909:2:1;59946:55:0::1;::::0;::::1;8891:21:1::0;8948:2;8928:18;;;8921:30;8987:22;8967:18;;;8960:50;9027:18;;59946:55:0::1;8707:344:1::0;59946:55:0::1;60016:38;60024:10;60035:18;60016:7;:38::i;:::-;59809:257;60076:36;60082:10;60094:6;60076:36;;;;;;;;;;;;;::::0;60106:5:::1;60076;:36::i;:::-;59310:810:::0;;;;:::o;60256:122::-;13742:6;;-1:-1:-1;;;;;13742:6:0;12467:10;13889:23;13881:68;;;;-1:-1:-1;;;13881:68:0;;9258:2:1;13881:68:0;;;9240:21:1;;;9277:18;;;9270:30;-1:-1:-1;;;;;;;;;;;9316:18:1;;;9309:62;9388:18;;13881:68:0;9056:356:1;13881:68:0;60343:27;;::::1;::::0;:10:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;60256:122:::0;:::o;58401:132::-;13742:6;;-1:-1:-1;;;;;13742:6:0;12467:10;13889:23;13881:68;;;;-1:-1:-1;;;13881:68:0;;9258:2:1;13881:68:0;;;9240:21:1;;;9277:18;;;9270:30;-1:-1:-1;;;;;;;;;;;9316:18:1;;;9309:62;9388:18;;13881:68:0;9056:356:1;13881:68:0;58484:23:::1;:41:::0;;-1:-1:-1;;58484:41:0::1;-1:-1:-1::0;;;;;58484:41:0;;;::::1;::::0;;;::::1;::::0;;58401:132::o;43272:170::-;43406:28;43416:4;43422:2;43426:7;43406:9;:28::i;60810:120::-;13742:6;;-1:-1:-1;;;;;13742:6:0;12467:10;13889:23;13881:68;;;;-1:-1:-1;;;13881:68:0;;9258:2:1;13881:68:0;;;9240:21:1;;;9277:18;;;9270:30;-1:-1:-1;;;;;;;;;;;9316:18:1;;;9309:62;9388:18;;13881:68:0;9056:356:1;13881:68:0;60874:47:::1;::::0;60882:10:::1;::::0;60899:21:::1;60874:47:::0;::::1;;;::::0;::::1;::::0;;;60899:21;60882:10;60874:47;::::1;;;;;;60866:56;;;::::0;::::1;;60810:120::o:0;43513:185::-;43651:39;43668:4;43674:2;43678:7;43651:39;;;;;;;;;;;;:16;:39::i;60128:120::-;60197:6;60223:17;60231:8;60223:7;:17::i;58300:93::-;13742:6;;-1:-1:-1;;;;;13742:6:0;12467:10;13889:23;13881:68;;;;-1:-1:-1;;;13881:68:0;;9258:2:1;13881:68:0;;;9240:21:1;;;9277:18;;;9270:30;-1:-1:-1;;;;;;;;;;;9316:18:1;;;9309:62;9388:18;;13881:68:0;9056:356:1;13881:68:0;58371:14;;::::1;::::0;:4:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;40721:124::-:0;40785:7;40812:20;40824:7;40812:11;:20::i;:::-;:25;;40721:124;-1:-1:-1;;40721:124:0:o;57976:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37896:206::-;37960:7;-1:-1:-1;;;;;37984:19:0;;37980:60;;38012:28;;;;;;;;;;;;;;37980:60;-1:-1:-1;;;;;;38066:19:0;;;;;:12;:19;;;;;:27;;;;37896:206::o;14320:103::-;13742:6;;-1:-1:-1;;;;;13742:6:0;12467:10;13889:23;13881:68;;;;-1:-1:-1;;;13881:68:0;;9258:2:1;13881:68:0;;;9240:21:1;;;9277:18;;;9270:30;-1:-1:-1;;;;;;;;;;;9316:18:1;;;9309:62;9388:18;;13881:68:0;9056:356:1;13881:68:0;14385:30:::1;14412:1;14385:18;:30::i;60716:86::-:0;13742:6;;-1:-1:-1;;;;;13742:6:0;12467:10;13889:23;13881:68;;;;-1:-1:-1;;;13881:68:0;;9258:2:1;13881:68:0;;;9240:21:1;;;9277:18;;;9270:30;-1:-1:-1;;;;;;;;;;;9316:18:1;;;9309:62;9388:18;;13881:68:0;9056:356:1;13881:68:0;60780:5:::1;:14:::0;60716:86::o;41081:104::-;41137:13;41170:7;41163:14;;;;;:::i;59012:290::-;59074:6;58884:10;;58874:6;58857:14;37219:7;37405:13;;37172:283;58857:14;:23;:37;;58849:60;;;;-1:-1:-1;;;58849:60:0;;7143:2:1;58849:60:0;;;7125:21:1;7182:2;7162:18;;;7155:30;-1:-1:-1;;;7201:18:1;;;7194:40;7251:18;;58849:60:0;6941:334:1;58849:60:0;58958:6;58952:5;;:12;;;;:::i;:::-;58939:9;:25;;58931:49;;;;-1:-1:-1;;;58931:49:0;;7844:2:1;58931:49:0;;;7826:21:1;7883:2;7863:18;;;7856:30;-1:-1:-1;;;7902:18:1;;;7895:41;7953:18;;58931:49:0;7642:335:1;58931:49:0;59101:12:::1;::::0;::::1;::::0;::::1;;;59093:42;;;::::0;-1:-1:-1;;;59093:42:0;;9619:2:1;59093:42:0::1;::::0;::::1;9601:21:1::0;9658:2;9638:18;;;9631:30;9697:19;9677:18;;;9670:47;9734:18;;59093:42:0::1;9417:341:1::0;59093:42:0::1;59164:14;;59154:6;:24;;59146:47;;;::::0;-1:-1:-1;;;59146:47:0;;9965:2:1;59146:47:0::1;::::0;::::1;9947:21:1::0;10004:2;9984:18;;;9977:30;10043:12;10023:18;;;10016:40;10073:18;;59146:47:0::1;9763:334:1::0;59146:47:0::1;59212:10;59226:9;59212:23;59204:43;;;::::0;-1:-1:-1;;;59204:43:0;;10304:2:1;59204:43:0::1;::::0;::::1;10286:21:1::0;10343:1;10323:18;;;10316:29;10381:9;10361:18;;;10354:37;10408:18;;59204:43:0::1;10102:330:1::0;59204:43:0::1;59258:36;59264:10;59276:6;59258:36;;;;;;;;;;;::::0;59288:5:::1;59258;:36::i;42691:279::-:0;-1:-1:-1;;;;;42782:24:0;;12467:10;42782:24;42778:54;;;42815:17;;;;;;;;;;;;;;42778:54;12467:10;42845:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42845:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42845:53:0;;;;;;;;;;42914:48;;586:41:1;;;42845:42:0;;12467:10;42914:48;;559:18:1;42914:48:0;;;;;;;42691:279;;:::o;58643:122::-;13742:6;;-1:-1:-1;;;;;13742:6:0;12467:10;13889:23;13881:68;;;;-1:-1:-1;;;13881:68:0;;9258:2:1;13881:68:0;;;9240:21:1;;;9277:18;;;9270:30;-1:-1:-1;;;;;;;;;;;9316:18:1;;;9309:62;9388:18;;13881:68:0;9056:356:1;13881:68:0;58725:14:::1;:32:::0;58643:122::o;43769:369::-;43936:28;43946:4;43952:2;43956:7;43936:9;:28::i;:::-;-1:-1:-1;;;;;43979:13:0;;16286:20;16334:8;;43979:76;;;;;43999:56;44030:4;44036:2;44040:7;44049:5;43999:30;:56::i;:::-;43998:57;43979:76;43975:156;;;44079:40;;-1:-1:-1;;;44079:40:0;;;;;;;;;;;60420:288;13742:6;;-1:-1:-1;;;;;13742:6:0;12467:10;13889:23;13881:68;;;;-1:-1:-1;;;13881:68:0;;9258:2:1;13881:68:0;;;9240:21:1;;;9277:18;;;9270:30;-1:-1:-1;;;;;;;;;;;9316:18:1;;;9309:62;9388:18;;13881:68:0;9056:356:1;13881:68:0;60483:8:::1;::::0;::::1;;60482:9;60474:38;;;::::0;-1:-1:-1;;;60474:38:0;;10639:2:1;60474:38:0::1;::::0;::::1;10621:21:1::0;10678:2;10658:18;;;10651:30;10717:18;10697;;;10690:46;10753:18;;60474:38:0::1;10437:340:1::0;60474:38:0::1;60546:4;60531:14;37219:7:::0;37405:13;;37172:283;60531:14:::1;:19;60523:49;;;::::0;-1:-1:-1;;;60523:49:0;;10984:2:1;60523:49:0::1;::::0;::::1;10966:21:1::0;11023:2;11003:18;;;10996:30;11062:19;11042:18;;;11035:47;11099:18;;60523:49:0::1;10782:341:1::0;60523:49:0::1;60583:8;:15:::0;;-1:-1:-1;;60583:15:0::1;60594:4;60583:15;::::0;;:8:::1;60609:92;60633:2;60629:1;:6;60609:92;;;60657:32;60663:10;60675:2;60657:32;;;;;;;;;;;::::0;60683:5:::1;60657;:32::i;:::-;60637:3:::0;::::1;::::0;::::1;:::i;:::-;;;;60609:92;;;;60420:288::o:0;41256:318::-;41329:13;41360:16;41368:7;41360;:16::i;:::-;41355:59;;41385:29;;;;;;;;;;;;;;41355:59;41427:21;41451:10;:8;:10::i;:::-;41427:34;;41485:7;41479:21;41504:1;41479:26;;:87;;;;;;;;;;;;;;;;;41532:7;41541:18;:7;:16;:18::i;:::-;41515:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41479:87;41472:94;41256:318;-1:-1:-1;;;41256:318:0:o;60938:230::-;13742:6;;-1:-1:-1;;;;;13742:6:0;12467:10;13889:23;13881:68;;;;-1:-1:-1;;;13881:68:0;;9258:2:1;13881:68:0;;;9240:21:1;;;9277:18;;;9270:30;-1:-1:-1;;;;;;;;;;;9316:18:1;;;9309:62;9388:18;;13881:68:0;9056:356:1;13881:68:0;61027:10:::1;;61015:9;:22;61007:53;;;::::0;-1:-1:-1;;;61007:53:0;;11945:2:1;61007:53:0::1;::::0;::::1;11927:21:1::0;11984:2;11964:18;;;11957:30;12023:20;12003:18;;;11996:48;12061:18;;61007:53:0::1;11743:342:1::0;61007:53:0::1;37219:7:::0;37405:13;61079:9:::1;:26;61071:56;;;::::0;-1:-1:-1;;;61071:56:0;;12292:2:1;61071:56:0::1;::::0;::::1;12274:21:1::0;12331:2;12311:18;;;12304:30;12370:19;12350:18;;;12343:47;12407:18;;61071:56:0::1;12090:341:1::0;61071:56:0::1;61138:10;:22:::0;60938:230::o;58541:94::-;13742:6;;-1:-1:-1;;;;;13742:6:0;12467:10;13889:23;13881:68;;;;-1:-1:-1;;;13881:68:0;;9258:2:1;13881:68:0;;;9240:21:1;;;9277:18;;;9270:30;-1:-1:-1;;;;;;;;;;;9316:18:1;;;9309:62;9388:18;;13881:68:0;9056:356:1;13881:68:0;58615:12:::1;::::0;;-1:-1:-1;;58599:28:0;::::1;58615:12;::::0;;;::::1;;;58614:13;58599:28:::0;;::::1;;::::0;;58541:94::o;14578:201::-;13742:6;;-1:-1:-1;;;;;13742:6:0;12467:10;13889:23;13881:68;;;;-1:-1:-1;;;13881:68:0;;9258:2:1;13881:68:0;;;9240:21:1;;;9277:18;;;9270:30;-1:-1:-1;;;;;;;;;;;9316:18:1;;;9309:62;9388:18;;13881:68:0;9056:356:1;13881:68:0;-1:-1:-1;;;;;14667:22:0;::::1;14659:73;;;::::0;-1:-1:-1;;;14659:73:0;;12638:2:1;14659:73:0::1;::::0;::::1;12620:21:1::0;12677:2;12657:18;;;12650:30;12716:34;12696:18;;;12689:62;12787:8;12767:18;;;12760:36;12813:19;;14659:73:0::1;12436:402:1::0;14659:73:0::1;14743:28;14762:8;14743:18;:28::i;44393:187::-:0;44450:4;44514:13;;44504:7;:23;44474:98;;;;-1:-1:-1;;44545:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;44545:27:0;;;;44544:28;;44393:187::o;52004:196::-;52119:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;52119:29:0;-1:-1:-1;;;;;52119:29:0;;;;;;;;;52164:28;;52119:24;;52164:28;;;;;;;52004:196;;;:::o;6538:231::-;6616:7;6637:17;6656:18;6678:27;6689:4;6695:9;6678:10;:27::i;:::-;6636:69;;;;6716:18;6728:5;6716:11;:18::i;:::-;-1:-1:-1;6752:9:0;6538:231;-1:-1:-1;;;6538:231:0:o;38814:179::-;38869:6;-1:-1:-1;;;;;38892:19:0;;38888:56;;38920:24;;-1:-1:-1;;;38920:24:0;;;;;;;;;;;38888:56;-1:-1:-1;;;;;;38962:19:0;;;;;:12;:19;;;;;:23;-1:-1:-1;;;38962:23:0;;;;;38814:179::o;39181:168::-;-1:-1:-1;;;;;39249:19:0;;39245:56;;39277:24;;-1:-1:-1;;;39277:24:0;;;;;;;;;;;39245:56;-1:-1:-1;;;;;39312:19:0;;;;;;;:12;:19;;;;;:29;;;;;;-1:-1:-1;;;39312:29:0;;;;;;;;;;;39181:168::o;45477:1775::-;45616:20;45639:13;-1:-1:-1;;;;;45667:16:0;;45663:48;;45692:19;;;;;;;;;;;;;;45663:48;45726:13;45722:44;;45748:18;;;;;;;;;;;;;;45722:44;-1:-1:-1;;;;;46117:16:0;;;;;;:12;:16;;;;;;;;:44;;46176:49;;;46117:44;;;;;;;;46176:49;;;;-1:-1:-1;;46117:44:0;;;;;;46176:49;;;;;;;;;;;;;;;;46242:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;46292:66:0;;;;-1:-1:-1;;;46342:15:0;46292:66;;;;;;;;;;46242:25;46439:23;;;46483:4;:23;;;;-1:-1:-1;;;;;;46491:13:0;;16286:20;16334:8;;46491:15;46479:641;;;46527:314;46558:38;;46583:12;;-1:-1:-1;;;;;46558:38:0;;;46575:1;;46558:38;;46575:1;;46558:38;46624:69;46663:1;46667:2;46671:14;;;;;;46687:5;46624:30;:69::i;:::-;46619:174;;46729:40;;-1:-1:-1;;;46729:40:0;;;;;;;;;;;46619:174;46836:3;46820:12;:19;;46527:314;;46922:12;46905:13;;:29;46901:43;;46936:8;;;46901:43;46479:641;;;46985:120;47016:40;;47041:14;;;;;-1:-1:-1;;;;;47016:40:0;;;47033:1;;47016:40;;47033:1;;47016:40;47100:3;47084:12;:19;;46985:120;;46479:641;-1:-1:-1;47134:13:0;:28;47184:60;45605:1647;45477:1775;;;;:::o;47506:2112::-;47621:35;47659:20;47671:7;47659:11;:20::i;:::-;47734:18;;47621:58;;-1:-1:-1;47692:22:0;;-1:-1:-1;;;;;47718:34:0;12467:10;-1:-1:-1;;;;;47718:34:0;;:101;;;-1:-1:-1;47786:18:0;;47769:50;;12467:10;43041:164;:::i;47769:50::-;47718:154;;;-1:-1:-1;12467:10:0;47836:20;47848:7;47836:11;:20::i;:::-;-1:-1:-1;;;;;47836:36:0;;47718:154;47692:181;;47891:17;47886:66;;47917:35;;;;;;;;;;;;;;47886:66;47989:4;-1:-1:-1;;;;;47967:26:0;:13;:18;;;-1:-1:-1;;;;;47967:26:0;;47963:67;;48002:28;;;;;;;;;;;;;;47963:67;-1:-1:-1;;;;;48045:16:0;;48041:52;;48070:23;;;;;;;;;;;;;;48041:52;48214:49;48231:1;48235:7;48244:13;:18;;;48214:8;:49::i;:::-;-1:-1:-1;;;;;48559:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;48559:31:0;;;;;;;-1:-1:-1;;48559:31:0;;;;;;;48605:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;48605:29:0;;;;;;;;;;;48651:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;48696:61:0;;;;-1:-1:-1;;;48741:15:0;48696:61;;;;;;;;;;;49031:11;;;49061:24;;;;;:29;49031:11;;49061:29;49057:445;;49286:13;;49272:11;:27;49268:219;;;49356:18;;;49324:24;;;:11;:24;;;;;;;;:50;;49439:28;;;;49397:70;;-1:-1:-1;;;49397:70:0;-1:-1:-1;;;;;;49397:70:0;;;-1:-1:-1;;;;;49324:50:0;;;49397:70;;;;;;;49268:219;48534:979;49549:7;49545:2;-1:-1:-1;;;;;49530:27:0;49539:4;-1:-1:-1;;;;;49530:27:0;;;;;;;;;;;49568:42;59310:810;39551:1108;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;39661:7:0;39744:13;;39737:4;:20;39706:886;;;39778:31;39812:17;;;:11;:17;;;;;;;;;39778:51;;;;;;;;;-1:-1:-1;;;;;39778:51:0;;;;-1:-1:-1;;;39778:51:0;;;;;;;;;;;-1:-1:-1;;;39778:51:0;;;;;;;;;;;;;;39848:729;;39898:14;;-1:-1:-1;;;;;39898:28:0;;39894:101;;39962:9;39551:1108;-1:-1:-1;;;39551:1108:0:o;39894:101::-;-1:-1:-1;;;40337:6:0;40382:17;;;;:11;:17;;;;;;;;;40370:29;;;;;;;;;-1:-1:-1;;;;;40370:29:0;;;;;-1:-1:-1;;;40370:29:0;;;;;;;;;;;-1:-1:-1;;;40370:29:0;;;;;;;;;;;;;40430:28;40426:109;;40498:9;39551:1108;-1:-1:-1;;;39551:1108:0:o;40426:109::-;40297:261;;;39759:833;39706:886;40620:31;;;;;;;;;;;;;;14939:191;15032:6;;;-1:-1:-1;;;;;15049:17:0;;;-1:-1:-1;;15049:17:0;;;;;;;15082:40;;15032:6;;;15049:17;15032:6;;15082:40;;15013:16;;15082:40;15002:128;14939:191;:::o;52692:667::-;52876:72;;-1:-1:-1;;;52876:72:0;;52855:4;;-1:-1:-1;;;;;52876:36:0;;;;;:72;;12467:10;;52927:4;;52933:7;;52942:5;;52876:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52876:72:0;;;;;;;;-1:-1:-1;;52876:72:0;;;;;;;;;;;;:::i;:::-;;;52872:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53110:13:0;;53106:235;;53156:40;;-1:-1:-1;;;53156:40:0;;;;;;;;;;;53106:235;53299:6;53293:13;53284:6;53280:2;53276:15;53269:38;52872:480;-1:-1:-1;;;;;;52995:55:0;-1:-1:-1;;;52995:55:0;;-1:-1:-1;52872:480:0;52692:667;;;;;;:::o;61176:97::-;61228:13;61261:4;61254:11;;;;;:::i;371:723::-;427:13;648:10;644:53;;-1:-1:-1;;675:10:0;;;;;;;;;;;;;;;;;;371:723::o;644:53::-;722:5;707:12;763:78;770:9;;763:78;;796:8;;;;:::i;:::-;;-1:-1:-1;819:10:0;;-1:-1:-1;827:2:0;819:10;;:::i;:::-;;;763:78;;;851:19;883:6;873:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;873:17:0;;851:39;;901:154;908:10;;901:154;;935:11;945:1;935:11;;:::i;:::-;;-1:-1:-1;1004:10:0;1012:2;1004:5;:10;:::i;:::-;991:24;;:2;:24;:::i;:::-;978:39;;961:6;968;961:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1032:11:0;1041:2;1032:11;;:::i;:::-;;;901:154;;4428:1308;4509:7;4518:12;4743:9;:16;4763:2;4743:22;4739:990;;;5039:4;5024:20;;5018:27;5089:4;5074:20;;5068:27;5147:4;5132:20;;5126:27;4782:9;5118:36;5190:25;5201:4;5118:36;5018:27;5068;5190:10;:25::i;:::-;5183:32;;;;;;;;;4739:990;5237:9;:16;5257:2;5237:22;5233:496;;;5512:4;5497:20;;5491:27;5563:4;5548:20;;5542:27;5605:23;5616:4;5491:27;5542;5605:10;:23::i;:::-;5598:30;;;;;;;;5233:496;-1:-1:-1;5677:1:0;;-1:-1:-1;5681:35:0;5233:496;4428:1308;;;;;:::o;2699:643::-;2777:20;2768:5;:29;;;;;;;;:::i;:::-;;2764:571;;;2699:643;:::o;2764:571::-;2875:29;2866:5;:38;;;;;;;;:::i;:::-;;2862:473;;;2921:34;;-1:-1:-1;;;2921:34:0;;14888:2:1;2921:34:0;;;14870:21:1;14927:2;14907:18;;;14900:30;14966:26;14946:18;;;14939:54;15010:18;;2921:34:0;14686:348:1;2862:473:0;2986:35;2977:5;:44;;;;;;;;:::i;:::-;;2973:362;;;3038:41;;-1:-1:-1;;;3038:41:0;;15241:2:1;3038:41:0;;;15223:21:1;15280:2;15260:18;;;15253:30;15319:33;15299:18;;;15292:61;15370:18;;3038:41:0;15039:355:1;2973:362:0;3110:30;3101:5;:39;;;;;;;;:::i;:::-;;3097:238;;;3157:44;;-1:-1:-1;;;3157:44:0;;15601:2:1;3157:44:0;;;15583:21:1;15640:2;15620:18;;;15613:30;15679:34;15659:18;;;15652:62;-1:-1:-1;;;15730:18:1;;;15723:32;15772:19;;3157:44:0;15399:398:1;3097:238:0;3232:30;3223:5;:39;;;;;;;;:::i;:::-;;3219:116;;;3279:44;;-1:-1:-1;;;3279:44:0;;16004:2:1;3279:44:0;;;15986:21:1;16043:2;16023:18;;;16016:30;16082:34;16062:18;;;16055:62;-1:-1:-1;;;16133:18:1;;;16126:32;16175:19;;3279:44:0;15802:398:1;8037:1632:0;8168:7;;9102:66;9089:79;;9085:163;;;-1:-1:-1;9201:1:0;;-1:-1:-1;9205:30:0;9185:51;;9085:163;9262:1;:7;;9267:2;9262:7;;:18;;;;;9273:1;:7;;9278:2;9273:7;;9262:18;9258:102;;;-1:-1:-1;9313:1:0;;-1:-1:-1;9317:30:0;9297:51;;9258:102;9474:24;;;9457:14;9474:24;;;;;;;;;16432:25:1;;;16505:4;16493:17;;16473:18;;;16466:45;;;;16527:18;;;16520:34;;;16570:18;;;16563:34;;;9474:24:0;;16404:19:1;;9474:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9474:24:0;;-1:-1:-1;;9474:24:0;;;-1:-1:-1;;;;;;;9513:20:0;;9509:103;;9566:1;9570:29;9550:50;;;;;;;9509:103;9632:6;-1:-1:-1;9640:20:0;;-1:-1:-1;8037:1632:0;;;;;;;;:::o;7032:391::-;7146:7;;7255:66;7247:75;;7349:3;7345:12;;;7359:2;7341:21;7390:25;7401:4;7341:21;7410:1;7247:75;7390:10;:25::i;:::-;7383:32;;;;;;7032:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1141:2;1120:15;-1:-1:-1;;1116:29:1;1107:39;;;;1148:4;1103:50;;901:258;-1:-1:-1;;901:258:1:o;1164:220::-;1313:2;1302:9;1295:21;1276:4;1333:45;1374:2;1363:9;1359:18;1351:6;1333:45;:::i;1389:180::-;1448:6;1501:2;1489:9;1480:7;1476:23;1472:32;1469:52;;;1517:1;1514;1507:12;1469:52;-1:-1:-1;1540:23:1;;1389:180;-1:-1:-1;1389:180:1:o;1805:196::-;1873:20;;-1:-1:-1;;;;;1922:54:1;;1912:65;;1902:93;;1991:1;1988;1981:12;1902:93;1805:196;;;:::o;2006:254::-;2074:6;2082;2135:2;2123:9;2114:7;2110:23;2106:32;2103:52;;;2151:1;2148;2141:12;2103:52;2174:29;2193:9;2174:29;:::i;:::-;2164:39;2250:2;2235:18;;;;2222:32;;-1:-1:-1;;;2006:254:1:o;2265:747::-;2343:6;2351;2359;2412:2;2400:9;2391:7;2387:23;2383:32;2380:52;;;2428:1;2425;2418:12;2380:52;2467:9;2454:23;2496:18;2554:2;2547:5;2543:14;2536:5;2533:25;2523:53;;2572:1;2569;2562:12;2523:53;2595:5;;-1:-1:-1;2651:2:1;2636:18;;2623:32;;2667:14;;;2664:34;;;2694:1;2691;2684:12;2664:34;2732:6;2721:9;2717:22;2707:32;;2777:7;2770:4;2766:2;2762:13;2758:27;2748:55;;2799:1;2796;2789:12;2748:55;2839:2;2826:16;2865:2;2857:6;2854:14;2851:34;;;2881:1;2878;2871:12;2851:34;2926:7;2921:2;2912:6;2908:2;2904:15;2900:24;2897:37;2894:57;;;2947:1;2944;2937:12;2894:57;2978:2;2974;2970:11;2960:21;;3000:6;2990:16;;;;;2265:747;;;;;:::o;3017:184::-;-1:-1:-1;;;3066:1:1;3059:88;3166:4;3163:1;3156:15;3190:4;3187:1;3180:15;3206:632;3271:5;3301:18;3342:2;3334:6;3331:14;3328:40;;;3348:18;;:::i;:::-;3423:2;3417:9;3391:2;3477:15;;-1:-1:-1;;3473:24:1;;;3499:2;3469:33;3465:42;3453:55;;;3523:18;;;3543:22;;;3520:46;3517:72;;;3569:18;;:::i;:::-;3609:10;3605:2;3598:22;3638:6;3629:15;;3668:6;3660;3653:22;3708:3;3699:6;3694:3;3690:16;3687:25;3684:45;;;3725:1;3722;3715:12;3684:45;3775:6;3770:3;3763:4;3755:6;3751:17;3738:44;3830:1;3823:4;3814:6;3806;3802:19;3798:30;3791:41;;;;3206:632;;;;;:::o;3843:451::-;3912:6;3965:2;3953:9;3944:7;3940:23;3936:32;3933:52;;;3981:1;3978;3971:12;3933:52;4021:9;4008:23;4054:18;4046:6;4043:30;4040:50;;;4086:1;4083;4076:12;4040:50;4109:22;;4162:4;4154:13;;4150:27;-1:-1:-1;4140:55:1;;4191:1;4188;4181:12;4140:55;4214:74;4280:7;4275:2;4262:16;4257:2;4253;4249:11;4214:74;:::i;4481:186::-;4540:6;4593:2;4581:9;4572:7;4568:23;4564:32;4561:52;;;4609:1;4606;4599:12;4561:52;4632:29;4651:9;4632:29;:::i;4672:328::-;4749:6;4757;4765;4818:2;4806:9;4797:7;4793:23;4789:32;4786:52;;;4834:1;4831;4824:12;4786:52;4857:29;4876:9;4857:29;:::i;:::-;4847:39;;4905:38;4939:2;4928:9;4924:18;4905:38;:::i;:::-;4895:48;;4990:2;4979:9;4975:18;4962:32;4952:42;;4672:328;;;;;:::o;5210:347::-;5275:6;5283;5336:2;5324:9;5315:7;5311:23;5307:32;5304:52;;;5352:1;5349;5342:12;5304:52;5375:29;5394:9;5375:29;:::i;:::-;5365:39;;5454:2;5443:9;5439:18;5426:32;5501:5;5494:13;5487:21;5480:5;5477:32;5467:60;;5523:1;5520;5513:12;5467:60;5546:5;5536:15;;;5210:347;;;;;:::o;5562:667::-;5657:6;5665;5673;5681;5734:3;5722:9;5713:7;5709:23;5705:33;5702:53;;;5751:1;5748;5741:12;5702:53;5774:29;5793:9;5774:29;:::i;:::-;5764:39;;5822:38;5856:2;5845:9;5841:18;5822:38;:::i;:::-;5812:48;;5907:2;5896:9;5892:18;5879:32;5869:42;;5962:2;5951:9;5947:18;5934:32;5989:18;5981:6;5978:30;5975:50;;;6021:1;6018;6011:12;5975:50;6044:22;;6097:4;6089:13;;6085:27;-1:-1:-1;6075:55:1;;6126:1;6123;6116:12;6075:55;6149:74;6215:7;6210:2;6197:16;6192:2;6188;6184:11;6149:74;:::i;:::-;6139:84;;;5562:667;;;;;;;:::o;6234:260::-;6302:6;6310;6363:2;6351:9;6342:7;6338:23;6334:32;6331:52;;;6379:1;6376;6369:12;6331:52;6402:29;6421:9;6402:29;:::i;:::-;6392:39;;6450:38;6484:2;6473:9;6469:18;6450:38;:::i;:::-;6440:48;;6234:260;;;;;:::o;6499:437::-;6578:1;6574:12;;;;6621;;;6642:61;;6696:4;6688:6;6684:17;6674:27;;6642:61;6749:2;6741:6;6738:14;6718:18;6715:38;6712:218;;;-1:-1:-1;;;6783:1:1;6776:88;6887:4;6884:1;6877:15;6915:4;6912:1;6905:15;6712:218;;6499:437;;;:::o;7280:184::-;-1:-1:-1;;;7329:1:1;7322:88;7429:4;7426:1;7419:15;7453:4;7450:1;7443:15;7469:168;7509:7;7575:1;7571;7567:6;7563:14;7560:1;7557:21;7552:1;7545:9;7538:17;7534:45;7531:71;;;7582:18;;:::i;:::-;-1:-1:-1;7622:9:1;;7469:168::o;11128:135::-;11167:3;-1:-1:-1;;11188:17:1;;11185:43;;;11208:18;;:::i;:::-;-1:-1:-1;11255:1:1;11244:13;;11128:135::o;11268:470::-;11447:3;11485:6;11479:13;11501:53;11547:6;11542:3;11535:4;11527:6;11523:17;11501:53;:::i;:::-;11617:13;;11576:16;;;;11639:57;11617:13;11576:16;11673:4;11661:17;;11639:57;:::i;:::-;11712:20;;11268:470;-1:-1:-1;;;;11268:470:1:o;12843:512::-;13037:4;-1:-1:-1;;;;;13147:2:1;13139:6;13135:15;13124:9;13117:34;13199:2;13191:6;13187:15;13182:2;13171:9;13167:18;13160:43;;13239:6;13234:2;13223:9;13219:18;13212:34;13282:3;13277:2;13266:9;13262:18;13255:31;13303:46;13344:3;13333:9;13329:19;13321:6;13303:46;:::i;:::-;13295:54;12843:512;-1:-1:-1;;;;;;12843:512:1:o;13360:249::-;13429:6;13482:2;13470:9;13461:7;13457:23;13453:32;13450:52;;;13498:1;13495;13488:12;13450:52;13530:9;13524:16;13549:30;13573:5;13549:30;:::i;13614:184::-;-1:-1:-1;;;13663:1:1;13656:88;13763:4;13760:1;13753:15;13787:4;13784:1;13777:15;13803:120;13843:1;13869;13859:35;;13874:18;;:::i;:::-;-1:-1:-1;13908:9:1;;13803:120::o;13928:125::-;13968:4;13996:1;13993;13990:8;13987:34;;;14001:18;;:::i;:::-;-1:-1:-1;14038:9:1;;13928:125::o;14058:112::-;14090:1;14116;14106:35;;14121:18;;:::i;:::-;-1:-1:-1;14155:9:1;;14058:112::o;14175:128::-;14215:3;14246:1;14242:6;14239:1;14236:13;14233:39;;;14252:18;;:::i;:::-;-1:-1:-1;14288:9:1;;14175:128::o;14308:184::-;-1:-1:-1;;;14357:1:1;14350:88;14457:4;14454:1;14447:15;14481:4;14478:1;14471:15;14497:184;-1:-1:-1;;;14546:1:1;14539:88;14646:4;14643:1;14636:15;14670:4;14667:1;14660:15

Swarm Source

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