ETH Price: $3,317.62 (-2.74%)
Gas: 12 Gwei

Token

Cute Walrus Club (CWC)
 

Overview

Max Total Supply

4,400 CWC

Holders

768

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 CWC
0xca8240f03e1abae553bb27ddd543a74db09cfff6
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:
CuteWalrusClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 3000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/cwc.sol



pragma solidity >=0.7.0 <0.9.0;




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

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.044 ether;
  uint256 public maxSupply = 4400;
  uint256 public maxMintAmountPerTx = 5;

  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = true;

  address[] public whitelistedAddresses;

  constructor() ERC721("Cute Walrus Club", "CWC") {
    setHiddenMetadataUri("ipfs://QmV8X2roZJ6tujqXVZeeHiY7yu8BXutSzZPqTdTvpu8M62/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

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

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    uint256 ownerTokenCount = balanceOf(msg.sender);    
    require(!paused, "The contract is paused!");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(_mintAmount + ownerTokenCount <= maxMintAmountPerTx, "You can only mint 5 Cute Walruses!");
    if (onlyWhitelisted == true) {
        require(isWhitelisted(msg.sender), "User is not whitelisted");
    }
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

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

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }

  function isWhitelisted(address _user) public view returns (bool) {
    for(uint256 i = 0; i < whitelistedAddresses.length; i++) {
        if (whitelistedAddresses[i] == _user) {
            return true;
        }
    }
    return false;
  }

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

}

