Contract Overview
Balance:
0 AVAX
AVAX Value:
$0.00
[ Download CSV Export ]
Contract Name:
CheeseCow
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2022-02-28 */ /** *Submitted for verification at snowtrace.io on 2022-02-24 */ // SPDX-License-Identifier: MIT // wAvaxApes by xrpant // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IWRAP { function sendCow(uint256 tokenID, address to) external; } contract CheeseCow is ERC721Enumerable, Ownable { using Strings for uint256; IWRAP wrapperContract = IWRAP(0x42607D374f32902AE29d5748883Be6E6C4632468); bool revealed = false; string private unrevealedURI = "https://gateway.pinata.cloud/ipfs/QmPVZp4poGT8gdBAGaw3QNsGqXJiQXCiC4jCuyPv7z447k"; string private baseURI; string private uriSuffix = ".json"; address public wrapperAddr = 0x42607D374f32902AE29d5748883Be6E6C4632468; event CowMinted( uint256 indexed tokenId, address indexed caller ); constructor() ERC721("Cheese Cow", "COW") { } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mint(address _to) external { require(msg.sender == wrapperAddr, "Only the wrapper can call this function!"); uint256 _tokenID = totalSupply() + 1; _safeMint(_to, _tokenID); emit CowMinted(_tokenID, _to); } function viewWrapperAddr() public view returns (address) { return wrapperAddr; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenID) public view override returns(string memory) { require(_exists(tokenID), "ERC721Metadata: URI query for nonexistent token"); if (!revealed) return unrevealedURI; string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked(currentBaseURI, tokenID.toString(), uriSuffix) ) : ""; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function reveal(string memory _initBaseURI) public onlyOwner { revealed = true; setBaseURI(_initBaseURI); } function setWrapper(address _wrapperAddr) public onlyOwner { wrapperAddr = _wrapperAddr; wrapperContract = IWRAP(wrapperAddr); } }
[{"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":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"caller","type":"address"}],"name":"CowMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"string","name":"_initBaseURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wrapperAddr","type":"address"}],"name":"setWrapper","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"viewWrapperAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wrapperAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
600b80546001600160a81b0319167342607d374f32902ae29d5748883be6e6c46324681790556101006040526050608081815290620021c960a03980516200005091600c9160209091019062000190565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200007f91600e9162000190565b50600f80546001600160a01b0319167342607d374f32902ae29d5748883be6e6c4632468179055348015620000b357600080fd5b50604080518082018252600a81526943686565736520436f7760b01b602080830191825283518085019094526003845262434f5760e81b908401528151919291620001019160009162000190565b5080516200011790600190602084019062000190565b505050620001346200012e6200013a60201b60201c565b6200013e565b62000273565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019e9062000236565b90600052602060002090601f016020900481019282620001c257600085556200020d565b82601f10620001dd57805160ff19168380011785556200020d565b828001600101855582156200020d579182015b828111156200020d578251825591602001919060010190620001f0565b506200021b9291506200021f565b5090565b5b808211156200021b576000815560010162000220565b600181811c908216806200024b57607f821691505b602082108114156200026d57634e487b7160e01b600052602260045260246000fd5b50919050565b611f4680620002836000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd14610358578063e823fb361461036b578063e985e9c51461037e578063f2fde38b146103ba57600080fd5b8063a22cb4651461031f578063b88d4fde14610332578063c2167d931461034557600080fd5b80636352211e146102c55780636a627842146102d857806370a08231146102eb578063715018a6146102fe5780638da5cb5b1461030657806395d89b411461031757600080fd5b80632f745c591161014b5780634c261247116101255780634c2612471461027b5780634f6ccce71461028e57806355f804b3146102a157806356d62a56146102b457600080fd5b80632f745c591461023557806342842e0e14610248578063438b63001461025b57600080fd5b806301ffc9a71461019357806306fdde03146101bb578063081812fc146101d0578063095ea7b3146101fb57806318160ddd1461021057806323b872dd14610222575b600080fd5b6101a66101a13660046118d3565b6103cd565b60405190151581526020015b60405180910390f35b6101c36103f8565b6040516101b29190611948565b6101e36101de36600461195b565b61048a565b6040516001600160a01b0390911681526020016101b2565b61020e610209366004611990565b610524565b005b6008545b6040519081526020016101b2565b61020e6102303660046119ba565b61063a565b610214610243366004611990565b61066b565b61020e6102563660046119ba565b610701565b61026e6102693660046119f6565b61071c565b6040516101b29190611a11565b61020e610289366004611ae1565b6107be565b61021461029c36600461195b565b610807565b61020e6102af366004611ae1565b61089a565b600f546001600160a01b03166101e3565b6101e36102d336600461195b565b6108db565b61020e6102e63660046119f6565b610952565b6102146102f93660046119f6565b610a19565b61020e610aa0565b600a546001600160a01b03166101e3565b6101c3610ad6565b61020e61032d366004611b2a565b610ae5565b61020e610340366004611b66565b610baa565b61020e6103533660046119f6565b610be2565b6101c361036636600461195b565b610c38565b600f546101e3906001600160a01b031681565b6101a661038c366004611be2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020e6103c83660046119f6565b610db9565b60006001600160e01b0319821663780e9d6360e01b14806103f257506103f282610e51565b92915050565b60606000805461040790611c15565b80601f016020809104026020016040519081016040528092919081815260200182805461043390611c15565b80156104805780601f1061045557610100808354040283529160200191610480565b820191906000526020600020905b81548152906001019060200180831161046357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061052f826108db565b9050806001600160a01b0316836001600160a01b0316141561059d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104ff565b336001600160a01b03821614806105b957506105b9813361038c565b61062b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104ff565b6106358383610ea1565b505050565b6106443382610f0f565b6106605760405162461bcd60e51b81526004016104ff90611c50565b610635838383611006565b600061067683610a19565b82106106d85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104ff565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61063583838360405180602001604052806000815250610baa565b6060600061072983610a19565b905060008167ffffffffffffffff81111561074657610746611a55565b60405190808252806020026020018201604052801561076f578160200160208202803683370190505b50905060005b828110156107b657610787858261066b565b82828151811061079957610799611ca1565b6020908102919091010152806107ae81611ccd565b915050610775565b509392505050565b600a546001600160a01b031633146107e85760405162461bcd60e51b81526004016104ff90611ce8565b600b805460ff60a01b1916600160a01b1790556108048161089a565b50565b600061081260085490565b82106108755760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104ff565b6008828154811061088857610888611ca1565b90600052602060002001549050919050565b600a546001600160a01b031633146108c45760405162461bcd60e51b81526004016104ff90611ce8565b80516108d790600d906020840190611824565b5050565b6000818152600260205260408120546001600160a01b0316806103f25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104ff565b600f546001600160a01b031633146109bd5760405162461bcd60e51b815260206004820152602860248201527f4f6e6c792074686520777261707065722063616e2063616c6c20746869732066604482015267756e6374696f6e2160c01b60648201526084016104ff565b60006109c860085490565b6109d3906001611d1d565b90506109df82826111b1565b6040516001600160a01b0383169082907fa70323f337e67ddaacc14c0c6b09be277e37e872a27ccbb2a97e0e9aa9b82b6290600090a35050565b60006001600160a01b038216610a845760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104ff565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610aca5760405162461bcd60e51b81526004016104ff90611ce8565b610ad460006111cb565b565b60606001805461040790611c15565b6001600160a01b038216331415610b3e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104ff565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bb43383610f0f565b610bd05760405162461bcd60e51b81526004016104ff90611c50565b610bdc8484848461121d565b50505050565b600a546001600160a01b03163314610c0c5760405162461bcd60e51b81526004016104ff90611ce8565b600f80546001600160a01b039092166001600160a01b03199283168117909155600b8054909216179055565b6000818152600260205260409020546060906001600160a01b0316610cb75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104ff565b600b54600160a01b900460ff16610d5a57600c8054610cd590611c15565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0190611c15565b8015610d4e5780601f10610d2357610100808354040283529160200191610d4e565b820191906000526020600020905b815481529060010190602001808311610d3157829003601f168201915b50505050509050919050565b6000610d64611250565b90506000815111610d845760405180602001604052806000815250610db2565b80610d8e8461125f565b600e604051602001610da293929190611d35565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610de35760405162461bcd60e51b81526004016104ff90611ce8565b6001600160a01b038116610e485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ff565b610804816111cb565b60006001600160e01b031982166380ac58cd60e01b1480610e8257506001600160e01b03198216635b5e139f60e01b145b806103f257506301ffc9a760e01b6001600160e01b03198316146103f2565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ed6826108db565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f885760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104ff565b6000610f93836108db565b9050806001600160a01b0316846001600160a01b03161480610fce5750836001600160a01b0316610fc38461048a565b6001600160a01b0316145b80610ffe57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611019826108db565b6001600160a01b0316146110815760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104ff565b6001600160a01b0382166110e35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104ff565b6110ee83838361135d565b6110f9600082610ea1565b6001600160a01b0383166000908152600360205260408120805460019290611122908490611df9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611150908490611d1d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108d7828260405180602001604052806000815250611415565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611228848484611006565b61123484848484611448565b610bdc5760405162461bcd60e51b81526004016104ff90611e10565b6060600d805461040790611c15565b6060816112835750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112ad578061129781611ccd565b91506112a69050600a83611e78565b9150611287565b60008167ffffffffffffffff8111156112c8576112c8611a55565b6040519080825280601f01601f1916602001820160405280156112f2576020820181803683370190505b5090505b8415610ffe57611307600183611df9565b9150611314600a86611e8c565b61131f906030611d1d565b60f81b81838151811061133457611334611ca1565b60200101906001600160f81b031916908160001a905350611356600a86611e78565b94506112f6565b6001600160a01b0383166113b8576113b381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6113db565b816001600160a01b0316836001600160a01b0316146113db576113db8382611546565b6001600160a01b0382166113f257610635816115e3565b826001600160a01b0316826001600160a01b031614610635576106358282611692565b61141f83836116d6565b61142c6000848484611448565b6106355760405162461bcd60e51b81526004016104ff90611e10565b60006001600160a01b0384163b1561153b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061148c903390899088908890600401611ea0565b6020604051808303816000875af19250505080156114c7575060408051601f3d908101601f191682019092526114c491810190611edd565b60015b611521573d8080156114f5576040519150601f19603f3d011682016040523d82523d6000602084013e6114fa565b606091505b5080516115195760405162461bcd60e51b81526004016104ff90611e10565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ffe565b506001949350505050565b6000600161155384610a19565b61155d9190611df9565b6000838152600760205260409020549091508082146115b0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906115f590600190611df9565b6000838152600960205260408120546008805493945090928490811061161d5761161d611ca1565b90600052602060002001549050806008838154811061163e5761163e611ca1565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061167657611676611efa565b6001900381819060005260206000200160009055905550505050565b600061169d83610a19565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661172c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104ff565b6000818152600260205260409020546001600160a01b0316156117915760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104ff565b61179d6000838361135d565b6001600160a01b03821660009081526003602052604081208054600192906117c6908490611d1d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461183090611c15565b90600052602060002090601f0160209004810192826118525760008555611898565b82601f1061186b57805160ff1916838001178555611898565b82800160010185558215611898579182015b8281111561189857825182559160200191906001019061187d565b506118a49291506118a8565b5090565b5b808211156118a457600081556001016118a9565b6001600160e01b03198116811461080457600080fd5b6000602082840312156118e557600080fd5b8135610db2816118bd565b60005b8381101561190b5781810151838201526020016118f3565b83811115610bdc5750506000910152565b600081518084526119348160208601602086016118f0565b601f01601f19169290920160200192915050565b602081526000610db2602083018461191c565b60006020828403121561196d57600080fd5b5035919050565b80356001600160a01b038116811461198b57600080fd5b919050565b600080604083850312156119a357600080fd5b6119ac83611974565b946020939093013593505050565b6000806000606084860312156119cf57600080fd5b6119d884611974565b92506119e660208501611974565b9150604084013590509250925092565b600060208284031215611a0857600080fd5b610db282611974565b6020808252825182820181905260009190848201906040850190845b81811015611a4957835183529284019291840191600101611a2d565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a8657611a86611a55565b604051601f8501601f19908116603f01168101908282118183101715611aae57611aae611a55565b81604052809350858152868686011115611ac757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611af357600080fd5b813567ffffffffffffffff811115611b0a57600080fd5b8201601f81018413611b1b57600080fd5b610ffe84823560208401611a6b565b60008060408385031215611b3d57600080fd5b611b4683611974565b915060208301358015158114611b5b57600080fd5b809150509250929050565b60008060008060808587031215611b7c57600080fd5b611b8585611974565b9350611b9360208601611974565b925060408501359150606085013567ffffffffffffffff811115611bb657600080fd5b8501601f81018713611bc757600080fd5b611bd687823560208401611a6b565b91505092959194509250565b60008060408385031215611bf557600080fd5b611bfe83611974565b9150611c0c60208401611974565b90509250929050565b600181811c90821680611c2957607f821691505b60208210811415611c4a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611ce157611ce1611cb7565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611d3057611d30611cb7565b500190565b600084516020611d488285838a016118f0565b855191840191611d5b8184848a016118f0565b8554920191600090600181811c9080831680611d7857607f831692505b858310811415611d9657634e487b7160e01b85526022600452602485fd5b808015611daa5760018114611dbb57611de8565b60ff19851688528388019550611de8565b60008b81526020902060005b85811015611de05781548a820152908401908801611dc7565b505083880195505b50939b9a5050505050505050505050565b600082821015611e0b57611e0b611cb7565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611e8757611e87611e62565b500490565b600082611e9b57611e9b611e62565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ed39083018461191c565b9695505050505050565b600060208284031215611eef57600080fd5b8151610db2816118bd565b634e487b7160e01b600052603160045260246000fdfea26469706673582212202384cec96118c7af0afa240d71c777fb712955b7fb34d54960de56370059d9ff64736f6c634300080b003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d50565a7034706f4754386764424147617733514e734771584a695158436943346a4375795076377a3434376b
Deployed ByteCode Sourcemap
43257:2197:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34757:224;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34757:224:0;;;;;;;;22649:100;;;:::i;:::-;;;;;;;:::i;24208:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;24208:221:0;1528:203:1;23731:411:0;;;;;;:::i;:::-;;:::i;:::-;;35397:113;35485:10;:17;35397:113;;;2319:25:1;;;2307:2;2292:18;35397:113:0;2173:177:1;25098:339:0;;;;;;:::i;:::-;;:::i;35065:256::-;;;;;;:::i;:::-;;:::i;25508:185::-;;;;;;:::i;:::-;;:::i;44309:348::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45180:118::-;;;;;;:::i;:::-;;:::i;35587:233::-;;;;;;:::i;:::-;;:::i;45076:98::-;;;;;;:::i;:::-;;:::i;44215:88::-;44286:11;;-1:-1:-1;;;;;44286:11:0;44215:88;;22343:239;;;;;;:::i;:::-;;:::i;43970:::-;;;;;;:::i;:::-;;:::i;22073:208::-;;;;;;:::i;:::-;;:::i;42546:94::-;;;:::i;41895:87::-;41968:6;;-1:-1:-1;;;;;41968:6:0;41895:87;;22818:104;;;:::i;24501:295::-;;;;;;:::i;:::-;;:::i;25764:328::-;;;;;;:::i;:::-;;:::i;45304:145::-;;;;;;:::i;:::-;;:::i;44663:407::-;;;;;;:::i;:::-;;:::i;43634:71::-;;;;;-1:-1:-1;;;;;43634:71:0;;;24867:164;;;;;;:::i;:::-;-1:-1:-1;;;;;24988:25:0;;;24964:4;24988:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24867:164;42795:192;;;;;;:::i;:::-;;:::i;34757:224::-;34859:4;-1:-1:-1;;;;;;34883:50:0;;-1:-1:-1;;;34883:50:0;;:90;;;34937:36;34961:11;34937:23;:36::i;:::-;34876:97;34757:224;-1:-1:-1;;34757:224:0:o;22649:100::-;22703:13;22736:5;22729:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22649:100;:::o;24208:221::-;24284:7;27691:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27691:16:0;24304:73;;;;-1:-1:-1;;;24304:73:0;;6617:2:1;24304:73:0;;;6599:21:1;6656:2;6636:18;;;6629:30;6695:34;6675:18;;;6668:62;-1:-1:-1;;;6746:18:1;;;6739:42;6798:19;;24304:73:0;;;;;;;;;-1:-1:-1;24397:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24397:24:0;;24208:221::o;23731:411::-;23812:13;23828:23;23843:7;23828:14;:23::i;:::-;23812:39;;23876:5;-1:-1:-1;;;;;23870:11:0;:2;-1:-1:-1;;;;;23870:11:0;;;23862:57;;;;-1:-1:-1;;;23862:57:0;;7030:2:1;23862:57:0;;;7012:21:1;7069:2;7049:18;;;7042:30;7108:34;7088:18;;;7081:62;-1:-1:-1;;;7159:18:1;;;7152:31;7200:19;;23862:57:0;6828:397:1;23862:57:0;20258:10;-1:-1:-1;;;;;23954:21:0;;;;:62;;-1:-1:-1;23979:37:0;23996:5;20258:10;24867:164;:::i;23979:37::-;23932:168;;;;-1:-1:-1;;;23932:168:0;;7432:2:1;23932:168:0;;;7414:21:1;7471:2;7451:18;;;7444:30;7510:34;7490:18;;;7483:62;7581:26;7561:18;;;7554:54;7625:19;;23932:168:0;7230:420:1;23932:168:0;24113:21;24122:2;24126:7;24113:8;:21::i;:::-;23801:341;23731:411;;:::o;25098:339::-;25293:41;20258:10;25326:7;25293:18;:41::i;:::-;25285:103;;;;-1:-1:-1;;;25285:103:0;;;;;;;:::i;:::-;25401:28;25411:4;25417:2;25421:7;25401:9;:28::i;35065:256::-;35162:7;35198:23;35215:5;35198:16;:23::i;:::-;35190:5;:31;35182:87;;;;-1:-1:-1;;;35182:87:0;;8275:2:1;35182:87:0;;;8257:21:1;8314:2;8294:18;;;8287:30;8353:34;8333:18;;;8326:62;-1:-1:-1;;;8404:18:1;;;8397:41;8455:19;;35182:87:0;8073:407:1;35182:87:0;-1:-1:-1;;;;;;35287:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35065:256::o;25508:185::-;25646:39;25663:4;25669:2;25673:7;25646:39;;;;;;;;;;;;:16;:39::i;44309:348::-;44384:16;44412:23;44438:17;44448:6;44438:9;:17::i;:::-;44412:43;;44462:25;44504:15;44490:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44490:30:0;;44462:58;;44532:9;44527:103;44547:15;44543:1;:19;44527:103;;;44592:30;44612:6;44620:1;44592:19;:30::i;:::-;44578:8;44587:1;44578:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;44564:3;;;;:::i;:::-;;;;44527:103;;;-1:-1:-1;44643:8:0;44309:348;-1:-1:-1;;;44309:348:0:o;45180:118::-;41968:6;;-1:-1:-1;;;;;41968:6:0;20258:10;42115:23;42107:68;;;;-1:-1:-1;;;42107:68:0;;;;;;;:::i;:::-;45246:8:::1;:15:::0;;-1:-1:-1;;;;45246:15:0::1;-1:-1:-1::0;;;45246:15:0::1;::::0;;45268:24:::1;45279:12:::0;45268:10:::1;:24::i;:::-;45180:118:::0;:::o;35587:233::-;35662:7;35698:30;35485:10;:17;;35397:113;35698:30;35690:5;:38;35682:95;;;;-1:-1:-1;;;35682:95:0;;9452:2:1;35682:95:0;;;9434:21:1;9491:2;9471:18;;;9464:30;9530:34;9510:18;;;9503:62;-1:-1:-1;;;9581:18:1;;;9574:42;9633:19;;35682:95:0;9250:408:1;35682:95:0;35795:10;35806:5;35795:17;;;;;;;;:::i;:::-;;;;;;;;;35788:24;;35587:233;;;:::o;45076:98::-;41968:6;;-1:-1:-1;;;;;41968:6:0;20258:10;42115:23;42107:68;;;;-1:-1:-1;;;42107:68:0;;;;;;;:::i;:::-;45147:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45076:98:::0;:::o;22343:239::-;22415:7;22451:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22451:16:0;22486:19;22478:73;;;;-1:-1:-1;;;22478:73:0;;9865:2:1;22478:73:0;;;9847:21:1;9904:2;9884:18;;;9877:30;9943:34;9923:18;;;9916:62;-1:-1:-1;;;9994:18:1;;;9987:39;10043:19;;22478:73:0;9663:405:1;43970:239:0;44035:11;;-1:-1:-1;;;;;44035:11:0;44021:10;:25;44013:78;;;;-1:-1:-1;;;44013:78:0;;10275:2:1;44013:78:0;;;10257:21:1;10314:2;10294:18;;;10287:30;10353:34;10333:18;;;10326:62;-1:-1:-1;;;10404:18:1;;;10397:38;10452:19;;44013:78:0;10073:404:1;44013:78:0;44098:16;44117:13;35485:10;:17;;35397:113;44117:13;:17;;44133:1;44117:17;:::i;:::-;44098:36;;44141:24;44151:3;44156:8;44141:9;:24::i;:::-;44179;;-1:-1:-1;;;;;44179:24:0;;;44189:8;;44179:24;;;;;44006:203;43970:239;:::o;22073:208::-;22145:7;-1:-1:-1;;;;;22173:19:0;;22165:74;;;;-1:-1:-1;;;22165:74:0;;10817:2:1;22165:74:0;;;10799:21:1;10856:2;10836:18;;;10829:30;10895:34;10875:18;;;10868:62;-1:-1:-1;;;10946:18:1;;;10939:40;10996:19;;22165:74:0;10615:406:1;22165:74:0;-1:-1:-1;;;;;;22257:16:0;;;;;:9;:16;;;;;;;22073:208::o;42546:94::-;41968:6;;-1:-1:-1;;;;;41968:6:0;20258:10;42115:23;42107:68;;;;-1:-1:-1;;;42107:68:0;;;;;;;:::i;:::-;42611:21:::1;42629:1;42611:9;:21::i;:::-;42546:94::o:0;22818:104::-;22874:13;22907:7;22900:14;;;;;:::i;24501:295::-;-1:-1:-1;;;;;24604:24:0;;20258:10;24604:24;;24596:62;;;;-1:-1:-1;;;24596:62:0;;11228:2:1;24596:62:0;;;11210:21:1;11267:2;11247:18;;;11240:30;11306:27;11286:18;;;11279:55;11351:18;;24596:62:0;11026:349:1;24596:62:0;20258:10;24671:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24671:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24671:53:0;;;;;;;;;;24740:48;;540:41:1;;;24671:42:0;;20258:10;24740:48;;513:18:1;24740:48:0;;;;;;;24501:295;;:::o;25764:328::-;25939:41;20258:10;25972:7;25939:18;:41::i;:::-;25931:103;;;;-1:-1:-1;;;25931:103:0;;;;;;;:::i;:::-;26045:39;26059:4;26065:2;26069:7;26078:5;26045:13;:39::i;:::-;25764:328;;;;:::o;45304:145::-;41968:6;;-1:-1:-1;;;;;41968:6:0;20258:10;42115:23;42107:68;;;;-1:-1:-1;;;42107:68:0;;;;;;;:::i;:::-;45372:11:::1;:26:::0;;-1:-1:-1;;;;;45372:26:0;;::::1;-1:-1:-1::0;;;;;;45372:26:0;;::::1;::::0;::::1;::::0;;;45407:15:::1;:36:::0;;;;::::1;;::::0;;45304:145::o;44663:407::-;27667:4;27691:16;;;:7;:16;;;;;;44727:13;;-1:-1:-1;;;;;27691:16:0;44753:76;;;;-1:-1:-1;;;44753:76:0;;11582:2:1;44753:76:0;;;11564:21:1;11621:2;11601:18;;;11594:30;11660:34;11640:18;;;11633:62;-1:-1:-1;;;11711:18:1;;;11704:45;11766:19;;44753:76:0;11380:411:1;44753:76:0;44847:8;;-1:-1:-1;;;44847:8:0;;;;44842:35;;44864:13;44857:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44663:407;;;:::o;44842:35::-;44890:28;44921:10;:8;:10::i;:::-;44890:41;;44982:1;44957:14;44951:28;:32;:113;;;;;;;;;;;;;;;;;45011:14;45027:18;:7;:16;:18::i;:::-;45047:9;44994:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44951:113;44944:120;44663:407;-1:-1:-1;;;44663:407:0:o;42795:192::-;41968:6;;-1:-1:-1;;;;;41968:6:0;20258:10;42115:23;42107:68;;;;-1:-1:-1;;;42107:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42884:22:0;::::1;42876:73;;;::::0;-1:-1:-1;;;42876:73:0;;13656:2:1;42876:73:0::1;::::0;::::1;13638:21:1::0;13695:2;13675:18;;;13668:30;13734:34;13714:18;;;13707:62;-1:-1:-1;;;13785:18:1;;;13778:36;13831:19;;42876:73:0::1;13454:402:1::0;42876:73:0::1;42960:19;42970:8;42960:9;:19::i;21704:305::-:0;21806:4;-1:-1:-1;;;;;;21843:40:0;;-1:-1:-1;;;21843:40:0;;:105;;-1:-1:-1;;;;;;;21900:48:0;;-1:-1:-1;;;21900:48:0;21843:105;:158;;;-1:-1:-1;;;;;;;;;;7644:40:0;;;21965:36;7535:157;31584:174;31659:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31659:29:0;-1:-1:-1;;;;;31659:29:0;;;;;;;;:24;;31713:23;31659:24;31713:14;:23::i;:::-;-1:-1:-1;;;;;31704:46:0;;;;;;;;;;;31584:174;;:::o;27896:348::-;27989:4;27691:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27691:16:0;28006:73;;;;-1:-1:-1;;;28006:73:0;;14063:2:1;28006:73:0;;;14045:21:1;14102:2;14082:18;;;14075:30;14141:34;14121:18;;;14114:62;-1:-1:-1;;;14192:18:1;;;14185:42;14244:19;;28006:73:0;13861:408:1;28006:73:0;28090:13;28106:23;28121:7;28106:14;:23::i;:::-;28090:39;;28159:5;-1:-1:-1;;;;;28148:16:0;:7;-1:-1:-1;;;;;28148:16:0;;:51;;;;28192:7;-1:-1:-1;;;;;28168:31:0;:20;28180:7;28168:11;:20::i;:::-;-1:-1:-1;;;;;28168:31:0;;28148:51;:87;;;-1:-1:-1;;;;;;24988:25:0;;;24964:4;24988:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28203:32;28140:96;27896:348;-1:-1:-1;;;;27896:348:0:o;30888:578::-;31047:4;-1:-1:-1;;;;;31020:31:0;:23;31035:7;31020:14;:23::i;:::-;-1:-1:-1;;;;;31020:31:0;;31012:85;;;;-1:-1:-1;;;31012:85:0;;14476:2:1;31012:85:0;;;14458:21:1;14515:2;14495:18;;;14488:30;14554:34;14534:18;;;14527:62;-1:-1:-1;;;14605:18:1;;;14598:39;14654:19;;31012:85:0;14274:405:1;31012:85:0;-1:-1:-1;;;;;31116:16:0;;31108:65;;;;-1:-1:-1;;;31108:65:0;;14886:2:1;31108:65:0;;;14868:21:1;14925:2;14905:18;;;14898:30;14964:34;14944:18;;;14937:62;-1:-1:-1;;;15015:18:1;;;15008:34;15059:19;;31108:65:0;14684:400:1;31108:65:0;31186:39;31207:4;31213:2;31217:7;31186:20;:39::i;:::-;31290:29;31307:1;31311:7;31290:8;:29::i;:::-;-1:-1:-1;;;;;31332:15:0;;;;;;:9;:15;;;;;:20;;31351:1;;31332:15;:20;;31351:1;;31332:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31363:13:0;;;;;;:9;:13;;;;;:18;;31380:1;;31363:13;:18;;31380:1;;31363:18;:::i;:::-;;;;-1:-1:-1;;31392:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31392:21:0;-1:-1:-1;;;;;31392:21:0;;;;;;;;;31431:27;;31392:16;;31431:27;;;;;;;30888:578;;;:::o;28586:110::-;28662:26;28672:2;28676:7;28662:26;;;;;;;;;;;;:9;:26::i;42995:173::-;43070:6;;;-1:-1:-1;;;;;43087:17:0;;;-1:-1:-1;;;;;;43087:17:0;;;;;;;43120:40;;43070:6;;;43087:17;43070:6;;43120:40;;43051:16;;43120:40;43040:128;42995:173;:::o;26974:315::-;27131:28;27141:4;27147:2;27151:7;27131:9;:28::i;:::-;27178:48;27201:4;27207:2;27211:7;27220:5;27178:22;:48::i;:::-;27170:111;;;;-1:-1:-1;;;27170:111:0;;;;;;;:::i;43862:102::-;43922:13;43951:7;43944:14;;;;;:::i;8010:723::-;8066:13;8287:10;8283:53;;-1:-1:-1;;8314:10:0;;;;;;;;;;;;-1:-1:-1;;;8314:10:0;;;;;8010:723::o;8283:53::-;8361:5;8346:12;8402:78;8409:9;;8402:78;;8435:8;;;;:::i;:::-;;-1:-1:-1;8458:10:0;;-1:-1:-1;8466:2:0;8458:10;;:::i;:::-;;;8402:78;;;8490:19;8522:6;8512:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8512:17:0;;8490:39;;8540:154;8547:10;;8540:154;;8574:11;8584:1;8574:11;;:::i;:::-;;-1:-1:-1;8643:10:0;8651:2;8643:5;:10;:::i;:::-;8630:24;;:2;:24;:::i;:::-;8617:39;;8600:6;8607;8600:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8600:56:0;;;;;;;;-1:-1:-1;8671:11:0;8680:2;8671:11;;:::i;:::-;;;8540:154;;36433:589;-1:-1:-1;;;;;36639:18:0;;36635:187;;36674:40;36706:7;37849:10;:17;;37822:24;;;;:15;:24;;;;;:44;;;37877:24;;;;;;;;;;;;37745:164;36674:40;36635:187;;;36744:2;-1:-1:-1;;;;;36736:10:0;:4;-1:-1:-1;;;;;36736:10:0;;36732:90;;36763:47;36796:4;36802:7;36763:32;:47::i;:::-;-1:-1:-1;;;;;36836:16:0;;36832:183;;36869:45;36906:7;36869:36;:45::i;36832:183::-;36942:4;-1:-1:-1;;;;;36936:10:0;:2;-1:-1:-1;;;;;36936:10:0;;36932:83;;36963:40;36991:2;36995:7;36963:27;:40::i;28923:321::-;29053:18;29059:2;29063:7;29053:5;:18::i;:::-;29104:54;29135:1;29139:2;29143:7;29152:5;29104:22;:54::i;:::-;29082:154;;;;-1:-1:-1;;;29082:154:0;;;;;;;:::i;32323:799::-;32478:4;-1:-1:-1;;;;;32499:13:0;;10858:20;10906:8;32495:620;;32535:72;;-1:-1:-1;;;32535:72:0;;-1:-1:-1;;;;;32535:36:0;;;;;:72;;20258:10;;32586:4;;32592:7;;32601:5;;32535:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32535:72:0;;;;;;;;-1:-1:-1;;32535:72:0;;;;;;;;;;;;:::i;:::-;;;32531:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32777:13:0;;32773:272;;32820:60;;-1:-1:-1;;;32820:60:0;;;;;;;:::i;32773:272::-;32995:6;32989:13;32980:6;32976:2;32972:15;32965:38;32531:529;-1:-1:-1;;;;;;32658:51:0;-1:-1:-1;;;32658:51:0;;-1:-1:-1;32651:58:0;;32495:620;-1:-1:-1;33099:4:0;32323:799;;;;;;:::o;38536:988::-;38802:22;38852:1;38827:22;38844:4;38827:16;:22::i;:::-;:26;;;;:::i;:::-;38864:18;38885:26;;;:17;:26;;;;;;38802:51;;-1:-1:-1;39018:28:0;;;39014:328;;-1:-1:-1;;;;;39085:18:0;;39063:19;39085:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39136:30;;;;;;:44;;;39253:30;;:17;:30;;;;;:43;;;39014:328;-1:-1:-1;39438:26:0;;;;:17;:26;;;;;;;;39431:33;;;-1:-1:-1;;;;;39482:18:0;;;;;:12;:18;;;;;:34;;;;;;;39475:41;38536:988::o;39819:1079::-;40097:10;:17;40072:22;;40097:21;;40117:1;;40097:21;:::i;:::-;40129:18;40150:24;;;:15;:24;;;;;;40523:10;:26;;40072:46;;-1:-1:-1;40150:24:0;;40072:46;;40523:26;;;;;;:::i;:::-;;;;;;;;;40501:48;;40587:11;40562:10;40573;40562:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40667:28;;;:15;:28;;;;;;;:41;;;40839:24;;;;;40832:31;40874:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39890:1008;;;39819:1079;:::o;37323:221::-;37408:14;37425:20;37442:2;37425:16;:20::i;:::-;-1:-1:-1;;;;;37456:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37501:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37323:221:0:o;29580:382::-;-1:-1:-1;;;;;29660:16:0;;29652:61;;;;-1:-1:-1;;;29652:61:0;;17094:2:1;29652:61:0;;;17076:21:1;;;17113:18;;;17106:30;17172:34;17152:18;;;17145:62;17224:18;;29652:61:0;16892:356:1;29652:61:0;27667:4;27691:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27691:16:0;:30;29724:58;;;;-1:-1:-1;;;29724:58:0;;17455:2:1;29724:58:0;;;17437:21:1;17494:2;17474:18;;;17467:30;17533;17513:18;;;17506:58;17581:18;;29724:58:0;17253:352:1;29724:58:0;29795:45;29824:1;29828:2;29832:7;29795:20;:45::i;:::-;-1:-1:-1;;;;;29853:13:0;;;;;;:9;:13;;;;;:18;;29870:1;;29853:13;:18;;29870:1;;29853:18;:::i;:::-;;;;-1:-1:-1;;29882:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29882:21:0;-1:-1:-1;;;;;29882:21:0;;;;;;;;29921:33;;29882:16;;;29921:33;;29882:16;;29921:33;29580:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3516:127::-;3577:10;3572:3;3568:20;3565:1;3558:31;3608:4;3605:1;3598:15;3632:4;3629:1;3622:15;3648:632;3713:5;3743:18;3784:2;3776:6;3773:14;3770:40;;;3790:18;;:::i;:::-;3865:2;3859:9;3833:2;3919:15;;-1:-1:-1;;3915:24:1;;;3941:2;3911:33;3907:42;3895:55;;;3965:18;;;3985:22;;;3962:46;3959:72;;;4011:18;;:::i;:::-;4051:10;4047:2;4040:22;4080:6;4071:15;;4110:6;4102;4095:22;4150:3;4141:6;4136:3;4132:16;4129:25;4126:45;;;4167:1;4164;4157:12;4126:45;4217:6;4212:3;4205:4;4197:6;4193:17;4180:44;4272:1;4265:4;4256:6;4248;4244:19;4240:30;4233:41;;;;3648:632;;;;;:::o;4285:451::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4463:9;4450:23;4496:18;4488:6;4485:30;4482:50;;;4528:1;4525;4518:12;4482:50;4551:22;;4604:4;4596:13;;4592:27;-1:-1:-1;4582:55:1;;4633:1;4630;4623:12;4582:55;4656:74;4722:7;4717:2;4704:16;4699:2;4695;4691:11;4656:74;:::i;4741:347::-;4806:6;4814;4867:2;4855:9;4846:7;4842:23;4838:32;4835:52;;;4883:1;4880;4873:12;4835:52;4906:29;4925:9;4906:29;:::i;:::-;4896:39;;4985:2;4974:9;4970:18;4957:32;5032:5;5025:13;5018:21;5011:5;5008:32;4998:60;;5054:1;5051;5044:12;4998:60;5077:5;5067:15;;;4741:347;;;;;:::o;5093:667::-;5188:6;5196;5204;5212;5265:3;5253:9;5244:7;5240:23;5236:33;5233:53;;;5282:1;5279;5272:12;5233:53;5305:29;5324:9;5305:29;:::i;:::-;5295:39;;5353:38;5387:2;5376:9;5372:18;5353:38;:::i;:::-;5343:48;;5438:2;5427:9;5423:18;5410:32;5400:42;;5493:2;5482:9;5478:18;5465:32;5520:18;5512:6;5509:30;5506:50;;;5552:1;5549;5542:12;5506:50;5575:22;;5628:4;5620:13;;5616:27;-1:-1:-1;5606:55:1;;5657:1;5654;5647:12;5606:55;5680:74;5746:7;5741:2;5728:16;5723:2;5719;5715:11;5680:74;:::i;:::-;5670:84;;;5093:667;;;;;;;:::o;5765:260::-;5833:6;5841;5894:2;5882:9;5873:7;5869:23;5865:32;5862:52;;;5910:1;5907;5900:12;5862:52;5933:29;5952:9;5933:29;:::i;:::-;5923:39;;5981:38;6015:2;6004:9;6000:18;5981:38;:::i;:::-;5971:48;;5765:260;;;;;:::o;6030:380::-;6109:1;6105:12;;;;6152;;;6173:61;;6227:4;6219:6;6215:17;6205:27;;6173:61;6280:2;6272:6;6269:14;6249:18;6246:38;6243:161;;;6326:10;6321:3;6317:20;6314:1;6307:31;6361:4;6358:1;6351:15;6389:4;6386:1;6379:15;6243:161;;6030:380;;;:::o;7655:413::-;7857:2;7839:21;;;7896:2;7876:18;;;7869:30;7935:34;7930:2;7915:18;;7908:62;-1:-1:-1;;;8001:2:1;7986:18;;7979:47;8058:3;8043:19;;7655:413::o;8485:127::-;8546:10;8541:3;8537:20;8534:1;8527:31;8577:4;8574:1;8567:15;8601:4;8598:1;8591:15;8617:127;8678:10;8673:3;8669:20;8666:1;8659:31;8709:4;8706:1;8699:15;8733:4;8730:1;8723:15;8749:135;8788:3;-1:-1:-1;;8809:17:1;;8806:43;;;8829:18;;:::i;:::-;-1:-1:-1;8876:1:1;8865:13;;8749:135::o;8889:356::-;9091:2;9073:21;;;9110:18;;;9103:30;9169:34;9164:2;9149:18;;9142:62;9236:2;9221:18;;8889:356::o;10482:128::-;10522:3;10553:1;10549:6;10546:1;10543:13;10540:39;;;10559:18;;:::i;:::-;-1:-1:-1;10595:9:1;;10482:128::o;11922:1527::-;12146:3;12184:6;12178:13;12210:4;12223:51;12267:6;12262:3;12257:2;12249:6;12245:15;12223:51;:::i;:::-;12337:13;;12296:16;;;;12359:55;12337:13;12296:16;12381:15;;;12359:55;:::i;:::-;12503:13;;12436:20;;;12476:1;;12563;12585:18;;;;12638;;;;12665:93;;12743:4;12733:8;12729:19;12717:31;;12665:93;12806:2;12796:8;12793:16;12773:18;12770:40;12767:167;;;-1:-1:-1;;;12833:33:1;;12889:4;12886:1;12879:15;12919:4;12840:3;12907:17;12767:167;12950:18;12977:110;;;;13101:1;13096:328;;;;12943:481;;12977:110;-1:-1:-1;;13012:24:1;;12998:39;;13057:20;;;;-1:-1:-1;12977:110:1;;13096:328;11869:1;11862:14;;;11906:4;11893:18;;13191:1;13205:169;13219:8;13216:1;13213:15;13205:169;;;13301:14;;13286:13;;;13279:37;13344:16;;;;13236:10;;13205:169;;;13209:3;;13405:8;13398:5;13394:20;13387:27;;12943:481;-1:-1:-1;13440:3:1;;11922:1527;-1:-1:-1;;;;;;;;;;;11922:1527:1:o;15089:125::-;15129:4;15157:1;15154;15151:8;15148:34;;;15162:18;;:::i;:::-;-1:-1:-1;15199:9:1;;15089:125::o;15219:414::-;15421:2;15403:21;;;15460:2;15440:18;;;15433:30;15499:34;15494:2;15479:18;;15472:62;-1:-1:-1;;;15565:2:1;15550:18;;15543:48;15623:3;15608:19;;15219:414::o;15638:127::-;15699:10;15694:3;15690:20;15687:1;15680:31;15730:4;15727:1;15720:15;15754:4;15751:1;15744:15;15770:120;15810:1;15836;15826:35;;15841:18;;:::i;:::-;-1:-1:-1;15875:9:1;;15770:120::o;15895:112::-;15927:1;15953;15943:35;;15958:18;;:::i;:::-;-1:-1:-1;15992:9:1;;15895:112::o;16012:489::-;-1:-1:-1;;;;;16281:15:1;;;16263:34;;16333:15;;16328:2;16313:18;;16306:43;16380:2;16365:18;;16358:34;;;16428:3;16423:2;16408:18;;16401:31;;;16206:4;;16449:46;;16475:19;;16467:6;16449:46;:::i;:::-;16441:54;16012:489;-1:-1:-1;;;;;;16012:489:1:o;16506:249::-;16575:6;16628:2;16616:9;16607:7;16603:23;16599:32;16596:52;;;16644:1;16641;16634:12;16596:52;16676:9;16670:16;16695:30;16719:5;16695:30;:::i;16760:127::-;16821:10;16816:3;16812:20;16809:1;16802:31;16852:4;16849:1;16842:15;16876:4;16873:1;16866:15
Swarm Source
ipfs://2384cec96118c7af0afa240d71c777fb712955b7fb34d54960de56370059d9ff
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.