ETH Price: $3,269.00 (+4.67%)
Gas: 2 Gwei

Token

winterapes (WA)
 

Overview

Max Total Supply

1,443 WA

Holders

504

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 WA
0x80fb59f49602177827812b3fd2721ee4ae38a017
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:
winterApes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-01
*/

// File: contracts/Winterapes.sol

// File: @openzeppelin/contracts/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/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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

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


// File: @openzeppelin/contracts/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/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/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/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/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/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/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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/winterapes.sol

pragma solidity ^0.8.0;

contract winterApes is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string _baseUri;
    string _contractUri;
    
    uint public constant MAX_SUPPLY = 2500;
    uint public price = 0.025 ether;
    uint public maxFreeMint = 250;
    uint public maxFreeMintPerWallet = 10;
    bool public isSalesActive = false;
    
    mapping(address => uint) public addressToFreeMinted;

    constructor(
        string memory name_,
        string memory symbol_,
        string memory baseURI_
    ) ERC721(name_, symbol_) {
        _baseUri = baseURI_;
        _contractUri = baseURI_;
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseUri;
    }
    
    function freeMint(uint quantity) external {
        uint256 supply = totalSupply();
        require(isSalesActive, "sale is not active");
        require(quantity <= 10, "max mints per transaction exceeded");
        require(supply< maxFreeMint, "theres no free mints remaining");
        require(addressToFreeMinted[msg.sender] <= maxFreeMintPerWallet, "caller already minted for free");
        
        for (uint i = 0; i < quantity; i++) {
            addressToFreeMinted[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }
    
    function mint(uint quantity) external payable {
        uint256 supply = totalSupply();
        require(isSalesActive, "sale is not active");
        require(quantity <= 10, "max mints per transaction exceeded");
        require(supply + quantity <= MAX_SUPPLY, "sold out");
        if (msg.sender != owner()) {
            require(msg.value >= price * quantity, "Insufficient funds");
        }
        for (uint i = 0; i < quantity; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function contractURI() public view returns (string memory) {
        return _contractUri;
    }
    
    function setBaseURI(string memory newBaseURI) external onlyOwner {
        _baseUri = newBaseURI;
        _contractUri = newBaseURI;
    }
    
    function toggleSales() external onlyOwner {
        isSalesActive = !isSalesActive;
    }
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function withdrawAll() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSalesActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"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":[],"name":"toggleSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526658d15e17628000600d5560fa600e55600a600f556010805460ff191690553480156200003057600080fd5b506040516200255c3803806200255c833981016040819052620000539162000287565b8251839083906200006c9060009060208501906200012a565b508051620000829060019060208401906200012a565b5050506200009f62000099620000d460201b60201c565b620000d8565b8051620000b490600b9060208401906200012a565b508051620000ca90600c9060208401906200012a565b505050506200036b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001389062000318565b90600052602060002090601f0160209004810192826200015c5760008555620001a7565b82601f106200017757805160ff1916838001178555620001a7565b82800160010185558215620001a7579182015b82811115620001a75782518255916020019190600101906200018a565b50620001b5929150620001b9565b5090565b5b80821115620001b55760008155600101620001ba565b600082601f830112620001e257600080fd5b81516001600160401b0380821115620001ff57620001ff62000355565b604051601f8301601f19908116603f011681019082821181831017156200022a576200022a62000355565b816040528381526020925086838588010111156200024757600080fd5b600091505b838210156200026b57858201830151818301840152908201906200024c565b838211156200027d5760008385830101525b9695505050505050565b6000806000606084860312156200029d57600080fd5b83516001600160401b0380821115620002b557600080fd5b620002c387838801620001d0565b94506020860151915080821115620002da57600080fd5b620002e887838801620001d0565b93506040860151915080821115620002ff57600080fd5b506200030e86828701620001d0565b9150509250925092565b600181811c908216806200032d57607f821691505b602082108114156200034f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6121e1806200037b6000396000f3fe6080604052600436106101e35760003560e01c8063845bb3bb11610102578063a591252d11610095578063dbd30ae011610064578063dbd30ae014610547578063e8a3d4851461055c578063e985e9c514610571578063f2fde38b146105ba57600080fd5b8063a591252d146104d7578063b88d4fde146104ed578063c87b56dd1461050d578063daa81cdd1461052d57600080fd5b806395d89b41116100d157806395d89b4114610479578063a035b1fe1461048e578063a0712d68146104a4578063a22cb465146104b757600080fd5b8063845bb3bb14610410578063853828b6146104265780638da5cb5b1461043b57806391b7f5ed1461045957600080fd5b806342842e0e1161017a57806370a082311161014957806370a082311461038e578063715018a6146103ae5780637c928fe9146103c35780637fc46189146103e357600080fd5b806342842e0e1461030e5780634f6ccce71461032e57806355f804b31461034e5780636352211e1461036e57600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632f745c59146102d857806332cb6b0c146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611dce565b6105da565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610605565b6040516102149190611f02565b34801561024b57600080fd5b5061025f61025a366004611e51565b610697565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611da4565b610731565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004611cb0565b610847565b3480156102e457600080fd5b506102aa6102f3366004611da4565b610878565b34801561030457600080fd5b506102aa6109c481565b34801561031a57600080fd5b50610297610329366004611cb0565b61090e565b34801561033a57600080fd5b506102aa610349366004611e51565b610929565b34801561035a57600080fd5b50610297610369366004611e08565b6109bc565b34801561037a57600080fd5b5061025f610389366004611e51565b610a11565b34801561039a57600080fd5b506102aa6103a9366004611c62565b610a88565b3480156103ba57600080fd5b50610297610b0f565b3480156103cf57600080fd5b506102976103de366004611e51565b610b45565b3480156103ef57600080fd5b506102aa6103fe366004611c62565b60116020526000908152604090205481565b34801561041c57600080fd5b506102aa600f5481565b34801561043257600080fd5b50610297610cbe565b34801561044757600080fd5b50600a546001600160a01b031661025f565b34801561046557600080fd5b50610297610474366004611e51565b610d0c565b34801561048557600080fd5b50610232610d3b565b34801561049a57600080fd5b506102aa600d5481565b6102976104b2366004611e51565b610d4a565b3480156104c357600080fd5b506102976104d2366004611d68565b610e95565b3480156104e357600080fd5b506102aa600e5481565b3480156104f957600080fd5b50610297610508366004611cec565b610f5a565b34801561051957600080fd5b50610232610528366004611e51565b610f92565b34801561053957600080fd5b506010546102089060ff1681565b34801561055357600080fd5b5061029761106d565b34801561056857600080fd5b506102326110ab565b34801561057d57600080fd5b5061020861058c366004611c7d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105c657600080fd5b506102976105d5366004611c62565b6110ba565b60006001600160e01b0319821663780e9d6360e01b14806105ff57506105ff82611155565b92915050565b606060008054610614906120bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610640906120bd565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061073c82610a11565b9050806001600160a01b0316836001600160a01b031614156107aa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161070c565b336001600160a01b03821614806107c657506107c6813361058c565b6108385760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161070c565b61084283836111a5565b505050565b6108513382611213565b61086d5760405162461bcd60e51b815260040161070c90611fde565b61084283838361130a565b600061088383610a88565b82106108e55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161070c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61084283838360405180602001604052806000815250610f5a565b600061093460085490565b82106109975760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161070c565b600882815481106109aa576109aa612169565b90600052602060002001549050919050565b600a546001600160a01b031633146109e65760405162461bcd60e51b815260040161070c90611fa9565b80516109f990600b906020840190611b37565b508051610a0d90600c906020840190611b37565b5050565b6000818152600260205260408120546001600160a01b0316806105ff5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161070c565b60006001600160a01b038216610af35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161070c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b395760405162461bcd60e51b815260040161070c90611fa9565b610b4360006114b5565b565b6000610b5060085490565b60105490915060ff16610b9a5760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b604482015260640161070c565b600a821115610bbb5760405162461bcd60e51b815260040161070c90611f67565b600e548110610c0c5760405162461bcd60e51b815260206004820152601e60248201527f746865726573206e6f2066726565206d696e74732072656d61696e696e670000604482015260640161070c565b600f54336000908152601160205260409020541115610c6d5760405162461bcd60e51b815260206004820152601e60248201527f63616c6c657220616c7265616479206d696e74656420666f7220667265650000604482015260640161070c565b60005b8281101561084257336000908152601160205260408120805491610c93836120f8565b90915550610cac905033610ca7838561202f565b611507565b80610cb6816120f8565b915050610c70565b600a546001600160a01b03163314610ce85760405162461bcd60e51b815260040161070c90611fa9565b60405133904780156108fc02916000818181858888f19350505050610b4357600080fd5b600a546001600160a01b03163314610d365760405162461bcd60e51b815260040161070c90611fa9565b600d55565b606060018054610614906120bd565b6000610d5560085490565b60105490915060ff16610d9f5760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b604482015260640161070c565b600a821115610dc05760405162461bcd60e51b815260040161070c90611f67565b6109c4610dcd838361202f565b1115610e065760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b604482015260640161070c565b600a546001600160a01b03163314610e6a5781600d54610e26919061205b565b341015610e6a5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161070c565b60005b8281101561084257610e8333610ca7838561202f565b80610e8d816120f8565b915050610e6d565b6001600160a01b038216331415610eee5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161070c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f643383611213565b610f805760405162461bcd60e51b815260040161070c90611fde565b610f8c84848484611521565b50505050565b6000818152600260205260409020546060906001600160a01b03166110115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161070c565b600061101b611554565b9050600081511161103b5760405180602001604052806000815250611066565b8061104584611563565b604051602001611056929190611e96565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110975760405162461bcd60e51b815260040161070c90611fa9565b6010805460ff19811660ff90911615179055565b6060600c8054610614906120bd565b600a546001600160a01b031633146110e45760405162461bcd60e51b815260040161070c90611fa9565b6001600160a01b0381166111495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070c565b611152816114b5565b50565b60006001600160e01b031982166380ac58cd60e01b148061118657506001600160e01b03198216635b5e139f60e01b145b806105ff57506301ffc9a760e01b6001600160e01b03198316146105ff565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111da82610a11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661128c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161070c565b600061129783610a11565b9050806001600160a01b0316846001600160a01b031614806112d25750836001600160a01b03166112c784610697565b6001600160a01b0316145b8061130257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661131d82610a11565b6001600160a01b0316146113855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161070c565b6001600160a01b0382166113e75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161070c565b6113f2838383611661565b6113fd6000826111a5565b6001600160a01b038316600090815260036020526040812080546001929061142690849061207a565b90915550506001600160a01b038216600090815260036020526040812080546001929061145490849061202f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a0d828260405180602001604052806000815250611719565b61152c84848461130a565b6115388484848461174c565b610f8c5760405162461bcd60e51b815260040161070c90611f15565b6060600b8054610614906120bd565b6060816115875750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115b1578061159b816120f8565b91506115aa9050600a83612047565b915061158b565b60008167ffffffffffffffff8111156115cc576115cc61217f565b6040519080825280601f01601f1916602001820160405280156115f6576020820181803683370190505b5090505b84156113025761160b60018361207a565b9150611618600a86612113565b61162390603061202f565b60f81b81838151811061163857611638612169565b60200101906001600160f81b031916908160001a90535061165a600a86612047565b94506115fa565b6001600160a01b0383166116bc576116b781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116df565b816001600160a01b0316836001600160a01b0316146116df576116df8382611859565b6001600160a01b0382166116f657610842816118f6565b826001600160a01b0316826001600160a01b0316146108425761084282826119a5565b61172383836119e9565b611730600084848461174c565b6108425760405162461bcd60e51b815260040161070c90611f15565b60006001600160a01b0384163b1561184e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611790903390899088908890600401611ec5565b602060405180830381600087803b1580156117aa57600080fd5b505af19250505080156117da575060408051601f3d908101601f191682019092526117d791810190611deb565b60015b611834573d808015611808576040519150601f19603f3d011682016040523d82523d6000602084013e61180d565b606091505b50805161182c5760405162461bcd60e51b815260040161070c90611f15565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611302565b506001949350505050565b6000600161186684610a88565b611870919061207a565b6000838152600760205260409020549091508082146118c3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119089060019061207a565b6000838152600960205260408120546008805493945090928490811061193057611930612169565b90600052602060002001549050806008838154811061195157611951612169565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061198957611989612153565b6001900381819060005260206000200160009055905550505050565b60006119b083610a88565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a3f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161070c565b6000818152600260205260409020546001600160a01b031615611aa45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161070c565b611ab060008383611661565b6001600160a01b0382166000908152600360205260408120805460019290611ad990849061202f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b43906120bd565b90600052602060002090601f016020900481019282611b655760008555611bab565b82601f10611b7e57805160ff1916838001178555611bab565b82800160010185558215611bab579182015b82811115611bab578251825591602001919060010190611b90565b50611bb7929150611bbb565b5090565b5b80821115611bb75760008155600101611bbc565b600067ffffffffffffffff80841115611beb57611beb61217f565b604051601f8501601f19908116603f01168101908282118183101715611c1357611c1361217f565b81604052809350858152868686011115611c2c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c5d57600080fd5b919050565b600060208284031215611c7457600080fd5b61106682611c46565b60008060408385031215611c9057600080fd5b611c9983611c46565b9150611ca760208401611c46565b90509250929050565b600080600060608486031215611cc557600080fd5b611cce84611c46565b9250611cdc60208501611c46565b9150604084013590509250925092565b60008060008060808587031215611d0257600080fd5b611d0b85611c46565b9350611d1960208601611c46565b925060408501359150606085013567ffffffffffffffff811115611d3c57600080fd5b8501601f81018713611d4d57600080fd5b611d5c87823560208401611bd0565b91505092959194509250565b60008060408385031215611d7b57600080fd5b611d8483611c46565b915060208301358015158114611d9957600080fd5b809150509250929050565b60008060408385031215611db757600080fd5b611dc083611c46565b946020939093013593505050565b600060208284031215611de057600080fd5b813561106681612195565b600060208284031215611dfd57600080fd5b815161106681612195565b600060208284031215611e1a57600080fd5b813567ffffffffffffffff811115611e3157600080fd5b8201601f81018413611e4257600080fd5b61130284823560208401611bd0565b600060208284031215611e6357600080fd5b5035919050565b60008151808452611e82816020860160208601612091565b601f01601f19169290920160200192915050565b60008351611ea8818460208801612091565b835190830190611ebc818360208801612091565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ef890830184611e6a565b9695505050505050565b6020815260006110666020830184611e6a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f6d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561204257612042612127565b500190565b6000826120565761205661213d565b500490565b600081600019048311821515161561207557612075612127565b500290565b60008282101561208c5761208c612127565b500390565b60005b838110156120ac578181015183820152602001612094565b83811115610f8c5750506000910152565b600181811c908216806120d157607f821691505b602082108114156120f257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561210c5761210c612127565b5060010190565b6000826121225761212261213d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461115257600080fdfea264697066735822122054c5d28f1c537a349baacebd94dd33d4dc153bfc2fa24d7427f208d6437d3e7d64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a77696e7465726170657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000257410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d566e367465714b31524c5a585770546b46627042674e764166597458374878344c427a386737616f776774702f00000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063845bb3bb11610102578063a591252d11610095578063dbd30ae011610064578063dbd30ae014610547578063e8a3d4851461055c578063e985e9c514610571578063f2fde38b146105ba57600080fd5b8063a591252d146104d7578063b88d4fde146104ed578063c87b56dd1461050d578063daa81cdd1461052d57600080fd5b806395d89b41116100d157806395d89b4114610479578063a035b1fe1461048e578063a0712d68146104a4578063a22cb465146104b757600080fd5b8063845bb3bb14610410578063853828b6146104265780638da5cb5b1461043b57806391b7f5ed1461045957600080fd5b806342842e0e1161017a57806370a082311161014957806370a082311461038e578063715018a6146103ae5780637c928fe9146103c35780637fc46189146103e357600080fd5b806342842e0e1461030e5780634f6ccce71461032e57806355f804b31461034e5780636352211e1461036e57600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632f745c59146102d857806332cb6b0c146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611dce565b6105da565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610605565b6040516102149190611f02565b34801561024b57600080fd5b5061025f61025a366004611e51565b610697565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611da4565b610731565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004611cb0565b610847565b3480156102e457600080fd5b506102aa6102f3366004611da4565b610878565b34801561030457600080fd5b506102aa6109c481565b34801561031a57600080fd5b50610297610329366004611cb0565b61090e565b34801561033a57600080fd5b506102aa610349366004611e51565b610929565b34801561035a57600080fd5b50610297610369366004611e08565b6109bc565b34801561037a57600080fd5b5061025f610389366004611e51565b610a11565b34801561039a57600080fd5b506102aa6103a9366004611c62565b610a88565b3480156103ba57600080fd5b50610297610b0f565b3480156103cf57600080fd5b506102976103de366004611e51565b610b45565b3480156103ef57600080fd5b506102aa6103fe366004611c62565b60116020526000908152604090205481565b34801561041c57600080fd5b506102aa600f5481565b34801561043257600080fd5b50610297610cbe565b34801561044757600080fd5b50600a546001600160a01b031661025f565b34801561046557600080fd5b50610297610474366004611e51565b610d0c565b34801561048557600080fd5b50610232610d3b565b34801561049a57600080fd5b506102aa600d5481565b6102976104b2366004611e51565b610d4a565b3480156104c357600080fd5b506102976104d2366004611d68565b610e95565b3480156104e357600080fd5b506102aa600e5481565b3480156104f957600080fd5b50610297610508366004611cec565b610f5a565b34801561051957600080fd5b50610232610528366004611e51565b610f92565b34801561053957600080fd5b506010546102089060ff1681565b34801561055357600080fd5b5061029761106d565b34801561056857600080fd5b506102326110ab565b34801561057d57600080fd5b5061020861058c366004611c7d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105c657600080fd5b506102976105d5366004611c62565b6110ba565b60006001600160e01b0319821663780e9d6360e01b14806105ff57506105ff82611155565b92915050565b606060008054610614906120bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610640906120bd565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061073c82610a11565b9050806001600160a01b0316836001600160a01b031614156107aa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161070c565b336001600160a01b03821614806107c657506107c6813361058c565b6108385760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161070c565b61084283836111a5565b505050565b6108513382611213565b61086d5760405162461bcd60e51b815260040161070c90611fde565b61084283838361130a565b600061088383610a88565b82106108e55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161070c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61084283838360405180602001604052806000815250610f5a565b600061093460085490565b82106109975760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161070c565b600882815481106109aa576109aa612169565b90600052602060002001549050919050565b600a546001600160a01b031633146109e65760405162461bcd60e51b815260040161070c90611fa9565b80516109f990600b906020840190611b37565b508051610a0d90600c906020840190611b37565b5050565b6000818152600260205260408120546001600160a01b0316806105ff5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161070c565b60006001600160a01b038216610af35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161070c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b395760405162461bcd60e51b815260040161070c90611fa9565b610b4360006114b5565b565b6000610b5060085490565b60105490915060ff16610b9a5760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b604482015260640161070c565b600a821115610bbb5760405162461bcd60e51b815260040161070c90611f67565b600e548110610c0c5760405162461bcd60e51b815260206004820152601e60248201527f746865726573206e6f2066726565206d696e74732072656d61696e696e670000604482015260640161070c565b600f54336000908152601160205260409020541115610c6d5760405162461bcd60e51b815260206004820152601e60248201527f63616c6c657220616c7265616479206d696e74656420666f7220667265650000604482015260640161070c565b60005b8281101561084257336000908152601160205260408120805491610c93836120f8565b90915550610cac905033610ca7838561202f565b611507565b80610cb6816120f8565b915050610c70565b600a546001600160a01b03163314610ce85760405162461bcd60e51b815260040161070c90611fa9565b60405133904780156108fc02916000818181858888f19350505050610b4357600080fd5b600a546001600160a01b03163314610d365760405162461bcd60e51b815260040161070c90611fa9565b600d55565b606060018054610614906120bd565b6000610d5560085490565b60105490915060ff16610d9f5760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b604482015260640161070c565b600a821115610dc05760405162461bcd60e51b815260040161070c90611f67565b6109c4610dcd838361202f565b1115610e065760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b604482015260640161070c565b600a546001600160a01b03163314610e6a5781600d54610e26919061205b565b341015610e6a5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161070c565b60005b8281101561084257610e8333610ca7838561202f565b80610e8d816120f8565b915050610e6d565b6001600160a01b038216331415610eee5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161070c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f643383611213565b610f805760405162461bcd60e51b815260040161070c90611fde565b610f8c84848484611521565b50505050565b6000818152600260205260409020546060906001600160a01b03166110115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161070c565b600061101b611554565b9050600081511161103b5760405180602001604052806000815250611066565b8061104584611563565b604051602001611056929190611e96565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110975760405162461bcd60e51b815260040161070c90611fa9565b6010805460ff19811660ff90911615179055565b6060600c8054610614906120bd565b600a546001600160a01b031633146110e45760405162461bcd60e51b815260040161070c90611fa9565b6001600160a01b0381166111495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070c565b611152816114b5565b50565b60006001600160e01b031982166380ac58cd60e01b148061118657506001600160e01b03198216635b5e139f60e01b145b806105ff57506301ffc9a760e01b6001600160e01b03198316146105ff565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111da82610a11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661128c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161070c565b600061129783610a11565b9050806001600160a01b0316846001600160a01b031614806112d25750836001600160a01b03166112c784610697565b6001600160a01b0316145b8061130257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661131d82610a11565b6001600160a01b0316146113855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161070c565b6001600160a01b0382166113e75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161070c565b6113f2838383611661565b6113fd6000826111a5565b6001600160a01b038316600090815260036020526040812080546001929061142690849061207a565b90915550506001600160a01b038216600090815260036020526040812080546001929061145490849061202f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a0d828260405180602001604052806000815250611719565b61152c84848461130a565b6115388484848461174c565b610f8c5760405162461bcd60e51b815260040161070c90611f15565b6060600b8054610614906120bd565b6060816115875750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115b1578061159b816120f8565b91506115aa9050600a83612047565b915061158b565b60008167ffffffffffffffff8111156115cc576115cc61217f565b6040519080825280601f01601f1916602001820160405280156115f6576020820181803683370190505b5090505b84156113025761160b60018361207a565b9150611618600a86612113565b61162390603061202f565b60f81b81838151811061163857611638612169565b60200101906001600160f81b031916908160001a90535061165a600a86612047565b94506115fa565b6001600160a01b0383166116bc576116b781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116df565b816001600160a01b0316836001600160a01b0316146116df576116df8382611859565b6001600160a01b0382166116f657610842816118f6565b826001600160a01b0316826001600160a01b0316146108425761084282826119a5565b61172383836119e9565b611730600084848461174c565b6108425760405162461bcd60e51b815260040161070c90611f15565b60006001600160a01b0384163b1561184e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611790903390899088908890600401611ec5565b602060405180830381600087803b1580156117aa57600080fd5b505af19250505080156117da575060408051601f3d908101601f191682019092526117d791810190611deb565b60015b611834573d808015611808576040519150601f19603f3d011682016040523d82523d6000602084013e61180d565b606091505b50805161182c5760405162461bcd60e51b815260040161070c90611f15565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611302565b506001949350505050565b6000600161186684610a88565b611870919061207a565b6000838152600760205260409020549091508082146118c3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119089060019061207a565b6000838152600960205260408120546008805493945090928490811061193057611930612169565b90600052602060002001549050806008838154811061195157611951612169565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061198957611989612153565b6001900381819060005260206000200160009055905550505050565b60006119b083610a88565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a3f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161070c565b6000818152600260205260409020546001600160a01b031615611aa45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161070c565b611ab060008383611661565b6001600160a01b0382166000908152600360205260408120805460019290611ad990849061202f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b43906120bd565b90600052602060002090601f016020900481019282611b655760008555611bab565b82601f10611b7e57805160ff1916838001178555611bab565b82800160010185558215611bab579182015b82811115611bab578251825591602001919060010190611b90565b50611bb7929150611bbb565b5090565b5b80821115611bb75760008155600101611bbc565b600067ffffffffffffffff80841115611beb57611beb61217f565b604051601f8501601f19908116603f01168101908282118183101715611c1357611c1361217f565b81604052809350858152868686011115611c2c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c5d57600080fd5b919050565b600060208284031215611c7457600080fd5b61106682611c46565b60008060408385031215611c9057600080fd5b611c9983611c46565b9150611ca760208401611c46565b90509250929050565b600080600060608486031215611cc557600080fd5b611cce84611c46565b9250611cdc60208501611c46565b9150604084013590509250925092565b60008060008060808587031215611d0257600080fd5b611d0b85611c46565b9350611d1960208601611c46565b925060408501359150606085013567ffffffffffffffff811115611d3c57600080fd5b8501601f81018713611d4d57600080fd5b611d5c87823560208401611bd0565b91505092959194509250565b60008060408385031215611d7b57600080fd5b611d8483611c46565b915060208301358015158114611d9957600080fd5b809150509250929050565b60008060408385031215611db757600080fd5b611dc083611c46565b946020939093013593505050565b600060208284031215611de057600080fd5b813561106681612195565b600060208284031215611dfd57600080fd5b815161106681612195565b600060208284031215611e1a57600080fd5b813567ffffffffffffffff811115611e3157600080fd5b8201601f81018413611e4257600080fd5b61130284823560208401611bd0565b600060208284031215611e6357600080fd5b5035919050565b60008151808452611e82816020860160208601612091565b601f01601f19169290920160200192915050565b60008351611ea8818460208801612091565b835190830190611ebc818360208801612091565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ef890830184611e6a565b9695505050505050565b6020815260006110666020830184611e6a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f6d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561204257612042612127565b500190565b6000826120565761205661213d565b500490565b600081600019048311821515161561207557612075612127565b500290565b60008282101561208c5761208c612127565b500390565b60005b838110156120ac578181015183820152602001612094565b83811115610f8c5750506000910152565b600181811c908216806120d157607f821691505b602082108114156120f257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561210c5761210c612127565b5060010190565b6000826121225761212261213d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461115257600080fdfea264697066735822122054c5d28f1c537a349baacebd94dd33d4dc153bfc2fa24d7427f208d6437d3e7d64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a77696e7465726170657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000257410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d566e367465714b31524c5a585770546b46627042674e764166597458374878344c427a386737616f776774702f00000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): winterapes
Arg [1] : symbol_ (string): WA
Arg [2] : baseURI_ (string): ipfs://QmVn6teqK1RLZXWpTkFbpBgNvAfYtX7Hx4LBz8g7aowgtp/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 77696e7465726170657300000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 5741000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d566e367465714b31524c5a585770546b46627042674e76
Arg [9] : 4166597458374878344c427a386737616f776774702f00000000000000000000


Deployed Bytecode Sourcemap

43146:2426:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34664:224;;;;;;;;;;-1:-1:-1;34664:224:0;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;34664:224:0;;;;;;;;22556:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24115:221::-;;;;;;;;;;-1:-1:-1;24115:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;24115:221:0;4780:203:1;23638:411:0;;;;;;;;;;-1:-1:-1;23638:411:0;;;;;:::i;:::-;;:::i;:::-;;35304:113;;;;;;;;;;-1:-1:-1;35392:10:0;:17;35304:113;;;15401:25:1;;;15389:2;15374:18;35304:113:0;15255:177:1;25005:339:0;;;;;;;;;;-1:-1:-1;25005:339:0;;;;;:::i;:::-;;:::i;34972:256::-;;;;;;;;;;-1:-1:-1;34972:256:0;;;;;:::i;:::-;;:::i;43290:38::-;;;;;;;;;;;;43324:4;43290:38;;25415:185;;;;;;;;;;-1:-1:-1;25415:185:0;;;;;:::i;:::-;;:::i;35494:233::-;;;;;;;;;;-1:-1:-1;35494:233:0;;;;;:::i;:::-;;:::i;45097:141::-;;;;;;;;;;-1:-1:-1;45097:141:0;;;;;:::i;:::-;;:::i;22250:239::-;;;;;;;;;;-1:-1:-1;22250:239:0;;;;;:::i;:::-;;:::i;21980:208::-;;;;;;;;;;-1:-1:-1;21980:208:0;;;;;:::i;:::-;;:::i;42453:94::-;;;;;;;;;;;;;:::i;43889:564::-;;;;;;;;;;-1:-1:-1;43889:564:0;;;;;:::i;:::-;;:::i;43499:51::-;;;;;;;;;;-1:-1:-1;43499:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;43409:37;;;;;;;;;;;;;;;;45452:117;;;;;;;;;;;;;:::i;41802:87::-;;;;;;;;;;-1:-1:-1;41875:6:0;;-1:-1:-1;;;;;41875:6:0;41802:87;;45353;;;;;;;;;;-1:-1:-1;45353:87:0;;;;;:::i;:::-;;:::i;22725:104::-;;;;;;;;;;;;;:::i;43335:31::-;;;;;;;;;;;;;;;;44465:515;;;;;;:::i;:::-;;:::i;24408:295::-;;;;;;;;;;-1:-1:-1;24408:295:0;;;;;:::i;:::-;;:::i;43373:29::-;;;;;;;;;;;;;;;;25671:328;;;;;;;;;;-1:-1:-1;25671:328:0;;;;;:::i;:::-;;:::i;22900:334::-;;;;;;;;;;-1:-1:-1;22900:334:0;;;;;:::i;:::-;;:::i;43453:33::-;;;;;;;;;;-1:-1:-1;43453:33:0;;;;;;;;45250:91;;;;;;;;;;;;;:::i;44988:97::-;;;;;;;;;;;;;:::i;24774:164::-;;;;;;;;;;-1:-1:-1;24774:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24895:25:0;;;24871:4;24895:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24774:164;42702:192;;;;;;;;;;-1:-1:-1;42702:192:0;;;;;:::i;:::-;;:::i;34664:224::-;34766:4;-1:-1:-1;;;;;;34790:50:0;;-1:-1:-1;;;34790:50:0;;:90;;;34844:36;34868:11;34844:23;:36::i;:::-;34783:97;34664:224;-1:-1:-1;;34664:224:0:o;22556:100::-;22610:13;22643:5;22636:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22556:100;:::o;24115:221::-;24191:7;27598:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27598:16:0;24211:73;;;;-1:-1:-1;;;24211:73:0;;12265:2:1;24211:73:0;;;12247:21:1;12304:2;12284:18;;;12277:30;12343:34;12323:18;;;12316:62;-1:-1:-1;;;12394:18:1;;;12387:42;12446:19;;24211:73:0;;;;;;;;;-1:-1:-1;24304:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24304:24:0;;24115:221::o;23638:411::-;23719:13;23735:23;23750:7;23735:14;:23::i;:::-;23719:39;;23783:5;-1:-1:-1;;;;;23777:11:0;:2;-1:-1:-1;;;;;23777:11:0;;;23769:57;;;;-1:-1:-1;;;23769:57:0;;13865:2:1;23769:57:0;;;13847:21:1;13904:2;13884:18;;;13877:30;13943:34;13923:18;;;13916:62;-1:-1:-1;;;13994:18:1;;;13987:31;14035:19;;23769:57:0;13663:397:1;23769:57:0;20165:10;-1:-1:-1;;;;;23861:21:0;;;;:62;;-1:-1:-1;23886:37:0;23903:5;20165:10;24774:164;:::i;23886:37::-;23839:168;;;;-1:-1:-1;;;23839:168:0;;10255:2:1;23839:168:0;;;10237:21:1;10294:2;10274:18;;;10267:30;10333:34;10313:18;;;10306:62;10404:26;10384:18;;;10377:54;10448:19;;23839:168:0;10053:420:1;23839:168:0;24020:21;24029:2;24033:7;24020:8;:21::i;:::-;23708:341;23638:411;;:::o;25005:339::-;25200:41;20165:10;25233:7;25200:18;:41::i;:::-;25192:103;;;;-1:-1:-1;;;25192:103:0;;;;;;;:::i;:::-;25308:28;25318:4;25324:2;25328:7;25308:9;:28::i;34972:256::-;35069:7;35105:23;35122:5;35105:16;:23::i;:::-;35097:5;:31;35089:87;;;;-1:-1:-1;;;35089:87:0;;6099:2:1;35089:87:0;;;6081:21:1;6138:2;6118:18;;;6111:30;6177:34;6157:18;;;6150:62;-1:-1:-1;;;6228:18:1;;;6221:41;6279:19;;35089:87:0;5897:407:1;35089:87:0;-1:-1:-1;;;;;;35194:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34972:256::o;25415:185::-;25553:39;25570:4;25576:2;25580:7;25553:39;;;;;;;;;;;;:16;:39::i;35494:233::-;35569:7;35605:30;35392:10;:17;;35304:113;35605:30;35597:5;:38;35589:95;;;;-1:-1:-1;;;35589:95:0;;15044:2:1;35589:95:0;;;15026:21:1;15083:2;15063:18;;;15056:30;15122:34;15102:18;;;15095:62;-1:-1:-1;;;15173:18:1;;;15166:42;15225:19;;35589:95:0;14842:408:1;35589:95:0;35702:10;35713:5;35702:17;;;;;;;;:::i;:::-;;;;;;;;;35695:24;;35494:233;;;:::o;45097:141::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;45173:21;;::::1;::::0;:8:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;45205:25:0;;::::1;::::0;:12:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45097:141:::0;:::o;22250:239::-;22322:7;22358:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22358:16:0;22393:19;22385:73;;;;-1:-1:-1;;;22385:73:0;;11091:2:1;22385:73:0;;;11073:21:1;11130:2;11110:18;;;11103:30;11169:34;11149:18;;;11142:62;-1:-1:-1;;;11220:18:1;;;11213:39;11269:19;;22385:73:0;10889:405:1;21980:208:0;22052:7;-1:-1:-1;;;;;22080:19:0;;22072:74;;;;-1:-1:-1;;;22072:74:0;;10680:2:1;22072:74:0;;;10662:21:1;10719:2;10699:18;;;10692:30;10758:34;10738:18;;;10731:62;-1:-1:-1;;;10809:18:1;;;10802:40;10859:19;;22072:74:0;10478:406:1;22072:74:0;-1:-1:-1;;;;;;22164:16:0;;;;;:9;:16;;;;;;;21980:208::o;42453:94::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;42518:21:::1;42536:1;42518:9;:21::i;:::-;42453:94::o:0;43889:564::-;43942:14;43959:13;35392:10;:17;;35304:113;43959:13;43991;;43942:30;;-1:-1:-1;43991:13:0;;43983:44;;;;-1:-1:-1;;;43983:44:0;;9561:2:1;43983:44:0;;;9543:21:1;9600:2;9580:18;;;9573:30;-1:-1:-1;;;9619:18:1;;;9612:48;9677:18;;43983:44:0;9359:342:1;43983:44:0;44058:2;44046:8;:14;;44038:61;;;;-1:-1:-1;;;44038:61:0;;;;;;;:::i;:::-;44126:11;;44118:6;:19;44110:62;;;;-1:-1:-1;;;44110:62:0;;7694:2:1;44110:62:0;;;7676:21:1;7733:2;7713:18;;;7706:30;7772:32;7752:18;;;7745:60;7822:18;;44110:62:0;7492:354:1;44110:62:0;44226:20;;44211:10;44191:31;;;;:19;:31;;;;;;:55;;44183:98;;;;-1:-1:-1;;;44183:98:0;;14267:2:1;44183:98:0;;;14249:21:1;14306:2;14286:18;;;14279:30;14345:32;14325:18;;;14318:60;14395:18;;44183:98:0;14065:354:1;44183:98:0;44307:6;44302:144;44323:8;44319:1;:12;44302:144;;;44373:10;44353:31;;;;:19;:31;;;;;:33;;;;;;:::i;:::-;;;;-1:-1:-1;44401:33:0;;-1:-1:-1;44411:10:0;44423;44432:1;44423:6;:10;:::i;:::-;44401:9;:33::i;:::-;44333:3;;;;:::i;:::-;;;;44302:144;;45452:117;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;45513:47:::1;::::0;45521:10:::1;::::0;45538:21:::1;45513:47:::0;::::1;;;::::0;::::1;::::0;;;45538:21;45521:10;45513:47;::::1;;;;;;45505:56;;;::::0;::::1;45353:87:::0;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;45416:5:::1;:16:::0;45353:87::o;22725:104::-;22781:13;22814:7;22807:14;;;;;:::i;44465:515::-;44522:14;44539:13;35392:10;:17;;35304:113;44539:13;44571;;44522:30;;-1:-1:-1;44571:13:0;;44563:44;;;;-1:-1:-1;;;44563:44:0;;9561:2:1;44563:44:0;;;9543:21:1;9600:2;9580:18;;;9573:30;-1:-1:-1;;;9619:18:1;;;9612:48;9677:18;;44563:44:0;9359:342:1;44563:44:0;44638:2;44626:8;:14;;44618:61;;;;-1:-1:-1;;;44618:61:0;;;;;;;:::i;:::-;43324:4;44698:17;44707:8;44698:6;:17;:::i;:::-;:31;;44690:52;;;;-1:-1:-1;;;44690:52:0;;9225:2:1;44690:52:0;;;9207:21:1;9264:1;9244:18;;;9237:29;-1:-1:-1;;;9282:18:1;;;9275:38;9330:18;;44690:52:0;9023:331:1;44690:52:0;41875:6;;-1:-1:-1;;;;;41875:6:0;44757:10;:21;44753:114;;44824:8;44816:5;;:16;;;;:::i;:::-;44803:9;:29;;44795:60;;;;-1:-1:-1;;;44795:60:0;;9908:2:1;44795:60:0;;;9890:21:1;9947:2;9927:18;;;9920:30;-1:-1:-1;;;9966:18:1;;;9959:48;10024:18;;44795:60:0;9706:342:1;44795:60:0;44882:6;44877:96;44898:8;44894:1;:12;44877:96;;;44928:33;44938:10;44950;44959:1;44950:6;:10;:::i;44928:33::-;44908:3;;;;:::i;:::-;;;;44877:96;;24408:295;-1:-1:-1;;;;;24511:24:0;;20165:10;24511:24;;24503:62;;;;-1:-1:-1;;;24503:62:0;;8458:2:1;24503:62:0;;;8440:21:1;8497:2;8477:18;;;8470:30;8536:27;8516:18;;;8509:55;8581:18;;24503:62:0;8256:349:1;24503:62:0;20165:10;24578:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24578:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24578:53:0;;;;;;;;;;24647:48;;5621:41:1;;;24578:42:0;;20165:10;24647:48;;5594:18:1;24647:48:0;;;;;;;24408:295;;:::o;25671:328::-;25846:41;20165:10;25879:7;25846:18;:41::i;:::-;25838:103;;;;-1:-1:-1;;;25838:103:0;;;;;;;:::i;:::-;25952:39;25966:4;25972:2;25976:7;25985:5;25952:13;:39::i;:::-;25671:328;;;;:::o;22900:334::-;27574:4;27598:16;;;:7;:16;;;;;;22973:13;;-1:-1:-1;;;;;27598:16:0;22999:76;;;;-1:-1:-1;;;22999:76:0;;13449:2:1;22999:76:0;;;13431:21:1;13488:2;13468:18;;;13461:30;13527:34;13507:18;;;13500:62;-1:-1:-1;;;13578:18:1;;;13571:45;13633:19;;22999:76:0;13247:411:1;22999:76:0;23088:21;23112:10;:8;:10::i;:::-;23088:34;;23164:1;23146:7;23140:21;:25;:86;;;;;;;;;;;;;;;;;23192:7;23201:18;:7;:16;:18::i;:::-;23175:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23140:86;23133:93;22900:334;-1:-1:-1;;;22900:334:0:o;45250:91::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;45320:13:::1;::::0;;-1:-1:-1;;45303:30:0;::::1;45320:13;::::0;;::::1;45319:14;45303:30;::::0;;45250:91::o;44988:97::-;45032:13;45065:12;45058:19;;;;;:::i;42702:192::-;41875:6;;-1:-1:-1;;;;;41875:6:0;20165:10;42022:23;42014:68;;;;-1:-1:-1;;;42014:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42791:22:0;::::1;42783:73;;;::::0;-1:-1:-1;;;42783:73:0;;6930:2:1;42783:73:0::1;::::0;::::1;6912:21:1::0;6969:2;6949:18;;;6942:30;7008:34;6988:18;;;6981:62;-1:-1:-1;;;7059:18:1;;;7052:36;7105:19;;42783:73:0::1;6728:402:1::0;42783:73:0::1;42867:19;42877:8;42867:9;:19::i;:::-;42702:192:::0;:::o;21611:305::-;21713:4;-1:-1:-1;;;;;;21750:40:0;;-1:-1:-1;;;21750:40:0;;:105;;-1:-1:-1;;;;;;;21807:48:0;;-1:-1:-1;;;21807:48:0;21750:105;:158;;;-1:-1:-1;;;;;;;;;;7551:40:0;;;21872:36;7442:157;31491:174;31566:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31566:29:0;-1:-1:-1;;;;;31566:29:0;;;;;;;;:24;;31620:23;31566:24;31620:14;:23::i;:::-;-1:-1:-1;;;;;31611:46:0;;;;;;;;;;;31491:174;;:::o;27803:348::-;27896:4;27598:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27598:16:0;27913:73;;;;-1:-1:-1;;;27913:73:0;;8812:2:1;27913:73:0;;;8794:21:1;8851:2;8831:18;;;8824:30;8890:34;8870:18;;;8863:62;-1:-1:-1;;;8941:18:1;;;8934:42;8993:19;;27913:73:0;8610:408:1;27913:73:0;27997:13;28013:23;28028:7;28013:14;:23::i;:::-;27997:39;;28066:5;-1:-1:-1;;;;;28055:16:0;:7;-1:-1:-1;;;;;28055:16:0;;:51;;;;28099:7;-1:-1:-1;;;;;28075:31:0;:20;28087:7;28075:11;:20::i;:::-;-1:-1:-1;;;;;28075:31:0;;28055:51;:87;;;-1:-1:-1;;;;;;24895:25:0;;;24871:4;24895:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28110:32;28047:96;27803:348;-1:-1:-1;;;;27803:348:0:o;30795:578::-;30954:4;-1:-1:-1;;;;;30927:31:0;:23;30942:7;30927:14;:23::i;:::-;-1:-1:-1;;;;;30927:31:0;;30919:85;;;;-1:-1:-1;;;30919:85:0;;13039:2:1;30919:85:0;;;13021:21:1;13078:2;13058:18;;;13051:30;13117:34;13097:18;;;13090:62;-1:-1:-1;;;13168:18:1;;;13161:39;13217:19;;30919:85:0;12837:405:1;30919:85:0;-1:-1:-1;;;;;31023:16:0;;31015:65;;;;-1:-1:-1;;;31015:65:0;;8053:2:1;31015:65:0;;;8035:21:1;8092:2;8072:18;;;8065:30;8131:34;8111:18;;;8104:62;-1:-1:-1;;;8182:18:1;;;8175:34;8226:19;;31015:65:0;7851:400:1;31015:65:0;31093:39;31114:4;31120:2;31124:7;31093:20;:39::i;:::-;31197:29;31214:1;31218:7;31197:8;:29::i;:::-;-1:-1:-1;;;;;31239:15:0;;;;;;:9;:15;;;;;:20;;31258:1;;31239:15;:20;;31258:1;;31239:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31270:13:0;;;;;;:9;:13;;;;;:18;;31287:1;;31270:13;:18;;31287:1;;31270:18;:::i;:::-;;;;-1:-1:-1;;31299:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31299:21:0;-1:-1:-1;;;;;31299:21:0;;;;;;;;;31338:27;;31299:16;;31338:27;;;;;;;30795:578;;;:::o;42902:173::-;42977:6;;;-1:-1:-1;;;;;42994:17:0;;;-1:-1:-1;;;;;;42994:17:0;;;;;;;43027:40;;42977:6;;;42994:17;42977:6;;43027:40;;42958:16;;43027:40;42947:128;42902:173;:::o;28493:110::-;28569:26;28579:2;28583:7;28569:26;;;;;;;;;;;;:9;:26::i;26881:315::-;27038:28;27048:4;27054:2;27058:7;27038:9;:28::i;:::-;27085:48;27108:4;27114:2;27118:7;27127:5;27085:22;:48::i;:::-;27077:111;;;;-1:-1:-1;;;27077:111:0;;;;;;;:::i;43776:101::-;43828:13;43861:8;43854:15;;;;;:::i;7917:723::-;7973:13;8194:10;8190:53;;-1:-1:-1;;8221:10:0;;;;;;;;;;;;-1:-1:-1;;;8221:10:0;;;;;7917:723::o;8190:53::-;8268:5;8253:12;8309:78;8316:9;;8309:78;;8342:8;;;;:::i;:::-;;-1:-1:-1;8365:10:0;;-1:-1:-1;8373:2:0;8365:10;;:::i;:::-;;;8309:78;;;8397:19;8429:6;8419:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8419:17:0;;8397:39;;8447:154;8454:10;;8447:154;;8481:11;8491:1;8481:11;;:::i;:::-;;-1:-1:-1;8550:10:0;8558:2;8550:5;:10;:::i;:::-;8537:24;;:2;:24;:::i;:::-;8524:39;;8507:6;8514;8507:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8507:56:0;;;;;;;;-1:-1:-1;8578:11:0;8587:2;8578:11;;:::i;:::-;;;8447:154;;36340:589;-1:-1:-1;;;;;36546:18:0;;36542:187;;36581:40;36613:7;37756:10;:17;;37729:24;;;;:15;:24;;;;;:44;;;37784:24;;;;;;;;;;;;37652:164;36581:40;36542:187;;;36651:2;-1:-1:-1;;;;;36643:10:0;:4;-1:-1:-1;;;;;36643:10:0;;36639:90;;36670:47;36703:4;36709:7;36670:32;:47::i;:::-;-1:-1:-1;;;;;36743:16:0;;36739:183;;36776:45;36813:7;36776:36;:45::i;36739:183::-;36849:4;-1:-1:-1;;;;;36843:10:0;:2;-1:-1:-1;;;;;36843:10:0;;36839:83;;36870:40;36898:2;36902:7;36870:27;:40::i;28830:321::-;28960:18;28966:2;28970:7;28960:5;:18::i;:::-;29011:54;29042:1;29046:2;29050:7;29059:5;29011:22;:54::i;:::-;28989:154;;;;-1:-1:-1;;;28989:154:0;;;;;;;:::i;32230:799::-;32385:4;-1:-1:-1;;;;;32406:13:0;;10765:20;10813:8;32402:620;;32442:72;;-1:-1:-1;;;32442:72:0;;-1:-1:-1;;;;;32442:36:0;;;;;:72;;20165:10;;32493:4;;32499:7;;32508:5;;32442:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32442:72:0;;;;;;;;-1:-1:-1;;32442:72:0;;;;;;;;;;;;:::i;:::-;;;32438:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32684:13:0;;32680:272;;32727:60;;-1:-1:-1;;;32727:60:0;;;;;;;:::i;32680:272::-;32902:6;32896:13;32887:6;32883:2;32879:15;32872:38;32438:529;-1:-1:-1;;;;;;32565:51:0;-1:-1:-1;;;32565:51:0;;-1:-1:-1;32558:58:0;;32402:620;-1:-1:-1;33006:4:0;32230:799;;;;;;:::o;38443:988::-;38709:22;38759:1;38734:22;38751:4;38734:16;:22::i;:::-;:26;;;;:::i;:::-;38771:18;38792:26;;;:17;:26;;;;;;38709:51;;-1:-1:-1;38925:28:0;;;38921:328;;-1:-1:-1;;;;;38992:18:0;;38970:19;38992:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39043:30;;;;;;:44;;;39160:30;;:17;:30;;;;;:43;;;38921:328;-1:-1:-1;39345:26:0;;;;:17;:26;;;;;;;;39338:33;;;-1:-1:-1;;;;;39389:18:0;;;;;:12;:18;;;;;:34;;;;;;;39382:41;38443:988::o;39726:1079::-;40004:10;:17;39979:22;;40004:21;;40024:1;;40004:21;:::i;:::-;40036:18;40057:24;;;:15;:24;;;;;;40430:10;:26;;39979:46;;-1:-1:-1;40057:24:0;;39979:46;;40430:26;;;;;;:::i;:::-;;;;;;;;;40408:48;;40494:11;40469:10;40480;40469:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40574:28;;;:15;:28;;;;;;;:41;;;40746:24;;;;;40739:31;40781:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39797:1008;;;39726:1079;:::o;37230:221::-;37315:14;37332:20;37349:2;37332:16;:20::i;:::-;-1:-1:-1;;;;;37363:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37408:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37230:221:0:o;29487:382::-;-1:-1:-1;;;;;29567:16:0;;29559:61;;;;-1:-1:-1;;;29559:61:0;;11501:2:1;29559:61:0;;;11483:21:1;;;11520:18;;;11513:30;11579:34;11559:18;;;11552:62;11631:18;;29559:61:0;11299:356:1;29559:61:0;27574:4;27598:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27598:16:0;:30;29631:58;;;;-1:-1:-1;;;29631:58:0;;7337:2:1;29631:58:0;;;7319:21:1;7376:2;7356:18;;;7349:30;7415;7395:18;;;7388:58;7463:18;;29631:58:0;7135:352:1;29631:58:0;29702:45;29731:1;29735:2;29739:7;29702:20;:45::i;:::-;-1:-1:-1;;;;;29760:13:0;;;;;;:9;:13;;;;;:18;;29777:1;;29760:13;:18;;29777:1;;29760:18;:::i;:::-;;;;-1:-1:-1;;29789:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29789:21:0;-1:-1:-1;;;;;29789:21:0;;;;;;;;29828:33;;29789:16;;;29828:33;;29789:16;;29828:33;29487: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:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;6309:414::-;6511:2;6493:21;;;6550:2;6530:18;;;6523:30;6589:34;6584:2;6569:18;;6562:62;-1:-1:-1;;;6655:2:1;6640:18;;6633:48;6713:3;6698:19;;6309:414::o;11660:398::-;11862:2;11844:21;;;11901:2;11881:18;;;11874:30;11940:34;11935:2;11920:18;;11913:62;-1:-1:-1;;;12006:2:1;11991:18;;11984:32;12048:3;12033:19;;11660:398::o;12476:356::-;12678:2;12660:21;;;12697:18;;;12690:30;12756:34;12751:2;12736:18;;12729:62;12823:2;12808:18;;12476:356::o;14424:413::-;14626:2;14608:21;;;14665:2;14645:18;;;14638:30;14704:34;14699:2;14684:18;;14677:62;-1:-1:-1;;;14770:2:1;14755:18;;14748:47;14827:3;14812:19;;14424:413::o;15437:128::-;15477:3;15508:1;15504:6;15501:1;15498:13;15495:39;;;15514:18;;:::i;:::-;-1:-1:-1;15550:9:1;;15437:128::o;15570:120::-;15610:1;15636;15626:35;;15641:18;;:::i;:::-;-1:-1:-1;15675:9:1;;15570:120::o;15695:168::-;15735:7;15801:1;15797;15793:6;15789:14;15786:1;15783:21;15778:1;15771:9;15764:17;15760:45;15757:71;;;15808:18;;:::i;:::-;-1:-1:-1;15848:9:1;;15695:168::o;15868:125::-;15908:4;15936:1;15933;15930:8;15927:34;;;15941:18;;:::i;:::-;-1:-1:-1;15978:9:1;;15868:125::o;15998:258::-;16070:1;16080:113;16094:6;16091:1;16088:13;16080:113;;;16170:11;;;16164:18;16151:11;;;16144:39;16116:2;16109:10;16080:113;;;16211:6;16208:1;16205:13;16202:48;;;-1:-1:-1;;16246:1:1;16228:16;;16221:27;15998:258::o;16261:380::-;16340:1;16336:12;;;;16383;;;16404:61;;16458:4;16450:6;16446:17;16436:27;;16404:61;16511:2;16503:6;16500:14;16480:18;16477:38;16474:161;;;16557:10;16552:3;16548:20;16545:1;16538:31;16592:4;16589:1;16582:15;16620:4;16617:1;16610:15;16474:161;;16261:380;;;:::o;16646:135::-;16685:3;-1:-1:-1;;16706:17:1;;16703:43;;;16726:18;;:::i;:::-;-1:-1:-1;16773:1:1;16762:13;;16646:135::o;16786:112::-;16818:1;16844;16834:35;;16849:18;;:::i;:::-;-1:-1:-1;16883:9:1;;16786:112::o;16903:127::-;16964:10;16959:3;16955:20;16952:1;16945:31;16995:4;16992:1;16985:15;17019:4;17016:1;17009:15;17035:127;17096:10;17091:3;17087:20;17084:1;17077:31;17127:4;17124:1;17117:15;17151:4;17148:1;17141:15;17167:127;17228:10;17223:3;17219:20;17216:1;17209:31;17259:4;17256:1;17249:15;17283:4;17280:1;17273:15;17299:127;17360:10;17355:3;17351:20;17348:1;17341:31;17391:4;17388:1;17381:15;17415:4;17412:1;17405:15;17431:127;17492:10;17487:3;17483:20;17480:1;17473:31;17523:4;17520:1;17513:15;17547:4;17544:1;17537:15;17563:131;-1:-1:-1;;;;;;17637:32:1;;17627:43;;17617:71;;17684:1;17681;17674:12

Swarm Source

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