/*                                                                                                  
 ,-----.          ,--.         ,--.   ,--.        ,--.                       ,-----.,--.        ,--.    
'  .--./,--.,--.,-'  '-. ,---. |  |   |  | ,--,--.|  |,--.--.,--.,--. ,---. '  .--./|  |,--.,--.|  |-.  
|  |    |  ||  |'-.  .-'| .-. :|  |.'.|  |' ,-.  ||  ||  .--'|  ||  |(  .-' |  |    |  ||  ||  || .-. ' 
'  '--'\'  ''  '  |  |  \   --.|   ,'.   |\ '-'  ||  ||  |   '  ''  '.-'  `)'  '--'\|  |'  ''  '| `-' | 
 `-----' `----'   `--'   `----''--'   '--' `--`--'`--'`--'    `----' `----'  `-----'`--' `----'  `---'  
*/

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600891620001fe565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600991620001fe565b50669c51c4521e0000600b55611130600c556005600d55600e805462ffffff1916620100001790553480156200007f57600080fd5b50604080518082018252601081526f21baba32902bb0b6393ab99021b63ab160811b60208083019182528351808501909452600384526243574360e81b908401528151919291620000d391600091620001fe565b508051620000e9906001906020840190620001fe565b50505062000106620001006200013060201b60201c565b62000134565b6200012a60405180608001604052806041815260200162002f776041913962000186565b620002e1565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001fa90600a906020840190620001fe565b5050565b8280546200020c90620002a4565b90600052602060002090601f0160209004810192826200023057600085556200027b565b82601f106200024b57805160ff19168380011785556200027b565b828001600101855582156200027b579182015b828111156200027b5782518255916020019190600101906200025e565b50620002899291506200028d565b5090565b5b808211156200028957600081556001016200028e565b600181811c90821680620002b957607f821691505b60208210811415620002db57634e487b7160e01b600052602260045260246000fd5b50919050565b612c8680620002f16000396000f3fe6080604052600436106102c65760003560e01c80636352211e11610179578063a45ba8e7116100d6578063d5abeb011161008a578063edec5f2711610064578063edec5f271461077f578063efbd73f41461079f578063f2fde38b146107bf57600080fd5b8063d5abeb0114610700578063e0a8085314610716578063e985e9c51461073657600080fd5b8063b88d4fde116100bb578063b88d4fde146106a0578063ba4e5c49146106c0578063c87b56dd146106e057600080fd5b8063a45ba8e71461066b578063b071401b1461068057600080fd5b806394354fd01161012d5780639c70b512116101125780639c70b51214610618578063a0712d6814610638578063a22cb4651461064b57600080fd5b806394354fd0146105ed57806395d89b411461060357600080fd5b8063715018a61161015e578063715018a61461059a5780637ec4a659146105af5780638da5cb5b146105cf57600080fd5b80636352211e1461055a57806370a082311461057a57600080fd5b80633c952764116102275780634fdd43cb116101db5780635503a0e8116101c05780635503a0e8146105165780635c975abb1461052b57806362b99ad41461054557600080fd5b80634fdd43cb146104d757806351830227146104f757600080fd5b806342842e0e1161020c57806342842e0e1461046a578063438b63001461048a57806344a0d68a146104b757600080fd5b80633c952764146104355780633ccfd60b1461045557600080fd5b806316ba10e01161027e57806318160ddd1161026357806318160ddd146103e057806323b872dd146103f55780633af32abf1461041557600080fd5b806316ba10e0146103a057806316c38b3c146103c057600080fd5b8063081812fc116102af578063081812fc14610322578063095ea7b31461035a57806313faede61461037c57600080fd5b806301ffc9a7146102cb57806306fdde0314610300575b600080fd5b3480156102d757600080fd5b506102eb6102e6366004612890565b6107df565b60405190151581526020015b60405180910390f35b34801561030c57600080fd5b506103156108c4565b6040516102f79190612abf565b34801561032e57600080fd5b5061034261033d366004612913565b610956565b6040516001600160a01b0390911681526020016102f7565b34801561036657600080fd5b5061037a6103753660046127d6565b610a01565b005b34801561038857600080fd5b50610392600b5481565b6040519081526020016102f7565b3480156103ac57600080fd5b5061037a6103bb3660046128ca565b610b33565b3480156103cc57600080fd5b5061037a6103db366004612875565b610ba4565b3480156103ec57600080fd5b50610392610c11565b34801561040157600080fd5b5061037a6104103660046126f4565b610c21565b34801561042157600080fd5b506102eb6104303660046126a6565b610ca8565b34801561044157600080fd5b5061037a610450366004612875565b610d12565b34801561046157600080fd5b5061037a610da4565b34801561047657600080fd5b5061037a6104853660046126f4565b610e72565b34801561049657600080fd5b506104aa6104a53660046126a6565b610e8d565b6040516102f79190612a7b565b3480156104c357600080fd5b5061037a6104d2366004612913565b610f6e565b3480156104e357600080fd5b5061037a6104f23660046128ca565b610fcd565b34801561050357600080fd5b50600e546102eb90610100900460ff1681565b34801561052257600080fd5b5061031561103a565b34801561053757600080fd5b50600e546102eb9060ff1681565b34801561055157600080fd5b506103156110c8565b34801561056657600080fd5b50610342610575366004612913565b6110d5565b34801561058657600080fd5b506103926105953660046126a6565b611160565b3480156105a657600080fd5b5061037a6111fa565b3480156105bb57600080fd5b5061037a6105ca3660046128ca565b611260565b3480156105db57600080fd5b506006546001600160a01b0316610342565b3480156105f957600080fd5b50610392600d5481565b34801561060f57600080fd5b506103156112cd565b34801561062457600080fd5b50600e546102eb9062010000900460ff1681565b61037a610646366004612913565b6112dc565b34801561065757600080fd5b5061037a6106663660046127ac565b611554565b34801561067757600080fd5b5061031561155f565b34801561068c57600080fd5b5061037a61069b366004612913565b61156c565b3480156106ac57600080fd5b5061037a6106bb366004612730565b6115cb565b3480156106cc57600080fd5b506103426106db366004612913565b611659565b3480156106ec57600080fd5b506103156106fb366004612913565b611683565b34801561070c57600080fd5b50610392600c5481565b34801561072257600080fd5b5061037a610731366004612875565b611810565b34801561074257600080fd5b506102eb6107513660046126c1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078b57600080fd5b5061037a61079a366004612800565b6118a1565b3480156107ab57600080fd5b5061037a6107ba36600461292c565b611913565b3480156107cb57600080fd5b5061037a6107da3660046126a6565b6119dd565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061087257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108be57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600080546108d390612b60565b80601f01602080910402602001604051908101604052809291908181526020018280546108ff90612b60565b801561094c5780601f106109215761010080835404028352916020019161094c565b820191906000526020600020905b81548152906001019060200180831161092f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109e55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a0c826110d5565b9050806001600160a01b0316836001600160a01b03161415610a965760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109dc565b336001600160a01b0382161480610ab25750610ab28133610751565b610b245760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109dc565b610b2e8383611abc565b505050565b6006546001600160a01b03163314610b8d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b8051610ba09060099060208401906124ed565b5050565b6006546001600160a01b03163314610bfe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b600e805460ff1916911515919091179055565b6000610c1c60075490565b905090565b610c2b3382611b37565b610c9d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109dc565b610b2e838383611c3f565b6000805b600f54811015610d0957826001600160a01b0316600f8281548110610cd357610cd3612bf6565b6000918252602090912001546001600160a01b03161415610cf75750600192915050565b80610d0181612b9b565b915050610cac565b50600092915050565b6006546001600160a01b03163314610d6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b600e805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b6006546001600160a01b03163314610dfe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b6000610e126006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e5c576040519150601f19603f3d011682016040523d82523d6000602084013e610e61565b606091505b5050905080610e6f57600080fd5b50565b610b2e838383604051806020016040528060008152506115cb565b60606000610e9a83611160565b905060008167ffffffffffffffff811115610eb757610eb7612c0c565b604051908082528060200260200182016040528015610ee0578160200160208202803683370190505b509050600160005b8381108015610ef95750600c548211155b15610f64576000610f09836110d5565b9050866001600160a01b0316816001600160a01b03161415610f515782848381518110610f3857610f38612bf6565b602090810291909101015281610f4d81612b9b565b9250505b82610f5b81612b9b565b93505050610ee8565b5090949350505050565b6006546001600160a01b03163314610fc85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b600b55565b6006546001600160a01b031633146110275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b8051610ba090600a9060208401906124ed565b6009805461104790612b60565b80601f016020809104026020016040519081016040528092919081815260200182805461107390612b60565b80156110c05780601f10611095576101008083540402835291602001916110c0565b820191906000526020600020905b8154815290600101906020018083116110a357829003601f168201915b505050505081565b6008805461104790612b60565b6000818152600260205260408120546001600160a01b0316806108be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109dc565b60006001600160a01b0382166111de5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109dc565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b61125e6000611e19565b565b6006546001600160a01b031633146112ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b8051610ba09060089060208401906124ed565b6060600180546108d390612b60565b80600c54816112ea60075490565b6112f49190612ad2565b11156113425760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016109dc565b600061134d33611160565b600e5490915060ff16156113a35760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016109dc565b6000831180156113b55750600d548311155b6114015760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e742100000000000000000000000060448201526064016109dc565b600d5461140e8285612ad2565b11156114825760405162461bcd60e51b815260206004820152602260248201527f596f752063616e206f6e6c79206d696e74203520437574652057616c7275736560448201527f732100000000000000000000000000000000000000000000000000000000000060648201526084016109dc565b600e5462010000900460ff161515600114156114ed576114a133610ca8565b6114ed5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c697374656400000000000000000060448201526064016109dc565b82600b546114fb9190612afe565b34101561154a5760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e6473210000000000000000000000000060448201526064016109dc565b610b2e3384611e78565b610ba0338383611eb5565b600a805461104790612b60565b6006546001600160a01b031633146115c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b600d55565b6115d53383611b37565b6116475760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109dc565b61165384848484611f84565b50505050565b600f818154811061166957600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260409020546060906001600160a01b03166117105760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109dc565b600e54610100900460ff166117b157600a805461172c90612b60565b80601f016020809104026020016040519081016040528092919081815260200182805461175890612b60565b80156117a55780601f1061177a576101008083540402835291602001916117a5565b820191906000526020600020905b81548152906001019060200180831161178857829003601f168201915b50505050509050919050565b60006117bb61200d565b905060008151116117db5760405180602001604052806000815250611809565b806117e58461201c565b60096040516020016117f99392919061297b565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461186a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b600e8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6006546001600160a01b031633146118fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b611907600f6000612571565b610b2e600f838361258f565b81600c548161192160075490565b61192b9190612ad2565b11156119795760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016109dc565b6006546001600160a01b031633146119d35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b610b2e8284611e78565b6006546001600160a01b03163314611a375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b6001600160a01b038116611ab35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109dc565b610e6f81611e19565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611afe826110d5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bc15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109dc565b6000611bcc836110d5565b9050806001600160a01b0316846001600160a01b03161480611c075750836001600160a01b0316611bfc84610956565b6001600160a01b0316145b80611c3757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c52826110d5565b6001600160a01b031614611cce5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109dc565b6001600160a01b038216611d495760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109dc565b611d54600082611abc565b6001600160a01b0383166000908152600360205260408120805460019290611d7d908490612b1d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611dab908490612ad2565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610b2e57611e91600780546001019055565b611ea383611e9e60075490565b61214e565b80611ead81612b9b565b915050611e7b565b816001600160a01b0316836001600160a01b03161415611f175760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109dc565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f8f848484611c3f565b611f9b84848484612168565b6116535760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109dc565b6060600880546108d390612b60565b60608161205c57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612086578061207081612b9b565b915061207f9050600a83612aea565b9150612060565b60008167ffffffffffffffff8111156120a1576120a1612c0c565b6040519080825280601f01601f1916602001820160405280156120cb576020820181803683370190505b5090505b8415611c37576120e0600183612b1d565b91506120ed600a86612bb6565b6120f8906030612ad2565b60f81b81838151811061210d5761210d612bf6565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612147600a86612aea565b94506120cf565b610ba0828260405180602001604052806000815250612315565b60006001600160a01b0384163b1561230a576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906121c5903390899088908890600401612a3f565b602060405180830381600087803b1580156121df57600080fd5b505af192505050801561220f575060408051601f3d908101601f1916820190925261220c918101906128ad565b60015b6122bf573d80801561223d576040519150601f19603f3d011682016040523d82523d6000602084013e612242565b606091505b5080516122b75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109dc565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611c37565b506001949350505050565b61231f838361239e565b61232c6000848484612168565b610b2e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109dc565b6001600160a01b0382166123f45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109dc565b6000818152600260205260409020546001600160a01b0316156124595760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109dc565b6001600160a01b0382166000908152600360205260408120805460019290612482908490612ad2565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546124f990612b60565b90600052602060002090601f01602090048101928261251b5760008555612561565b82601f1061253457805160ff1916838001178555612561565b82800160010185558215612561579182015b82811115612561578251825591602001919060010190612546565b5061256d9291506125ef565b5090565b5080546000825590600052602060002090810190610e6f91906125ef565b828054828255906000526020600020908101928215612561579160200282015b8281111561256157815473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038435161782556020909201916001909101906125af565b5b8082111561256d57600081556001016125f0565b600067ffffffffffffffff8084111561261f5761261f612c0c565b604051601f8501601f19908116603f0116810190828211818310171561264757612647612c0c565b8160405280935085815286868601111561266057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461269157600080fd5b919050565b8035801515811461269157600080fd5b6000602082840312156126b857600080fd5b6118098261267a565b600080604083850312156126d457600080fd5b6126dd8361267a565b91506126eb6020840161267a565b90509250929050565b60008060006060848603121561270957600080fd5b6127128461267a565b92506127206020850161267a565b9150604084013590509250925092565b6000806000806080858703121561274657600080fd5b61274f8561267a565b935061275d6020860161267a565b925060408501359150606085013567ffffffffffffffff81111561278057600080fd5b8501601f8101871361279157600080fd5b6127a087823560208401612604565b91505092959194509250565b600080604083850312156127bf57600080fd5b6127c88361267a565b91506126eb60208401612696565b600080604083850312156127e957600080fd5b6127f28361267a565b946020939093013593505050565b6000806020838503121561281357600080fd5b823567ffffffffffffffff8082111561282b57600080fd5b818501915085601f83011261283f57600080fd5b81358181111561284e57600080fd5b8660208260051b850101111561286357600080fd5b60209290920196919550909350505050565b60006020828403121561288757600080fd5b61180982612696565b6000602082840312156128a257600080fd5b813561180981612c22565b6000602082840312156128bf57600080fd5b815161180981612c22565b6000602082840312156128dc57600080fd5b813567ffffffffffffffff8111156128f357600080fd5b8201601f8101841361290457600080fd5b611c3784823560208401612604565b60006020828403121561292557600080fd5b5035919050565b6000806040838503121561293f57600080fd5b823591506126eb6020840161267a565b60008151808452612967816020860160208601612b34565b601f01601f19169290920160200192915050565b60008451602061298e8285838a01612b34565b8551918401916129a18184848a01612b34565b8554920191600090600181811c90808316806129be57607f831692505b8583108114156129dc57634e487b7160e01b85526022600452602485fd5b8080156129f05760018114612a0157612a2e565b60ff19851688528388019550612a2e565b60008b81526020902060005b85811015612a265781548a820152908401908801612a0d565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612a71608083018461294f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ab357835183529284019291840191600101612a97565b50909695505050505050565b602081526000611809602083018461294f565b60008219821115612ae557612ae5612bca565b500190565b600082612af957612af9612be0565b500490565b6000816000190483118215151615612b1857612b18612bca565b500290565b600082821015612b2f57612b2f612bca565b500390565b60005b83811015612b4f578181015183820152602001612b37565b838111156116535750506000910152565b600181811c90821680612b7457607f821691505b60208210811415612b9557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612baf57612baf612bca565b5060010190565b600082612bc557612bc5612be0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e6f57600080fdfea2646970667358221220f992851f8acebd5f34c408e4a9117ea9766f8764482847c2420e82d1ac1b8fd864736f6c63430008070033697066733a2f2f516d56385832726f5a4a3674756a7158565a65654869593779753842587574537a5a5071546454767075384d36322f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102c65760003560e01c80636352211e11610179578063a45ba8e7116100d6578063d5abeb011161008a578063edec5f2711610064578063edec5f271461077f578063efbd73f41461079f578063f2fde38b146107bf57600080fd5b8063d5abeb0114610700578063e0a8085314610716578063e985e9c51461073657600080fd5b8063b88d4fde116100bb578063b88d4fde146106a0578063ba4e5c49146106c0578063c87b56dd146106e057600080fd5b8063a45ba8e71461066b578063b071401b1461068057600080fd5b806394354fd01161012d5780639c70b512116101125780639c70b51214610618578063a0712d6814610638578063a22cb4651461064b57600080fd5b806394354fd0146105ed57806395d89b411461060357600080fd5b8063715018a61161015e578063715018a61461059a5780637ec4a659146105af5780638da5cb5b146105cf57600080fd5b80636352211e1461055a57806370a082311461057a57600080fd5b80633c952764116102275780634fdd43cb116101db5780635503a0e8116101c05780635503a0e8146105165780635c975abb1461052b57806362b99ad41461054557600080fd5b80634fdd43cb146104d757806351830227146104f757600080fd5b806342842e0e1161020c57806342842e0e1461046a578063438b63001461048a57806344a0d68a146104b757600080fd5b80633c952764146104355780633ccfd60b1461045557600080fd5b806316ba10e01161027e57806318160ddd1161026357806318160ddd146103e057806323b872dd146103f55780633af32abf1461041557600080fd5b806316ba10e0146103a057806316c38b3c146103c057600080fd5b8063081812fc116102af578063081812fc14610322578063095ea7b31461035a57806313faede61461037c57600080fd5b806301ffc9a7146102cb57806306fdde0314610300575b600080fd5b3480156102d757600080fd5b506102eb6102e6366004612890565b6107df565b60405190151581526020015b60405180910390f35b34801561030c57600080fd5b506103156108c4565b6040516102f79190612abf565b34801561032e57600080fd5b5061034261033d366004612913565b610956565b6040516001600160a01b0390911681526020016102f7565b34801561036657600080fd5b5061037a6103753660046127d6565b610a01565b005b34801561038857600080fd5b50610392600b5481565b6040519081526020016102f7565b3480156103ac57600080fd5b5061037a6103bb3660046128ca565b610b33565b3480156103cc57600080fd5b5061037a6103db366004612875565b610ba4565b3480156103ec57600080fd5b50610392610c11565b34801561040157600080fd5b5061037a6104103660046126f4565b610c21565b34801561042157600080fd5b506102eb6104303660046126a6565b610ca8565b34801561044157600080fd5b5061037a610450366004612875565b610d12565b34801561046157600080fd5b5061037a610da4565b34801561047657600080fd5b5061037a6104853660046126f4565b610e72565b34801561049657600080fd5b506104aa6104a53660046126a6565b610e8d565b6040516102f79190612a7b565b3480156104c357600080fd5b5061037a6104d2366004612913565b610f6e565b3480156104e357600080fd5b5061037a6104f23660046128ca565b610fcd565b34801561050357600080fd5b50600e546102eb90610100900460ff1681565b34801561052257600080fd5b5061031561103a565b34801561053757600080fd5b50600e546102eb9060ff1681565b34801561055157600080fd5b506103156110c8565b34801561056657600080fd5b50610342610575366004612913565b6110d5565b34801561058657600080fd5b506103926105953660046126a6565b611160565b3480156105a657600080fd5b5061037a6111fa565b3480156105bb57600080fd5b5061037a6105ca3660046128ca565b611260565b3480156105db57600080fd5b506006546001600160a01b0316610342565b3480156105f957600080fd5b50610392600d5481565b34801561060f57600080fd5b506103156112cd565b34801561062457600080fd5b50600e546102eb9062010000900460ff1681565b61037a610646366004612913565b6112dc565b34801561065757600080fd5b5061037a6106663660046127ac565b611554565b34801561067757600080fd5b5061031561155f565b34801561068c57600080fd5b5061037a61069b366004612913565b61156c565b3480156106ac57600080fd5b5061037a6106bb366004612730565b6115cb565b3480156106cc57600080fd5b506103426106db366004612913565b611659565b3480156106ec57600080fd5b506103156106fb366004612913565b611683565b34801561070c57600080fd5b50610392600c5481565b34801561072257600080fd5b5061037a610731366004612875565b611810565b34801561074257600080fd5b506102eb6107513660046126c1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078b57600080fd5b5061037a61079a366004612800565b6118a1565b3480156107ab57600080fd5b5061037a6107ba36600461292c565b611913565b3480156107cb57600080fd5b5061037a6107da3660046126a6565b6119dd565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061087257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108be57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600080546108d390612b60565b80601f01602080910402602001604051908101604052809291908181526020018280546108ff90612b60565b801561094c5780601f106109215761010080835404028352916020019161094c565b820191906000526020600020905b81548152906001019060200180831161092f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109e55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a0c826110d5565b9050806001600160a01b0316836001600160a01b03161415610a965760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109dc565b336001600160a01b0382161480610ab25750610ab28133610751565b610b245760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109dc565b610b2e8383611abc565b505050565b6006546001600160a01b03163314610b8d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b8051610ba09060099060208401906124ed565b5050565b6006546001600160a01b03163314610bfe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b600e805460ff1916911515919091179055565b6000610c1c60075490565b905090565b610c2b3382611b37565b610c9d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109dc565b610b2e838383611c3f565b6000805b600f54811015610d0957826001600160a01b0316600f8281548110610cd357610cd3612bf6565b6000918252602090912001546001600160a01b03161415610cf75750600192915050565b80610d0181612b9b565b915050610cac565b50600092915050565b6006546001600160a01b03163314610d6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b600e805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b6006546001600160a01b03163314610dfe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b6000610e126006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e5c576040519150601f19603f3d011682016040523d82523d6000602084013e610e61565b606091505b5050905080610e6f57600080fd5b50565b610b2e838383604051806020016040528060008152506115cb565b60606000610e9a83611160565b905060008167ffffffffffffffff811115610eb757610eb7612c0c565b604051908082528060200260200182016040528015610ee0578160200160208202803683370190505b509050600160005b8381108015610ef95750600c548211155b15610f64576000610f09836110d5565b9050866001600160a01b0316816001600160a01b03161415610f515782848381518110610f3857610f38612bf6565b602090810291909101015281610f4d81612b9b565b9250505b82610f5b81612b9b565b93505050610ee8565b5090949350505050565b6006546001600160a01b03163314610fc85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b600b55565b6006546001600160a01b031633146110275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b8051610ba090600a9060208401906124ed565b6009805461104790612b60565b80601f016020809104026020016040519081016040528092919081815260200182805461107390612b60565b80156110c05780601f10611095576101008083540402835291602001916110c0565b820191906000526020600020905b8154815290600101906020018083116110a357829003601f168201915b505050505081565b6008805461104790612b60565b6000818152600260205260408120546001600160a01b0316806108be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109dc565b60006001600160a01b0382166111de5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109dc565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b61125e6000611e19565b565b6006546001600160a01b031633146112ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b8051610ba09060089060208401906124ed565b6060600180546108d390612b60565b80600c54816112ea60075490565b6112f49190612ad2565b11156113425760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016109dc565b600061134d33611160565b600e5490915060ff16156113a35760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016109dc565b6000831180156113b55750600d548311155b6114015760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e742100000000000000000000000060448201526064016109dc565b600d5461140e8285612ad2565b11156114825760405162461bcd60e51b815260206004820152602260248201527f596f752063616e206f6e6c79206d696e74203520437574652057616c7275736560448201527f732100000000000000000000000000000000000000000000000000000000000060648201526084016109dc565b600e5462010000900460ff161515600114156114ed576114a133610ca8565b6114ed5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c697374656400000000000000000060448201526064016109dc565b82600b546114fb9190612afe565b34101561154a5760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e6473210000000000000000000000000060448201526064016109dc565b610b2e3384611e78565b610ba0338383611eb5565b600a805461104790612b60565b6006546001600160a01b031633146115c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b600d55565b6115d53383611b37565b6116475760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109dc565b61165384848484611f84565b50505050565b600f818154811061166957600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260409020546060906001600160a01b03166117105760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109dc565b600e54610100900460ff166117b157600a805461172c90612b60565b80601f016020809104026020016040519081016040528092919081815260200182805461175890612b60565b80156117a55780601f1061177a576101008083540402835291602001916117a5565b820191906000526020600020905b81548152906001019060200180831161178857829003601f168201915b50505050509050919050565b60006117bb61200d565b905060008151116117db5760405180602001604052806000815250611809565b806117e58461201c565b60096040516020016117f99392919061297b565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461186a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b600e8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6006546001600160a01b031633146118fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b611907600f6000612571565b610b2e600f838361258f565b81600c548161192160075490565b61192b9190612ad2565b11156119795760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642100000000000000000000000060448201526064016109dc565b6006546001600160a01b031633146119d35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b610b2e8284611e78565b6006546001600160a01b03163314611a375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dc565b6001600160a01b038116611ab35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109dc565b610e6f81611e19565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611afe826110d5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bc15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109dc565b6000611bcc836110d5565b9050806001600160a01b0316846001600160a01b03161480611c075750836001600160a01b0316611bfc84610956565b6001600160a01b0316145b80611c3757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c52826110d5565b6001600160a01b031614611cce5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109dc565b6001600160a01b038216611d495760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109dc565b611d54600082611abc565b6001600160a01b0383166000908152600360205260408120805460019290611d7d908490612b1d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611dab908490612ad2565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610b2e57611e91600780546001019055565b611ea383611e9e60075490565b61214e565b80611ead81612b9b565b915050611e7b565b816001600160a01b0316836001600160a01b03161415611f175760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109dc565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f8f848484611c3f565b611f9b84848484612168565b6116535760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109dc565b6060600880546108d390612b60565b60608161205c57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612086578061207081612b9b565b915061207f9050600a83612aea565b9150612060565b60008167ffffffffffffffff8111156120a1576120a1612c0c565b6040519080825280601f01601f1916602001820160405280156120cb576020820181803683370190505b5090505b8415611c37576120e0600183612b1d565b91506120ed600a86612bb6565b6120f8906030612ad2565b60f81b81838151811061210d5761210d612bf6565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612147600a86612aea565b94506120cf565b610ba0828260405180602001604052806000815250612315565b60006001600160a01b0384163b1561230a576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906121c5903390899088908890600401612a3f565b602060405180830381600087803b1580156121df57600080fd5b505af192505050801561220f575060408051601f3d908101601f1916820190925261220c918101906128ad565b60015b6122bf573d80801561223d576040519150601f19603f3d011682016040523d82523d6000602084013e612242565b606091505b5080516122b75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109dc565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611c37565b506001949350505050565b61231f838361239e565b61232c6000848484612168565b610b2e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109dc565b6001600160a01b0382166123f45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109dc565b6000818152600260205260409020546001600160a01b0316156124595760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109dc565b6001600160a01b0382166000908152600360205260408120805460019290612482908490612ad2565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546124f990612b60565b90600052602060002090601f01602090048101928261251b5760008555612561565b82601f1061253457805160ff1916838001178555612561565b82800160010185558215612561579182015b82811115612561578251825591602001919060010190612546565b5061256d9291506125ef565b5090565b5080546000825590600052602060002090810190610e6f91906125ef565b828054828255906000526020600020908101928215612561579160200282015b8281111561256157815473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038435161782556020909201916001909101906125af565b5b8082111561256d57600081556001016125f0565b600067ffffffffffffffff8084111561261f5761261f612c0c565b604051601f8501601f19908116603f0116810190828211818310171561264757612647612c0c565b8160405280935085815286868601111561266057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461269157600080fd5b919050565b8035801515811461269157600080fd5b6000602082840312156126b857600080fd5b6118098261267a565b600080604083850312156126d457600080fd5b6126dd8361267a565b91506126eb6020840161267a565b90509250929050565b60008060006060848603121561270957600080fd5b6127128461267a565b92506127206020850161267a565b9150604084013590509250925092565b6000806000806080858703121561274657600080fd5b61274f8561267a565b935061275d6020860161267a565b925060408501359150606085013567ffffffffffffffff81111561278057600080fd5b8501601f8101871361279157600080fd5b6127a087823560208401612604565b91505092959194509250565b600080604083850312156127bf57600080fd5b6127c88361267a565b91506126eb60208401612696565b600080604083850312156127e957600080fd5b6127f28361267a565b946020939093013593505050565b6000806020838503121561281357600080fd5b823567ffffffffffffffff8082111561282b57600080fd5b818501915085601f83011261283f57600080fd5b81358181111561284e57600080fd5b8660208260051b850101111561286357600080fd5b60209290920196919550909350505050565b60006020828403121561288757600080fd5b61180982612696565b6000602082840312156128a257600080fd5b813561180981612c22565b6000602082840312156128bf57600080fd5b815161180981612c22565b6000602082840312156128dc57600080fd5b813567ffffffffffffffff8111156128f357600080fd5b8201601f8101841361290457600080fd5b611c3784823560208401612604565b60006020828403121561292557600080fd5b5035919050565b6000806040838503121561293f57600080fd5b823591506126eb6020840161267a565b60008151808452612967816020860160208601612b34565b601f01601f19169290920160200192915050565b60008451602061298e8285838a01612b34565b8551918401916129a18184848a01612b34565b8554920191600090600181811c90808316806129be57607f831692505b8583108114156129dc57634e487b7160e01b85526022600452602485fd5b8080156129f05760018114612a0157612a2e565b60ff19851688528388019550612a2e565b60008b81526020902060005b85811015612a265781548a820152908401908801612a0d565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612a71608083018461294f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ab357835183529284019291840191600101612a97565b50909695505050505050565b602081526000611809602083018461294f565b60008219821115612ae557612ae5612bca565b500190565b600082612af957612af9612be0565b500490565b6000816000190483118215151615612b1857612b18612bca565b500290565b600082821015612b2f57612b2f612bca565b500390565b60005b83811015612b4f578181015183820152602001612b37565b838111156116535750506000910152565b600181811c90821680612b7457607f821691505b60208210811415612b9557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612baf57612baf612bca565b5060010190565b600082612bc557612bc5612be0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e6f57600080fdfea2646970667358221220f992851f8acebd5f34c408e4a9117ea9766f8764482847c2420e82d1ac1b8fd864736f6c63430008070033

