Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 5 from a total of 5 transactions
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MiharaNFTFlowerAndGreen
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Base64.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./IMiharaNFT.sol"; contract MiharaNFTFlowerAndGreen is IMiharaNFT, ERC721, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public constant PRICE = 0.06 ether; address payable public constant RECIPIENT = payable(0x63A11DB3fd35dA4081a4A7667E15aE8804085a32); uint256 private _remainingFree = 50; bool private _isOnSale; uint256 private _nextTokenId = 1; constructor() ERC721("Mihara NFT Flower and Green", "MIHARA") {} //****************************** // No transfer //****************************** function _beforeTokenTransfer(address from,address to,uint256 tokenId) internal pure override { require(from == address(0) || from == RECIPIENT, "No transfer"); } //****************************** // view functions //****************************** function remainingFree() external view override returns (uint256) { return _remainingFree; } function isOnSale() external view override returns (bool) { return _isOnSale; } function nextTokenId() external override view returns (uint256) { return _nextTokenId; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory){ require(_exists(tokenId), "URI query for nonexistent token"); return string( abi.encodePacked( 'data:application/json;base64,', Base64.encode(bytes(abi.encodePacked('{"name":"Mihara NFT Flower and Green #', Strings.toString(tokenId),'","description": "The world\'s No. 1 garden and landscape designer Kazuyuki Ishihara aims to make Mihara-cho, his hometown, the most sacred place in the world full of flowers, greenery and smiles, and to make it a paradise.\\n\\nWe will create a town and garden that the world wants to visit, and pass on the message of love and peace from Miharacho to the world, to our children and grandchildren.","image": "https://arweave.net/vYzbo0tGvMUtVnMZJjj9aL1peVTfIXN7Czd0DIJDFZs","attributes": [{"trait_type": "License","value": "Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)"}]}'))) ) ); } //****************************** // public functions //****************************** function buy() external override nonReentrant payable { require(_isOnSale, "Not on sale"); require(msg.value == PRICE, "Invalid value"); uint256 tokenId = _nextTokenId; _nextTokenId ++; _safeMint(_msgSender(), tokenId); } //****************************** // admin functions //****************************** function mintFree(address to) external override onlyOwner { require(_remainingFree > 0, "No Free Mihara NFT is left"); uint256 tokenId = _nextTokenId; _nextTokenId ++; _remainingFree --; _safeMint(to, tokenId); } function updateSaleStatus(bool __isOnSale) external override onlyOwner { _isOnSale = __isOnSale; } function withdrawETH() external override onlyOwner { Address.sendValue(RECIPIENT, address(this).balance); } }
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; interface IMiharaNFT { //****************************** // view functions //****************************** function remainingFree() external view returns (uint256); function isOnSale() external view returns (bool); function nextTokenId() external view returns (uint256); //****************************** // public functions //****************************** function buy() external payable; //****************************** // admin functions //****************************** function mintFree(address to) external; function updateSaleStatus(bool __isOnSale) external; function withdrawETH() external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @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: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); 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 overridden 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 token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); 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: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol) pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. * * _Available since v4.5._ */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":[],"name":"RECIPIENT","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOnSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"remainingFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[{"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":[{"internalType":"bool","name":"__isOnSale","type":"bool"}],"name":"updateSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260326008556001600a553480156200001b57600080fd5b506040518060400160405280601b81526020017f4d6968617261204e465420466c6f77657220616e6420477265656e00000000008152506040518060400160405280600681526020017f4d49484152410000000000000000000000000000000000000000000000000000815250816000908162000099919062000424565b508060019081620000ab919062000424565b505050620000ce620000c2620000dc60201b60201c565b620000e460201b60201c565b60016007819055506200050b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200022c57607f821691505b602082108103620002425762000241620001e4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002ac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200026d565b620002b886836200026d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000305620002ff620002f984620002d0565b620002da565b620002d0565b9050919050565b6000819050919050565b6200032183620002e4565b6200033962000330826200030c565b8484546200027a565b825550505050565b600090565b6200035062000341565b6200035d81848462000316565b505050565b5b8181101562000385576200037960008262000346565b60018101905062000363565b5050565b601f821115620003d4576200039e8162000248565b620003a9846200025d565b81016020851015620003b9578190505b620003d1620003c8856200025d565b83018262000362565b50505b505050565b600082821c905092915050565b6000620003f960001984600802620003d9565b1980831691505092915050565b6000620004148383620003e6565b9150826002028217905092915050565b6200042f82620001aa565b67ffffffffffffffff8111156200044b576200044a620001b5565b5b62000457825462000213565b6200046482828562000389565b600060209050601f8311600181146200049c576000841562000487578287015190505b62000493858262000406565b86555062000503565b601f198416620004ac8662000248565b60005b82811015620004d657848901518255600182019150602085019450602081019050620004af565b86831015620004f65784890151620004f2601f891682620003e6565b8355505b6001600288020188555050505b505050505050565b6138c1806200051b6000396000f3fe6080604052600436106101665760003560e01c806375794a3c116100d1578063a6f2ae3a1161008a578063e086e5ec11610064578063e086e5ec1461050b578063e55fcf2d14610522578063e985e9c51461054b578063f2fde38b1461058857610166565b8063a6f2ae3a1461049b578063b88d4fde146104a5578063c87b56dd146104ce57610166565b806375794a3c1461039b578063890e839f146103c65780638d859f3e146103f15780638da5cb5b1461041c57806395d89b4114610447578063a22cb4651461047257610166565b806323b872dd1161012357806323b872dd1461028d57806342842e0e146102b65780635ccc6bd7146102df5780636352211e1461030a57806370a0823114610347578063715018a61461038457610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b3146102105780630a088949146102395780630d9019e114610262575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612081565b6105b1565b60405161019f91906120c9565b60405180910390f35b3480156101b457600080fd5b506101bd610693565b6040516101ca9190612174565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906121cc565b610725565b604051610207919061223a565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612281565b61076b565b005b34801561024557600080fd5b50610260600480360381019061025b91906122ed565b610882565b005b34801561026e57600080fd5b506102776108a7565b604051610284919061233b565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612356565b6108bf565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612356565b61091f565b005b3480156102eb57600080fd5b506102f461093f565b60405161030191906123b8565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c91906121cc565b610949565b60405161033e919061223a565b60405180910390f35b34801561035357600080fd5b5061036e600480360381019061036991906123d3565b6109fa565b60405161037b91906123b8565b60405180910390f35b34801561039057600080fd5b50610399610ab1565b005b3480156103a757600080fd5b506103b0610ac5565b6040516103bd91906123b8565b60405180910390f35b3480156103d257600080fd5b506103db610acf565b6040516103e891906120c9565b60405180910390f35b3480156103fd57600080fd5b50610406610ae6565b60405161041391906123b8565b60405180910390f35b34801561042857600080fd5b50610431610af1565b60405161043e919061223a565b60405180910390f35b34801561045357600080fd5b5061045c610b1b565b6040516104699190612174565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190612400565b610bad565b005b6104a3610bc3565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612575565b610ce3565b005b3480156104da57600080fd5b506104f560048036038101906104f091906121cc565b610d45565b6040516105029190612174565b60405180910390f35b34801561051757600080fd5b50610520610de5565b005b34801561052e57600080fd5b50610549600480360381019061054491906123d3565b610e0d565b005b34801561055757600080fd5b50610572600480360381019061056d91906125f8565b610e9f565b60405161057f91906120c9565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa91906123d3565b610f33565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068c575061068b82610fb6565b5b9050919050565b6060600080546106a290612667565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce90612667565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b5050505050905090565b600061073082611020565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077682610949565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dd9061270a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661080561106b565b73ffffffffffffffffffffffffffffffffffffffff16148061083457506108338161082e61106b565b610e9f565b5b610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a9061279c565b60405180910390fd5b61087d8383611073565b505050565b61088a61112c565b80600960006101000a81548160ff02191690831515021790555050565b7363a11db3fd35da4081a4a7667e15ae8804085a3281565b6108d06108ca61106b565b826111aa565b61090f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109069061282e565b60405180910390fd5b61091a83838361123f565b505050565b61093a83838360405180602001604052806000815250610ce3565b505050565b6000600854905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e89061289a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a619061292c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ab961112c565b610ac360006114a5565b565b6000600a54905090565b6000600960009054906101000a900460ff16905090565b66d529ae9e86000081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b2a90612667565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5690612667565b8015610ba35780601f10610b7857610100808354040283529160200191610ba3565b820191906000526020600020905b815481529060010190602001808311610b8657829003601f168201915b5050505050905090565b610bbf610bb861106b565b838361156b565b5050565b600260075403610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90612998565b60405180910390fd5b6002600781905550600960009054906101000a900460ff16610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690612a04565b60405180910390fd5b66d529ae9e8600003414610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90612a70565b60405180910390fd5b6000600a549050600a6000815480929190610cc290612abf565b9190505550610cd8610cd261106b565b826116d7565b506001600781905550565b610cf4610cee61106b565b836111aa565b610d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2a9061282e565b60405180910390fd5b610d3f848484846116f5565b50505050565b6060610d5082611751565b610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8690612b53565b60405180910390fd5b610dbf610d9b836117bd565b604051602001610dab9190612f26565b60405160208183030381529060405261191d565b604051602001610dcf9190612f9f565b6040516020818303038152906040529050919050565b610ded61112c565b610e0b7363a11db3fd35da4081a4a7667e15ae8804085a3247611a80565b565b610e1561112c565b600060085411610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e519061300d565b60405180910390fd5b6000600a549050600a6000815480929190610e7490612abf565b919050555060086000815480929190610e8c9061302d565b9190505550610e9b82826116d7565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f3b61112c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa1906130c8565b60405180910390fd5b610fb3816114a5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61102981611751565b611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f9061289a565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166110e683610949565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61113461106b565b73ffffffffffffffffffffffffffffffffffffffff16611152610af1565b73ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90613134565b60405180910390fd5b565b6000806111b683610949565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111f857506111f78185610e9f565b5b8061123657508373ffffffffffffffffffffffffffffffffffffffff1661121e84610725565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661125f82610949565b73ffffffffffffffffffffffffffffffffffffffff16146112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac906131c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90613258565b60405180910390fd5b61132f838383611b74565b61133a600082611073565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461138a9190613278565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113e191906132ac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114a0838383611c32565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d09061332c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ca91906120c9565b60405180910390a3505050565b6116f1828260405180602001604052806000815250611c37565b5050565b61170084848461123f565b61170c84848484611c92565b61174b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611742906133be565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060008203611804576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611918565b600082905060005b6000821461183657808061181f90612abf565b915050600a8261182f919061340d565b915061180c565b60008167ffffffffffffffff8111156118525761185161244a565b5b6040519080825280601f01601f1916602001820160405280156118845781602001600182028036833780820191505090505b5090505b600085146119115760018261189d9190613278565b9150600a856118ac919061343e565b60306118b891906132ac565b60f81b8183815181106118ce576118cd61346f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561190a919061340d565b9450611888565b8093505050505b919050565b6060600082510361193f57604051806020016040528060008152509050611a7b565b600060405180606001604052806040815260200161384c604091399050600060036002855161196e91906132ac565b611978919061340d565b6004611984919061349e565b67ffffffffffffffff81111561199d5761199c61244a565b5b6040519080825280601f01601f1916602001820160405280156119cf5781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015611a3b576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506119e0565b5050600386510660018114611a575760028114611a6a57611a72565b603d6001830353603d6002830353611a72565b603d60018303535b50505080925050505b919050565b80471015611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba9061352c565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611ae99061357d565b60006040518083038185875af1925050503d8060008114611b26576040519150601f19603f3d011682016040523d82523d6000602084013e611b2b565b606091505b5050905080611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613604565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611bee57507363a11db3fd35da4081a4a7667e15ae8804085a3273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2490613670565b60405180910390fd5b505050565b505050565b611c418383611e19565b611c4e6000848484611c92565b611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c84906133be565b60405180910390fd5b505050565b6000611cb38473ffffffffffffffffffffffffffffffffffffffff16611ff2565b15611e0c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cdc61106b565b8786866040518563ffffffff1660e01b8152600401611cfe94939291906136e5565b6020604051808303816000875af1925050508015611d3a57506040513d601f19601f82011682018060405250810190611d379190613746565b60015b611dbc573d8060008114611d6a576040519150601f19603f3d011682016040523d82523d6000602084013e611d6f565b606091505b506000815103611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab906133be565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e11565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f906137bf565b60405180910390fd5b611e9181611751565b15611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec89061382b565b60405180910390fd5b611edd60008383611b74565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2d91906132ac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fee60008383611c32565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61205e81612029565b811461206957600080fd5b50565b60008135905061207b81612055565b92915050565b6000602082840312156120975761209661201f565b5b60006120a58482850161206c565b91505092915050565b60008115159050919050565b6120c3816120ae565b82525050565b60006020820190506120de60008301846120ba565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561211e578082015181840152602081019050612103565b60008484015250505050565b6000601f19601f8301169050919050565b6000612146826120e4565b61215081856120ef565b9350612160818560208601612100565b6121698161212a565b840191505092915050565b6000602082019050818103600083015261218e818461213b565b905092915050565b6000819050919050565b6121a981612196565b81146121b457600080fd5b50565b6000813590506121c6816121a0565b92915050565b6000602082840312156121e2576121e161201f565b5b60006121f0848285016121b7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612224826121f9565b9050919050565b61223481612219565b82525050565b600060208201905061224f600083018461222b565b92915050565b61225e81612219565b811461226957600080fd5b50565b60008135905061227b81612255565b92915050565b600080604083850312156122985761229761201f565b5b60006122a68582860161226c565b92505060206122b7858286016121b7565b9150509250929050565b6122ca816120ae565b81146122d557600080fd5b50565b6000813590506122e7816122c1565b92915050565b6000602082840312156123035761230261201f565b5b6000612311848285016122d8565b91505092915050565b6000612325826121f9565b9050919050565b6123358161231a565b82525050565b6000602082019050612350600083018461232c565b92915050565b60008060006060848603121561236f5761236e61201f565b5b600061237d8682870161226c565b935050602061238e8682870161226c565b925050604061239f868287016121b7565b9150509250925092565b6123b281612196565b82525050565b60006020820190506123cd60008301846123a9565b92915050565b6000602082840312156123e9576123e861201f565b5b60006123f78482850161226c565b91505092915050565b600080604083850312156124175761241661201f565b5b60006124258582860161226c565b9250506020612436858286016122d8565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124828261212a565b810181811067ffffffffffffffff821117156124a1576124a061244a565b5b80604052505050565b60006124b4612015565b90506124c08282612479565b919050565b600067ffffffffffffffff8211156124e0576124df61244a565b5b6124e98261212a565b9050602081019050919050565b82818337600083830152505050565b6000612518612513846124c5565b6124aa565b90508281526020810184848401111561253457612533612445565b5b61253f8482856124f6565b509392505050565b600082601f83011261255c5761255b612440565b5b813561256c848260208601612505565b91505092915050565b6000806000806080858703121561258f5761258e61201f565b5b600061259d8782880161226c565b94505060206125ae8782880161226c565b93505060406125bf878288016121b7565b925050606085013567ffffffffffffffff8111156125e0576125df612024565b5b6125ec87828801612547565b91505092959194509250565b6000806040838503121561260f5761260e61201f565b5b600061261d8582860161226c565b925050602061262e8582860161226c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061267f57607f821691505b60208210810361269257612691612638565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006126f46021836120ef565b91506126ff82612698565b604082019050919050565b60006020820190508181036000830152612723816126e7565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612786603e836120ef565b91506127918261272a565b604082019050919050565b600060208201905081810360008301526127b581612779565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612818602e836120ef565b9150612823826127bc565b604082019050919050565b600060208201905081810360008301526128478161280b565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006128846018836120ef565b915061288f8261284e565b602082019050919050565b600060208201905081810360008301526128b381612877565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006129166029836120ef565b9150612921826128ba565b604082019050919050565b6000602082019050818103600083015261294581612909565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612982601f836120ef565b915061298d8261294c565b602082019050919050565b600060208201905081810360008301526129b181612975565b9050919050565b7f4e6f74206f6e2073616c65000000000000000000000000000000000000000000600082015250565b60006129ee600b836120ef565b91506129f9826129b8565b602082019050919050565b60006020820190508181036000830152612a1d816129e1565b9050919050565b7f496e76616c69642076616c756500000000000000000000000000000000000000600082015250565b6000612a5a600d836120ef565b9150612a6582612a24565b602082019050919050565b60006020820190508181036000830152612a8981612a4d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612aca82612196565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612afc57612afb612a90565b5b600182019050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000612b3d601f836120ef565b9150612b4882612b07565b602082019050919050565b60006020820190508181036000830152612b6c81612b30565b9050919050565b600081905092915050565b7f7b226e616d65223a224d6968617261204e465420466c6f77657220616e64204760008201527f7265656e20230000000000000000000000000000000000000000000000000000602082015250565b6000612bda602683612b73565b9150612be582612b7e565b602682019050919050565b6000612bfb826120e4565b612c058185612b73565b9350612c15818560208601612100565b80840191505092915050565b7f222c226465736372697074696f6e223a202254686520776f726c642773204e6f60008201527f2e20312067617264656e20616e64206c616e6473636170652064657369676e6560208201527f72204b617a7579756b692049736869686172612061696d7320746f206d616b6560408201527f204d69686172612d63686f2c2068697320686f6d65746f776e2c20746865206d60608201527f6f73742073616372656420706c61636520696e2074686520776f726c6420667560808201527f6c6c206f6620666c6f776572732c20677265656e65727920616e6420736d696c60a08201527f65732c20616e6420746f206d616b6520697420612070617261646973652e5c6e60c08201527f5c6e57652077696c6c20637265617465206120746f776e20616e64206761726460e08201527f656e20746861742074686520776f726c642077616e747320746f2076697369746101008201527f2c20616e642070617373206f6e20746865206d657373616765206f66206c6f766101208201527f6520616e642070656163652066726f6d204d696861726163686f20746f2074686101408201527f6520776f726c642c20746f206f7572206368696c6472656e20616e64206772616101608201527f6e646368696c6472656e2e222c22696d616765223a202268747470733a2f2f616101808201527f7277656176652e6e65742f76597a626f307447764d5574566e4d5a4a6a6a39616101a08201527f4c31706556546649584e37437a643044494a44465a73222c22617474726962756101c08201527f746573223a205b7b2274726169745f74797065223a20224c6963656e7365222c6101e08201527f2276616c7565223a20224174747269627574696f6e2d4e6f6e436f6d6d6572636102008201527f69616c2d5368617265416c696b6520342e3020496e7465726e6174696f6e616c6102208201527f202843432042592d4e432d534120342e3029227d5d7d0000000000000000000061024082015250565b6000612f0f61025683612b73565b9150612f1a82612c21565b61025682019050919050565b6000612f3182612bcd565b9150612f3d8284612bf0565b9150612f4882612f01565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000612f89601d83612b73565b9150612f9482612f53565b601d82019050919050565b6000612faa82612f7c565b9150612fb68284612bf0565b915081905092915050565b7f4e6f2046726565204d6968617261204e4654206973206c656674000000000000600082015250565b6000612ff7601a836120ef565b915061300282612fc1565b602082019050919050565b6000602082019050818103600083015261302681612fea565b9050919050565b600061303882612196565b91506000820361304b5761304a612a90565b5b600182039050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130b26026836120ef565b91506130bd82613056565b604082019050919050565b600060208201905081810360008301526130e1816130a5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061311e6020836120ef565b9150613129826130e8565b602082019050919050565b6000602082019050818103600083015261314d81613111565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006131b06025836120ef565b91506131bb82613154565b604082019050919050565b600060208201905081810360008301526131df816131a3565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132426024836120ef565b915061324d826131e6565b604082019050919050565b6000602082019050818103600083015261327181613235565b9050919050565b600061328382612196565b915061328e83612196565b92508282039050818111156132a6576132a5612a90565b5b92915050565b60006132b782612196565b91506132c283612196565b92508282019050808211156132da576132d9612a90565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006133166019836120ef565b9150613321826132e0565b602082019050919050565b6000602082019050818103600083015261334581613309565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006133a86032836120ef565b91506133b38261334c565b604082019050919050565b600060208201905081810360008301526133d78161339b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061341882612196565b915061342383612196565b925082613433576134326133de565b5b828204905092915050565b600061344982612196565b915061345483612196565b925082613464576134636133de565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006134a982612196565b91506134b483612196565b92508282026134c281612196565b915082820484148315176134d9576134d8612a90565b5b5092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613516601d836120ef565b9150613521826134e0565b602082019050919050565b6000602082019050818103600083015261354581613509565b9050919050565b600081905092915050565b50565b600061356760008361354c565b915061357282613557565b600082019050919050565b60006135888261355a565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006135ee603a836120ef565b91506135f982613592565b604082019050919050565b6000602082019050818103600083015261361d816135e1565b9050919050565b7f4e6f207472616e73666572000000000000000000000000000000000000000000600082015250565b600061365a600b836120ef565b915061366582613624565b602082019050919050565b600060208201905081810360008301526136898161364d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136b782613690565b6136c1818561369b565b93506136d1818560208601612100565b6136da8161212a565b840191505092915050565b60006080820190506136fa600083018761222b565b613707602083018661222b565b61371460408301856123a9565b818103606083015261372681846136ac565b905095945050505050565b60008151905061374081612055565b92915050565b60006020828403121561375c5761375b61201f565b5b600061376a84828501613731565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006137a96020836120ef565b91506137b482613773565b602082019050919050565b600060208201905081810360008301526137d88161379c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613815601c836120ef565b9150613820826137df565b602082019050919050565b6000602082019050818103600083015261384481613808565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212203f93edc8edc9bff9ac30a56ea3a3717fb0177607b2ef492f87e4561ac67cd1c464736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101665760003560e01c806375794a3c116100d1578063a6f2ae3a1161008a578063e086e5ec11610064578063e086e5ec1461050b578063e55fcf2d14610522578063e985e9c51461054b578063f2fde38b1461058857610166565b8063a6f2ae3a1461049b578063b88d4fde146104a5578063c87b56dd146104ce57610166565b806375794a3c1461039b578063890e839f146103c65780638d859f3e146103f15780638da5cb5b1461041c57806395d89b4114610447578063a22cb4651461047257610166565b806323b872dd1161012357806323b872dd1461028d57806342842e0e146102b65780635ccc6bd7146102df5780636352211e1461030a57806370a0823114610347578063715018a61461038457610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b3146102105780630a088949146102395780630d9019e114610262575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612081565b6105b1565b60405161019f91906120c9565b60405180910390f35b3480156101b457600080fd5b506101bd610693565b6040516101ca9190612174565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906121cc565b610725565b604051610207919061223a565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612281565b61076b565b005b34801561024557600080fd5b50610260600480360381019061025b91906122ed565b610882565b005b34801561026e57600080fd5b506102776108a7565b604051610284919061233b565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612356565b6108bf565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612356565b61091f565b005b3480156102eb57600080fd5b506102f461093f565b60405161030191906123b8565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c91906121cc565b610949565b60405161033e919061223a565b60405180910390f35b34801561035357600080fd5b5061036e600480360381019061036991906123d3565b6109fa565b60405161037b91906123b8565b60405180910390f35b34801561039057600080fd5b50610399610ab1565b005b3480156103a757600080fd5b506103b0610ac5565b6040516103bd91906123b8565b60405180910390f35b3480156103d257600080fd5b506103db610acf565b6040516103e891906120c9565b60405180910390f35b3480156103fd57600080fd5b50610406610ae6565b60405161041391906123b8565b60405180910390f35b34801561042857600080fd5b50610431610af1565b60405161043e919061223a565b60405180910390f35b34801561045357600080fd5b5061045c610b1b565b6040516104699190612174565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190612400565b610bad565b005b6104a3610bc3565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612575565b610ce3565b005b3480156104da57600080fd5b506104f560048036038101906104f091906121cc565b610d45565b6040516105029190612174565b60405180910390f35b34801561051757600080fd5b50610520610de5565b005b34801561052e57600080fd5b50610549600480360381019061054491906123d3565b610e0d565b005b34801561055757600080fd5b50610572600480360381019061056d91906125f8565b610e9f565b60405161057f91906120c9565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa91906123d3565b610f33565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068c575061068b82610fb6565b5b9050919050565b6060600080546106a290612667565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce90612667565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b5050505050905090565b600061073082611020565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077682610949565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dd9061270a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661080561106b565b73ffffffffffffffffffffffffffffffffffffffff16148061083457506108338161082e61106b565b610e9f565b5b610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a9061279c565b60405180910390fd5b61087d8383611073565b505050565b61088a61112c565b80600960006101000a81548160ff02191690831515021790555050565b7363a11db3fd35da4081a4a7667e15ae8804085a3281565b6108d06108ca61106b565b826111aa565b61090f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109069061282e565b60405180910390fd5b61091a83838361123f565b505050565b61093a83838360405180602001604052806000815250610ce3565b505050565b6000600854905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e89061289a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a619061292c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ab961112c565b610ac360006114a5565b565b6000600a54905090565b6000600960009054906101000a900460ff16905090565b66d529ae9e86000081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b2a90612667565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5690612667565b8015610ba35780601f10610b7857610100808354040283529160200191610ba3565b820191906000526020600020905b815481529060010190602001808311610b8657829003601f168201915b5050505050905090565b610bbf610bb861106b565b838361156b565b5050565b600260075403610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90612998565b60405180910390fd5b6002600781905550600960009054906101000a900460ff16610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690612a04565b60405180910390fd5b66d529ae9e8600003414610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90612a70565b60405180910390fd5b6000600a549050600a6000815480929190610cc290612abf565b9190505550610cd8610cd261106b565b826116d7565b506001600781905550565b610cf4610cee61106b565b836111aa565b610d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2a9061282e565b60405180910390fd5b610d3f848484846116f5565b50505050565b6060610d5082611751565b610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8690612b53565b60405180910390fd5b610dbf610d9b836117bd565b604051602001610dab9190612f26565b60405160208183030381529060405261191d565b604051602001610dcf9190612f9f565b6040516020818303038152906040529050919050565b610ded61112c565b610e0b7363a11db3fd35da4081a4a7667e15ae8804085a3247611a80565b565b610e1561112c565b600060085411610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e519061300d565b60405180910390fd5b6000600a549050600a6000815480929190610e7490612abf565b919050555060086000815480929190610e8c9061302d565b9190505550610e9b82826116d7565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f3b61112c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa1906130c8565b60405180910390fd5b610fb3816114a5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61102981611751565b611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f9061289a565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166110e683610949565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61113461106b565b73ffffffffffffffffffffffffffffffffffffffff16611152610af1565b73ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90613134565b60405180910390fd5b565b6000806111b683610949565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111f857506111f78185610e9f565b5b8061123657508373ffffffffffffffffffffffffffffffffffffffff1661121e84610725565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661125f82610949565b73ffffffffffffffffffffffffffffffffffffffff16146112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac906131c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90613258565b60405180910390fd5b61132f838383611b74565b61133a600082611073565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461138a9190613278565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113e191906132ac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114a0838383611c32565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d09061332c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ca91906120c9565b60405180910390a3505050565b6116f1828260405180602001604052806000815250611c37565b5050565b61170084848461123f565b61170c84848484611c92565b61174b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611742906133be565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060008203611804576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611918565b600082905060005b6000821461183657808061181f90612abf565b915050600a8261182f919061340d565b915061180c565b60008167ffffffffffffffff8111156118525761185161244a565b5b6040519080825280601f01601f1916602001820160405280156118845781602001600182028036833780820191505090505b5090505b600085146119115760018261189d9190613278565b9150600a856118ac919061343e565b60306118b891906132ac565b60f81b8183815181106118ce576118cd61346f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561190a919061340d565b9450611888565b8093505050505b919050565b6060600082510361193f57604051806020016040528060008152509050611a7b565b600060405180606001604052806040815260200161384c604091399050600060036002855161196e91906132ac565b611978919061340d565b6004611984919061349e565b67ffffffffffffffff81111561199d5761199c61244a565b5b6040519080825280601f01601f1916602001820160405280156119cf5781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015611a3b576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506119e0565b5050600386510660018114611a575760028114611a6a57611a72565b603d6001830353603d6002830353611a72565b603d60018303535b50505080925050505b919050565b80471015611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba9061352c565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611ae99061357d565b60006040518083038185875af1925050503d8060008114611b26576040519150601f19603f3d011682016040523d82523d6000602084013e611b2b565b606091505b5050905080611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613604565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611bee57507363a11db3fd35da4081a4a7667e15ae8804085a3273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2490613670565b60405180910390fd5b505050565b505050565b611c418383611e19565b611c4e6000848484611c92565b611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c84906133be565b60405180910390fd5b505050565b6000611cb38473ffffffffffffffffffffffffffffffffffffffff16611ff2565b15611e0c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cdc61106b565b8786866040518563ffffffff1660e01b8152600401611cfe94939291906136e5565b6020604051808303816000875af1925050508015611d3a57506040513d601f19601f82011682018060405250810190611d379190613746565b60015b611dbc573d8060008114611d6a576040519150601f19603f3d011682016040523d82523d6000602084013e611d6f565b606091505b506000815103611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab906133be565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e11565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f906137bf565b60405180910390fd5b611e9181611751565b15611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec89061382b565b60405180910390fd5b611edd60008383611b74565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2d91906132ac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fee60008383611c32565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61205e81612029565b811461206957600080fd5b50565b60008135905061207b81612055565b92915050565b6000602082840312156120975761209661201f565b5b60006120a58482850161206c565b91505092915050565b60008115159050919050565b6120c3816120ae565b82525050565b60006020820190506120de60008301846120ba565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561211e578082015181840152602081019050612103565b60008484015250505050565b6000601f19601f8301169050919050565b6000612146826120e4565b61215081856120ef565b9350612160818560208601612100565b6121698161212a565b840191505092915050565b6000602082019050818103600083015261218e818461213b565b905092915050565b6000819050919050565b6121a981612196565b81146121b457600080fd5b50565b6000813590506121c6816121a0565b92915050565b6000602082840312156121e2576121e161201f565b5b60006121f0848285016121b7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612224826121f9565b9050919050565b61223481612219565b82525050565b600060208201905061224f600083018461222b565b92915050565b61225e81612219565b811461226957600080fd5b50565b60008135905061227b81612255565b92915050565b600080604083850312156122985761229761201f565b5b60006122a68582860161226c565b92505060206122b7858286016121b7565b9150509250929050565b6122ca816120ae565b81146122d557600080fd5b50565b6000813590506122e7816122c1565b92915050565b6000602082840312156123035761230261201f565b5b6000612311848285016122d8565b91505092915050565b6000612325826121f9565b9050919050565b6123358161231a565b82525050565b6000602082019050612350600083018461232c565b92915050565b60008060006060848603121561236f5761236e61201f565b5b600061237d8682870161226c565b935050602061238e8682870161226c565b925050604061239f868287016121b7565b9150509250925092565b6123b281612196565b82525050565b60006020820190506123cd60008301846123a9565b92915050565b6000602082840312156123e9576123e861201f565b5b60006123f78482850161226c565b91505092915050565b600080604083850312156124175761241661201f565b5b60006124258582860161226c565b9250506020612436858286016122d8565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124828261212a565b810181811067ffffffffffffffff821117156124a1576124a061244a565b5b80604052505050565b60006124b4612015565b90506124c08282612479565b919050565b600067ffffffffffffffff8211156124e0576124df61244a565b5b6124e98261212a565b9050602081019050919050565b82818337600083830152505050565b6000612518612513846124c5565b6124aa565b90508281526020810184848401111561253457612533612445565b5b61253f8482856124f6565b509392505050565b600082601f83011261255c5761255b612440565b5b813561256c848260208601612505565b91505092915050565b6000806000806080858703121561258f5761258e61201f565b5b600061259d8782880161226c565b94505060206125ae8782880161226c565b93505060406125bf878288016121b7565b925050606085013567ffffffffffffffff8111156125e0576125df612024565b5b6125ec87828801612547565b91505092959194509250565b6000806040838503121561260f5761260e61201f565b5b600061261d8582860161226c565b925050602061262e8582860161226c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061267f57607f821691505b60208210810361269257612691612638565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006126f46021836120ef565b91506126ff82612698565b604082019050919050565b60006020820190508181036000830152612723816126e7565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612786603e836120ef565b91506127918261272a565b604082019050919050565b600060208201905081810360008301526127b581612779565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612818602e836120ef565b9150612823826127bc565b604082019050919050565b600060208201905081810360008301526128478161280b565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006128846018836120ef565b915061288f8261284e565b602082019050919050565b600060208201905081810360008301526128b381612877565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006129166029836120ef565b9150612921826128ba565b604082019050919050565b6000602082019050818103600083015261294581612909565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612982601f836120ef565b915061298d8261294c565b602082019050919050565b600060208201905081810360008301526129b181612975565b9050919050565b7f4e6f74206f6e2073616c65000000000000000000000000000000000000000000600082015250565b60006129ee600b836120ef565b91506129f9826129b8565b602082019050919050565b60006020820190508181036000830152612a1d816129e1565b9050919050565b7f496e76616c69642076616c756500000000000000000000000000000000000000600082015250565b6000612a5a600d836120ef565b9150612a6582612a24565b602082019050919050565b60006020820190508181036000830152612a8981612a4d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612aca82612196565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612afc57612afb612a90565b5b600182019050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000612b3d601f836120ef565b9150612b4882612b07565b602082019050919050565b60006020820190508181036000830152612b6c81612b30565b9050919050565b600081905092915050565b7f7b226e616d65223a224d6968617261204e465420466c6f77657220616e64204760008201527f7265656e20230000000000000000000000000000000000000000000000000000602082015250565b6000612bda602683612b73565b9150612be582612b7e565b602682019050919050565b6000612bfb826120e4565b612c058185612b73565b9350612c15818560208601612100565b80840191505092915050565b7f222c226465736372697074696f6e223a202254686520776f726c642773204e6f60008201527f2e20312067617264656e20616e64206c616e6473636170652064657369676e6560208201527f72204b617a7579756b692049736869686172612061696d7320746f206d616b6560408201527f204d69686172612d63686f2c2068697320686f6d65746f776e2c20746865206d60608201527f6f73742073616372656420706c61636520696e2074686520776f726c6420667560808201527f6c6c206f6620666c6f776572732c20677265656e65727920616e6420736d696c60a08201527f65732c20616e6420746f206d616b6520697420612070617261646973652e5c6e60c08201527f5c6e57652077696c6c20637265617465206120746f776e20616e64206761726460e08201527f656e20746861742074686520776f726c642077616e747320746f2076697369746101008201527f2c20616e642070617373206f6e20746865206d657373616765206f66206c6f766101208201527f6520616e642070656163652066726f6d204d696861726163686f20746f2074686101408201527f6520776f726c642c20746f206f7572206368696c6472656e20616e64206772616101608201527f6e646368696c6472656e2e222c22696d616765223a202268747470733a2f2f616101808201527f7277656176652e6e65742f76597a626f307447764d5574566e4d5a4a6a6a39616101a08201527f4c31706556546649584e37437a643044494a44465a73222c22617474726962756101c08201527f746573223a205b7b2274726169745f74797065223a20224c6963656e7365222c6101e08201527f2276616c7565223a20224174747269627574696f6e2d4e6f6e436f6d6d6572636102008201527f69616c2d5368617265416c696b6520342e3020496e7465726e6174696f6e616c6102208201527f202843432042592d4e432d534120342e3029227d5d7d0000000000000000000061024082015250565b6000612f0f61025683612b73565b9150612f1a82612c21565b61025682019050919050565b6000612f3182612bcd565b9150612f3d8284612bf0565b9150612f4882612f01565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000612f89601d83612b73565b9150612f9482612f53565b601d82019050919050565b6000612faa82612f7c565b9150612fb68284612bf0565b915081905092915050565b7f4e6f2046726565204d6968617261204e4654206973206c656674000000000000600082015250565b6000612ff7601a836120ef565b915061300282612fc1565b602082019050919050565b6000602082019050818103600083015261302681612fea565b9050919050565b600061303882612196565b91506000820361304b5761304a612a90565b5b600182039050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130b26026836120ef565b91506130bd82613056565b604082019050919050565b600060208201905081810360008301526130e1816130a5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061311e6020836120ef565b9150613129826130e8565b602082019050919050565b6000602082019050818103600083015261314d81613111565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006131b06025836120ef565b91506131bb82613154565b604082019050919050565b600060208201905081810360008301526131df816131a3565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132426024836120ef565b915061324d826131e6565b604082019050919050565b6000602082019050818103600083015261327181613235565b9050919050565b600061328382612196565b915061328e83612196565b92508282039050818111156132a6576132a5612a90565b5b92915050565b60006132b782612196565b91506132c283612196565b92508282019050808211156132da576132d9612a90565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006133166019836120ef565b9150613321826132e0565b602082019050919050565b6000602082019050818103600083015261334581613309565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006133a86032836120ef565b91506133b38261334c565b604082019050919050565b600060208201905081810360008301526133d78161339b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061341882612196565b915061342383612196565b925082613433576134326133de565b5b828204905092915050565b600061344982612196565b915061345483612196565b925082613464576134636133de565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006134a982612196565b91506134b483612196565b92508282026134c281612196565b915082820484148315176134d9576134d8612a90565b5b5092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613516601d836120ef565b9150613521826134e0565b602082019050919050565b6000602082019050818103600083015261354581613509565b9050919050565b600081905092915050565b50565b600061356760008361354c565b915061357282613557565b600082019050919050565b60006135888261355a565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006135ee603a836120ef565b91506135f982613592565b604082019050919050565b6000602082019050818103600083015261361d816135e1565b9050919050565b7f4e6f207472616e73666572000000000000000000000000000000000000000000600082015250565b600061365a600b836120ef565b915061366582613624565b602082019050919050565b600060208201905081810360008301526136898161364d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136b782613690565b6136c1818561369b565b93506136d1818560208601612100565b6136da8161212a565b840191505092915050565b60006080820190506136fa600083018761222b565b613707602083018661222b565b61371460408301856123a9565b818103606083015261372681846136ac565b905095945050505050565b60008151905061374081612055565b92915050565b60006020828403121561375c5761375b61201f565b5b600061376a84828501613731565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006137a96020836120ef565b91506137b482613773565b602082019050919050565b600060208201905081810360008301526137d88161379c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613815601c836120ef565b9150613820826137df565b602082019050919050565b6000602082019050818103600083015261384481613808565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212203f93edc8edc9bff9ac30a56ea3a3717fb0177607b2ef492f87e4561ac67cd1c464736f6c63430008110033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.