ETH Price: $3,165.16 (+1.45%)
Gas: 1 Gwei

Token

CoolAmongUs (CAU)
 

Overview

Max Total Supply

2,929 CAU

Holders

529

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
p1ckle.eth
Balance
100 CAU
0x3e4fbaa149c7a03ec73bef6e62b4fe3183a640ba
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:
CoolAmongUs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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: amongus.sol




 
 /*

============================================== COOLAMONGUS.CLUB ==============================================
*/                                                                                                         



pragma solidity ^0.8.0;




/**
 * @title among us
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
                                                                                                     
                                                                                            

 contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}
 
contract CoolAmongUs is ERC721, Ownable {

    bool public saleIsActive = false;
    string private _baseURIextended = "https://coolamongus.s3.us-west-1.amazonaws.com/metadata/coolamongus-metadata-";

    uint256 public Price = 0.015 ether;
	uint public maxPerTx =10;
	uint public maxFreeMintPerWallet = 20;
	uint public amountAvailableFreeMint = 2000;
	uint public maxSupply = 5555;
	address proxyRegistryAddress ; 
	mapping(address => uint) public addressFreeMinted;
	
	
	

    using Counters for Counters.Counter;
    Counters.Counter private _tokenSupply;



    constructor() ERC721("CoolAmongUs", "CAU") {
    }

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

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    // function isSaleActive() external view returns (bool) {
    //     return saleIsActive;
    // }

    function setPrice(uint256 newPrice) public onlyOwner {
        Price = newPrice;
    }

    // rinkeby: 0xf57b2c51ded3a29e6891aba85459d600256cf317
    // mainnet: 0xa5409ec958c83c3f309868babaca7c86dcb077c1
    function setProxyRegistryAddress(address proxyAddress) external onlyOwner {
        proxyRegistryAddress = proxyAddress;
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function mint(uint numberOfTokens) external payable {
        require(saleIsActive, "Sale is inactive.");
        require(numberOfTokens <= maxPerTx, "You can only mint 10 at a time.");
        require(_tokenSupply.current() + numberOfTokens <= maxSupply, "Purchase would exceed max supply of tokens");
        
        if (_tokenSupply.current() + numberOfTokens > amountAvailableFreeMint) {
            require((Price * numberOfTokens) <= msg.value, "Don't send under (in ETH).");
        } else {
			require(msg.value == 0, "Don't send ether for the free mint.");
			require(addressFreeMinted[msg.sender] < maxFreeMintPerWallet, "You can only adopt 20 free CAU per wallet. Wait for the paid adoption.");
		}
		
		addressFreeMinted[msg.sender] += numberOfTokens;
        for(uint i = 0; i < numberOfTokens; i++) {
		  uint256 _tokenId = _tokenSupply.current() + 1;
            _safeMint(msg.sender, _tokenId);
            _tokenSupply.increment();
        }
    }

     function gift(address _to) external onlyOwner {
        uint256 _tokenId = _tokenSupply.current() + 1;
        _safeMint(_to, _tokenId);
        _tokenSupply.increment();
    }

    function withdraw() public onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    // function withdraw() public onlyOwner {
    //     uint256 balance = address(this).balance;
    //     Address.sendValue(shareholderAddress, balance);
    // }

}

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":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountAvailableFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","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":"supply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6006805460ff60a01b19169055610100604052604d6080818152906200224c60a0398051620000379160079160209091019062000144565b5066354a6ba7a18000600855600a6009556014600a556107d0600b556115b3600c553480156200006657600080fd5b50604080518082018252600b81526a436f6f6c416d6f6e67557360a81b60208083019182528351808501909452600384526243415560e81b908401528151919291620000b59160009162000144565b508051620000cb90600190602084019062000144565b505050620000e8620000e2620000ee60201b60201c565b620000f2565b62000227565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015290620001ea565b90600052602060002090601f016020900481019282620001765760008555620001c1565b82601f106200019157805160ff1916838001178555620001c1565b82800160010185558215620001c1579182015b82811115620001c1578251825591602001919060010190620001a4565b50620001cf929150620001d3565b5090565b5b80821115620001cf5760008155600101620001d4565b600181811c90821680620001ff57607f821691505b602082108114156200022157634e487b7160e01b600052602260045260246000fd5b50919050565b61201580620002376000396000f3fe6080604052600436106101d85760003560e01c806395d89b4111610102578063c87b56dd11610095578063e985e9c511610064578063e985e9c514610526578063eb8d244414610546578063f2fde38b14610567578063f968adbe1461058757600080fd5b8063c87b56dd146104b0578063cbfc4bce146104d0578063d26ea6c0146104f0578063d5abeb011461051057600080fd5b8063b2e3ef2c116100d1578063b2e3ef2c1461042d578063b88d4fde1461045a578063c012079a1461047a578063c4e370951461049057600080fd5b806395d89b41146103cf5780639dfde201146103e4578063a0712d68146103fa578063a22cb4651461040d57600080fd5b806342842e0e1161017a578063715018a611610149578063715018a614610366578063845bb3bb1461037b5780638da5cb5b1461039157806391b7f5ed146103af57600080fd5b806342842e0e146102e657806355f804b3146103065780636352211e1461032657806370a082311461034657600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102b15780633ccfd60b146102d157600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611c28565b61059d565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105ef565b6040516102099190611d79565b34801561024057600080fd5b5061025461024f366004611cc8565b610681565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611be1565b61071b565b005b34801561029a57600080fd5b506102a3610831565b604051908152602001610209565b3480156102bd57600080fd5b5061028c6102cc366004611aeb565b610841565b3480156102dd57600080fd5b5061028c610872565b3480156102f257600080fd5b5061028c610301366004611aeb565b61095d565b34801561031257600080fd5b5061028c610321366004611c7f565b610978565b34801561033257600080fd5b50610254610341366004611cc8565b6109b9565b34801561035257600080fd5b506102a3610361366004611a95565b610a30565b34801561037257600080fd5b5061028c610ab7565b34801561038757600080fd5b506102a3600a5481565b34801561039d57600080fd5b506006546001600160a01b0316610254565b3480156103bb57600080fd5b5061028c6103ca366004611cc8565b610aed565b3480156103db57600080fd5b50610227610b1c565b3480156103f057600080fd5b506102a360085481565b61028c610408366004611cc8565b610b2b565b34801561041957600080fd5b5061028c610428366004611bac565b610e23565b34801561043957600080fd5b506102a3610448366004611a95565b600e6020526000908152604090205481565b34801561046657600080fd5b5061028c610475366004611b2c565b610e2e565b34801561048657600080fd5b506102a3600b5481565b34801561049c57600080fd5b5061028c6104ab366004611c0d565b610e66565b3480156104bc57600080fd5b506102276104cb366004611cc8565b610eae565b3480156104dc57600080fd5b5061028c6104eb366004611a95565b610f89565b3480156104fc57600080fd5b5061028c61050b366004611a95565b610fe3565b34801561051c57600080fd5b506102a3600c5481565b34801561053257600080fd5b506101fd610541366004611ab2565b61102f565b34801561055257600080fd5b506006546101fd90600160a01b900460ff1681565b34801561057357600080fd5b5061028c610582366004611a95565b6110ff565b34801561059357600080fd5b506102a360095481565b60006001600160e01b031982166380ac58cd60e01b14806105ce57506001600160e01b03198216635b5e139f60e01b145b806105e957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105fe90611ef2565b80601f016020809104026020016040519081016040528092919081815260200182805461062a90611ef2565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ff5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610726826109b9565b9050806001600160a01b0316836001600160a01b031614156107945760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f6565b336001600160a01b03821614806107b057506107b0813361102f565b6108225760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f6565b61082c8383611197565b505050565b600061083c600f5490565b905090565b61084b3382611205565b6108675760405162461bcd60e51b81526004016106f690611e13565b61082c8383836112d4565b6006546001600160a01b0316331461089c5760405162461bcd60e51b81526004016106f690611dde565b604051600090339047908381818185875af1925050503d80600081146108de576040519150601f19603f3d011682016040523d82523d6000602084013e6108e3565b606091505b505090508061095a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106f6565b50565b61082c83838360405180602001604052806000815250610e2e565b6006546001600160a01b031633146109a25760405162461bcd60e51b81526004016106f690611dde565b80516109b5906007906020840190611971565b5050565b6000818152600260205260408120546001600160a01b0316806105e95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106f6565b60006001600160a01b038216610a9b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f6565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ae15760405162461bcd60e51b81526004016106f690611dde565b610aeb6000611474565b565b6006546001600160a01b03163314610b175760405162461bcd60e51b81526004016106f690611dde565b600855565b6060600180546105fe90611ef2565b600654600160a01b900460ff16610b785760405162461bcd60e51b815260206004820152601160248201527029b0b6329034b99034b730b1ba34bb329760791b60448201526064016106f6565b600954811115610bca5760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e206f6e6c79206d696e7420313020617420612074696d652e0060448201526064016106f6565b600c5481610bd7600f5490565b610be19190611e64565b1115610c425760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b60648201526084016106f6565b600b5481610c4f600f5490565b610c599190611e64565b1115610cc1573481600854610c6e9190611e90565b1115610cbc5760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e00000000000060448201526064016106f6565b610db0565b3415610d1b5760405162461bcd60e51b815260206004820152602360248201527f446f6e27742073656e6420657468657220666f72207468652066726565206d69604482015262373a1760e91b60648201526084016106f6565b600a54336000908152600e602052604090205410610db05760405162461bcd60e51b815260206004820152604660248201527f596f752063616e206f6e6c792061646f7074203230206672656520434155207060448201527f65722077616c6c65742e205761697420666f722074686520706169642061646f606482015265383a34b7b71760d11b608482015260a4016106f6565b336000908152600e602052604081208054839290610dcf908490611e64565b90915550600090505b818110156109b5576000610deb600f5490565b610df6906001611e64565b9050610e0233826114c6565b610e10600f80546001019055565b5080610e1b81611f2d565b915050610dd8565b6109b53383836114e0565b610e383383611205565b610e545760405162461bcd60e51b81526004016106f690611e13565b610e60848484846115af565b50505050565b6006546001600160a01b03163314610e905760405162461bcd60e51b81526004016106f690611dde565b60068054911515600160a01b0260ff60a01b19909216919091179055565b6000818152600260205260409020546060906001600160a01b0316610f2d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f6565b6000610f376115e2565b90506000815111610f575760405180602001604052806000815250610f82565b80610f61846115f1565b604051602001610f72929190611d0d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610fb35760405162461bcd60e51b81526004016106f690611dde565b6000610fbe600f5490565b610fc9906001611e64565b9050610fd582826114c6565b6109b5600f80546001019055565b6006546001600160a01b0316331461100d5760405162461bcd60e51b81526004016106f690611dde565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600d5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561107c57600080fd5b505afa158015611090573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b49190611c62565b6001600160a01b031614156110cd5760019150506105e9565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b031633146111295760405162461bcd60e51b81526004016106f690611dde565b6001600160a01b03811661118e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f6565b61095a81611474565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111cc826109b9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661127e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f6565b6000611289836109b9565b9050806001600160a01b0316846001600160a01b031614806112c45750836001600160a01b03166112b984610681565b6001600160a01b0316145b806110f757506110f7818561102f565b826001600160a01b03166112e7826109b9565b6001600160a01b03161461134f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f6565b6001600160a01b0382166113b15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f6565b6113bc600082611197565b6001600160a01b03831660009081526003602052604081208054600192906113e5908490611eaf565b90915550506001600160a01b0382166000908152600360205260408120805460019290611413908490611e64565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109b58282604051806020016040528060008152506116ef565b816001600160a01b0316836001600160a01b031614156115425760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115ba8484846112d4565b6115c684848484611722565b610e605760405162461bcd60e51b81526004016106f690611d8c565b6060600780546105fe90611ef2565b6060816116155750506040805180820190915260018152600360fc1b602082015290565b8160005b811561163f578061162981611f2d565b91506116389050600a83611e7c565b9150611619565b60008167ffffffffffffffff81111561165a5761165a611f9e565b6040519080825280601f01601f191660200182016040528015611684576020820181803683370190505b5090505b84156110f757611699600183611eaf565b91506116a6600a86611f48565b6116b1906030611e64565b60f81b8183815181106116c6576116c6611f88565b60200101906001600160f81b031916908160001a9053506116e8600a86611e7c565b9450611688565b6116f9838361182f565b6117066000848484611722565b61082c5760405162461bcd60e51b81526004016106f690611d8c565b60006001600160a01b0384163b1561182457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611766903390899088908890600401611d3c565b602060405180830381600087803b15801561178057600080fd5b505af19250505080156117b0575060408051601f3d908101601f191682019092526117ad91810190611c45565b60015b61180a573d8080156117de576040519150601f19603f3d011682016040523d82523d6000602084013e6117e3565b606091505b5080516118025760405162461bcd60e51b81526004016106f690611d8c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110f7565b506001949350505050565b6001600160a01b0382166118855760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f6565b6000818152600260205260409020546001600160a01b0316156118ea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f6565b6001600160a01b0382166000908152600360205260408120805460019290611913908490611e64565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461197d90611ef2565b90600052602060002090601f01602090048101928261199f57600085556119e5565b82601f106119b857805160ff19168380011785556119e5565b828001600101855582156119e5579182015b828111156119e55782518255916020019190600101906119ca565b506119f19291506119f5565b5090565b5b808211156119f157600081556001016119f6565b600067ffffffffffffffff80841115611a2557611a25611f9e565b604051601f8501601f19908116603f01168101908282118183101715611a4d57611a4d611f9e565b81604052809350858152868686011115611a6657600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611a9057600080fd5b919050565b600060208284031215611aa757600080fd5b8135610f8281611fb4565b60008060408385031215611ac557600080fd5b8235611ad081611fb4565b91506020830135611ae081611fb4565b809150509250929050565b600080600060608486031215611b0057600080fd5b8335611b0b81611fb4565b92506020840135611b1b81611fb4565b929592945050506040919091013590565b60008060008060808587031215611b4257600080fd5b8435611b4d81611fb4565b93506020850135611b5d81611fb4565b925060408501359150606085013567ffffffffffffffff811115611b8057600080fd5b8501601f81018713611b9157600080fd5b611ba087823560208401611a0a565b91505092959194509250565b60008060408385031215611bbf57600080fd5b8235611bca81611fb4565b9150611bd860208401611a80565b90509250929050565b60008060408385031215611bf457600080fd5b8235611bff81611fb4565b946020939093013593505050565b600060208284031215611c1f57600080fd5b610f8282611a80565b600060208284031215611c3a57600080fd5b8135610f8281611fc9565b600060208284031215611c5757600080fd5b8151610f8281611fc9565b600060208284031215611c7457600080fd5b8151610f8281611fb4565b600060208284031215611c9157600080fd5b813567ffffffffffffffff811115611ca857600080fd5b8201601f81018413611cb957600080fd5b6110f784823560208401611a0a565b600060208284031215611cda57600080fd5b5035919050565b60008151808452611cf9816020860160208601611ec6565b601f01601f19169290920160200192915050565b60008351611d1f818460208801611ec6565b835190830190611d33818360208801611ec6565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d6f90830184611ce1565b9695505050505050565b602081526000610f826020830184611ce1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e7757611e77611f5c565b500190565b600082611e8b57611e8b611f72565b500490565b6000816000190483118215151615611eaa57611eaa611f5c565b500290565b600082821015611ec157611ec1611f5c565b500390565b60005b83811015611ee1578181015183820152602001611ec9565b83811115610e605750506000910152565b600181811c90821680611f0657607f821691505b60208210811415611f2757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f4157611f41611f5c565b5060010190565b600082611f5757611f57611f72565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461095a57600080fd5b6001600160e01b03198116811461095a57600080fdfea264697066735822122007f88b298c48be611601cb25adb321dd82372043a05f5222dde77a3756ca0a3a64736f6c6343000807003368747470733a2f2f636f6f6c616d6f6e6775732e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6d657461646174612f636f6f6c616d6f6e6775732d6d657461646174612d

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806395d89b4111610102578063c87b56dd11610095578063e985e9c511610064578063e985e9c514610526578063eb8d244414610546578063f2fde38b14610567578063f968adbe1461058757600080fd5b8063c87b56dd146104b0578063cbfc4bce146104d0578063d26ea6c0146104f0578063d5abeb011461051057600080fd5b8063b2e3ef2c116100d1578063b2e3ef2c1461042d578063b88d4fde1461045a578063c012079a1461047a578063c4e370951461049057600080fd5b806395d89b41146103cf5780639dfde201146103e4578063a0712d68146103fa578063a22cb4651461040d57600080fd5b806342842e0e1161017a578063715018a611610149578063715018a614610366578063845bb3bb1461037b5780638da5cb5b1461039157806391b7f5ed146103af57600080fd5b806342842e0e146102e657806355f804b3146103065780636352211e1461032657806370a082311461034657600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102b15780633ccfd60b146102d157600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611c28565b61059d565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105ef565b6040516102099190611d79565b34801561024057600080fd5b5061025461024f366004611cc8565b610681565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611be1565b61071b565b005b34801561029a57600080fd5b506102a3610831565b604051908152602001610209565b3480156102bd57600080fd5b5061028c6102cc366004611aeb565b610841565b3480156102dd57600080fd5b5061028c610872565b3480156102f257600080fd5b5061028c610301366004611aeb565b61095d565b34801561031257600080fd5b5061028c610321366004611c7f565b610978565b34801561033257600080fd5b50610254610341366004611cc8565b6109b9565b34801561035257600080fd5b506102a3610361366004611a95565b610a30565b34801561037257600080fd5b5061028c610ab7565b34801561038757600080fd5b506102a3600a5481565b34801561039d57600080fd5b506006546001600160a01b0316610254565b3480156103bb57600080fd5b5061028c6103ca366004611cc8565b610aed565b3480156103db57600080fd5b50610227610b1c565b3480156103f057600080fd5b506102a360085481565b61028c610408366004611cc8565b610b2b565b34801561041957600080fd5b5061028c610428366004611bac565b610e23565b34801561043957600080fd5b506102a3610448366004611a95565b600e6020526000908152604090205481565b34801561046657600080fd5b5061028c610475366004611b2c565b610e2e565b34801561048657600080fd5b506102a3600b5481565b34801561049c57600080fd5b5061028c6104ab366004611c0d565b610e66565b3480156104bc57600080fd5b506102276104cb366004611cc8565b610eae565b3480156104dc57600080fd5b5061028c6104eb366004611a95565b610f89565b3480156104fc57600080fd5b5061028c61050b366004611a95565b610fe3565b34801561051c57600080fd5b506102a3600c5481565b34801561053257600080fd5b506101fd610541366004611ab2565b61102f565b34801561055257600080fd5b506006546101fd90600160a01b900460ff1681565b34801561057357600080fd5b5061028c610582366004611a95565b6110ff565b34801561059357600080fd5b506102a360095481565b60006001600160e01b031982166380ac58cd60e01b14806105ce57506001600160e01b03198216635b5e139f60e01b145b806105e957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105fe90611ef2565b80601f016020809104026020016040519081016040528092919081815260200182805461062a90611ef2565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ff5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610726826109b9565b9050806001600160a01b0316836001600160a01b031614156107945760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f6565b336001600160a01b03821614806107b057506107b0813361102f565b6108225760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f6565b61082c8383611197565b505050565b600061083c600f5490565b905090565b61084b3382611205565b6108675760405162461bcd60e51b81526004016106f690611e13565b61082c8383836112d4565b6006546001600160a01b0316331461089c5760405162461bcd60e51b81526004016106f690611dde565b604051600090339047908381818185875af1925050503d80600081146108de576040519150601f19603f3d011682016040523d82523d6000602084013e6108e3565b606091505b505090508061095a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106f6565b50565b61082c83838360405180602001604052806000815250610e2e565b6006546001600160a01b031633146109a25760405162461bcd60e51b81526004016106f690611dde565b80516109b5906007906020840190611971565b5050565b6000818152600260205260408120546001600160a01b0316806105e95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106f6565b60006001600160a01b038216610a9b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f6565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ae15760405162461bcd60e51b81526004016106f690611dde565b610aeb6000611474565b565b6006546001600160a01b03163314610b175760405162461bcd60e51b81526004016106f690611dde565b600855565b6060600180546105fe90611ef2565b600654600160a01b900460ff16610b785760405162461bcd60e51b815260206004820152601160248201527029b0b6329034b99034b730b1ba34bb329760791b60448201526064016106f6565b600954811115610bca5760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e206f6e6c79206d696e7420313020617420612074696d652e0060448201526064016106f6565b600c5481610bd7600f5490565b610be19190611e64565b1115610c425760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b60648201526084016106f6565b600b5481610c4f600f5490565b610c599190611e64565b1115610cc1573481600854610c6e9190611e90565b1115610cbc5760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e00000000000060448201526064016106f6565b610db0565b3415610d1b5760405162461bcd60e51b815260206004820152602360248201527f446f6e27742073656e6420657468657220666f72207468652066726565206d69604482015262373a1760e91b60648201526084016106f6565b600a54336000908152600e602052604090205410610db05760405162461bcd60e51b815260206004820152604660248201527f596f752063616e206f6e6c792061646f7074203230206672656520434155207060448201527f65722077616c6c65742e205761697420666f722074686520706169642061646f606482015265383a34b7b71760d11b608482015260a4016106f6565b336000908152600e602052604081208054839290610dcf908490611e64565b90915550600090505b818110156109b5576000610deb600f5490565b610df6906001611e64565b9050610e0233826114c6565b610e10600f80546001019055565b5080610e1b81611f2d565b915050610dd8565b6109b53383836114e0565b610e383383611205565b610e545760405162461bcd60e51b81526004016106f690611e13565b610e60848484846115af565b50505050565b6006546001600160a01b03163314610e905760405162461bcd60e51b81526004016106f690611dde565b60068054911515600160a01b0260ff60a01b19909216919091179055565b6000818152600260205260409020546060906001600160a01b0316610f2d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f6565b6000610f376115e2565b90506000815111610f575760405180602001604052806000815250610f82565b80610f61846115f1565b604051602001610f72929190611d0d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610fb35760405162461bcd60e51b81526004016106f690611dde565b6000610fbe600f5490565b610fc9906001611e64565b9050610fd582826114c6565b6109b5600f80546001019055565b6006546001600160a01b0316331461100d5760405162461bcd60e51b81526004016106f690611dde565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600d5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561107c57600080fd5b505afa158015611090573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b49190611c62565b6001600160a01b031614156110cd5760019150506105e9565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b031633146111295760405162461bcd60e51b81526004016106f690611dde565b6001600160a01b03811661118e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f6565b61095a81611474565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111cc826109b9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661127e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f6565b6000611289836109b9565b9050806001600160a01b0316846001600160a01b031614806112c45750836001600160a01b03166112b984610681565b6001600160a01b0316145b806110f757506110f7818561102f565b826001600160a01b03166112e7826109b9565b6001600160a01b03161461134f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f6565b6001600160a01b0382166113b15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f6565b6113bc600082611197565b6001600160a01b03831660009081526003602052604081208054600192906113e5908490611eaf565b90915550506001600160a01b0382166000908152600360205260408120805460019290611413908490611e64565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109b58282604051806020016040528060008152506116ef565b816001600160a01b0316836001600160a01b031614156115425760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115ba8484846112d4565b6115c684848484611722565b610e605760405162461bcd60e51b81526004016106f690611d8c565b6060600780546105fe90611ef2565b6060816116155750506040805180820190915260018152600360fc1b602082015290565b8160005b811561163f578061162981611f2d565b91506116389050600a83611e7c565b9150611619565b60008167ffffffffffffffff81111561165a5761165a611f9e565b6040519080825280601f01601f191660200182016040528015611684576020820181803683370190505b5090505b84156110f757611699600183611eaf565b91506116a6600a86611f48565b6116b1906030611e64565b60f81b8183815181106116c6576116c6611f88565b60200101906001600160f81b031916908160001a9053506116e8600a86611e7c565b9450611688565b6116f9838361182f565b6117066000848484611722565b61082c5760405162461bcd60e51b81526004016106f690611d8c565b60006001600160a01b0384163b1561182457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611766903390899088908890600401611d3c565b602060405180830381600087803b15801561178057600080fd5b505af19250505080156117b0575060408051601f3d908101601f191682019092526117ad91810190611c45565b60015b61180a573d8080156117de576040519150601f19603f3d011682016040523d82523d6000602084013e6117e3565b606091505b5080516118025760405162461bcd60e51b81526004016106f690611d8c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110f7565b506001949350505050565b6001600160a01b0382166118855760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f6565b6000818152600260205260409020546001600160a01b0316156118ea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f6565b6001600160a01b0382166000908152600360205260408120805460019290611913908490611e64565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461197d90611ef2565b90600052602060002090601f01602090048101928261199f57600085556119e5565b82601f106119b857805160ff19168380011785556119e5565b828001600101855582156119e5579182015b828111156119e55782518255916020019190600101906119ca565b506119f19291506119f5565b5090565b5b808211156119f157600081556001016119f6565b600067ffffffffffffffff80841115611a2557611a25611f9e565b604051601f8501601f19908116603f01168101908282118183101715611a4d57611a4d611f9e565b81604052809350858152868686011115611a6657600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611a9057600080fd5b919050565b600060208284031215611aa757600080fd5b8135610f8281611fb4565b60008060408385031215611ac557600080fd5b8235611ad081611fb4565b91506020830135611ae081611fb4565b809150509250929050565b600080600060608486031215611b0057600080fd5b8335611b0b81611fb4565b92506020840135611b1b81611fb4565b929592945050506040919091013590565b60008060008060808587031215611b4257600080fd5b8435611b4d81611fb4565b93506020850135611b5d81611fb4565b925060408501359150606085013567ffffffffffffffff811115611b8057600080fd5b8501601f81018713611b9157600080fd5b611ba087823560208401611a0a565b91505092959194509250565b60008060408385031215611bbf57600080fd5b8235611bca81611fb4565b9150611bd860208401611a80565b90509250929050565b60008060408385031215611bf457600080fd5b8235611bff81611fb4565b946020939093013593505050565b600060208284031215611c1f57600080fd5b610f8282611a80565b600060208284031215611c3a57600080fd5b8135610f8281611fc9565b600060208284031215611c5757600080fd5b8151610f8281611fc9565b600060208284031215611c7457600080fd5b8151610f8281611fb4565b600060208284031215611c9157600080fd5b813567ffffffffffffffff811115611ca857600080fd5b8201601f81018413611cb957600080fd5b6110f784823560208401611a0a565b600060208284031215611cda57600080fd5b5035919050565b60008151808452611cf9816020860160208601611ec6565b601f01601f19169290920160200192915050565b60008351611d1f818460208801611ec6565b835190830190611d33818360208801611ec6565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d6f90830184611ce1565b9695505050505050565b602081526000610f826020830184611ce1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e7757611e77611f5c565b500190565b600082611e8b57611e8b611f72565b500490565b6000816000190483118215151615611eaa57611eaa611f5c565b500290565b600082821015611ec157611ec1611f5c565b500390565b60005b83811015611ee1578181015183820152602001611ec9565b83811115610e605750506000910152565b600181811c90821680611f0657607f821691505b60208210811415611f2757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f4157611f41611f5c565b5060010190565b600082611f5757611f57611f72565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461095a57600080fd5b6001600160e01b03198116811461095a57600080fdfea264697066735822122007f88b298c48be611601cb25adb321dd82372043a05f5222dde77a3756ca0a3a64736f6c63430008070033

Deployed Bytecode Sourcemap

38380:3568:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25207:305;;;;;;;;;;-1:-1:-1;25207:305:0;;;;;:::i;:::-;;:::i;:::-;;;6787:14:1;;6780:22;6762:41;;6750:2;6735:18;25207:305:0;;;;;;;;26152:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27711:221::-;;;;;;;;;;-1:-1:-1;27711:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6085:32:1;;;6067:51;;6055:2;6040:18;27711:221:0;5921:203:1;27234:411:0;;;;;;;;;;-1:-1:-1;27234:411:0;;;;;:::i;:::-;;:::i;:::-;;39027:108;;;;;;;;;;;;;:::i;:::-;;;16348:25:1;;;16336:2;16321:18;39027:108:0;16202:177:1;28461:339:0;;;;;;;;;;-1:-1:-1;28461:339:0;;;;;:::i;:::-;;:::i;41521:250::-;;;;;;;;;;;;;:::i;28871:185::-;;;;;;;;;;-1:-1:-1;28871:185:0;;;;;:::i;:::-;;:::i;39143:111::-;;;;;;;;;;-1:-1:-1;39143:111:0;;;;;:::i;:::-;;:::i;25846:239::-;;;;;;;;;;-1:-1:-1;25846:239:0;;;;;:::i;:::-;;:::i;25576:208::-;;;;;;;;;;-1:-1:-1;25576:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;38656:37::-;;;;;;;;;;;;;;;;5544:87;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;39599:88;;;;;;;;;;-1:-1:-1;39599:88:0;;;;;:::i;:::-;;:::i;26321:104::-;;;;;;;;;;;;;:::i;38590:34::-;;;;;;;;;;;;;;;;40341:983;;;;;;:::i;:::-;;:::i;28004:155::-;;;;;;;;;;-1:-1:-1;28004:155:0;;;;;:::i;:::-;;:::i;38809:49::-;;;;;;;;;;-1:-1:-1;38809:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;29127:328;;;;;;;;;;-1:-1:-1;29127:328:0;;;;;:::i;:::-;;:::i;38697:42::-;;;;;;;;;;;;;;;;39387:96;;;;;;;;;;-1:-1:-1;39387:96:0;;;;;:::i;:::-;;:::i;26496:334::-;;;;;;;;;;-1:-1:-1;26496:334:0;;;;;:::i;:::-;;:::i;41333:180::-;;;;;;;;;;-1:-1:-1;41333:180:0;;;;;:::i;:::-;;:::i;39815:128::-;;;;;;;;;;-1:-1:-1;39815:128:0;;;;;:::i;:::-;;:::i;38743:28::-;;;;;;;;;;;;;;;;39951:382;;;;;;;;;;-1:-1:-1;39951:382:0;;;;;:::i;:::-;;:::i;38429:32::-;;;;;;;;;;-1:-1:-1;38429:32:0;;;;-1:-1:-1;;;38429:32:0;;;;;;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;38628:24::-;;;;;;;;;;;;;;;;25207:305;25309:4;-1:-1:-1;;;;;;25346:40:0;;-1:-1:-1;;;25346:40:0;;:105;;-1:-1:-1;;;;;;;25403:48:0;;-1:-1:-1;;;25403:48:0;25346:105;:158;;;-1:-1:-1;;;;;;;;;;18085:40:0;;;25468:36;25326:178;25207:305;-1:-1:-1;;25207:305:0:o;26152:100::-;26206:13;26239:5;26232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26152:100;:::o;27711:221::-;27787:7;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;27807:73;;;;-1:-1:-1;;;27807:73:0;;13638:2:1;27807:73:0;;;13620:21:1;13677:2;13657:18;;;13650:30;13716:34;13696:18;;;13689:62;-1:-1:-1;;;13767:18:1;;;13760:42;13819:19;;27807:73:0;;;;;;;;;-1:-1:-1;27900:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27900:24:0;;27711:221::o;27234:411::-;27315:13;27331:23;27346:7;27331:14;:23::i;:::-;27315:39;;27379:5;-1:-1:-1;;;;;27373:11:0;:2;-1:-1:-1;;;;;27373:11:0;;;27365:57;;;;-1:-1:-1;;;27365:57:0;;15238:2:1;27365:57:0;;;15220:21:1;15277:2;15257:18;;;15250:30;15316:34;15296:18;;;15289:62;-1:-1:-1;;;15367:18:1;;;15360:31;15408:19;;27365:57:0;15036:397:1;27365:57:0;4348:10;-1:-1:-1;;;;;27457:21:0;;;;:62;;-1:-1:-1;27482:37:0;27499:5;4348:10;39951:382;:::i;27482:37::-;27435:168;;;;-1:-1:-1;;;27435:168:0;;10905:2:1;27435:168:0;;;10887:21:1;10944:2;10924:18;;;10917:30;10983:34;10963:18;;;10956:62;11054:26;11034:18;;;11027:54;11098:19;;27435:168:0;10703:420:1;27435:168:0;27616:21;27625:2;27629:7;27616:8;:21::i;:::-;27304:341;27234:411;;:::o;39027:108::-;39071:14;39105:22;:12;964:14;;872:114;39105:22;39098:29;;39027:108;:::o;28461:339::-;28656:41;4348:10;28689:7;28656:18;:41::i;:::-;28648:103;;;;-1:-1:-1;;;28648:103:0;;;;;;;:::i;:::-;28764:28;28774:4;28780:2;28784:7;28764:9;:28::i;41521:250::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41588:49:::1;::::0;41570:12:::1;::::0;41588:10:::1;::::0;41611:21:::1;::::0;41570:12;41588:49;41570:12;41588:49;41611:21;41588:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41569:68;;;41670:7;41648:115;;;::::0;-1:-1:-1;;;41648:115:0;;10065:2:1;41648:115:0::1;::::0;::::1;10047:21:1::0;10104:2;10084:18;;;10077:30;10143:34;10123:18;;;10116:62;10214:28;10194:18;;;10187:56;10260:19;;41648:115:0::1;9863:422:1::0;41648:115:0::1;41558:213;41521:250::o:0;28871:185::-;29009:39;29026:4;29032:2;29036:7;29009:39;;;;;;;;;;;;:16;:39::i;39143:111::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;39219:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39143:111:::0;:::o;25846:239::-;25918:7;25954:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25954:16:0;25989:19;25981:73;;;;-1:-1:-1;;;25981:73:0;;11741:2:1;25981:73:0;;;11723:21:1;11780:2;11760:18;;;11753:30;11819:34;11799:18;;;11792:62;-1:-1:-1;;;11870:18:1;;;11863:39;11919:19;;25981:73:0;11539:405:1;25576:208:0;25648:7;-1:-1:-1;;;;;25676:19:0;;25668:74;;;;-1:-1:-1;;;25668:74:0;;11330:2:1;25668:74:0;;;11312:21:1;11369:2;11349:18;;;11342:30;11408:34;11388:18;;;11381:62;-1:-1:-1;;;11459:18:1;;;11452:40;11509:19;;25668:74:0;11128:406:1;25668:74:0;-1:-1:-1;;;;;;25760:16:0;;;;;:9;:16;;;;;;;25576:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;39599:88::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;39663:5:::1;:16:::0;39599:88::o;26321:104::-;26377:13;26410:7;26403:14;;;;;:::i;40341:983::-;40412:12;;-1:-1:-1;;;40412:12:0;;;;40404:42;;;;-1:-1:-1;;;40404:42:0;;16058:2:1;40404:42:0;;;16040:21:1;16097:2;16077:18;;;16070:30;-1:-1:-1;;;16116:18:1;;;16109:47;16173:18;;40404:42:0;15856:341:1;40404:42:0;40483:8;;40465:14;:26;;40457:70;;;;-1:-1:-1;;;40457:70:0;;13278:2:1;40457:70:0;;;13260:21:1;13317:2;13297:18;;;13290:30;13356:33;13336:18;;;13329:61;13407:18;;40457:70:0;13076:355:1;40457:70:0;40589:9;;40571:14;40546:22;:12;964:14;;872:114;40546:22;:39;;;;:::i;:::-;:52;;40538:107;;;;-1:-1:-1;;;40538:107:0;;12151:2:1;40538:107:0;;;12133:21:1;12190:2;12170:18;;;12163:30;12229:34;12209:18;;;12202:62;-1:-1:-1;;;12280:18:1;;;12273:40;12330:19;;40538:107:0;11949:406:1;40538:107:0;40712:23;;40695:14;40670:22;:12;964:14;;872:114;40670:22;:39;;;;:::i;:::-;:65;40666:395;;;40788:9;40769:14;40761:5;;:22;;;;:::i;:::-;40760:37;;40752:76;;;;-1:-1:-1;;;40752:76:0;;12923:2:1;40752:76:0;;;12905:21:1;12962:2;12942:18;;;12935:30;13001:28;12981:18;;;12974:56;13047:18;;40752:76:0;12721:350:1;40752:76:0;40666:395;;;40860:9;:14;40852:62;;;;-1:-1:-1;;;40852:62:0;;8902:2:1;40852:62:0;;;8884:21:1;8941:2;8921:18;;;8914:30;8980:34;8960:18;;;8953:62;-1:-1:-1;;;9031:18:1;;;9024:33;9074:19;;40852:62:0;8700:399:1;40852:62:0;40960:20;;40946:10;40928:29;;;;:17;:29;;;;;;:52;40920:135;;;;-1:-1:-1;;;40920:135:0;;7240:2:1;40920:135:0;;;7222:21:1;7279:2;7259:18;;;7252:30;7318:34;7298:18;;;7291:62;7389:34;7369:18;;;7362:62;-1:-1:-1;;;7440:19:1;;;7433:37;7487:19;;40920:135:0;7038:474:1;40920:135:0;41087:10;41069:29;;;;:17;:29;;;;;:47;;41102:14;;41069:29;:47;;41102:14;;41069:47;:::i;:::-;;;;-1:-1:-1;41131:6:0;;-1:-1:-1;41127:190:0;41147:14;41143:1;:18;41127:190;;;41175:16;41194:22;:12;964:14;;872:114;41194:22;:26;;41219:1;41194:26;:::i;:::-;41175:45;;41235:31;41245:10;41257:8;41235:9;:31::i;:::-;41281:24;:12;1083:19;;1101:1;1083:19;;;994:127;41281:24;-1:-1:-1;41163:3:0;;;;:::i;:::-;;;;41127:190;;28004:155;28099:52;4348:10;28132:8;28142;28099:18;:52::i;29127:328::-;29302:41;4348:10;29335:7;29302:18;:41::i;:::-;29294:103;;;;-1:-1:-1;;;29294:103:0;;;;;;;:::i;:::-;29408:39;29422:4;29428:2;29432:7;29441:5;29408:13;:39::i;:::-;29127:328;;;;:::o;39387:96::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;39452:12:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;39452:23:0::1;-1:-1:-1::0;;;;39452:23:0;;::::1;::::0;;;::::1;::::0;;39387:96::o;26496:334::-;31030:4;31054:16;;;:7;:16;;;;;;26569:13;;-1:-1:-1;;;;;31054:16:0;26595:76;;;;-1:-1:-1;;;26595:76:0;;14822:2:1;26595:76:0;;;14804:21:1;14861:2;14841:18;;;14834:30;14900:34;14880:18;;;14873:62;-1:-1:-1;;;14951:18:1;;;14944:45;15006:19;;26595:76:0;14620:411:1;26595:76:0;26684:21;26708:10;:8;:10::i;:::-;26684:34;;26760:1;26742:7;26736:21;:25;:86;;;;;;;;;;;;;;;;;26788:7;26797:18;:7;:16;:18::i;:::-;26771:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26736:86;26729:93;26496:334;-1:-1:-1;;;26496:334:0:o;41333:180::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41390:16:::1;41409:22;:12;964:14:::0;;872:114;41409:22:::1;:26;::::0;41434:1:::1;41409:26;:::i;:::-;41390:45;;41446:24;41456:3;41461:8;41446:9;:24::i;:::-;41481;:12;1083:19:::0;;1101:1;1083:19;;;994:127;39815:128;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;39900:20:::1;:35:::0;;-1:-1:-1;;;;;;39900:35:0::1;-1:-1:-1::0;;;;;39900:35:0;;;::::1;::::0;;;::::1;::::0;;39815:128::o;39951:382::-;40142:20;;40186:28;;-1:-1:-1;;;40186:28:0;;-1:-1:-1;;;;;6085:32:1;;;40186:28:0;;;6067:51:1;40076:4:0;;40142:20;;;40178:49;;;;40142:20;;40186:21;;6040:18:1;;40186:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40178:49:0;;40174:93;;;40251:4;40244:11;;;;;40174:93;-1:-1:-1;;;;;28351:25:0;;;28327:4;28351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40286:39;40279:46;39951:382;-1:-1:-1;;;;39951:382:0:o;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;8138:2:1;6534:73:0::1;::::0;::::1;8120:21:1::0;8177:2;8157:18;;;8150:30;8216:34;8196:18;;;8189:62;-1:-1:-1;;;8267:18:1;;;8260:36;8313:19;;6534:73:0::1;7936:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;34947:174::-:0;35022:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35022:29:0;-1:-1:-1;;;;;35022:29:0;;;;;;;;:24;;35076:23;35022:24;35076:14;:23::i;:::-;-1:-1:-1;;;;;35067:46:0;;;;;;;;;;;34947:174;;:::o;31259:348::-;31352:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;31369:73;;;;-1:-1:-1;;;31369:73:0;;10492:2:1;31369:73:0;;;10474:21:1;10531:2;10511:18;;;10504:30;10570:34;10550:18;;;10543:62;-1:-1:-1;;;10621:18:1;;;10614:42;10673:19;;31369:73:0;10290:408:1;31369:73:0;31453:13;31469:23;31484:7;31469:14;:23::i;:::-;31453:39;;31522:5;-1:-1:-1;;;;;31511:16:0;:7;-1:-1:-1;;;;;31511:16:0;;:51;;;;31555:7;-1:-1:-1;;;;;31531:31:0;:20;31543:7;31531:11;:20::i;:::-;-1:-1:-1;;;;;31531:31:0;;31511:51;:87;;;;31566:32;31583:5;31590:7;31566:16;:32::i;34251:578::-;34410:4;-1:-1:-1;;;;;34383:31:0;:23;34398:7;34383:14;:23::i;:::-;-1:-1:-1;;;;;34383:31:0;;34375:85;;;;-1:-1:-1;;;34375:85:0;;14412:2:1;34375:85:0;;;14394:21:1;14451:2;14431:18;;;14424:30;14490:34;14470:18;;;14463:62;-1:-1:-1;;;14541:18:1;;;14534:39;14590:19;;34375:85:0;14210:405:1;34375:85:0;-1:-1:-1;;;;;34479:16:0;;34471:65;;;;-1:-1:-1;;;34471:65:0;;9306:2:1;34471:65:0;;;9288:21:1;9345:2;9325:18;;;9318:30;9384:34;9364:18;;;9357:62;-1:-1:-1;;;9435:18:1;;;9428:34;9479:19;;34471:65:0;9104:400:1;34471:65:0;34653:29;34670:1;34674:7;34653:8;:29::i;:::-;-1:-1:-1;;;;;34695:15:0;;;;;;:9;:15;;;;;:20;;34714:1;;34695:15;:20;;34714:1;;34695:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34726:13:0;;;;;;:9;:13;;;;;:18;;34743:1;;34726:13;:18;;34743:1;;34726:18;:::i;:::-;;;;-1:-1:-1;;34755:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34755:21:0;-1:-1:-1;;;;;34755:21:0;;;;;;;;;34794:27;;34755:16;;34794:27;;;;;;;34251:578;;;:::o;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;31949:110::-;32025:26;32035:2;32039:7;32025:26;;;;;;;;;;;;:9;:26::i;35263:315::-;35418:8;-1:-1:-1;;;;;35409:17:0;:5;-1:-1:-1;;;;;35409:17:0;;;35401:55;;;;-1:-1:-1;;;35401:55:0;;9711:2:1;35401:55:0;;;9693:21:1;9750:2;9730:18;;;9723:30;9789:27;9769:18;;;9762:55;9834:18;;35401:55:0;9509:349:1;35401:55:0;-1:-1:-1;;;;;35467:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35467:46:0;;;;;;;;;;35529:41;;6762::1;;;35529::0;;6735:18:1;35529:41:0;;;;;;;35263:315;;;:::o;30337:::-;30494:28;30504:4;30510:2;30514:7;30494:9;:28::i;:::-;30541:48;30564:4;30570:2;30574:7;30583:5;30541:22;:48::i;:::-;30533:111;;;;-1:-1:-1;;;30533:111:0;;;;;;;:::i;39262:117::-;39322:13;39355:16;39348:23;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;32286:321;32416:18;32422:2;32426:7;32416:5;:18::i;:::-;32467:54;32498:1;32502:2;32506:7;32515:5;32467:22;:54::i;:::-;32445:154;;;;-1:-1:-1;;;32445:154:0;;;;;;;:::i;36143:799::-;36298:4;-1:-1:-1;;;;;36319:13:0;;8155:20;8203:8;36315:620;;36355:72;;-1:-1:-1;;;36355:72:0;;-1:-1:-1;;;;;36355:36:0;;;;;:72;;4348:10;;36406:4;;36412:7;;36421:5;;36355:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36355:72:0;;;;;;;;-1:-1:-1;;36355:72:0;;;;;;;;;;;;:::i;:::-;;;36351:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36597:13:0;;36593:272;;36640:60;;-1:-1:-1;;;36640:60:0;;;;;;;:::i;36593:272::-;36815:6;36809:13;36800:6;36796:2;36792:15;36785:38;36351:529;-1:-1:-1;;;;;;36478:51:0;-1:-1:-1;;;36478:51:0;;-1:-1:-1;36471:58:0;;36315:620;-1:-1:-1;36919:4:0;36143:799;;;;;;:::o;32943:382::-;-1:-1:-1;;;;;33023:16:0;;33015:61;;;;-1:-1:-1;;;33015:61:0;;12562:2:1;33015:61:0;;;12544:21:1;;;12581:18;;;12574:30;12640:34;12620:18;;;12613:62;12692:18;;33015:61:0;12360:356:1;33015:61:0;31030:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;:30;33087:58;;;;-1:-1:-1;;;33087:58:0;;8545:2:1;33087:58:0;;;8527:21:1;8584:2;8564:18;;;8557:30;8623;8603:18;;;8596:58;8671:18;;33087:58:0;8343:352:1;33087:58:0;-1:-1:-1;;;;;33216:13:0;;;;;;:9;:13;;;;;:18;;33233:1;;33216:13;:18;;33233:1;;33216:18;:::i;:::-;;;;-1:-1:-1;;33245:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33245:21:0;-1:-1:-1;;;;;33245:21:0;;;;;;;;33284:33;;33245:16;;;33284:33;;33245:16;;33284:33;32943:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;1067:388::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1251:9;1238:23;1270:31;1295:5;1270:31;:::i;:::-;1320:5;-1:-1:-1;1377:2:1;1362:18;;1349:32;1390:33;1349:32;1390:33;:::i;:::-;1442:7;1432:17;;;1067:388;;;;;:::o;1460:456::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1661:9;1648:23;1680:31;1705:5;1680:31;:::i;:::-;1730:5;-1:-1:-1;1787:2:1;1772:18;;1759:32;1800:33;1759:32;1800:33;:::i;:::-;1460:456;;1852:7;;-1:-1:-1;;;1906:2:1;1891:18;;;;1878:32;;1460:456::o;1921:794::-;2016:6;2024;2032;2040;2093:3;2081:9;2072:7;2068:23;2064:33;2061:53;;;2110:1;2107;2100:12;2061:53;2149:9;2136:23;2168:31;2193:5;2168:31;:::i;:::-;2218:5;-1:-1:-1;2275:2:1;2260:18;;2247:32;2288:33;2247:32;2288:33;:::i;:::-;2340:7;-1:-1:-1;2394:2:1;2379:18;;2366:32;;-1:-1:-1;2449:2:1;2434:18;;2421:32;2476:18;2465:30;;2462:50;;;2508:1;2505;2498:12;2462:50;2531:22;;2584:4;2576:13;;2572:27;-1:-1:-1;2562:55:1;;2613:1;2610;2603:12;2562:55;2636:73;2701:7;2696:2;2683:16;2678:2;2674;2670:11;2636:73;:::i;:::-;2626:83;;;1921:794;;;;;;;:::o;2720:315::-;2785:6;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:31;2945:5;2920:31;:::i;:::-;2970:5;-1:-1:-1;2994:35:1;3025:2;3010:18;;2994:35;:::i;:::-;2984:45;;2720:315;;;;;:::o;3040:::-;3108:6;3116;3169:2;3157:9;3148:7;3144:23;3140:32;3137:52;;;3185:1;3182;3175:12;3137:52;3224:9;3211:23;3243:31;3268:5;3243:31;:::i;:::-;3293:5;3345:2;3330:18;;;;3317:32;;-1:-1:-1;;;3040:315:1:o;3360:180::-;3416:6;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3508:26;3524:9;3508:26;:::i;3545:245::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3711:9;3698:23;3730:30;3754:5;3730:30;:::i;3795:249::-;3864:6;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3965:9;3959:16;3984:30;4008:5;3984:30;:::i;4049:280::-;4148:6;4201:2;4189:9;4180:7;4176:23;4172:32;4169:52;;;4217:1;4214;4207:12;4169:52;4249:9;4243:16;4268:31;4293:5;4268:31;:::i;4334:450::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4512:9;4499:23;4545:18;4537:6;4534:30;4531:50;;;4577:1;4574;4567:12;4531:50;4600:22;;4653:4;4645:13;;4641:27;-1:-1:-1;4631:55:1;;4682:1;4679;4672:12;4631:55;4705:73;4770:7;4765:2;4752:16;4747:2;4743;4739:11;4705:73;:::i;4789:180::-;4848:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:52;;;4917:1;4914;4907:12;4869:52;-1:-1:-1;4940:23:1;;4789:180;-1:-1:-1;4789:180:1:o;4974:257::-;5015:3;5053:5;5047:12;5080:6;5075:3;5068:19;5096:63;5152:6;5145:4;5140:3;5136:14;5129:4;5122:5;5118:16;5096:63;:::i;:::-;5213:2;5192:15;-1:-1:-1;;5188:29:1;5179:39;;;;5220:4;5175:50;;4974:257;-1:-1:-1;;4974:257:1:o;5236:470::-;5415:3;5453:6;5447:13;5469:53;5515:6;5510:3;5503:4;5495:6;5491:17;5469:53;:::i;:::-;5585:13;;5544:16;;;;5607:57;5585:13;5544:16;5641:4;5629:17;;5607:57;:::i;:::-;5680:20;;5236:470;-1:-1:-1;;;;5236:470:1:o;6129:488::-;-1:-1:-1;;;;;6398:15:1;;;6380:34;;6450:15;;6445:2;6430:18;;6423:43;6497:2;6482:18;;6475:34;;;6545:3;6540:2;6525:18;;6518:31;;;6323:4;;6566:45;;6591:19;;6583:6;6566:45;:::i;:::-;6558:53;6129:488;-1:-1:-1;;;;;;6129:488:1:o;6814:219::-;6963:2;6952:9;6945:21;6926:4;6983:44;7023:2;7012:9;7008:18;7000:6;6983:44;:::i;7517:414::-;7719:2;7701:21;;;7758:2;7738:18;;;7731:30;7797:34;7792:2;7777:18;;7770:62;-1:-1:-1;;;7863:2:1;7848:18;;7841:48;7921:3;7906:19;;7517:414::o;13849:356::-;14051:2;14033:21;;;14070:18;;;14063:30;14129:34;14124:2;14109:18;;14102:62;14196:2;14181:18;;13849:356::o;15438:413::-;15640:2;15622:21;;;15679:2;15659:18;;;15652:30;15718:34;15713:2;15698:18;;15691:62;-1:-1:-1;;;15784:2:1;15769:18;;15762:47;15841:3;15826:19;;15438:413::o;16384:128::-;16424:3;16455:1;16451:6;16448:1;16445:13;16442:39;;;16461:18;;:::i;:::-;-1:-1:-1;16497:9:1;;16384:128::o;16517:120::-;16557:1;16583;16573:35;;16588:18;;:::i;:::-;-1:-1:-1;16622:9:1;;16517:120::o;16642:168::-;16682:7;16748:1;16744;16740:6;16736:14;16733:1;16730:21;16725:1;16718:9;16711:17;16707:45;16704:71;;;16755:18;;:::i;:::-;-1:-1:-1;16795:9:1;;16642:168::o;16815:125::-;16855:4;16883:1;16880;16877:8;16874:34;;;16888:18;;:::i;:::-;-1:-1:-1;16925:9:1;;16815:125::o;16945:258::-;17017:1;17027:113;17041:6;17038:1;17035:13;17027:113;;;17117:11;;;17111:18;17098:11;;;17091:39;17063:2;17056:10;17027:113;;;17158:6;17155:1;17152:13;17149:48;;;-1:-1:-1;;17193:1:1;17175:16;;17168:27;16945:258::o;17208:380::-;17287:1;17283:12;;;;17330;;;17351:61;;17405:4;17397:6;17393:17;17383:27;;17351:61;17458:2;17450:6;17447:14;17427:18;17424:38;17421:161;;;17504:10;17499:3;17495:20;17492:1;17485:31;17539:4;17536:1;17529:15;17567:4;17564:1;17557:15;17421:161;;17208:380;;;:::o;17593:135::-;17632:3;-1:-1:-1;;17653:17:1;;17650:43;;;17673:18;;:::i;:::-;-1:-1:-1;17720:1:1;17709:13;;17593:135::o;17733:112::-;17765:1;17791;17781:35;;17796:18;;:::i;:::-;-1:-1:-1;17830:9:1;;17733:112::o;17850:127::-;17911:10;17906:3;17902:20;17899:1;17892:31;17942:4;17939:1;17932:15;17966:4;17963:1;17956:15;17982:127;18043:10;18038:3;18034:20;18031:1;18024:31;18074:4;18071:1;18064:15;18098:4;18095:1;18088:15;18114:127;18175:10;18170:3;18166:20;18163:1;18156:31;18206:4;18203:1;18196:15;18230:4;18227:1;18220:15;18246:127;18307:10;18302:3;18298:20;18295:1;18288:31;18338:4;18335:1;18328:15;18362:4;18359:1;18352:15;18378:131;-1:-1:-1;;;;;18453:31:1;;18443:42;;18433:70;;18499:1;18496;18489:12;18514:131;-1:-1:-1;;;;;;18588:32:1;;18578:43;;18568:71;;18635:1;18632;18625:12

Swarm Source

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