Deployed Bytecode Sourcemap

37759:4564:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25244:305;;;;;;;;;;-1:-1:-1;25244:305:0;;;;;:::i;:::-;;:::i;:::-;;;8988:14:1;;8981:22;8963:41;;8951:2;8936:18;25244:305:0;;;;;;;;26189:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27748:221::-;;;;;;;;;;-1:-1:-1;27748:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7603:55:1;;;7585:74;;7573:2;7558:18;27748:221:0;7439:226:1;27271:411:0;;;;;;;;;;-1:-1:-1;27271:411:0;;;;;:::i;:::-;;:::i;:::-;;38028:33;;;;;;;;;;;;;;;;;;;17920:25:1;;;17908:2;17893:18;38028:33:0;17774:177:1;41166:100:0;;;;;;;;;;-1:-1:-1;41166:100:0;;;;;:::i;:::-;;:::i;41272:77::-;;;;;;;;;;-1:-1:-1;41272:77:0;;;;;:::i;:::-;;:::i;38599:89::-;;;;;;;;;;;;;:::i;28498:339::-;;;;;;;;;;-1:-1:-1;28498:339:0;;;;;:::i;:::-;;:::i;41970:247::-;;;;;;;;;;-1:-1:-1;41970:247:0;;;;;:::i;:::-;;:::i;42223:95::-;;;;;;;;;;-1:-1:-1;42223:95:0;;;;;:::i;:::-;;:::i;41355:137::-;;;;;;;;;;;;;:::i;28908:185::-;;;;;;;;;;-1:-1:-1;28908:185:0;;;;;:::i;:::-;;:::i;39478:635::-;;;;;;;;;;-1:-1:-1;39478:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40706:74::-;;;;;;;;;;-1:-1:-1;40706:74:0;;;;;:::i;:::-;;:::i;40922:132::-;;;;;;;;;;-1:-1:-1;40922:132:0;;;;;:::i;:::-;;:::i;38177:28::-;;;;;;;;;;-1:-1:-1;38177:28:0;;;;;;;;;;;37950:33;;;;;;;;;;;;;:::i;38146:26::-;;;;;;;;;;-1:-1:-1;38146:26:0;;;;;;;;37917:28;;;;;;;;;;;;;:::i;25883:239::-;;;;;;;;;;-1:-1:-1;25883:239:0;;;;;:::i;:::-;;:::i;25613:208::-;;;;;;;;;;-1:-1:-1;25613:208:0;;;;;:::i;:::-;;:::i;6232:103::-;;;;;;;;;;;;;:::i;41060:100::-;;;;;;;;;;-1:-1:-1;41060:100:0;;;;;:::i;:::-;;:::i;5581:87::-;;;;;;;;;;-1:-1:-1;5654:6:0;;-1:-1:-1;;;;;5654:6:0;5581:87;;38102:37;;;;;;;;;;;;;;;;26358:104;;;;;;;;;;;;;:::i;38210:34::-;;;;;;;;;;-1:-1:-1;38210:34:0;;;;;;;;;;;38694:615;;;;;;:::i;:::-;;:::i;28041:155::-;;;;;;;;;;-1:-1:-1;28041:155:0;;;;;:::i;:::-;;:::i;37988:31::-;;;;;;;;;;;;;:::i;40786:130::-;;;;;;;;;;-1:-1:-1;40786:130:0;;;;;:::i;:::-;;:::i;29164:328::-;;;;;;;;;;-1:-1:-1;29164:328:0;;;;;:::i;:::-;;:::i;38251:37::-;;;;;;;;;;-1:-1:-1;38251:37:0;;;;;:::i;:::-;;:::i;40119:494::-;;;;;;;;;;-1:-1:-1;40119:494:0;;;;;:::i;:::-;;:::i;38066:31::-;;;;;;;;;;;;;;;;40619:81;;;;;;;;;;-1:-1:-1;40619:81:0;;;;;:::i;:::-;;:::i;28267:164::-;;;;;;;;;;-1:-1:-1;28267:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28388:25:0;;;28364:4;28388:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28267:164;41820:144;;;;;;;;;;-1:-1:-1;41820:144:0;;;;;:::i;:::-;;:::i;39317:155::-;;;;;;;;;;-1:-1:-1;39317:155:0;;;;;:::i;:::-;;:::i;6490:201::-;;;;;;;;;;-1:-1:-1;6490:201:0;;;;;:::i;:::-;;:::i;25244:305::-;25346:4;25383:40;;;25398:25;25383:40;;:105;;-1:-1:-1;25440:48:0;;;25455:33;25440:48;25383:105;:158;;;-1:-1:-1;18137:25:0;18122:40;;;;25505:36;25363:178;25244:305;-1:-1:-1;;25244:305:0:o;26189:100::-;26243:13;26276:5;26269:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26189:100;:::o;27748:221::-;27824:7;31091:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31091:16:0;27844:73;;;;-1:-1:-1;;;27844:73:0;;14104:2:1;27844:73:0;;;14086:21:1;14143:2;14123:18;;;14116:30;14182:34;14162:18;;;14155:62;14253:14;14233:18;;;14226:42;14285:19;;27844:73:0;;;;;;;;;-1:-1:-1;27937:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27937:24:0;;27748:221::o;27271:411::-;27352:13;27368:23;27383:7;27368:14;:23::i;:::-;27352:39;;27416:5;-1:-1:-1;;;;;27410:11:0;:2;-1:-1:-1;;;;;27410:11:0;;;27402:57;;;;-1:-1:-1;;;27402:57:0;;16056:2:1;27402:57:0;;;16038:21:1;16095:2;16075:18;;;16068:30;16134:34;16114:18;;;16107:62;16205:3;16185:18;;;16178:31;16226:19;;27402:57:0;15854:397:1;27402:57:0;4385:10;-1:-1:-1;;;;;27494:21:0;;;;:62;;-1:-1:-1;27519:37:0;27536:5;4385:10;28267:164;:::i;27519:37::-;27472:168;;;;-1:-1:-1;;;27472:168:0;;12497:2:1;27472:168:0;;;12479:21:1;12536:2;12516:18;;;12509:30;12575:34;12555:18;;;12548:62;12646:26;12626:18;;;12619:54;12690:19;;27472:168:0;12295:420:1;27472:168:0;27653:21;27662:2;27666:7;27653:8;:21::i;:::-;27341:341;27271:411;;:::o;41166:100::-;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;14517:2:1;5793:68:0;;;14499:21:1;;;14536:18;;;14529:30;14595:34;14575:18;;;14568:62;14647:18;;5793:68:0;14315:356:1;5793:68:0;41238:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41166:100:::0;:::o;41272:77::-;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;14517:2:1;5793:68:0;;;14499:21:1;;;14536:18;;;14529:30;14595:34;14575:18;;;14568:62;14647:18;;5793:68:0;14315:356:1;5793:68:0;41328:6:::1;:15:::0;;-1:-1:-1;;41328:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41272:77::o;38599:89::-;38643:7;38666:16;:6;1001:14;;909:114;38666:16;38659:23;;38599:89;:::o;28498:339::-;28693:41;4385:10;28726:7;28693:18;:41::i;:::-;28685:103;;;;-1:-1:-1;;;28685:103:0;;16807:2:1;28685:103:0;;;16789:21:1;16846:2;16826:18;;;16819:30;16885:34;16865:18;;;16858:62;16956:19;16936:18;;;16929:47;16993:19;;28685:103:0;16605:413:1;28685:103:0;28801:28;28811:4;28817:2;28821:7;28801:9;:28::i;41970:247::-;42029:4;;42042:151;42065:20;:27;42061:31;;42042:151;;;42141:5;-1:-1:-1;;;;;42114:32:0;:20;42135:1;42114:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;42114:23:0;:32;42110:76;;;-1:-1:-1;42170:4:0;;41970:247;-1:-1:-1;;41970:247:0:o;42110:76::-;42094:3;;;;:::i;:::-;;;;42042:151;;;-1:-1:-1;42206:5:0;;41970:247;-1:-1:-1;;41970:247:0:o;42223:95::-;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;14517:2:1;5793:68:0;;;14499:21:1;;;14536:18;;;14529:30;14595:34;14575:18;;;14568:62;14647:18;;5793:68:0;14315:356:1;5793:68:0;42288:15:::1;:24:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;42223:95::o;41355:137::-;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;14517:2:1;5793:68:0;;;14499:21:1;;;14536:18;;;14529:30;14595:34;14575:18;;;14568:62;14647:18;;5793:68:0;14315:356:1;5793:68:0;41400:7:::1;41421;5654:6:::0;;-1:-1:-1;;;;;5654:6:0;;5581:87;41421:7:::1;-1:-1:-1::0;;;;;41413:21:0::1;41442;41413:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41399:69;;;41483:2;41475:11;;;::::0;::::1;;41392:100;41355:137::o:0;28908:185::-;29046:39;29063:4;29069:2;29073:7;29046:39;;;;;;;;;;;;:16;:39::i;39478:635::-;39553:16;39581:23;39607:17;39617:6;39607:9;:17::i;:::-;39581:43;;39631:30;39678:15;39664:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39664:30:0;-1:-1:-1;39631:63:0;-1:-1:-1;39726:1:0;39701:22;39770:309;39795:15;39777;:33;:64;;;;;39832:9;;39814:14;:27;;39777:64;39770:309;;;39852:25;39880:23;39888:14;39880:7;:23::i;:::-;39852:51;;39939:6;-1:-1:-1;;;;;39918:27:0;:17;-1:-1:-1;;;;;39918:27:0;;39914:131;;;39991:14;39958:13;39972:15;39958:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;40018:17;;;;:::i;:::-;;;;39914:131;40055:16;;;;:::i;:::-;;;;39843:236;39770:309;;;-1:-1:-1;40094:13:0;;39478:635;-1:-1:-1;;;;39478:635:0:o;40706:74::-;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;14517:2:1;5793:68:0;;;14499:21:1;;;14536:18;;;14529:30;14595:34;14575:18;;;14568:62;14647:18;;5793:68:0;14315:356:1;5793:68:0;40762:4:::1;:12:::0;40706:74::o;40922:132::-;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;14517:2:1;5793:68:0;;;14499:21:1;;;14536:18;;;14529:30;14595:34;14575:18;;;14568:62;14647:18;;5793:68:0;14315:356:1;5793:68:0;41010:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;37950:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37917:28::-;;;;;;;:::i;25883:239::-;25955:7;25991:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25991:16:0;26026:19;26018:73;;;;-1:-1:-1;;;26018:73:0;;13333:2:1;26018:73:0;;;13315:21:1;13372:2;13352:18;;;13345:30;13411:34;13391:18;;;13384:62;13482:11;13462:18;;;13455:39;13511:19;;26018:73:0;13131:405:1;25613:208:0;25685:7;-1:-1:-1;;;;;25713:19:0;;25705:74;;;;-1:-1:-1;;;25705:74:0;;12922:2:1;25705:74:0;;;12904:21:1;12961:2;12941:18;;;12934:30;13000:34;12980:18;;;12973:62;13071:12;13051:18;;;13044:40;13101:19;;25705:74:0;12720:406:1;25705:74:0;-1:-1:-1;;;;;;25797:16:0;;;;;:9;:16;;;;;;;25613:208::o;6232:103::-;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;14517:2:1;5793:68:0;;;14499:21:1;;;14536:18;;;14529:30;14595:34;14575:18;;;14568:62;14647:18;;5793:68:0;14315:356:1;5793:68:0;6297:30:::1;6324:1;6297:18;:30::i;:::-;6232:103::o:0;41060:100::-;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;14517:2:1;5793:68:0;;;14499:21:1;;;14536:18;;;14529:30;14595:34;14575:18;;;14568:62;14647:18;;5793:68:0;14315:356:1;5793:68:0;41132:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26358:104::-:0;26414:13;26447:7;26440:14;;;;;:::i;38694:615::-;38759:11;38545:9;;38530:11;38511:16;:6;1001:14;;909:114;38511:16;:30;;;;:::i;:::-;:43;;38503:76;;;;-1:-1:-1;;;38503:76:0;;16458:2:1;38503:76:0;;;16440:21:1;16497:2;16477:18;;;16470:30;16536:22;16516:18;;;16509:50;16576:18;;38503:76:0;16256:344:1;38503:76:0;38779:23:::1;38805:21;38815:10;38805:9;:21::i;:::-;38846:6;::::0;38779:47;;-1:-1:-1;38846:6:0::1;;38845:7;38837:43;;;::::0;-1:-1:-1;;;38837:43:0;;14878:2:1;38837:43:0::1;::::0;::::1;14860:21:1::0;14917:2;14897:18;;;14890:30;14956:25;14936:18;;;14929:53;14999:18;;38837:43:0::1;14676:347:1::0;38837:43:0::1;38909:1;38895:11;:15;:52;;;;;38929:18;;38914:11;:33;;38895:52;38887:85;;;::::0;-1:-1:-1;;;38887:85:0;;10624:2:1;38887:85:0::1;::::0;::::1;10606:21:1::0;10663:2;10643:18;;;10636:30;10702:22;10682:18;;;10675:50;10742:18;;38887:85:0::1;10422:344:1::0;38887:85:0::1;39020:18;::::0;38987:29:::1;39001:15:::0;38987:11;:29:::1;:::i;:::-;:51;;38979:98;;;::::0;-1:-1:-1;;;38979:98:0;;17225:2:1;38979:98:0::1;::::0;::::1;17207:21:1::0;17264:2;17244:18;;;17237:30;17303:34;17283:18;;;17276:62;17374:4;17354:18;;;17347:32;17396:19;;38979:98:0::1;17023:398:1::0;38979:98:0::1;39088:15;::::0;;;::::1;;;:23;;39107:4;39088:23;39084:109;;;39132:25;39146:10;39132:13;:25::i;:::-;39124:61;;;::::0;-1:-1:-1;;;39124:61:0;;12145:2:1;39124:61:0::1;::::0;::::1;12127:21:1::0;12184:2;12164:18;;;12157:30;12223:25;12203:18;;;12196:53;12266:18;;39124:61:0::1;11943:347:1::0;39124:61:0::1;39227:11;39220:4;;:18;;;;:::i;:::-;39207:9;:31;;39199:63;;;::::0;-1:-1:-1;;;39199:63:0;;17628:2:1;39199:63:0::1;::::0;::::1;17610:21:1::0;17667:2;17647:18;;;17640:30;17706:21;17686:18;;;17679:49;17745:18;;39199:63:0::1;17426:343:1::0;39199:63:0::1;39269:34;39279:10;39291:11;39269:9;:34::i;28041:155::-:0;28136:52;4385:10;28169:8;28179;28136:18;:52::i;37988:31::-;;;;;;;:::i;40786:130::-;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;14517:2:1;5793:68:0;;;14499:21:1;;;14536:18;;;14529:30;14595:34;14575:18;;;14568:62;14647:18;;5793:68:0;14315:356:1;5793:68:0;40870:18:::1;:40:::0;40786:130::o;29164:328::-;29339:41;4385:10;29372:7;29339:18;:41::i;:::-;29331:103;;;;-1:-1:-1;;;29331:103:0;;16807:2:1;29331:103:0;;;16789:21:1;16846:2;16826:18;;;16819:30;16885:34;16865:18;;;16858:62;16956:19;16936:18;;;16929:47;16993:19;;29331:103:0;16605:413:1;29331:103:0;29445:39;29459:4;29465:2;29469:7;29478:5;29445:13;:39::i;:::-;29164:328;;;;:::o;38251:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38251:37:0;;-1:-1:-1;38251:37:0;:::o;40119:494::-;31067:4;31091:16;;;:7;:16;;;;;;40218:13;;-1:-1:-1;;;;;31091:16:0;40243:98;;;;-1:-1:-1;;;40243:98:0;;15640:2:1;40243:98:0;;;15622:21:1;15679:2;15659:18;;;15652:30;15718:34;15698:18;;;15691:62;15789:17;15769:18;;;15762:45;15824:19;;40243:98:0;15438:411:1;40243:98:0;40354:8;;;;;;;40350:64;;40389:17;40382:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40119:494;;;:::o;40350:64::-;40422:28;40453:10;:8;:10::i;:::-;40422:41;;40508:1;40483:14;40477:28;:32;:130;;;;;;;;;;;;;;;;;40545:14;40561:19;:8;:17;:19::i;:::-;40582:9;40528:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40477:130;40470:137;40119:494;-1:-1:-1;;;40119:494:0:o;40619:81::-;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;14517:2:1;5793:68:0;;;14499:21:1;;;14536:18;;;14529:30;14595:34;14575:18;;;14568:62;14647:18;;5793:68:0;14315:356:1;5793:68:0;40677:8:::1;:17:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;40619:81::o;41820:144::-;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;14517:2:1;5793:68:0;;;14499:21:1;;;14536:18;;;14529:30;14595:34;14575:18;;;14568:62;14647:18;;5793:68:0;14315:356:1;5793:68:0;41895:27:::1;41902:20;;41895:27;:::i;:::-;41929:29;:20;41952:6:::0;;41929:29:::1;:::i;39317:155::-:0;39403:11;38545:9;;38530:11;38511:16;:6;1001:14;;909:114;38511:16;:30;;;;:::i;:::-;:43;;38503:76;;;;-1:-1:-1;;;38503:76:0;;16458:2:1;38503:76:0;;;16440:21:1;16497:2;16477:18;;;16470:30;16536:22;16516:18;;;16509:50;16576:18;;38503:76:0;16256:344:1;38503:76:0;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23:::1;5793:68;;;::::0;-1:-1:-1;;;5793:68:0;;14517:2:1;5793:68:0::1;::::0;::::1;14499:21:1::0;;;14536:18;;;14529:30;14595:34;14575:18;;;14568:62;14647:18;;5793:68:0::1;14315:356:1::0;5793:68:0::1;39433:33:::2;39443:9;39454:11;39433:9;:33::i;6490:201::-:0;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;14517:2:1;5793:68:0;;;14499:21:1;;;14536:18;;;14529:30;14595:34;14575:18;;;14568:62;14647:18;;5793:68:0;14315:356:1;5793:68:0;-1:-1:-1;;;;;6579:22:0;::::1;6571:73;;;::::0;-1:-1:-1;;;6571:73:0;;9860:2:1;6571:73:0::1;::::0;::::1;9842:21:1::0;9899:2;9879:18;;;9872:30;9938:34;9918:18;;;9911:62;10009:8;9989:18;;;9982:36;10035:19;;6571:73:0::1;9658:402:1::0;6571:73:0::1;6655:28;6674:8;6655:18;:28::i;34984:174::-:0;35059:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;35059:29:0;-1:-1:-1;;;;;35059:29:0;;;;;;;;:24;;35113:23;35059:24;35113:14;:23::i;:::-;-1:-1:-1;;;;;35104:46:0;;;;;;;;;;;34984:174;;:::o;31296:348::-;31389:4;31091:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31091:16:0;31406:73;;;;-1:-1:-1;;;31406:73:0;;11732:2:1;31406:73:0;;;11714:21:1;11771:2;11751:18;;;11744:30;11810:34;11790:18;;;11783:62;11881:14;11861:18;;;11854:42;11913:19;;31406:73:0;11530:408:1;31406:73:0;31490:13;31506:23;31521:7;31506:14;:23::i;:::-;31490:39;;31559:5;-1:-1:-1;;;;;31548:16:0;:7;-1:-1:-1;;;;;31548:16:0;;:51;;;;31592:7;-1:-1:-1;;;;;31568:31:0;:20;31580:7;31568:11;:20::i;:::-;-1:-1:-1;;;;;31568:31:0;;31548:51;:87;;;-1:-1:-1;;;;;;28388:25:0;;;28364:4;28388:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31603:32;31540:96;31296:348;-1:-1:-1;;;;31296:348:0:o;34288:578::-;34447:4;-1:-1:-1;;;;;34420:31:0;:23;34435:7;34420:14;:23::i;:::-;-1:-1:-1;;;;;34420:31:0;;34412:85;;;;-1:-1:-1;;;34412:85:0;;15230:2:1;34412:85:0;;;15212:21:1;15269:2;15249:18;;;15242:30;15308:34;15288:18;;;15281:62;15379:11;15359:18;;;15352:39;15408:19;;34412:85:0;15028:405:1;34412:85:0;-1:-1:-1;;;;;34516:16:0;;34508:65;;;;-1:-1:-1;;;34508:65:0;;10973:2:1;34508:65:0;;;10955:21:1;11012:2;10992:18;;;10985:30;11051:34;11031:18;;;11024:62;11122:6;11102:18;;;11095:34;11146:19;;34508:65:0;10771:400:1;34508:65:0;34690:29;34707:1;34711:7;34690:8;:29::i;:::-;-1:-1:-1;;;;;34732:15:0;;;;;;:9;:15;;;;;:20;;34751:1;;34732:15;:20;;34751:1;;34732:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34763:13:0;;;;;;:9;:13;;;;;:18;;34780:1;;34763:13;:18;;34780:1;;34763:18;:::i;:::-;;;;-1:-1:-1;;34792:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;34792:21:0;-1:-1:-1;;;;;34792:21:0;;;;;;;;;34831:27;;34792:16;;34831:27;;;;;;;34288:578;;;:::o;6851:191::-;6944:6;;;-1:-1:-1;;;;;6961:17:0;;;-1:-1:-1;;6961:17:0;;;;;;;6994:40;;6944:6;;;6961:17;6944:6;;6994:40;;6925:16;;6994:40;6914:128;6851:191;:::o;41498:204::-;41578:9;41573:124;41597:11;41593:1;:15;41573:124;;;41624:18;:6;1120:19;;1138:1;1120:19;;;1031:127;41624:18;41651:38;41661:9;41672:16;:6;1001:14;;909:114;41672:16;41651:9;:38::i;:::-;41610:3;;;;:::i;:::-;;;;41573:124;;35300:315;35455:8;-1:-1:-1;;;;;35446:17:0;:5;-1:-1:-1;;;;;35446:17:0;;;35438:55;;;;-1:-1:-1;;;35438:55:0;;11378:2:1;35438:55:0;;;11360:21:1;11417:2;11397:18;;;11390:30;11456:27;11436:18;;;11429:55;11501:18;;35438:55:0;11176:349:1;35438:55:0;-1:-1:-1;;;;;35504:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35504:46:0;;;;;;;;;;35566:41;;8963::1;;;35566::0;;8936:18:1;35566:41:0;;;;;;;35300:315;;;:::o;30374:::-;30531:28;30541:4;30547:2;30551:7;30531:9;:28::i;:::-;30578:48;30601:4;30607:2;30611:7;30620:5;30578:22;:48::i;:::-;30570:111;;;;-1:-1:-1;;;30570:111:0;;9441:2:1;30570:111:0;;;9423:21:1;9480:2;9460:18;;;9453:30;9519:34;9499:18;;;9492:62;9590:20;9570:18;;;9563:48;9628:19;;30570:111:0;9239:414:1;41708:104:0;41768:13;41797:9;41790:16;;;;;:::i;1867:723::-;1923:13;2144:10;2140:53;;-1:-1:-1;;2171:10:0;;;;;;;;;;;;;;;;;;1867:723::o;2140:53::-;2218:5;2203:12;2259:78;2266:9;;2259:78;;2292:8;;;;:::i;:::-;;-1:-1:-1;2315:10:0;;-1:-1:-1;2323:2:0;2315:10;;:::i;:::-;;;2259:78;;;2347:19;2379:6;2369:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2369:17:0;;2347:39;;2397:154;2404:10;;2397:154;;2431:11;2441:1;2431:11;;:::i;:::-;;-1:-1:-1;2500:10:0;2508:2;2500:5;:10;:::i;:::-;2487:24;;:2;:24;:::i;:::-;2474:39;;2457:6;2464;2457:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;2528:11:0;2537:2;2528:11;;:::i;:::-;;;2397:154;;31986:110;32062:26;32072:2;32076:7;32062:26;;;;;;;;;;;;:9;:26::i;36180:799::-;36335:4;-1:-1:-1;;;;;36356:13:0;;8192:20;8240:8;36352:620;;36392:72;;;;;-1:-1:-1;;;;;36392:36:0;;;;;:72;;4385:10;;36443:4;;36449:7;;36458:5;;36392:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36392:72:0;;;;;;;;-1:-1:-1;;36392:72:0;;;;;;;;;;;;:::i;:::-;;;36388:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36634:13:0;;36630:272;;36677:60;;-1:-1:-1;;;36677:60:0;;9441:2:1;36677:60:0;;;9423:21:1;9480:2;9460:18;;;9453:30;9519:34;9499:18;;;9492:62;9590:20;9570:18;;;9563:48;9628:19;;36677:60:0;9239:414:1;36630:272:0;36852:6;36846:13;36837:6;36833:2;36829:15;36822:38;36388:529;36515:51;;36525:41;36515:51;;-1:-1:-1;36508:58:0;;36352:620;-1:-1:-1;36956:4:0;36180:799;;;;;;:::o;32323:321::-;32453:18;32459:2;32463:7;32453:5;:18::i;:::-;32504:54;32535:1;32539:2;32543:7;32552:5;32504:22;:54::i;:::-;32482:154;;;;-1:-1:-1;;;32482:154:0;;9441:2:1;32482:154:0;;;9423:21:1;9480:2;9460:18;;;9453:30;9519:34;9499:18;;;9492:62;9590:20;9570:18;;;9563:48;9628:19;;32482:154:0;9239:414:1;32980:382:0;-1:-1:-1;;;;;33060:16:0;;33052:61;;;;-1:-1:-1;;;33052:61:0;;13743:2:1;33052:61:0;;;13725:21:1;;;13762:18;;;13755:30;13821:34;13801:18;;;13794:62;13873:18;;33052:61:0;13541:356:1;33052:61:0;31067:4;31091:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31091:16:0;:30;33124:58;;;;-1:-1:-1;;;33124:58:0;;10267:2:1;33124:58:0;;;10249:21:1;10306:2;10286:18;;;10279:30;10345;10325:18;;;10318:58;10393:18;;33124:58:0;10065:352:1;33124:58:0;-1:-1:-1;;;;;33253:13:0;;;;;;:9;:13;;;;;:18;;33270:1;;33253:13;:18;;33270:1;;33253:18;:::i;:::-;;;;-1:-1:-1;;33282:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;33282:21:0;-1:-1:-1;;;;;33282:21:0;;;;;;;;33321:33;;33282:16;;;33321:33;;33282:16;;33321:33;32980:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:690:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;-1:-1:-1;;339:24:1;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:72;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:45;;;591:1;588;581:12;550:45;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;14:690;;;;;:::o;709:196::-;777:20;;-1:-1:-1;;;;;826:54:1;;816:65;;806:93;;895:1;892;885:12;806:93;709:196;;;:::o;910:160::-;975:20;;1031:13;;1024:21;1014:32;;1004:60;;1060:1;1057;1050:12;1075:186;1134:6;1187:2;1175:9;1166:7;1162:23;1158:32;1155:52;;;1203:1;1200;1193:12;1155:52;1226:29;1245:9;1226:29;:::i;1266:260::-;1334:6;1342;1395:2;1383:9;1374:7;1370:23;1366:32;1363:52;;;1411:1;1408;1401:12;1363:52;1434:29;1453:9;1434:29;:::i;:::-;1424:39;;1482:38;1516:2;1505:9;1501:18;1482:38;:::i;:::-;1472:48;;1266:260;;;;;:::o;1531:328::-;1608:6;1616;1624;1677:2;1665:9;1656:7;1652:23;1648:32;1645:52;;;1693:1;1690;1683:12;1645:52;1716:29;1735:9;1716:29;:::i;:::-;1706:39;;1764:38;1798:2;1787:9;1783:18;1764:38;:::i;:::-;1754:48;;1849:2;1838:9;1834:18;1821:32;1811:42;;1531:328;;;;;:::o;1864:666::-;1959:6;1967;1975;1983;2036:3;2024:9;2015:7;2011:23;2007:33;2004:53;;;2053:1;2050;2043:12;2004:53;2076:29;2095:9;2076:29;:::i;:::-;2066:39;;2124:38;2158:2;2147:9;2143:18;2124:38;:::i;:::-;2114:48;;2209:2;2198:9;2194:18;2181:32;2171:42;;2264:2;2253:9;2249:18;2236:32;2291:18;2283:6;2280:30;2277:50;;;2323:1;2320;2313:12;2277:50;2346:22;;2399:4;2391:13;;2387:27;-1:-1:-1;2377:55:1;;2428:1;2425;2418:12;2377:55;2451:73;2516:7;2511:2;2498:16;2493:2;2489;2485:11;2451:73;:::i;:::-;2441:83;;;1864:666;;;;;;;:::o;2535:254::-;2600:6;2608;2661:2;2649:9;2640:7;2636:23;2632:32;2629:52;;;2677:1;2674;2667:12;2629:52;2700:29;2719:9;2700:29;:::i;:::-;2690:39;;2748:35;2779:2;2768:9;2764:18;2748:35;:::i;2794:254::-;2862:6;2870;2923:2;2911:9;2902:7;2898:23;2894:32;2891:52;;;2939:1;2936;2929:12;2891:52;2962:29;2981:9;2962:29;:::i;:::-;2952:39;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2794:254:1:o;3053:615::-;3139:6;3147;3200:2;3188:9;3179:7;3175:23;3171:32;3168:52;;;3216:1;3213;3206:12;3168:52;3256:9;3243:23;3285:18;3326:2;3318:6;3315:14;3312:34;;;3342:1;3339;3332:12;3312:34;3380:6;3369:9;3365:22;3355:32;;3425:7;3418:4;3414:2;3410:13;3406:27;3396:55;;3447:1;3444;3437:12;3396:55;3487:2;3474:16;3513:2;3505:6;3502:14;3499:34;;;3529:1;3526;3519:12;3499:34;3582:7;3577:2;3567:6;3564:1;3560:14;3556:2;3552:23;3548:32;3545:45;3542:65;;;3603:1;3600;3593:12;3542:65;3634:2;3626:11;;;;;3656:6;;-1:-1:-1;3053:615:1;;-1:-1:-1;;;;3053:615:1:o;3673:180::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3821:26;3837:9;3821:26;:::i;3858:245::-;3916:6;3969:2;3957:9;3948:7;3944:23;3940:32;3937:52;;;3985:1;3982;3975:12;3937:52;4024:9;4011:23;4043:30;4067:5;4043:30;:::i;4108:249::-;4177:6;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4278:9;4272:16;4297:30;4321:5;4297:30;:::i;4362:450::-;4431:6;4484:2;4472:9;4463:7;4459:23;4455:32;4452:52;;;4500:1;4497;4490:12;4452:52;4540:9;4527:23;4573:18;4565:6;4562:30;4559:50;;;4605:1;4602;4595:12;4559:50;4628:22;;4681:4;4673:13;;4669:27;-1:-1:-1;4659:55:1;;4710:1;4707;4700:12;4659:55;4733:73;4798:7;4793:2;4780:16;4775:2;4771;4767:11;4733:73;:::i;4817:180::-;4876:6;4929:2;4917:9;4908:7;4904:23;4900:32;4897:52;;;4945:1;4942;4935:12;4897:52;-1:-1:-1;4968:23:1;;4817:180;-1:-1:-1;4817:180:1:o;5002:254::-;5070:6;5078;5131:2;5119:9;5110:7;5106:23;5102:32;5099:52;;;5147:1;5144;5137:12;5099:52;5183:9;5170:23;5160:33;;5212:38;5246:2;5235:9;5231:18;5212:38;:::i;5261:316::-;5302:3;5340:5;5334:12;5367:6;5362:3;5355:19;5383:63;5439:6;5432:4;5427:3;5423:14;5416:4;5409:5;5405:16;5383:63;:::i;:::-;5491:2;5479:15;-1:-1:-1;;5475:88:1;5466:98;;;;5566:4;5462:109;;5261:316;-1:-1:-1;;5261:316:1:o;5582:1642::-;5806:3;5844:6;5838:13;5870:4;5883:51;5927:6;5922:3;5917:2;5909:6;5905:15;5883:51;:::i;:::-;5997:13;;5956:16;;;;6019:55;5997:13;5956:16;6041:15;;;6019:55;:::i;:::-;6163:13;;6096:20;;;6136:1;;6223;6245:18;;;;6298;;;;6325:93;;6403:4;6393:8;6389:19;6377:31;;6325:93;6466:2;6456:8;6453:16;6433:18;6430:40;6427:224;;;-1:-1:-1;;;6500:3:1;6493:90;6606:4;6603:1;6596:15;6636:4;6631:3;6624:17;6427:224;6667:18;6694:168;;;;6876:1;6871:328;;;;6660:539;;6694:168;-1:-1:-1;;6733:9:1;6729:82;6722:5;6715:97;6843:8;6836:5;6832:20;6825:27;;6694:168;;6871:328;18029:1;18022:14;;;18066:4;18053:18;;6966:1;6980:169;6994:8;6991:1;6988:15;6980:169;;;7076:14;;7061:13;;;7054:37;7119:16;;;;7011:10;;6980:169;;;6984:3;;7180:8;7173:5;7169:20;7162:27;;6660:539;-1:-1:-1;7215:3:1;;5582:1642;-1:-1:-1;;;;;;;;;;;5582:1642:1:o;7670:511::-;7864:4;-1:-1:-1;;;;;7974:2:1;7966:6;7962:15;7951:9;7944:34;8026:2;8018:6;8014:15;8009:2;7998:9;7994:18;7987:43;;8066:6;8061:2;8050:9;8046:18;8039:34;8109:3;8104:2;8093:9;8089:18;8082:31;8130:45;8170:3;8159:9;8155:19;8147:6;8130:45;:::i;:::-;8122:53;7670:511;-1:-1:-1;;;;;;7670:511:1:o;8186:632::-;8357:2;8409:21;;;8479:13;;8382:18;;;8501:22;;;8328:4;;8357:2;8580:15;;;;8554:2;8539:18;;;8328:4;8623:169;8637:6;8634:1;8631:13;8623:169;;;8698:13;;8686:26;;8767:15;;;;8732:12;;;;8659:1;8652:9;8623:169;;;-1:-1:-1;8809:3:1;;8186:632;-1:-1:-1;;;;;;8186:632:1:o;9015:219::-;9164:2;9153:9;9146:21;9127:4;9184:44;9224:2;9213:9;9209:18;9201:6;9184:44;:::i;18082:128::-;18122:3;18153:1;18149:6;18146:1;18143:13;18140:39;;;18159:18;;:::i;:::-;-1:-1:-1;18195:9:1;;18082:128::o;18215:120::-;18255:1;18281;18271:35;;18286:18;;:::i;:::-;-1:-1:-1;18320:9:1;;18215:120::o;18340:228::-;18380:7;18506:1;-1:-1:-1;;18434:74:1;18431:1;18428:81;18423:1;18416:9;18409:17;18405:105;18402:131;;;18513:18;;:::i;:::-;-1:-1:-1;18553:9:1;;18340:228::o;18573:125::-;18613:4;18641:1;18638;18635:8;18632:34;;;18646:18;;:::i;:::-;-1:-1:-1;18683:9:1;;18573:125::o;18703:258::-;18775:1;18785:113;18799:6;18796:1;18793:13;18785:113;;;18875:11;;;18869:18;18856:11;;;18849:39;18821:2;18814:10;18785:113;;;18916:6;18913:1;18910:13;18907:48;;;-1:-1:-1;;18951:1:1;18933:16;;18926:27;18703:258::o;18966:437::-;19045:1;19041:12;;;;19088;;;19109:61;;19163:4;19155:6;19151:17;19141:27;;19109:61;19216:2;19208:6;19205:14;19185:18;19182:38;19179:218;;;-1:-1:-1;;;19250:1:1;19243:88;19354:4;19351:1;19344:15;19382:4;19379:1;19372:15;19179:218;;18966:437;;;:::o;19408:195::-;19447:3;-1:-1:-1;;19471:5:1;19468:77;19465:103;;;19548:18;;:::i;:::-;-1:-1:-1;19595:1:1;19584:13;;19408:195::o;19608:112::-;19640:1;19666;19656:35;;19671:18;;:::i;:::-;-1:-1:-1;19705:9:1;;19608:112::o;19725:184::-;-1:-1:-1;;;19774:1:1;19767:88;19874:4;19871:1;19864:15;19898:4;19895:1;19888:15;19914:184;-1:-1:-1;;;19963:1:1;19956:88;20063:4;20060:1;20053:15;20087:4;20084:1;20077:15;20103:184;-1:-1:-1;;;20152:1:1;20145:88;20252:4;20249:1;20242:15;20276:4;20273:1;20266:15;20292:184;-1:-1:-1;;;20341:1:1;20334:88;20441:4;20438:1;20431:15;20465:4;20462:1;20455:15;20481:177;20566:66;20559:5;20555:78;20548:5;20545:89;20535:117;;20648:1;20645;20638:12

Swarm Source

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