ETH Price: $3,356.88 (-2.82%)
Gas: 1 Gwei

Token

Cool Doods (CD)
 

Overview

Max Total Supply

2,353 CD

Holders

341

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
prasmul.eth
Balance
16 CD
0x5ef84c9204c2888db12fc2b93f9a352c7e597a37
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:
cooldoods

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-15
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/cooldoods.sol

//SPDX-License-Identifier: MIT
/*                            
    
*/
pragma solidity ^0.8.0;




contract cooldoods is ERC721, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenIdCounter;

    string baseURI;
    string public baseExtension = ".json";
    string public preRevealURI;
    uint256 public currentPrice = 0.02 ether;
    uint256 public totalCoolDoods = 10000;
    uint256 public maxFreeCoolDoods = 1000;
    bool public paused = true;
    bool public revealed = false;

    constructor(string memory _initBaseURI, string memory _preRevealURI)
        ERC721("Cool Doods", "CD")
    {
        setBaseURI(_initBaseURI);
        setPreRevealURI(_preRevealURI);
        
    }

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


    function freeCoolDood(uint256 mintAmount) public {
        uint256 supply = tokenIdCounter.current();
        require(!paused, "Sale paused");
        require(mintAmount < 9, "You can only mint 8 free cooldoods");
        require(supply + mintAmount < maxFreeCoolDoods, "No more free cooldoods left");
        mintCoolDood(msg.sender, mintAmount);
    }

    function mint(uint256 mintAmount) external payable {
        uint256 supply = tokenIdCounter.current();
        require(!paused, "Sale paused");
        require(mintAmount < 21, "You can only mint 20 cooldoods");
        require(
            supply + mintAmount < totalCoolDoods + 1,
            "Exceeds maximum cooldood supply"
        );
        require(
            msg.value >= currentPrice * mintAmount,
            "Not enough Ether sent"
        );

        mintCoolDood(msg.sender, mintAmount);
    }

    function mintCoolDood(address addr, uint256 mintAmount) private {
        for (uint256 i = 0; i < mintAmount; i++) {
            tokenIdCounter.increment();
            _safeMint(addr, tokenIdCounter.current());
        }
    }

    function getCurrentId() external view returns (uint256) {
        return tokenIdCounter.current();
    }

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

    
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return preRevealURI;
        }

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

    //----------------Owner functions--------------------
    function pause(bool val) public onlyOwner {
        paused = val;
    }

    //dev mint for giveaways

    function ownerMint(uint256 mintAmount) public onlyOwner {
        uint256 supply = tokenIdCounter.current();
        require(supply + mintAmount < maxFreeCoolDoods, "No more free cooldoods left");
        mintCoolDood(msg.sender, mintAmount);
    }

    //one way change, cannot be reverted
    function reveal() public onlyOwner {
        revealed = true;
    }

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

    function setMaxFreeCoolDoods(uint256 _maxFreeCoolDoods) public onlyOwner {
        maxFreeCoolDoods = _maxFreeCoolDoods;
    }

    function setPrice(uint256 _newPrice) public onlyOwner {
        currentPrice = _newPrice;
    }

    function setPreRevealURI(string memory _newPreRevealURI) public onlyOwner {
        preRevealURI = _newPreRevealURI;
    }

    function withdraw() public onlyOwner {
        uint256 amount = address(this).balance;
        (bool success, ) = msg.sender.call{value: amount}("");
        require(success, "Failed to send Ether");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_preRevealURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"freeCoolDood","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxFreeCoolDoods","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeCoolDoods","type":"uint256"}],"name":"setMaxFreeCoolDoods","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newPreRevealURI","type":"string"}],"name":"setPreRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCoolDoods","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a090815262000028916009919062000234565b5066470de4df820000600b55612710600c556103e8600d55600e805461ffff191660011790553480156200005b57600080fd5b5060405162002a0b38038062002a0b8339810160408190526200007e9162000391565b604080518082018252600a815269436f6f6c20446f6f647360b01b60208083019182528351808501909452600284526110d160f21b908401528151919291620000ca9160009162000234565b508051620000e090600190602084019062000234565b505050620000fd620000f76200011b60201b60201c565b6200011f565b620001088262000171565b6200011381620001d9565b50506200044e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001c05760405162461bcd60e51b81526020600482018190526024820152600080516020620029eb83398151915260448201526064015b60405180910390fd5b8051620001d590600890602084019062000234565b5050565b6006546001600160a01b03163314620002245760405162461bcd60e51b81526020600482018190526024820152600080516020620029eb8339815191526044820152606401620001b7565b8051620001d590600a9060208401905b8280546200024290620003fb565b90600052602060002090601f016020900481019282620002665760008555620002b1565b82601f106200028157805160ff1916838001178555620002b1565b82800160010185558215620002b1579182015b82811115620002b157825182559160200191906001019062000294565b50620002bf929150620002c3565b5090565b5b80821115620002bf5760008155600101620002c4565b600082601f830112620002ec57600080fd5b81516001600160401b038082111562000309576200030962000438565b604051601f8301601f19908116603f0116810190828211818310171562000334576200033462000438565b816040528381526020925086838588010111156200035157600080fd5b600091505b8382101562000375578582018301518183018401529082019062000356565b83821115620003875760008385830101525b9695505050505050565b60008060408385031215620003a557600080fd5b82516001600160401b0380821115620003bd57600080fd5b620003cb86838701620002da565b93506020850151915080821115620003e257600080fd5b50620003f185828601620002da565b9150509250929050565b600181811c908216806200041057607f821691505b602082108114156200043257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61258d806200045e6000396000f3fe6080604052600436106102345760003560e01c80636c14386211610138578063a22cb465116100b0578063c87b56dd1161007f578063e985e9c511610064578063e985e9c5146105d7578063f19e75d414610620578063f2fde38b1461064057600080fd5b8063c87b56dd146105a1578063cde012fd146105c157600080fd5b8063a22cb46514610537578063a475b5dd14610557578063b88d4fde1461056c578063c66828621461058c57600080fd5b80638da5cb5b1161010757806395d89b41116100ec57806395d89b41146104f95780639d1b464a1461050e578063a0712d681461052457600080fd5b80638da5cb5b146104bb57806391b7f5ed146104d957600080fd5b80636c1438621461034e57806370a0823114610471578063715018a61461049157806379b6ed36146104a657600080fd5b806323b872dd116101cb578063518302271161019a5780635c975abb1161017f5780635c975abb146104175780636352211e146104315780636a3de2ea1461045157600080fd5b806351830227146103d857806355f804b3146103f757600080fd5b806323b872dd146103635780632a85db55146103835780633ccfd60b146103a357806342842e0e146103b857600080fd5b8063081812fc11610207578063081812fc146102d6578063095ea7b31461030e5780630d80db6e1461032e57806318160ddd1461034e57600080fd5b806301ffc9a71461023957806302329a291461026e578063036946eb1461029057806306fdde03146102b4575b600080fd5b34801561024557600080fd5b50610259610254366004612216565b610660565b60405190151581526020015b60405180910390f35b34801561027a57600080fd5b5061028e6102893660046121fb565b6106fd565b005b34801561029c57600080fd5b506102a6600c5481565b604051908152602001610265565b3480156102c057600080fd5b506102c961076f565b60405161026591906123de565b3480156102e257600080fd5b506102f66102f1366004612299565b610801565b6040516001600160a01b039091168152602001610265565b34801561031a57600080fd5b5061028e6103293660046121d1565b610896565b34801561033a57600080fd5b5061028e610349366004612299565b6109c8565b34801561035a57600080fd5b506102a6610af5565b34801561036f57600080fd5b5061028e61037e3660046120ef565b610b05565b34801561038f57600080fd5b5061028e61039e366004612250565b610b8c565b3480156103af57600080fd5b5061028e610bf9565b3480156103c457600080fd5b5061028e6103d33660046120ef565b610ced565b3480156103e457600080fd5b50600e5461025990610100900460ff1681565b34801561040357600080fd5b5061028e610412366004612250565b610d08565b34801561042357600080fd5b50600e546102599060ff1681565b34801561043d57600080fd5b506102f661044c366004612299565b610d75565b34801561045d57600080fd5b5061028e61046c366004612299565b610e00565b34801561047d57600080fd5b506102a661048c3660046120a1565b610e5f565b34801561049d57600080fd5b5061028e610ef9565b3480156104b257600080fd5b506102c9610f5f565b3480156104c757600080fd5b506006546001600160a01b03166102f6565b3480156104e557600080fd5b5061028e6104f4366004612299565b610fed565b34801561050557600080fd5b506102c961104c565b34801561051a57600080fd5b506102a6600b5481565b61028e610532366004612299565b61105b565b34801561054357600080fd5b5061028e6105523660046121a7565b6111bc565b34801561056357600080fd5b5061028e6111c7565b34801561057857600080fd5b5061028e61058736600461212b565b611232565b34801561059857600080fd5b506102c96112c0565b3480156105ad57600080fd5b506102c96105bc366004612299565b6112cd565b3480156105cd57600080fd5b506102a6600d5481565b3480156105e357600080fd5b506102596105f23660046120bc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062c57600080fd5b5061028e61063b366004612299565b61145a565b34801561064c57600080fd5b5061028e61065b3660046120a1565b6114cf565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106c357506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106f757507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6006546001600160a01b0316331461075c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600e805460ff1916911515919091179055565b60606000805461077e9061247f565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa9061247f565b80156107f75780601f106107cc576101008083540402835291602001916107f7565b820191906000526020600020905b8154815290600101906020018083116107da57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661087a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610753565b506000908152600460205260409020546001600160a01b031690565b60006108a182610d75565b9050806001600160a01b0316836001600160a01b0316141561092b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610753565b336001600160a01b0382161480610947575061094781336105f2565b6109b95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610753565b6109c383836115b1565b505050565b60006109d360075490565b600e5490915060ff1615610a175760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b6044820152606401610753565b60098210610a8d5760405162461bcd60e51b815260206004820152602260248201527f596f752063616e206f6e6c79206d696e742038206672656520636f6f6c646f6f60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610753565b600d54610a9a83836123f1565b10610ae75760405162461bcd60e51b815260206004820152601b60248201527f4e6f206d6f7265206672656520636f6f6c646f6f6473206c65667400000000006044820152606401610753565b610af1338361162c565b5050565b6000610b0060075490565b905090565b610b0f3382611669565b610b815760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610753565b6109c3838383611760565b6006546001600160a01b03163314610be65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b8051610af190600a906020840190611f66565b6006546001600160a01b03163314610c535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b6040514790600090339083908381818185875af1925050503d8060008114610c97576040519150601f19603f3d011682016040523d82523d6000602084013e610c9c565b606091505b5050905080610af15760405162461bcd60e51b815260206004820152601460248201527f4661696c656420746f2073656e642045746865720000000000000000000000006044820152606401610753565b6109c383838360405180602001604052806000815250611232565b6006546001600160a01b03163314610d625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b8051610af1906008906020840190611f66565b6000818152600260205260408120546001600160a01b0316806106f75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610753565b6006546001600160a01b03163314610e5a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b600d55565b60006001600160a01b038216610edd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610753565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b610f5d600061193a565b565b600a8054610f6c9061247f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f989061247f565b8015610fe55780601f10610fba57610100808354040283529160200191610fe5565b820191906000526020600020905b815481529060010190602001808311610fc857829003601f168201915b505050505081565b6006546001600160a01b031633146110475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b600b55565b60606001805461077e9061247f565b600061106660075490565b600e5490915060ff16156110aa5760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b6044820152606401610753565b601582106110fa5760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e206f6e6c79206d696e7420323020636f6f6c646f6f647300006044820152606401610753565b600c546111089060016123f1565b61111283836123f1565b1061115f5760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d6178696d756d20636f6f6c646f6f6420737570706c79006044820152606401610753565b81600b5461116d919061241d565b341015610ae75760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682045746865722073656e7400000000000000000000006044820152606401610753565b610af1338383611999565b6006546001600160a01b031633146112215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b600e805461ff001916610100179055565b61123c3383611669565b6112ae5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610753565b6112ba84848484611a68565b50505050565b60098054610f6c9061247f565b6000818152600260205260409020546060906001600160a01b031661135a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610753565b600e54610100900460ff166113fb57600a80546113769061247f565b80601f01602080910402602001604051908101604052809291908181526020018280546113a29061247f565b80156113ef5780601f106113c4576101008083540402835291602001916113ef565b820191906000526020600020905b8154815290600101906020018083116113d257829003601f168201915b50505050509050919050565b6000611405611ae6565b905060008151116114255760405180602001604052806000815250611453565b8061142f84611af5565b6009604051602001611443939291906122de565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b60006114bf60075490565b600d54909150610a9a83836123f1565b6006546001600160a01b031633146115295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b6001600160a01b0381166115a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610753565b6115ae8161193a565b50565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906115f382610d75565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005b818110156109c357611645600780546001019055565b6116578361165260075490565b611c27565b80611661816124ba565b91505061162f565b6000818152600260205260408120546001600160a01b03166116e25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610753565b60006116ed83610d75565b9050806001600160a01b0316846001600160a01b031614806117285750836001600160a01b031661171d84610801565b6001600160a01b0316145b8061175857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661177382610d75565b6001600160a01b0316146117ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610753565b6001600160a01b03821661186a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610753565b6118756000826115b1565b6001600160a01b038316600090815260036020526040812080546001929061189e90849061243c565b90915550506001600160a01b03821660009081526003602052604081208054600192906118cc9084906123f1565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156119fb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610753565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a73848484611760565b611a7f84848484611c41565b6112ba5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610753565b60606008805461077e9061247f565b606081611b3557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b5f5780611b49816124ba565b9150611b589050600a83612409565b9150611b39565b60008167ffffffffffffffff811115611b7a57611b7a61252b565b6040519080825280601f01601f191660200182016040528015611ba4576020820181803683370190505b5090505b841561175857611bb960018361243c565b9150611bc6600a866124d5565b611bd19060306123f1565b60f81b818381518110611be657611be6612515565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611c20600a86612409565b9450611ba8565b610af1828260405180602001604052806000815250611d99565b60006001600160a01b0384163b15611d8e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c859033908990889088906004016123a2565b602060405180830381600087803b158015611c9f57600080fd5b505af1925050508015611ccf575060408051601f3d908101601f19168201909252611ccc91810190612233565b60015b611d74573d808015611cfd576040519150601f19603f3d011682016040523d82523d6000602084013e611d02565b606091505b508051611d6c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610753565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611758565b506001949350505050565b611da38383611e17565b611db06000848484611c41565b6109c35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610753565b6001600160a01b038216611e6d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610753565b6000818152600260205260409020546001600160a01b031615611ed25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610753565b6001600160a01b0382166000908152600360205260408120805460019290611efb9084906123f1565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f729061247f565b90600052602060002090601f016020900481019282611f945760008555611fda565b82601f10611fad57805160ff1916838001178555611fda565b82800160010185558215611fda579182015b82811115611fda578251825591602001919060010190611fbf565b50611fe6929150611fea565b5090565b5b80821115611fe65760008155600101611feb565b600067ffffffffffffffff8084111561201a5761201a61252b565b604051601f8501601f19908116603f011681019082821181831017156120425761204261252b565b8160405280935085815286868601111561205b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461208c57600080fd5b919050565b8035801515811461208c57600080fd5b6000602082840312156120b357600080fd5b61145382612075565b600080604083850312156120cf57600080fd5b6120d883612075565b91506120e660208401612075565b90509250929050565b60008060006060848603121561210457600080fd5b61210d84612075565b925061211b60208501612075565b9150604084013590509250925092565b6000806000806080858703121561214157600080fd5b61214a85612075565b935061215860208601612075565b925060408501359150606085013567ffffffffffffffff81111561217b57600080fd5b8501601f8101871361218c57600080fd5b61219b87823560208401611fff565b91505092959194509250565b600080604083850312156121ba57600080fd5b6121c383612075565b91506120e660208401612091565b600080604083850312156121e457600080fd5b6121ed83612075565b946020939093013593505050565b60006020828403121561220d57600080fd5b61145382612091565b60006020828403121561222857600080fd5b813561145381612541565b60006020828403121561224557600080fd5b815161145381612541565b60006020828403121561226257600080fd5b813567ffffffffffffffff81111561227957600080fd5b8201601f8101841361228a57600080fd5b61175884823560208401611fff565b6000602082840312156122ab57600080fd5b5035919050565b600081518084526122ca816020860160208601612453565b601f01601f19169290920160200192915050565b6000845160206122f18285838a01612453565b8551918401916123048184848a01612453565b8554920191600090600181811c908083168061232157607f831692505b85831081141561233f57634e487b7160e01b85526022600452602485fd5b808015612353576001811461236457612391565b60ff19851688528388019550612391565b60008b81526020902060005b858110156123895781548a820152908401908801612370565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123d460808301846122b2565b9695505050505050565b60208152600061145360208301846122b2565b60008219821115612404576124046124e9565b500190565b600082612418576124186124ff565b500490565b6000816000190483118215151615612437576124376124e9565b500290565b60008282101561244e5761244e6124e9565b500390565b60005b8381101561246e578181015183820152602001612456565b838111156112ba5750506000910152565b600181811c9082168061249357607f821691505b602082108114156124b457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124ce576124ce6124e9565b5060010190565b6000826124e4576124e46124ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115ae57600080fdfea26469706673582212200973288c771edef6ac6c27989ed5270140f6ba88e2d474b10509e8110798a60864736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d523336694534614567317165456d4e46577346716f57486a5959725064326341644744414b445a5657596b382f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d507a50535579326276397446733955774a664b3731654c5059726d63397a513266674d336153767243576f462f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102345760003560e01c80636c14386211610138578063a22cb465116100b0578063c87b56dd1161007f578063e985e9c511610064578063e985e9c5146105d7578063f19e75d414610620578063f2fde38b1461064057600080fd5b8063c87b56dd146105a1578063cde012fd146105c157600080fd5b8063a22cb46514610537578063a475b5dd14610557578063b88d4fde1461056c578063c66828621461058c57600080fd5b80638da5cb5b1161010757806395d89b41116100ec57806395d89b41146104f95780639d1b464a1461050e578063a0712d681461052457600080fd5b80638da5cb5b146104bb57806391b7f5ed146104d957600080fd5b80636c1438621461034e57806370a0823114610471578063715018a61461049157806379b6ed36146104a657600080fd5b806323b872dd116101cb578063518302271161019a5780635c975abb1161017f5780635c975abb146104175780636352211e146104315780636a3de2ea1461045157600080fd5b806351830227146103d857806355f804b3146103f757600080fd5b806323b872dd146103635780632a85db55146103835780633ccfd60b146103a357806342842e0e146103b857600080fd5b8063081812fc11610207578063081812fc146102d6578063095ea7b31461030e5780630d80db6e1461032e57806318160ddd1461034e57600080fd5b806301ffc9a71461023957806302329a291461026e578063036946eb1461029057806306fdde03146102b4575b600080fd5b34801561024557600080fd5b50610259610254366004612216565b610660565b60405190151581526020015b60405180910390f35b34801561027a57600080fd5b5061028e6102893660046121fb565b6106fd565b005b34801561029c57600080fd5b506102a6600c5481565b604051908152602001610265565b3480156102c057600080fd5b506102c961076f565b60405161026591906123de565b3480156102e257600080fd5b506102f66102f1366004612299565b610801565b6040516001600160a01b039091168152602001610265565b34801561031a57600080fd5b5061028e6103293660046121d1565b610896565b34801561033a57600080fd5b5061028e610349366004612299565b6109c8565b34801561035a57600080fd5b506102a6610af5565b34801561036f57600080fd5b5061028e61037e3660046120ef565b610b05565b34801561038f57600080fd5b5061028e61039e366004612250565b610b8c565b3480156103af57600080fd5b5061028e610bf9565b3480156103c457600080fd5b5061028e6103d33660046120ef565b610ced565b3480156103e457600080fd5b50600e5461025990610100900460ff1681565b34801561040357600080fd5b5061028e610412366004612250565b610d08565b34801561042357600080fd5b50600e546102599060ff1681565b34801561043d57600080fd5b506102f661044c366004612299565b610d75565b34801561045d57600080fd5b5061028e61046c366004612299565b610e00565b34801561047d57600080fd5b506102a661048c3660046120a1565b610e5f565b34801561049d57600080fd5b5061028e610ef9565b3480156104b257600080fd5b506102c9610f5f565b3480156104c757600080fd5b506006546001600160a01b03166102f6565b3480156104e557600080fd5b5061028e6104f4366004612299565b610fed565b34801561050557600080fd5b506102c961104c565b34801561051a57600080fd5b506102a6600b5481565b61028e610532366004612299565b61105b565b34801561054357600080fd5b5061028e6105523660046121a7565b6111bc565b34801561056357600080fd5b5061028e6111c7565b34801561057857600080fd5b5061028e61058736600461212b565b611232565b34801561059857600080fd5b506102c96112c0565b3480156105ad57600080fd5b506102c96105bc366004612299565b6112cd565b3480156105cd57600080fd5b506102a6600d5481565b3480156105e357600080fd5b506102596105f23660046120bc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062c57600080fd5b5061028e61063b366004612299565b61145a565b34801561064c57600080fd5b5061028e61065b3660046120a1565b6114cf565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106c357506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106f757507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6006546001600160a01b0316331461075c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600e805460ff1916911515919091179055565b60606000805461077e9061247f565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa9061247f565b80156107f75780601f106107cc576101008083540402835291602001916107f7565b820191906000526020600020905b8154815290600101906020018083116107da57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661087a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610753565b506000908152600460205260409020546001600160a01b031690565b60006108a182610d75565b9050806001600160a01b0316836001600160a01b0316141561092b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610753565b336001600160a01b0382161480610947575061094781336105f2565b6109b95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610753565b6109c383836115b1565b505050565b60006109d360075490565b600e5490915060ff1615610a175760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b6044820152606401610753565b60098210610a8d5760405162461bcd60e51b815260206004820152602260248201527f596f752063616e206f6e6c79206d696e742038206672656520636f6f6c646f6f60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610753565b600d54610a9a83836123f1565b10610ae75760405162461bcd60e51b815260206004820152601b60248201527f4e6f206d6f7265206672656520636f6f6c646f6f6473206c65667400000000006044820152606401610753565b610af1338361162c565b5050565b6000610b0060075490565b905090565b610b0f3382611669565b610b815760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610753565b6109c3838383611760565b6006546001600160a01b03163314610be65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b8051610af190600a906020840190611f66565b6006546001600160a01b03163314610c535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b6040514790600090339083908381818185875af1925050503d8060008114610c97576040519150601f19603f3d011682016040523d82523d6000602084013e610c9c565b606091505b5050905080610af15760405162461bcd60e51b815260206004820152601460248201527f4661696c656420746f2073656e642045746865720000000000000000000000006044820152606401610753565b6109c383838360405180602001604052806000815250611232565b6006546001600160a01b03163314610d625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b8051610af1906008906020840190611f66565b6000818152600260205260408120546001600160a01b0316806106f75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610753565b6006546001600160a01b03163314610e5a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b600d55565b60006001600160a01b038216610edd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610753565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b610f5d600061193a565b565b600a8054610f6c9061247f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f989061247f565b8015610fe55780601f10610fba57610100808354040283529160200191610fe5565b820191906000526020600020905b815481529060010190602001808311610fc857829003601f168201915b505050505081565b6006546001600160a01b031633146110475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b600b55565b60606001805461077e9061247f565b600061106660075490565b600e5490915060ff16156110aa5760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b6044820152606401610753565b601582106110fa5760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e206f6e6c79206d696e7420323020636f6f6c646f6f647300006044820152606401610753565b600c546111089060016123f1565b61111283836123f1565b1061115f5760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d6178696d756d20636f6f6c646f6f6420737570706c79006044820152606401610753565b81600b5461116d919061241d565b341015610ae75760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682045746865722073656e7400000000000000000000006044820152606401610753565b610af1338383611999565b6006546001600160a01b031633146112215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b600e805461ff001916610100179055565b61123c3383611669565b6112ae5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610753565b6112ba84848484611a68565b50505050565b60098054610f6c9061247f565b6000818152600260205260409020546060906001600160a01b031661135a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610753565b600e54610100900460ff166113fb57600a80546113769061247f565b80601f01602080910402602001604051908101604052809291908181526020018280546113a29061247f565b80156113ef5780601f106113c4576101008083540402835291602001916113ef565b820191906000526020600020905b8154815290600101906020018083116113d257829003601f168201915b50505050509050919050565b6000611405611ae6565b905060008151116114255760405180602001604052806000815250611453565b8061142f84611af5565b6009604051602001611443939291906122de565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b60006114bf60075490565b600d54909150610a9a83836123f1565b6006546001600160a01b031633146115295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610753565b6001600160a01b0381166115a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610753565b6115ae8161193a565b50565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906115f382610d75565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005b818110156109c357611645600780546001019055565b6116578361165260075490565b611c27565b80611661816124ba565b91505061162f565b6000818152600260205260408120546001600160a01b03166116e25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610753565b60006116ed83610d75565b9050806001600160a01b0316846001600160a01b031614806117285750836001600160a01b031661171d84610801565b6001600160a01b0316145b8061175857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661177382610d75565b6001600160a01b0316146117ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610753565b6001600160a01b03821661186a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610753565b6118756000826115b1565b6001600160a01b038316600090815260036020526040812080546001929061189e90849061243c565b90915550506001600160a01b03821660009081526003602052604081208054600192906118cc9084906123f1565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156119fb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610753565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a73848484611760565b611a7f84848484611c41565b6112ba5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610753565b60606008805461077e9061247f565b606081611b3557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b5f5780611b49816124ba565b9150611b589050600a83612409565b9150611b39565b60008167ffffffffffffffff811115611b7a57611b7a61252b565b6040519080825280601f01601f191660200182016040528015611ba4576020820181803683370190505b5090505b841561175857611bb960018361243c565b9150611bc6600a866124d5565b611bd19060306123f1565b60f81b818381518110611be657611be6612515565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611c20600a86612409565b9450611ba8565b610af1828260405180602001604052806000815250611d99565b60006001600160a01b0384163b15611d8e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c859033908990889088906004016123a2565b602060405180830381600087803b158015611c9f57600080fd5b505af1925050508015611ccf575060408051601f3d908101601f19168201909252611ccc91810190612233565b60015b611d74573d808015611cfd576040519150601f19603f3d011682016040523d82523d6000602084013e611d02565b606091505b508051611d6c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610753565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611758565b506001949350505050565b611da38383611e17565b611db06000848484611c41565b6109c35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610753565b6001600160a01b038216611e6d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610753565b6000818152600260205260409020546001600160a01b031615611ed25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610753565b6001600160a01b0382166000908152600360205260408120805460019290611efb9084906123f1565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f729061247f565b90600052602060002090601f016020900481019282611f945760008555611fda565b82601f10611fad57805160ff1916838001178555611fda565b82800160010185558215611fda579182015b82811115611fda578251825591602001919060010190611fbf565b50611fe6929150611fea565b5090565b5b80821115611fe65760008155600101611feb565b600067ffffffffffffffff8084111561201a5761201a61252b565b604051601f8501601f19908116603f011681019082821181831017156120425761204261252b565b8160405280935085815286868601111561205b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461208c57600080fd5b919050565b8035801515811461208c57600080fd5b6000602082840312156120b357600080fd5b61145382612075565b600080604083850312156120cf57600080fd5b6120d883612075565b91506120e660208401612075565b90509250929050565b60008060006060848603121561210457600080fd5b61210d84612075565b925061211b60208501612075565b9150604084013590509250925092565b6000806000806080858703121561214157600080fd5b61214a85612075565b935061215860208601612075565b925060408501359150606085013567ffffffffffffffff81111561217b57600080fd5b8501601f8101871361218c57600080fd5b61219b87823560208401611fff565b91505092959194509250565b600080604083850312156121ba57600080fd5b6121c383612075565b91506120e660208401612091565b600080604083850312156121e457600080fd5b6121ed83612075565b946020939093013593505050565b60006020828403121561220d57600080fd5b61145382612091565b60006020828403121561222857600080fd5b813561145381612541565b60006020828403121561224557600080fd5b815161145381612541565b60006020828403121561226257600080fd5b813567ffffffffffffffff81111561227957600080fd5b8201601f8101841361228a57600080fd5b61175884823560208401611fff565b6000602082840312156122ab57600080fd5b5035919050565b600081518084526122ca816020860160208601612453565b601f01601f19169290920160200192915050565b6000845160206122f18285838a01612453565b8551918401916123048184848a01612453565b8554920191600090600181811c908083168061232157607f831692505b85831081141561233f57634e487b7160e01b85526022600452602485fd5b808015612353576001811461236457612391565b60ff19851688528388019550612391565b60008b81526020902060005b858110156123895781548a820152908401908801612370565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123d460808301846122b2565b9695505050505050565b60208152600061145360208301846122b2565b60008219821115612404576124046124e9565b500190565b600082612418576124186124ff565b500490565b6000816000190483118215151615612437576124376124e9565b500290565b60008282101561244e5761244e6124e9565b500390565b60005b8381101561246e578181015183820152602001612456565b838111156112ba5750506000910152565b600181811c9082168061249357607f821691505b602082108114156124b457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124ce576124ce6124e9565b5060010190565b6000826124e4576124e46124ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115ae57600080fdfea26469706673582212200973288c771edef6ac6c27989ed5270140f6ba88e2d474b10509e8110798a60864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d523336694534614567317165456d4e46577346716f57486a5959725064326341644744414b445a5657596b382f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d507a50535579326276397446733955774a664b3731654c5059726d63397a513266674d336153767243576f462f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmR36iE4aEg1qeEmNFWsFqoWHjYYrPd2cAdGDAKDZVWYk8/
Arg [1] : _preRevealURI (string): ipfs://QmPzPSUy2bv9tFs9UwJfK71eLPYrmc9zQ2fgM3aSvrCWoF/hidden.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d523336694534614567317165456d4e46577346716f5748
Arg [4] : 6a5959725064326341644744414b445a5657596b382f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d507a50535579326276397446733955774a664b3731654c
Arg [7] : 5059726d63397a513266674d336153767243576f462f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

37790:4142:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25207:305;;;;;;;;;;-1:-1:-1;25207:305:0;;;;;:::i;:::-;;:::i;:::-;;;7296:14:1;;7289:22;7271:41;;7259:2;7244:18;25207:305:0;;;;;;;;40743:73;;;;;;;;;;-1:-1:-1;40743:73:0;;;;;:::i;:::-;;:::i;:::-;;38104:37;;;;;;;;;;;;;;;;;;;16592:25:1;;;16580:2;16565:18;38104:37:0;16446:177:1;26152:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27711:221::-;;;;;;;;;;-1:-1:-1;27711:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6548:55:1;;;6530:74;;6518:2;6503:18;27711:221:0;6384:226:1;27234:411:0;;;;;;;;;;-1:-1:-1;27234:411:0;;;;;:::i;:::-;;:::i;38584:359::-;;;;;;;;;;-1:-1:-1;38584:359:0;;;;;:::i;:::-;;:::i;39836:103::-;;;;;;;;;;;;;:::i;28461:339::-;;;;;;;;;;-1:-1:-1;28461:339:0;;;;;:::i;:::-;;:::i;41588:124::-;;;;;;;;;;-1:-1:-1;41588:124:0;;;;;:::i;:::-;;:::i;41720:209::-;;;;;;;;;;;;;:::i;28871:185::-;;;;;;;;;;-1:-1:-1;28871:185:0;;;;;:::i;:::-;;:::i;38225:28::-;;;;;;;;;;-1:-1:-1;38225:28:0;;;;;;;;;;;41235:104;;;;;;;;;;-1:-1:-1;41235:104:0;;;;;:::i;:::-;;:::i;38193:25::-;;;;;;;;;;-1:-1:-1;38193:25:0;;;;;;;;25846:239;;;;;;;;;;-1:-1:-1;25846:239:0;;;;;:::i;:::-;;:::i;41347:128::-;;;;;;;;;;-1:-1:-1;41347:128:0;;;;;:::i;:::-;;:::i;25576:208::-;;;;;;;;;;-1:-1:-1;25576:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;38024:26::-;;;;;;;;;;;;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;41483:97;;;;;;;;;;-1:-1:-1;41483:97:0;;;;;:::i;:::-;;:::i;26321:104::-;;;;;;;;;;;;;:::i;38057:40::-;;;;;;;;;;;;;;;;38951:523;;;;;;:::i;:::-;;:::i;28004:155::-;;;;;;;;;;-1:-1:-1;28004:155:0;;;;;:::i;:::-;;:::i;41158:69::-;;;;;;;;;;;;;:::i;29127:328::-;;;;;;;;;;-1:-1:-1;29127:328:0;;;;;:::i;:::-;;:::i;37980:37::-;;;;;;;;;;;;;:::i;39953:723::-;;;;;;;;;;-1:-1:-1;39953:723:0;;;;;:::i;:::-;;:::i;38148:38::-;;;;;;;;;;;;;;;;28230:164;;;;;;;;;;-1:-1:-1;28230:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28351:25:0;;;28327:4;28351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28230:164;40856:252;;;;;;;;;;-1:-1:-1;40856:252:0;;;;;:::i;:::-;;:::i;6453:201::-;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;25207:305::-;25309:4;-1:-1:-1;;;;;;25346:40:0;;25361:25;25346:40;;:105;;-1:-1:-1;;;;;;;25403:48:0;;25418:33;25403:48;25346:105;:158;;;-1:-1:-1;18100:25:0;-1:-1:-1;;;;;;18085:40:0;;;25468:36;25326:178;25207:305;-1:-1:-1;;25207:305:0:o;40743:73::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;13522:2:1;5756:68:0;;;13504:21:1;;;13541:18;;;13534:30;13600:34;13580:18;;;13573:62;13652:18;;5756:68:0;;;;;;;;;40796:6:::1;:12:::0;;-1:-1:-1;;40796:12:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40743:73::o;26152:100::-;26206:13;26239:5;26232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26152:100;:::o;27711:221::-;27787:7;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;27807:73;;;;-1:-1:-1;;;27807:73:0;;13109:2:1;27807:73:0;;;13091:21:1;13148:2;13128:18;;;13121:30;13187:34;13167:18;;;13160:62;-1:-1:-1;;;13238:18:1;;;13231:42;13290:19;;27807:73:0;12907:408:1;27807:73:0;-1:-1:-1;27900:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27900:24:0;;27711:221::o;27234:411::-;27315:13;27331:23;27346:7;27331:14;:23::i;:::-;27315:39;;27379:5;-1:-1:-1;;;;;27373:11:0;:2;-1:-1:-1;;;;;27373:11:0;;;27365:57;;;;-1:-1:-1;;;27365:57:0;;15472:2:1;27365:57:0;;;15454:21:1;15511:2;15491:18;;;15484:30;15550:34;15530:18;;;15523:62;15621:3;15601:18;;;15594:31;15642:19;;27365:57:0;15270:397:1;27365:57:0;4348:10;-1:-1:-1;;;;;27457:21:0;;;;:62;;-1:-1:-1;27482:37:0;27499:5;4348:10;28230:164;:::i;27482:37::-;27435:168;;;;-1:-1:-1;;;27435:168:0;;11143:2:1;27435:168:0;;;11125:21:1;11182:2;11162:18;;;11155:30;11221:34;11201:18;;;11194:62;11292:26;11272:18;;;11265:54;11336:19;;27435:168:0;10941:420:1;27435:168:0;27616:21;27625:2;27629:7;27616:8;:21::i;:::-;27304:341;27234:411;;:::o;38584:359::-;38644:14;38661:24;:14;964;;872:114;38661:24;38705:6;;38644:41;;-1:-1:-1;38705:6:0;;38704:7;38696:31;;;;-1:-1:-1;;;38696:31:0;;7749:2:1;38696:31:0;;;7731:21:1;7788:2;7768:18;;;7761:30;-1:-1:-1;;;7807:18:1;;;7800:41;7858:18;;38696:31:0;7547:335:1;38696:31:0;38759:1;38746:10;:14;38738:61;;;;-1:-1:-1;;;38738:61:0;;14709:2:1;38738:61:0;;;14691:21:1;14748:2;14728:18;;;14721:30;14787:34;14767:18;;;14760:62;14858:4;14838:18;;;14831:32;14880:19;;38738:61:0;14507:398:1;38738:61:0;38840:16;;38818:19;38827:10;38818:6;:19;:::i;:::-;:38;38810:78;;;;-1:-1:-1;;;38810:78:0;;16292:2:1;38810:78:0;;;16274:21:1;16331:2;16311:18;;;16304:30;16370:29;16350:18;;;16343:57;16417:18;;38810:78:0;16090:351:1;38810:78:0;38899:36;38912:10;38924;38899:12;:36::i;:::-;38633:310;38584:359;:::o;39836:103::-;39880:7;39907:24;:14;964;;872:114;39907:24;39900:31;;39836:103;:::o;28461:339::-;28656:41;4348:10;28689:7;28656:18;:41::i;:::-;28648:103;;;;-1:-1:-1;;;28648:103:0;;15874:2:1;28648:103:0;;;15856:21:1;15913:2;15893:18;;;15886:30;15952:34;15932:18;;;15925:62;16023:19;16003:18;;;15996:47;16060:19;;28648:103:0;15672:413:1;28648:103:0;28764:28;28774:4;28780:2;28784:7;28764:9;:28::i;41588:124::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;13522:2:1;5756:68:0;;;13504:21:1;;;13541:18;;;13534:30;13600:34;13580:18;;;13573:62;13652:18;;5756:68:0;13320:356:1;5756:68:0;41673:31;;::::1;::::0;:12:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;41720:209::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;13522:2:1;5756:68:0;;;13504:21:1;;;13541:18;;;13534:30;13600:34;13580:18;;;13573:62;13652:18;;5756:68:0;13320:356:1;5756:68:0;41836:34:::1;::::0;41785:21:::1;::::0;41768:14:::1;::::0;41836:10:::1;::::0;41785:21;;41768:14;41836:34;41768:14;41836:34;41785:21;41836:10;:34:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41817:53;;;41889:7;41881:40;;;::::0;-1:-1:-1;;;41881:40:0;;9622:2:1;41881:40:0::1;::::0;::::1;9604:21:1::0;9661:2;9641:18;;;9634:30;9700:22;9680:18;;;9673:50;9740:18;;41881:40:0::1;9420:344:1::0;28871:185:0;29009:39;29026:4;29032:2;29036:7;29009:39;;;;;;;;;;;;:16;:39::i;41235:104::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;13522:2:1;5756:68:0;;;13504:21:1;;;13541:18;;;13534:30;13600:34;13580:18;;;13573:62;13652:18;;5756:68:0;13320:356:1;5756:68:0;41310:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;25846:239::-:0;25918:7;25954:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25954:16:0;25989:19;25981:73;;;;-1:-1:-1;;;25981:73:0;;11979:2:1;25981:73:0;;;11961:21:1;12018:2;11998:18;;;11991:30;12057:34;12037:18;;;12030:62;12128:11;12108:18;;;12101:39;12157:19;;25981:73:0;11777:405:1;41347:128:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;13522:2:1;5756:68:0;;;13504:21:1;;;13541:18;;;13534:30;13600:34;13580:18;;;13573:62;13652:18;;5756:68:0;13320:356:1;5756:68:0;41431:16:::1;:36:::0;41347:128::o;25576:208::-;25648:7;-1:-1:-1;;;;;25676:19:0;;25668:74;;;;-1:-1:-1;;;25668:74:0;;11568:2:1;25668:74:0;;;11550:21:1;11607:2;11587:18;;;11580:30;11646:34;11626:18;;;11619:62;11717:12;11697:18;;;11690:40;11747:19;;25668:74:0;11366:406:1;25668:74:0;-1:-1:-1;;;;;;25760:16:0;;;;;:9;:16;;;;;;;25576:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;13522:2:1;5756:68:0;;;13504:21:1;;;13541:18;;;13534:30;13600:34;13580:18;;;13573:62;13652:18;;5756:68:0;13320:356:1;5756:68:0;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;38024:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41483:97::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;13522:2:1;5756:68:0;;;13504:21:1;;;13541:18;;;13534:30;13600:34;13580:18;;;13573:62;13652:18;;5756:68:0;13320:356:1;5756:68:0;41548:12:::1;:24:::0;41483:97::o;26321:104::-;26377:13;26410:7;26403:14;;;;;:::i;38951:523::-;39013:14;39030:24;:14;964;;872:114;39030:24;39074:6;;39013:41;;-1:-1:-1;39074:6:0;;39073:7;39065:31;;;;-1:-1:-1;;;39065:31:0;;7749:2:1;39065:31:0;;;7731:21:1;7788:2;7768:18;;;7761:30;-1:-1:-1;;;7807:18:1;;;7800:41;7858:18;;39065:31:0;7547:335:1;39065:31:0;39128:2;39115:10;:15;39107:58;;;;-1:-1:-1;;;39107:58:0;;12750:2:1;39107:58:0;;;12732:21:1;12789:2;12769:18;;;12762:30;12828:32;12808:18;;;12801:60;12878:18;;39107:58:0;12548:354:1;39107:58:0;39220:14;;:18;;39237:1;39220:18;:::i;:::-;39198:19;39207:10;39198:6;:19;:::i;:::-;:40;39176:121;;;;-1:-1:-1;;;39176:121:0;;15112:2:1;39176:121:0;;;15094:21:1;15151:2;15131:18;;;15124:30;15190:33;15170:18;;;15163:61;15241:18;;39176:121:0;14910:355:1;39176:121:0;39358:10;39343:12;;:25;;;;:::i;:::-;39330:9;:38;;39308:109;;;;-1:-1:-1;;;39308:109:0;;8089:2:1;39308:109:0;;;8071:21:1;8128:2;8108:18;;;8101:30;8167:23;8147:18;;;8140:51;8208:18;;39308:109:0;7887:345:1;28004:155:0;28099:52;4348:10;28132:8;28142;28099:18;:52::i;41158:69::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;13522:2:1;5756:68:0;;;13504:21:1;;;13541:18;;;13534:30;13600:34;13580:18;;;13573:62;13652:18;;5756:68:0;13320:356:1;5756:68:0;41204:8:::1;:15:::0;;-1:-1:-1;;41204:15:0::1;;;::::0;;41158:69::o;29127:328::-;29302:41;4348:10;29335:7;29302:18;:41::i;:::-;29294:103;;;;-1:-1:-1;;;29294:103:0;;15874:2:1;29294:103:0;;;15856:21:1;15913:2;15893:18;;;15886:30;15952:34;15932:18;;;15925:62;16023:19;16003:18;;;15996:47;16060:19;;29294:103:0;15672:413:1;29294:103:0;29408:39;29422:4;29428:2;29432:7;29441:5;29408:13;:39::i;:::-;29127:328;;;;:::o;37980:37::-;;;;;;;:::i;39953:723::-;31030:4;31054:16;;;:7;:16;;;;;;40071:13;;-1:-1:-1;;;;;31054:16:0;40102:113;;;;-1:-1:-1;;;40102:113:0;;14293:2:1;40102:113:0;;;14275:21:1;14332:2;14312:18;;;14305:30;14371:34;14351:18;;;14344:62;14442:17;14422:18;;;14415:45;14477:19;;40102:113:0;14091:411:1;40102:113:0;40232:8;;;;;;;40228:69;;40273:12;40266:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39953:723;;;:::o;40228:69::-;40309:28;40340:10;:8;:10::i;:::-;40309:41;;40412:1;40387:14;40381:28;:32;:287;;;;;;;;;;;;;;;;;40505:14;40546:18;:7;:16;:18::i;:::-;40591:13;40462:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40381:287;40361:307;39953:723;-1:-1:-1;;;39953:723:0:o;40856:252::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;13522:2:1;5756:68:0;;;13504:21:1;;;13541:18;;;13534:30;13600:34;13580:18;;;13573:62;13652:18;;5756:68:0;13320:356:1;5756:68:0;40923:14:::1;40940:24;:14;964::::0;;872:114;40940:24:::1;41005:16;::::0;40923:41;;-1:-1:-1;40983:19:0::1;40992:10:::0;40923:41;40983:19:::1;:::i;6453:201::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;13522:2:1;5756:68:0;;;13504:21:1;;;13541:18;;;13534:30;13600:34;13580:18;;;13573:62;13652:18;;5756:68:0;13320:356:1;5756:68:0;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;8858:2:1;6534:73:0::1;::::0;::::1;8840:21:1::0;8897:2;8877:18;;;8870:30;8936:34;8916:18;;;8909:62;9007:8;8987:18;;;8980:36;9033:19;;6534:73:0::1;8656:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;34947:174::-;35022:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;35022:29:0;-1:-1:-1;;;;;35022:29:0;;;;;;;;:24;;35076:23;35022:24;35076:14;:23::i;:::-;-1:-1:-1;;;;;35067:46:0;;;;;;;;;;;34947:174;;:::o;39482:232::-;39562:9;39557:150;39581:10;39577:1;:14;39557:150;;;39613:26;:14;1083:19;;1101:1;1083:19;;;994:127;39613:26;39654:41;39664:4;39670:24;:14;964;;872:114;39670:24;39654:9;:41::i;:::-;39593:3;;;;:::i;:::-;;;;39557:150;;31259:348;31352:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;31369:73;;;;-1:-1:-1;;;31369:73:0;;10730:2:1;31369:73:0;;;10712:21:1;10769:2;10749:18;;;10742:30;10808:34;10788:18;;;10781:62;-1:-1:-1;;;10859:18:1;;;10852:42;10911:19;;31369:73:0;10528:408:1;31369:73:0;31453:13;31469:23;31484:7;31469:14;:23::i;:::-;31453:39;;31522:5;-1:-1:-1;;;;;31511:16:0;:7;-1:-1:-1;;;;;31511:16:0;;:51;;;;31555:7;-1:-1:-1;;;;;31531:31:0;:20;31543:7;31531:11;:20::i;:::-;-1:-1:-1;;;;;31531:31:0;;31511:51;:87;;;-1:-1:-1;;;;;;28351:25:0;;;28327:4;28351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31566:32;31503:96;31259:348;-1:-1:-1;;;;31259:348:0:o;34251:578::-;34410:4;-1:-1:-1;;;;;34383:31:0;:23;34398:7;34383:14;:23::i;:::-;-1:-1:-1;;;;;34383:31:0;;34375:85;;;;-1:-1:-1;;;34375:85:0;;13883:2:1;34375:85:0;;;13865:21:1;13922:2;13902:18;;;13895:30;13961:34;13941:18;;;13934:62;14032:11;14012:18;;;14005:39;14061:19;;34375:85:0;13681:405:1;34375:85:0;-1:-1:-1;;;;;34479:16:0;;34471:65;;;;-1:-1:-1;;;34471:65:0;;9971:2:1;34471:65:0;;;9953:21:1;10010:2;9990:18;;;9983:30;10049:34;10029:18;;;10022:62;10120:6;10100:18;;;10093:34;10144:19;;34471:65:0;9769:400:1;34471:65:0;34653:29;34670:1;34674:7;34653:8;:29::i;:::-;-1:-1:-1;;;;;34695:15:0;;;;;;:9;:15;;;;;:20;;34714:1;;34695:15;:20;;34714:1;;34695:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34726:13:0;;;;;;:9;:13;;;;;:18;;34743:1;;34726:13;:18;;34743:1;;34726:18;:::i;:::-;;;;-1:-1:-1;;34755:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;34755:21:0;-1:-1:-1;;;;;34755:21:0;;;;;;;;;34794:27;;34755:16;;34794:27;;;;;;;34251:578;;;:::o;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;35263:315::-;35418:8;-1:-1:-1;;;;;35409:17:0;:5;-1:-1:-1;;;;;35409:17:0;;;35401:55;;;;-1:-1:-1;;;35401:55:0;;10376:2:1;35401:55:0;;;10358:21:1;10415:2;10395:18;;;10388:30;10454:27;10434:18;;;10427:55;10499:18;;35401:55:0;10174:349:1;35401:55:0;-1:-1:-1;;;;;35467:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35467:46:0;;;;;;;;;;35529:41;;7271::1;;;35529::0;;7244:18:1;35529:41:0;;;;;;;35263:315;;;:::o;30337:::-;30494:28;30504:4;30510:2;30514:7;30494:9;:28::i;:::-;30541:48;30564:4;30570:2;30574:7;30583:5;30541:22;:48::i;:::-;30533:111;;;;-1:-1:-1;;;30533:111:0;;8439:2:1;30533:111:0;;;8421:21:1;8478:2;8458:18;;;8451:30;8517:34;8497:18;;;8490:62;-1:-1:-1;;;8568:18:1;;;8561:48;8626:19;;30533:111:0;8237:414:1;38474:100:0;38526:13;38559:7;38552:14;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;;;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;31949:110;32025:26;32035:2;32039:7;32025:26;;;;;;;;;;;;:9;:26::i;36143:799::-;36298:4;-1:-1:-1;;;;;36319:13:0;;8155:20;8203:8;36315:620;;36355:72;;-1:-1:-1;;;36355:72:0;;-1:-1:-1;;;;;36355:36:0;;;;;:72;;4348:10;;36406:4;;36412:7;;36421:5;;36355:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36355:72:0;;;;;;;;-1:-1:-1;;36355:72:0;;;;;;;;;;;;:::i;:::-;;;36351:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36597:13:0;;36593:272;;36640:60;;-1:-1:-1;;;36640:60:0;;8439:2:1;36640:60:0;;;8421:21:1;8478:2;8458:18;;;8451:30;8517:34;8497:18;;;8490:62;-1:-1:-1;;;8568:18:1;;;8561:48;8626:19;;36640:60:0;8237:414:1;36593:272:0;36815:6;36809:13;36800:6;36796:2;36792:15;36785:38;36351:529;-1:-1:-1;;;;;;36478:51:0;-1:-1:-1;;;36478:51:0;;-1:-1:-1;36471:58:0;;36315:620;-1:-1:-1;36919:4:0;36143:799;;;;;;:::o;32286:321::-;32416:18;32422:2;32426:7;32416:5;:18::i;:::-;32467:54;32498:1;32502:2;32506:7;32515:5;32467:22;:54::i;:::-;32445:154;;;;-1:-1:-1;;;32445:154:0;;8439:2:1;32445:154:0;;;8421:21:1;8478:2;8458:18;;;8451:30;8517:34;8497:18;;;8490:62;-1:-1:-1;;;8568:18:1;;;8561:48;8626:19;;32445:154:0;8237:414:1;32943:382:0;-1:-1:-1;;;;;33023:16:0;;33015:61;;;;-1:-1:-1;;;33015:61:0;;12389:2:1;33015:61:0;;;12371:21:1;;;12408:18;;;12401:30;12467:34;12447:18;;;12440:62;12519:18;;33015:61:0;12187:356:1;33015:61:0;31030:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;:30;33087:58;;;;-1:-1:-1;;;33087:58:0;;9265:2:1;33087:58:0;;;9247:21:1;9304:2;9284:18;;;9277:30;9343;9323:18;;;9316:58;9391:18;;33087:58:0;9063:352:1;33087:58:0;-1:-1:-1;;;;;33216:13:0;;;;;;:9;:13;;;;;:18;;33233:1;;33216:13;:18;;33233:1;;33216:18;:::i;:::-;;;;-1:-1:-1;;33245:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;33245:21:0;-1:-1:-1;;;;;33245:21:0;;;;;;;;33284:33;;33245:16;;;33284:33;;33245:16;;33284:33;32943:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:160::-;916:20;;972:13;;965:21;955:32;;945:60;;1001:1;998;991:12;1016:186;1075:6;1128:2;1116:9;1107:7;1103:23;1099:32;1096:52;;;1144:1;1141;1134:12;1096:52;1167:29;1186:9;1167:29;:::i;1207:260::-;1275:6;1283;1336:2;1324:9;1315:7;1311:23;1307:32;1304:52;;;1352:1;1349;1342:12;1304:52;1375:29;1394:9;1375:29;:::i;:::-;1365:39;;1423:38;1457:2;1446:9;1442:18;1423:38;:::i;:::-;1413:48;;1207:260;;;;;:::o;1472:328::-;1549:6;1557;1565;1618:2;1606:9;1597:7;1593:23;1589:32;1586:52;;;1634:1;1631;1624:12;1586:52;1657:29;1676:9;1657:29;:::i;:::-;1647:39;;1705:38;1739:2;1728:9;1724:18;1705:38;:::i;:::-;1695:48;;1790:2;1779:9;1775:18;1762:32;1752:42;;1472:328;;;;;:::o;1805:666::-;1900:6;1908;1916;1924;1977:3;1965:9;1956:7;1952:23;1948:33;1945:53;;;1994:1;1991;1984:12;1945:53;2017:29;2036:9;2017:29;:::i;:::-;2007:39;;2065:38;2099:2;2088:9;2084:18;2065:38;:::i;:::-;2055:48;;2150:2;2139:9;2135:18;2122:32;2112:42;;2205:2;2194:9;2190:18;2177:32;2232:18;2224:6;2221:30;2218:50;;;2264:1;2261;2254:12;2218:50;2287:22;;2340:4;2332:13;;2328:27;-1:-1:-1;2318:55:1;;2369:1;2366;2359:12;2318:55;2392:73;2457:7;2452:2;2439:16;2434:2;2430;2426:11;2392:73;:::i;:::-;2382:83;;;1805:666;;;;;;;:::o;2476:254::-;2541:6;2549;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;2641:29;2660:9;2641:29;:::i;:::-;2631:39;;2689:35;2720:2;2709:9;2705:18;2689:35;:::i;2735:254::-;2803:6;2811;2864:2;2852:9;2843:7;2839:23;2835:32;2832:52;;;2880:1;2877;2870:12;2832:52;2903:29;2922:9;2903:29;:::i;:::-;2893:39;2979:2;2964:18;;;;2951:32;;-1:-1:-1;;;2735:254:1:o;2994:180::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3142:26;3158:9;3142:26;:::i;3179:245::-;3237:6;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3345:9;3332:23;3364:30;3388:5;3364:30;:::i;3429:249::-;3498:6;3551:2;3539:9;3530:7;3526:23;3522:32;3519:52;;;3567:1;3564;3557:12;3519:52;3599:9;3593:16;3618:30;3642:5;3618:30;:::i;3683:450::-;3752:6;3805:2;3793:9;3784:7;3780:23;3776:32;3773:52;;;3821:1;3818;3811:12;3773:52;3861:9;3848:23;3894:18;3886:6;3883:30;3880:50;;;3926:1;3923;3916:12;3880:50;3949:22;;4002:4;3994:13;;3990:27;-1:-1:-1;3980:55:1;;4031:1;4028;4021:12;3980:55;4054:73;4119:7;4114:2;4101:16;4096:2;4092;4088:11;4054:73;:::i;4138:180::-;4197:6;4250:2;4238:9;4229:7;4225:23;4221:32;4218:52;;;4266:1;4263;4256:12;4218:52;-1:-1:-1;4289:23:1;;4138:180;-1:-1:-1;4138:180:1:o;4323:257::-;4364:3;4402:5;4396:12;4429:6;4424:3;4417:19;4445:63;4501:6;4494:4;4489:3;4485:14;4478:4;4471:5;4467:16;4445:63;:::i;:::-;4562:2;4541:15;-1:-1:-1;;4537:29:1;4528:39;;;;4569:4;4524:50;;4323:257;-1:-1:-1;;4323:257:1:o;4585:1584::-;4809:3;4847:6;4841:13;4873:4;4886:51;4930:6;4925:3;4920:2;4912:6;4908:15;4886:51;:::i;:::-;5000:13;;4959:16;;;;5022:55;5000:13;4959:16;5044:15;;;5022:55;:::i;:::-;5166:13;;5099:20;;;5139:1;;5226;5248:18;;;;5301;;;;5328:93;;5406:4;5396:8;5392:19;5380:31;;5328:93;5469:2;5459:8;5456:16;5436:18;5433:40;5430:224;;;-1:-1:-1;;;5503:3:1;5496:90;5609:4;5606:1;5599:15;5639:4;5634:3;5627:17;5430:224;5670:18;5697:110;;;;5821:1;5816:328;;;;5663:481;;5697:110;-1:-1:-1;;5732:24:1;;5718:39;;5777:20;;;;-1:-1:-1;5697:110:1;;5816:328;16701:1;16694:14;;;16738:4;16725:18;;5911:1;5925:169;5939:8;5936:1;5933:15;5925:169;;;6021:14;;6006:13;;;5999:37;6064:16;;;;5956:10;;5925:169;;;5929:3;;6125:8;6118:5;6114:20;6107:27;;5663:481;-1:-1:-1;6160:3:1;;4585:1584;-1:-1:-1;;;;;;;;;;;4585:1584:1:o;6615:511::-;6809:4;-1:-1:-1;;;;;6919:2:1;6911:6;6907:15;6896:9;6889:34;6971:2;6963:6;6959:15;6954:2;6943:9;6939:18;6932:43;;7011:6;7006:2;6995:9;6991:18;6984:34;7054:3;7049:2;7038:9;7034:18;7027:31;7075:45;7115:3;7104:9;7100:19;7092:6;7075:45;:::i;:::-;7067:53;6615:511;-1:-1:-1;;;;;;6615:511:1:o;7323:219::-;7472:2;7461:9;7454:21;7435:4;7492:44;7532:2;7521:9;7517:18;7509:6;7492:44;:::i;16754:128::-;16794:3;16825:1;16821:6;16818:1;16815:13;16812:39;;;16831:18;;:::i;:::-;-1:-1:-1;16867:9:1;;16754:128::o;16887:120::-;16927:1;16953;16943:35;;16958:18;;:::i;:::-;-1:-1:-1;16992:9:1;;16887:120::o;17012:168::-;17052:7;17118:1;17114;17110:6;17106:14;17103:1;17100:21;17095:1;17088:9;17081:17;17077:45;17074:71;;;17125:18;;:::i;:::-;-1:-1:-1;17165:9:1;;17012:168::o;17185:125::-;17225:4;17253:1;17250;17247:8;17244:34;;;17258:18;;:::i;:::-;-1:-1:-1;17295:9:1;;17185:125::o;17315:258::-;17387:1;17397:113;17411:6;17408:1;17405:13;17397:113;;;17487:11;;;17481:18;17468:11;;;17461:39;17433:2;17426:10;17397:113;;;17528:6;17525:1;17522:13;17519:48;;;-1:-1:-1;;17563:1:1;17545:16;;17538:27;17315:258::o;17578:437::-;17657:1;17653:12;;;;17700;;;17721:61;;17775:4;17767:6;17763:17;17753:27;;17721:61;17828:2;17820:6;17817:14;17797:18;17794:38;17791:218;;;-1:-1:-1;;;17862:1:1;17855:88;17966:4;17963:1;17956:15;17994:4;17991:1;17984:15;17791:218;;17578:437;;;:::o;18020:135::-;18059:3;-1:-1:-1;;18080:17:1;;18077:43;;;18100:18;;:::i;:::-;-1:-1:-1;18147:1:1;18136:13;;18020:135::o;18160:112::-;18192:1;18218;18208:35;;18223:18;;:::i;:::-;-1:-1:-1;18257:9:1;;18160:112::o;18277:184::-;-1:-1:-1;;;18326:1:1;18319:88;18426:4;18423:1;18416:15;18450:4;18447:1;18440:15;18466:184;-1:-1:-1;;;18515:1:1;18508:88;18615:4;18612:1;18605:15;18639:4;18636:1;18629:15;18655:184;-1:-1:-1;;;18704:1:1;18697:88;18804:4;18801:1;18794:15;18828:4;18825:1;18818:15;18844:184;-1:-1:-1;;;18893:1:1;18886:88;18993:4;18990:1;18983:15;19017:4;19014:1;19007:15;19033:177;-1:-1:-1;;;;;;19111:5:1;19107:78;19100:5;19097:89;19087:117;;19200:1;19197;19190:12

Swarm Source

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