ERC-721
Overview
Max Total Supply
40 NUCLK001
Holders
34
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NUCLK001Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
NuclkGenesis
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// contracts/NuCLK-G.sol // SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./base64.sol"; contract NuclkGenesis is ERC721Enumerable, Ownable { uint public MAX_CLK = 250; bool public PAUSED = true; uint256 private _price = 0.07 ether; mapping(uint256 => bool) private _logo; mapping(uint256 => uint256) private _jewel; constructor() ERC721(unicode"NüCLK Génesis", "NUCLK001") {} function mint() public payable { require(!PAUSED, "Sale paused"); require(totalSupply() < MAX_CLK, "Sale has already ended"); require(msg.value >= _price, "Ether sent is not correct"); uint256 id = totalSupply(); _logo[id] = prng(block.difficulty) % 3 == 2; _jewel[id] = prng(block.timestamp) % 6; _safeMint(msg.sender, id); } function pause() public onlyOwner { PAUSED = !PAUSED; } function withdraw() public payable onlyOwner { require(payable(0xed8D89B01cB469B75a9a18bd4680f0b4c4224a4d).send(address(this).balance)); } function CLK(uint256 tokenId) private view returns (bytes memory) { bytes memory r = abi.encodePacked('<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"'); if (_jewel[tokenId] != 5) { r = abi.encodePacked(r, ' style="background-color:#EFCEA3"'); } if (_jewel[tokenId] == 1) { r = abi.encodePacked(r, '><style><![CDATA[.B{stroke:#eff3f9}.C{stroke-linecap:round}.D{stroke-width:2}.E{fill:#1FDBCC'); } else if (_jewel[tokenId] == 2 || _jewel[tokenId] == 3) { r = abi.encodePacked(r, '><style><![CDATA[.B{stroke:#eff3f9}.C{stroke-linecap:round}.D{stroke-width:2}.E{fill:#1A90FF'); } else { r = abi.encodePacked(r, '><style><![CDATA[.B{stroke:#eff3f9}.C{stroke-linecap:round}.D{stroke-width:2}.E{fill:#E94E77'); } r = abi.encodePacked(r, '}]]></style><defs><linearGradient id="A" gradientTransform="rotate(90)"><stop offset="50%" stop-color="#171f25"/><stop offset="50%" stop-color="#efcea3"/></linearGradient></defs><circle r="146" cx="150" cy="150" fill="'); if (_jewel[tokenId] == 5) { r = abi.encodePacked(r, '#171f25'); } else { r = abi.encodePacked(r, '#c9a87f'); } r = abi.encodePacked(r, '"/><circle r="137" cx="150" cy="150" fill="#c49362"/><g fill="#0f253a"><circle r="136" cx="150" cy="150"/><g class="B"><circle r="133" cx="150" cy="150" stroke-dasharray="6.964" stroke-dashoffset="3.482" class="D"/><circle r="118" cx="150" cy="150" stroke-width="22" stroke-dasharray="30.892" stroke-dashoffset="15.446"/></g></g><g fill="#171f25" stroke-width="1.5" class="B"><circle r="26" cx="150" cy="210" stroke-dasharray="1.361" stroke-dashoffset="0.681"/><circle r="26" cx="150" cy="90" stroke-dasharray="0.817" stroke-dashoffset="0.408"/></g><g><path id="milli" d="M150 84v29" class="B C D"/><animateTransform attributeName="transform" type="rotate" from="0 150 90" to="360 150 90" dur="1s" repeatCount="indefinite"/></g><g><path id="sec" d="M150 216v-29" class="B C D"/><animateTransform attributeName="transform" type="rotate" from="0 150 210" to="360 150 210" dur="60s" repeatCount="indefinite"/></g><circle r="2.5" cx="150" cy="90" fill="#eff3f9"/><circle r="2.5" cx="150" cy="210" fill="#eff3f9"/><circle r="1" cx="150" cy="90" class="E"/><circle r="1" cx="150" cy="210" class="E"/><g stroke-width=".4"'); if (_logo[tokenId]) { r = abi.encodePacked(r, ' transform="scale(-1,1) translate(-300, 0)"'); } return abi.encodePacked(r, '><rect x="55" y="137" width="190" height="26" fill="url(#A)" rx="5"/><path fill="#efcea3" stroke="#efcea3" d="M64.85 141.4h0q.07 0 .11.04.04.05.04.11h0v5.27q0 .09-.05.14-.05.04-.12.04h0q-.03 0-.07-.02-.03-.01-.06-.04h0l-3.71-5.08.11-.05v5.05q0 .06-.04.1-.04.04-.11.04h0q-.07 0-.11-.04-.04-.04-.04-.1h0v-5.3q0-.09.05-.12.05-.04.09-.04h0q.04 0 .07.01.03.01.05.05h0l3.7 5.04-.06.16v-5.11q0-.06.04-.11.05-.04.11-.04zm4.63 1.61h0q.07 0 .12.05.04.04.04.11h0v2.33q0 .77-.44 1.16-.43.39-1.15.39h0q-.71 0-1.15-.39-.44-.39-.44-1.16h0v-2.33q0-.07.05-.11.05-.05.11-.05h0q.08 0 .12.05.04.04.04.11h0v2.33q0 .6.34.92.34.32.93.32h0q.59 0 .93-.32.34-.32.34-.92h0v-2.33q0-.07.04-.11.05-.05.12-.05zm-.77-.8h0q-.13 0-.2-.08-.08-.08-.08-.21h0v-.06q0-.13.08-.21.08-.08.21-.08h0q.11 0 .19.08.07.08.07.21h0v.06q0 .13-.07.21-.08.08-.2.08zm-1.3 0h0q-.13 0-.21-.08-.07-.08-.07-.21h0v-.06q0-.13.08-.21.08-.08.21-.08h0q.11 0 .18.08.08.08.08.21h0v.06q0 .13-.08.21-.07.08-.19.08z"/><path fill="#171f25" stroke="#171f25" d="M235.06 153.86h0q-.07.05-.08.11 0 .06.04.13h0q.04.05.1.06.06 0 .11-.03h0q.34-.23.73-.37.4-.14.85-.14h0q.51 0 .95.19.45.19.78.53.34.35.53.82.19.47.19 1.04h0q0 .57-.19 1.04-.19.47-.53.82-.33.34-.78.53-.44.19-.95.19h0q-.45 0-.84-.14-.39-.14-.73-.36h0q-.06-.04-.12-.03-.06.01-.1.06h0q-.04.06-.04.12.01.07.07.11h0q.19.13.48.26.29.13.62.2.33.08.66.08h0q.57 0 1.08-.22.5-.21.89-.6.38-.39.6-.91.22-.53.22-1.15h0q0-.62-.22-1.15-.22-.52-.6-.91-.39-.39-.89-.6-.51-.22-1.08-.22h0q-.49 0-.94.14-.45.15-.81.4zm-1.38-.62v5.6q0 .06.05.11.05.05.11.05h0q.07 0 .12-.05.04-.05.04-.11h0v-5.6q0-.06-.05-.11-.05-.05-.11-.05h0q-.07 0-.12.05-.04.05-.04.11h0zm-1.57 5.76h0q.07 0 .12-.05.04-.05.04-.11h0v-5.6q0-.06-.04-.11-.05-.05-.12-.05h0q-.07 0-.11.05-.05.05-.05.11h0v5.6q0 .06.05.11.04.05.11.05zm-2.77-4.04h0q-.07 0-.12.05-.04.05-.04.12h0q0 .07.05.12h0l2.78 2.31.01-.38-2.58-2.17q-.05-.05-.1-.05zm-.05 4.04h0q.06 0 .12-.06h0l1.93-2.06-.24-.21-1.92 2.05q-.05.05-.05.12h0q0 .08.06.12.07.04.1.04z"/></g><g><path id="min" stroke="#fff" stroke-width="3" d="M150 164V21" class="C"/><animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="1h" repeatCount="indefinite"/></g><g><path id="hr" stroke="#fff" stroke-width="5" d="M150 167V52" class="C"/><animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="12h" repeatCount="indefinite"/></g><circle r="10" cx="150" cy="150" fill="#fff"/><circle r="7" cx="150" cy="150" class="E"/><script type="text/javascript"><![CDATA[const e=new Date();var n=e.getMilliseconds(),o=e.getSeconds()+n/1e3,r=e.getMinutes()+o/60,s=e.getHours()+r/60;document.getElementById("milli").setAttribute("transform","rotate("+n/1e3*360+" 150 90)"),document.getElementById("sec").setAttribute("transform","rotate("+o/60*360+" 150 210)"),document.getElementById("min").setAttribute("transform","rotate("+r/60*360+" 150 150)"),document.getElementById("hr").setAttribute("transform","rotate("+s/12*360+" 150 150)");]]></script></svg>'); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "URI query for nonexistent token"); bytes memory json = abi.encodePacked( unicode'{"name":"NüCLK Génesis #', Strings.toString(tokenId), unicode'","description":"Clocks for the Metaverse","image":"data:image/svg+xml;base64,', Base64.encode(CLK(tokenId)), '", "attributes":[{"trait_type":"Logo","value":"'); if (_logo[tokenId]) { json = abi.encodePacked(json, 'Invertido"}, {"trait_type":"Jewels","value":"'); } else { json = abi.encodePacked(json, 'Normal"}, {"trait_type":"Jewels","value":"'); } if (_jewel[tokenId] == 1) { json = abi.encodePacked(json, 'Diamante"}]}'); } else if (_jewel[tokenId] == 2 || _jewel[tokenId] == 3) { json = abi.encodePacked(json, 'Zafiro"}]}'); } else if (_jewel[tokenId] == 5) { json = abi.encodePacked(json, unicode'Rubí"}, {"trait_type": "Background", "value": "Transparente"}]}'); } else { json = abi.encodePacked(json, unicode'Rubí"}]}'); } return string(abi.encodePacked('data:application/json;base64,', Base64.encode(json))); } // LuckySeven - @matiasbn_eth function prng(uint mu) internal pure returns (uint O) { assembly { let L := exp(10, 250) // 10^p let U := mul(L, 1) // 10^p * b let C := exp(10, 10) // 10^n let K := sub(C, mu) // 10^n - mu let Y := div(U, K) // (10^p * b)/(10^n - mu) let S := exp(10, add(2, 3)) // 10^(i+j) let E := exp(10, 2) // 10^i let V := mod(Y, S) // Y % 10^(i+j) let N := mod(Y, E) // Y % 10^i let I := sub(V, N) // (Y % 10^(i+j)) / (Y % 10^i) O := div(I, E) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; library Base64 { string internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ""; // load the table into memory string memory table = TABLE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for { } lt(dataPtr, endPtr) { } { dataPtr := add(dataPtr, 3) // read 3 bytes let input := mload(dataPtr) // write 4 characters mstore( resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F)))) ) resultPtr := add(resultPtr, 1) mstore( resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F)))) ) resultPtr := add(resultPtr, 1) mstore( resultPtr, shl(248, mload(add(tablePtr, and(shr(6, input), 0x3F)))) ) resultPtr := add(resultPtr, 1) mstore( resultPtr, shl(248, mload(add(tablePtr, and(input, 0x3F)))) ) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// 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 v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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 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 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" ] } }, "metadata": { "useLiteralContent": true }, "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":"MAX_CLK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405260fa600b556001600c60006101000a81548160ff02191690831515021790555066f8b0a10e470000600d553480156200003c57600080fd5b506040518060400160405280600f81526020017f4ec3bc434c4b2047c3a96e6573697300000000000000000000000000000000008152506040518060400160405280600881526020017f4e55434c4b3030310000000000000000000000000000000000000000000000008152508160009080519060200190620000c1929190620001d1565b508060019080519060200190620000da929190620001d1565b505050620000fd620000f16200010360201b60201c565b6200010b60201b60201c565b620002e6565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001df9062000281565b90600052602060002090601f0160209004810192826200020357600085556200024f565b82601f106200021e57805160ff19168380011785556200024f565b828001600101855582156200024f579182015b828111156200024e57825182559160200191906001019062000231565b5b5090506200025e919062000262565b5090565b5b808211156200027d57600081600090555060010162000263565b5090565b600060028204905060018216806200029a57607f821691505b60208210811415620002b157620002b0620002b7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615bf180620002f66000396000f3fe60806040526004361061014b5760003560e01c80637019ee43116100b6578063a22cb4651161006f578063a22cb46514610452578063a9aad58c1461047b578063b88d4fde146104a6578063c87b56dd146104cf578063e985e9c51461050c578063f2fde38b146105495761014b565b80637019ee431461036657806370a0823114610391578063715018a6146103ce5780638456cb59146103e55780638da5cb5b146103fc57806395d89b41146104275761014b565b806323b872dd1161010857806323b872dd146102535780632f745c591461027c5780633ccfd60b146102b957806342842e0e146102c35780634f6ccce7146102ec5780636352211e146103295761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f55780631249c58b1461021e57806318160ddd14610228575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612cda565b610572565b6040516101849190615434565b60405180910390f35b34801561019957600080fd5b506101a26105ec565b6040516101af919061544f565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612d2c565b61067e565b6040516101ec91906153cd565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612c9e565b610703565b005b61022661081b565b005b34801561023457600080fd5b5061023d610982565b60405161024a9190615711565b60405180910390f35b34801561025f57600080fd5b5061027a60048036038101906102759190612b98565b61098f565b005b34801561028857600080fd5b506102a3600480360381019061029e9190612c9e565b6109ef565b6040516102b09190615711565b60405180910390f35b6102c1610a94565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612b98565b610b64565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612d2c565b610b84565b6040516103209190615711565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190612d2c565b610c1b565b60405161035d91906153cd565b60405180910390f35b34801561037257600080fd5b5061037b610ccd565b6040516103889190615711565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190612b33565b610cd3565b6040516103c59190615711565b60405180910390f35b3480156103da57600080fd5b506103e3610d8b565b005b3480156103f157600080fd5b506103fa610e13565b005b34801561040857600080fd5b50610411610ebb565b60405161041e91906153cd565b60405180910390f35b34801561043357600080fd5b5061043c610ee5565b604051610449919061544f565b60405180910390f35b34801561045e57600080fd5b5061047960048036038101906104749190612c62565b610f77565b005b34801561048757600080fd5b50610490610f8d565b60405161049d9190615434565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612be7565b610fa0565b005b3480156104db57600080fd5b506104f660048036038101906104f19190612d2c565b611002565b604051610503919061544f565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190612b5c565b611236565b6040516105409190615434565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190612b33565b6112ca565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e557506105e4826113c2565b5b9050919050565b6060600080546105fb906159a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610627906159a6565b80156106745780601f1061064957610100808354040283529160200191610674565b820191906000526020600020905b81548152906001019060200180831161065757829003601f168201915b5050505050905090565b6000610689826114a4565b6106c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bf90615611565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061070e82610c1b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561077f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077690615671565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661079e611510565b73ffffffffffffffffffffffffffffffffffffffff1614806107cd57506107cc816107c7611510565b611236565b5b61080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390615591565b60405180910390fd5b6108168383611518565b505050565b600c60009054906101000a900460ff161561086b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086290615471565b60405180910390fd5b600b54610876610982565b106108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad90615691565b60405180910390fd5b600d543410156108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f2906156b1565b60405180910390fd5b6000610905610982565b905060026003610914446115d1565b61091e9190615a21565b14600e600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506006610954426115d1565b61095e9190615a21565b600f60008381526020019081526020016000208190555061097f3382611610565b50565b6000600880549050905090565b6109a061099a611510565b8261162e565b6109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d6906156d1565b60405180910390fd5b6109ea83838361170c565b505050565b60006109fa83610cd3565b8210610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a32906154b1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a9c611510565b73ffffffffffffffffffffffffffffffffffffffff16610aba610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614610b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0790615631565b60405180910390fd5b73ed8d89b01cb469b75a9a18bd4680f0b4c4224a4d73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610b6257600080fd5b565b610b7f83838360405180602001604052806000815250610fa0565b505050565b6000610b8e610982565b8210610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc6906156f1565b60405180910390fd5b60088281548110610c09577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb906155d1565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b906155b1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d93611510565b73ffffffffffffffffffffffffffffffffffffffff16610db1610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90615631565b60405180910390fd5b610e116000611968565b565b610e1b611510565b73ffffffffffffffffffffffffffffffffffffffff16610e39610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690615631565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ef4906159a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610f20906159a6565b8015610f6d5780601f10610f4257610100808354040283529160200191610f6d565b820191906000526020600020905b815481529060010190602001808311610f5057829003601f168201915b5050505050905090565b610f89610f82611510565b8383611a2e565b5050565b600c60009054906101000a900460ff1681565b610fb1610fab611510565b8361162e565b610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe7906156d1565b60405180910390fd5b610ffc84848484611b9b565b50505050565b606061100d826114a4565b61104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390615491565b60405180910390fd5b600061105783611bf7565b61106861106385611da4565b611fe9565b604051602001611079929190615351565b6040516020818303038152906040529050600e600084815260200190815260200160002060009054906101000a900460ff16156110d757806040516020016110c191906151fd565b60405160208183030381529060405290506110fa565b806040516020016110e891906152c9565b60405160208183030381529060405290505b6001600f600085815260200190815260200160002054141561113d578060405160200161112791906151db565b6040516020818303038152906040529050611206565b6002600f600085815260200190815260200160002054148061117257506003600f600085815260200190815260200160002054145b1561119e5780604051602001611188919061532f565b6040516020818303038152906040529050611205565b6005600f60008581526020019081526020016000205414156111e157806040516020016111cb9190615175565b6040516020818303038152906040529050611204565b806040516020016111f29190615285565b60405160208183030381529060405290505b5b5b61120f81611fe9565b60405160200161121f91906153ab565b604051602081830303815290604052915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112d2611510565b73ffffffffffffffffffffffffffffffffffffffff166112f0610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90615631565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad906154f1565b60405180910390fd5b6113bf81611968565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061148d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061149d575061149c82612194565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661158b83610c1b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600060fa600a0a60018102600a800a8481038083046003600201600a0a6002600a0a8183068184068082038381049a5050505050505050505050919050565b61162a8282604051806020016040528060008152506121fe565b5050565b6000611639826114a4565b611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90615571565b60405180910390fd5b600061168383610c1b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116f257508373ffffffffffffffffffffffffffffffffffffffff166116da8461067e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061170357506117028185611236565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661172c82610c1b565b73ffffffffffffffffffffffffffffffffffffffff1614611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990615651565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e990615531565b60405180910390fd5b6117fd838383612259565b611808600082611518565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461185891906158bc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118af91906157db565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490615551565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b8e9190615434565b60405180910390a3505050565b611ba684848461170c565b611bb28484848461236d565b611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be8906154d1565b60405180910390fd5b50505050565b60606000821415611c3f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d9f565b600082905060005b60008214611c71578080611c5a906159d8565b915050600a82611c6a9190615831565b9150611c47565b60008167ffffffffffffffff811115611cb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ce55781602001600182028036833780820191505090505b5090505b60008514611d9857600182611cfe91906158bc565b9150600a85611d0d9190615a21565b6030611d1991906157db565b60f81b818381518110611d55577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d919190615831565b9450611ce9565b8093505050505b919050565b60606000604051602001611db790615396565b60405160208183030381529060405290506005600f60008581526020019081526020016000205414611e065780604051602001611df49190615153565b60405160208183030381529060405290505b6001600f6000858152602001908152602001600020541415611e495780604051602001611e339190615131565b6040516020818303038152906040529050611ece565b6002600f6000858152602001908152602001600020541480611e7e57506003600f600085815260200190815260200160002054145b15611eaa5780604051602001611e949190615197565b6040516020818303038152906040529050611ecd565b80604051602001611ebb91906152a7565b60405160208183030381529060405290505b5b80604051602001611edf91906151b9565b60405160208183030381529060405290506005600f6000858152602001908152602001600020541415611f335780604051602001611f1d919061530d565b6040516020818303038152906040529050611f56565b80604051602001611f449190615241565b60405160208183030381529060405290505b80604051602001611f67919061521f565b6040516020818303038152906040529050600e600084815260200190815260200160002060009054906101000a900460ff1615611fc15780604051602001611faf91906152eb565b60405160208183030381529060405290505b80604051602001611fd29190615263565b604051602081830303815290604052915050919050565b606060008251141561200c5760405180602001604052806000815250905061218f565b6000604051806060016040528060408152602001615b7c604091399050600060036002855161203b91906157db565b6120459190615831565b60046120519190615862565b9050600060208261206291906157db565b67ffffffffffffffff8111156120a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120d35781602001600182028036833780820191505090505b509050818152600183018586518101602084015b8183101561214e576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b8252600182019150506120e7565b600389510660018114612168576002811461217857612183565b613d3d60f01b6002830352612183565b603d60f81b60018303525b50505050508093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122088383612504565b612215600084848461236d565b612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b906154d1565b60405180910390fd5b505050565b6122648383836126d2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122a7576122a2816126d7565b6122e6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122e5576122e48382612720565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612329576123248161288d565b612368565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123675761236682826129d0565b5b5b505050565b600061238e8473ffffffffffffffffffffffffffffffffffffffff16612a4f565b156124f7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123b7611510565b8786866040518563ffffffff1660e01b81526004016123d994939291906153e8565b602060405180830381600087803b1580156123f357600080fd5b505af192505050801561242457506040513d601f19601f820116820180604052508101906124219190612d03565b60015b6124a7573d8060008114612454576040519150601f19603f3d011682016040523d82523d6000602084013e612459565b606091505b5060008151141561249f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612496906154d1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124fc565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b906155f1565b60405180910390fd5b61257d816114a4565b156125bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b490615511565b60405180910390fd5b6125c960008383612259565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461261991906157db565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161272d84610cd3565b61273791906158bc565b905060006007600084815260200190815260200160002054905081811461281c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128a191906158bc565b90506000600960008481526020019081526020016000205490506000600883815481106128f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061293f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129db83610cd3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b6000612a75612a708461575d565b61572c565b905082815260208101848484011115612a8d57600080fd5b612a98848285615964565b509392505050565b600081359050612aaf81615b1f565b92915050565b600081359050612ac481615b36565b92915050565b600081359050612ad981615b4d565b92915050565b600081519050612aee81615b4d565b92915050565b600082601f830112612b0557600080fd5b8135612b15848260208601612a62565b91505092915050565b600081359050612b2d81615b64565b92915050565b600060208284031215612b4557600080fd5b6000612b5384828501612aa0565b91505092915050565b60008060408385031215612b6f57600080fd5b6000612b7d85828601612aa0565b9250506020612b8e85828601612aa0565b9150509250929050565b600080600060608486031215612bad57600080fd5b6000612bbb86828701612aa0565b9350506020612bcc86828701612aa0565b9250506040612bdd86828701612b1e565b9150509250925092565b60008060008060808587031215612bfd57600080fd5b6000612c0b87828801612aa0565b9450506020612c1c87828801612aa0565b9350506040612c2d87828801612b1e565b925050606085013567ffffffffffffffff811115612c4a57600080fd5b612c5687828801612af4565b91505092959194509250565b60008060408385031215612c7557600080fd5b6000612c8385828601612aa0565b9250506020612c9485828601612ab5565b9150509250929050565b60008060408385031215612cb157600080fd5b6000612cbf85828601612aa0565b9250506020612cd085828601612b1e565b9150509250929050565b600060208284031215612cec57600080fd5b6000612cfa84828501612aca565b91505092915050565b600060208284031215612d1557600080fd5b6000612d2384828501612adf565b91505092915050565b600060208284031215612d3e57600080fd5b6000612d4c84828501612b1e565b91505092915050565b612d5e816158f0565b82525050565b612d6d81615902565b82525050565b6000612d7e8261578d565b612d8881856157a3565b9350612d98818560208601615973565b612da181615b0e565b840191505092915050565b6000612db78261578d565b612dc181856157b4565b9350612dd1818560208601615973565b80840191505092915050565b6000612de882615798565b612df281856157bf565b9350612e02818560208601615973565b612e0b81615b0e565b840191505092915050565b6000612e2182615798565b612e2b81856157d0565b9350612e3b818560208601615973565b80840191505092915050565b6000612e54605c836157d0565b91507f3e3c7374796c653e3c215b43444154415b2e427b7374726f6b653a236566663360008301527f66397d2e437b7374726f6b652d6c696e656361703a726f756e647d2e447b737460208301527f726f6b652d77696474683a327d2e457b66696c6c3a23314644424343000000006040830152605c82019050919050565b6000612ee0601a836157d0565b91507f7b226e616d65223a224ec3bc434c4b2047c3a96e6573697320230000000000006000830152601a82019050919050565b6000612f20600b836157bf565b91507f53616c65207061757365640000000000000000000000000000000000000000006000830152602082019050919050565b6000612f60602f836157d0565b91507f222c202261747472696275746573223a5b7b2274726169745f74797065223a2260008301527f4c6f676f222c2276616c7565223a2200000000000000000000000000000000006020830152602f82019050919050565b6000612fc66021836157d0565b91507f207374796c653d226261636b67726f756e642d636f6c6f723a2345464345413360008301527f22000000000000000000000000000000000000000000000000000000000000006020830152602182019050919050565b600061302c6040836157d0565b91507f527562c3ad227d2c207b2274726169745f74797065223a20224261636b67726f60008301527f756e64222c202276616c7565223a20225472616e73706172656e7465227d5d7d6020830152604082019050919050565b6000613092601f836157bf565b91507f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006000830152602082019050919050565b60006130d2602b836157bf565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006131386032836157bf565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061319e6026836157bf565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613204601c836157bf565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613244605c836157d0565b91507f3e3c7374796c653e3c215b43444154415b2e427b7374726f6b653a236566663360008301527f66397d2e437b7374726f6b652d6c696e656361703a726f756e647d2e447b737460208301527f726f6b652d77696474683a327d2e457b66696c6c3a23314139304646000000006040830152605c82019050919050565b60006132d06024836157bf565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133366019836157bf565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061337660da836157d0565b91507f7d5d5d3e3c2f7374796c653e3c646566733e3c6c696e6561724772616469656e60008301527f742069643d224122206772616469656e745472616e73666f726d3d22726f746160208301527f746528393029223e3c73746f70206f66667365743d22353025222073746f702d60408301527f636f6c6f723d2223313731663235222f3e3c73746f70206f66667365743d223560608301527f3025222073746f702d636f6c6f723d2223656663656133222f3e3c2f6c696e6560808301527f61724772616469656e743e3c2f646566733e3c636972636c6520723d2231343660a08301527f222063783d22313530222063793d22313530222066696c6c3d2200000000000060c083015260da82019050919050565b600061349a602c836157bf565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613500600c836157d0565b91507f4469616d616e7465227d5d7d00000000000000000000000000000000000000006000830152600c82019050919050565b6000613540602d836157d0565b91507f496e7665727469646f227d2c207b2274726169745f74797065223a224a65776560008301527f6c73222c2276616c7565223a22000000000000000000000000000000000000006020830152602d82019050919050565b60006135a761045a836157d0565b91507f222f3e3c636972636c6520723d22313337222063783d22313530222063793d2260008301527f313530222066696c6c3d2223633439333632222f3e3c672066696c6c3d22233060208301527f6632353361223e3c636972636c6520723d22313336222063783d22313530222060408301527f63793d22313530222f3e3c6720636c6173733d2242223e3c636972636c65207260608301527f3d22313333222063783d22313530222063793d2231353022207374726f6b652d60808301527f6461736861727261793d22362e39363422207374726f6b652d646173686f666660a08301527f7365743d22332e3438322220636c6173733d2244222f3e3c636972636c65207260c08301527f3d22313138222063783d22313530222063793d2231353022207374726f6b652d60e08301527f77696474683d22323222207374726f6b652d6461736861727261793d2233302e6101008301527f38393222207374726f6b652d646173686f66667365743d2231352e343436222f6101208301527f3e3c2f673e3c2f673e3c672066696c6c3d222331373166323522207374726f6b6101408301527f652d77696474683d22312e352220636c6173733d2242223e3c636972636c65206101608301527f723d223236222063783d22313530222063793d2232313022207374726f6b652d6101808301527f6461736861727261793d22312e33363122207374726f6b652d646173686f66666101a08301527f7365743d22302e363831222f3e3c636972636c6520723d223236222063783d226101c08301527f313530222063793d22393022207374726f6b652d6461736861727261793d22306101e08301527f2e38313722207374726f6b652d646173686f66667365743d22302e343038222f6102008301527f3e3c2f673e3c673e3c706174682069643d226d696c6c692220643d224d3135306102208301527f2038347632392220636c6173733d224220432044222f3e3c616e696d617465546102408301527f72616e73666f726d206174747269627574654e616d653d227472616e73666f726102608301527f6d2220747970653d22726f74617465222066726f6d3d223020313530203930226102808301527f20746f3d223336302031353020393022206475723d22317322207265706561746102a08301527f436f756e743d22696e646566696e697465222f3e3c2f673e3c673e3c706174686102c08301527f2069643d227365632220643d224d31353020323136762d32392220636c6173736102e08301527f3d224220432044222f3e3c616e696d6174655472616e73666f726d20617474726103008301527f69627574654e616d653d227472616e73666f726d2220747970653d22726f74616103208301527f7465222066726f6d3d223020313530203231302220746f3d22333630203135306103408301527f2032313022206475723d223630732220726570656174436f756e743d22696e646103608301527f6566696e697465222f3e3c2f673e3c636972636c6520723d22322e35222063786103808301527f3d22313530222063793d223930222066696c6c3d2223656666336639222f3e3c6103a08301527f636972636c6520723d22322e35222063783d22313530222063793d22323130226103c08301527f2066696c6c3d2223656666336639222f3e3c636972636c6520723d22312220636103e08301527f783d22313530222063793d2239302220636c6173733d2245222f3e3c636972636104008301527f6c6520723d2231222063783d22313530222063793d223231302220636c6173736104208301527f3d2245222f3e3c67207374726f6b652d77696474683d222e342200000000000061044083015261045a82019050919050565b6000613b0f6038836157bf565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613b75602a836157bf565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bdb6029836157bf565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c416007836157d0565b91507f23633961383766000000000000000000000000000000000000000000000000006000830152600782019050919050565b6000613c816020836157bf565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613cc2610bb1836157d0565b91507f3e3c7265637420783d2235352220793d22313337222077696474683d2231393060008301527f22206865696768743d223236222066696c6c3d2275726c28234129222072783d60208301527f2235222f3e3c706174682066696c6c3d222365666365613322207374726f6b6560408301527f3d22236566636561332220643d224d36342e3835203134312e346830712e303760608301527f2030202e31312e30342e30342e30352e30342e3131683076352e32377130202e60808301527f30392d2e30352e31342d2e30352e30342d2e31322e30346830712d2e3033203060a08301527f2d2e30372d2e30322d2e30332d2e30312d2e30362d2e303468306c2d332e373160c08301527f2d352e30382e31312d2e303576352e30357130202e30362d2e30342e312d2e3060e08301527f342e30342d2e31312e30346830712d2e303720302d2e31312d2e30342d2e30346101008301527f2d2e30342d2e30342d2e316830762d352e3371302d2e30392e30352d2e31322e6101208301527f30352d2e30342e30392d2e30346830712e30342030202e30372e30312e30332e6101408301527f30312e30352e303568306c332e3720352e30342d2e30362e3136762d352e31316101608301527f71302d2e30362e30342d2e31312e30352d2e30342e31312d2e30347a6d342e366101808301527f3320312e36316830712e30372030202e31322e30352e30342e30342e30342e316101a08301527f31683076322e33337130202e37372d2e343420312e31362d2e34332e33392d316101c08301527f2e31352e33396830712d2e373120302d312e31352d2e33392d2e34342d2e33396101e08301527f2d2e34342d312e31366830762d322e333371302d2e30372e30352d2e31312e306102008301527f352d2e30352e31312d2e30356830712e30382030202e31322e30352e30342e306102208301527f342e30342e3131683076322e33337130202e362e33342e39322e33342e33322e6102408301527f39332e33326830712e35392030202e39332d2e33322e33342d2e33322e33342d6102608301527f2e39326830762d322e333371302d2e30372e30342d2e31312e30352d2e30352e6102808301527f31322d2e30357a6d2d2e37372d2e386830712d2e313320302d2e322d2e30382d6102a08301527f2e30382d2e30382d2e30382d2e32316830762d2e303671302d2e31332e30382d6102c08301527f2e32312e30382d2e30382e32312d2e30386830712e31312030202e31392e30386102e08301527f2e30372e30382e30372e32316830762e30367130202e31332d2e30372e32312d6103008301527f2e30382e30382d2e322e30387a6d2d312e3320306830712d2e313320302d2e326103208301527f312d2e30382d2e30372d2e30382d2e30372d2e32316830762d2e303671302d2e6103408301527f31332e30382d2e32312e30382d2e30382e32312d2e30386830712e31312030206103608301527f2e31382e30382e30382e30382e30382e32316830762e30367130202e31332d2e6103808301527f30382e32312d2e30372e30382d2e31392e30387a222f3e3c706174682066696c6103a08301527f6c3d222331373166323522207374726f6b653d22233137316632352220643d226103c08301527f4d3233352e3036203135332e38366830712d2e30372e30352d2e30382e3131206103e08301527f30202e30362e30342e31336830712e30342e30352e312e30362e30362030202e6104008301527f31312d2e30336830712e33342d2e32332e37332d2e33372e342d2e31342e38356104208301527f2d2e31346830712e35312030202e39352e31392e34352e31392e37382e35332e6104408301527f33342e33352e35332e38322e31392e34372e313920312e303468307130202e356104608301527f372d2e313920312e30342d2e31392e34372d2e35332e38322d2e33332e33342d6104808301527f2e37382e35332d2e34342e31392d2e39352e31396830712d2e343520302d2e386104a08301527f342d2e31342d2e33392d2e31342d2e37332d2e33366830712d2e30362d2e30346104c08301527f2d2e31322d2e30332d2e30362e30312d2e312e30366830712d2e30342e30362d6104e08301527f2e30342e31322e30312e30372e30372e31316830712e31392e31332e34382e326105008301527f362e32392e31332e36322e322e33332e30382e36362e30386830712e353720306105208301527f20312e30382d2e32322e352d2e32312e38392d2e362e33382d2e33392e362d2e6105408301527f39312e32322d2e35332e32322d312e3135683071302d2e36322d2e32322d312e6105608301527f31352d2e32322d2e35322d2e362d2e39312d2e33392d2e33392d2e38392d2e366105808301527f2d2e35312d2e32322d312e30382d2e32326830712d2e343920302d2e39342e316105a08301527f342d2e34352e31352d2e38312e347a6d2d312e33382d2e363276352e367130206105c08301527f2e30362e30352e31312e30352e30352e31312e30356830712e30372030202e316105e08301527f322d2e30352e30342d2e30352e30342d2e31316830762d352e3671302d2e30366106008301527f2d2e30352d2e31312d2e30352d2e30352d2e31312d2e30356830712d2e3037206106208301527f302d2e31322e30352d2e30342e30352d2e30342e313168307a6d2d312e3537206106408301527f352e37366830712e30372030202e31322d2e30352e30342d2e30352e30342d2e6106608301527f31316830762d352e3671302d2e30362d2e30342d2e31312d2e30352d2e30352d6106808301527f2e31322d2e30356830712d2e303720302d2e31312e30352d2e30352e30352d2e6106a08301527f30352e3131683076352e367130202e30362e30352e31312e30342e30352e31316106c08301527f2e30357a6d2d322e37372d342e30346830712d2e303720302d2e31322e30352d6106e08301527f2e30342e30352d2e30342e313268307130202e30372e30352e313268306c322e6107008301527f373820322e33312e30312d2e33382d322e35382d322e3137712d2e30352d2e306107208301527f352d2e312d2e30357a6d2d2e303520342e30346830712e30362030202e31322d6107408301527f2e303668306c312e39332d322e30362d2e32342d2e32312d312e393220322e306107608301527f35712d2e30352e30352d2e30352e313268307130202e30382e30362e31322e306107808301527f372e30342e312e30347a222f3e3c2f673e3c673e3c706174682069643d226d696107a08301527f6e22207374726f6b653d222366666622207374726f6b652d77696474683d22336107c08301527f2220643d224d313530203136345632312220636c6173733d2243222f3e3c616e6107e08301527f696d6174655472616e73666f726d206174747269627574654e616d653d2274726108008301527f616e73666f726d2220747970653d22726f74617465222066726f6d3d223020316108208301527f3530203135302220746f3d22333630203135302031353022206475723d2231686108408301527f2220726570656174436f756e743d22696e646566696e697465222f3e3c2f673e6108608301527f3c673e3c706174682069643d22687222207374726f6b653d22236666662220736108808301527f74726f6b652d77696474683d22352220643d224d3135302031363756353222206108a08301527f636c6173733d2243222f3e3c616e696d6174655472616e73666f726d206174746108c08301527f7269627574654e616d653d227472616e73666f726d2220747970653d22726f746108e08301527f617465222066726f6d3d223020313530203135302220746f3d223336302031356109008301527f302031353022206475723d223132682220726570656174436f756e743d22696e6109208301527f646566696e697465222f3e3c2f673e3c636972636c6520723d223130222063786109408301527f3d22313530222063793d22313530222066696c6c3d2223666666222f3e3c63696109608301527f72636c6520723d2237222063783d22313530222063793d223135302220636c616109808301527f73733d2245222f3e3c73637269707420747970653d22746578742f6a617661736109a08301527f6372697074223e3c215b43444154415b636f6e737420653d6e657720446174656109c08301527f28293b766172206e3d652e6765744d696c6c697365636f6e647328292c6f3d656109e08301527f2e6765745365636f6e647328292b6e2f3165332c723d652e6765744d696e7574610a008301527f657328292b6f2f36302c733d652e676574486f75727328292b722f36303b646f610a208301527f63756d656e742e676574456c656d656e744279496428226d696c6c6922292e73610a408301527f657441747472696275746528227472616e73666f726d222c22726f7461746528610a608301527f222b6e2f3165332a3336302b22203135302039302922292c646f63756d656e74610a808301527f2e676574456c656d656e7442794964282273656322292e736574417474726962610aa08301527f75746528227472616e73666f726d222c22726f7461746528222b6f2f36302a33610ac08301527f36302b2220313530203231302922292c646f63756d656e742e676574456c656d610ae08301527f656e744279496428226d696e22292e7365744174747269627574652822747261610b008301527f6e73666f726d222c22726f7461746528222b722f36302a3336302b2220313530610b208301527f203135302922292c646f63756d656e742e676574456c656d656e744279496428610b408301527f22687222292e73657441747472696275746528227472616e73666f726d222c22610b608301527f726f7461746528222b732f31322a3336302b2220313530203135302922293b5d610b808301527f5d3e3c2f7363726970743e3c2f7376673e000000000000000000000000000000610ba0830152610bb182019050919050565b6000614b276009836157d0565b91507f527562c3ad227d5d7d00000000000000000000000000000000000000000000006000830152600982019050919050565b6000614b67602c836157bf565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614bcd6020836157bf565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614c0d6029836157bf565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c73605c836157d0565b91507f3e3c7374796c653e3c215b43444154415b2e427b7374726f6b653a236566663360008301527f66397d2e437b7374726f6b652d6c696e656361703a726f756e647d2e447b737460208301527f726f6b652d77696474683a327d2e457b66696c6c3a23453934453737000000006040830152605c82019050919050565b6000614cff6021836157bf565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d656016836157bf565b91507f53616c652068617320616c726561647920656e646564000000000000000000006000830152602082019050919050565b6000614da56019836157bf565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000614de5603d836157d0565b91507f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008301527f30302f737667222076696577426f783d223020302033303020333030220000006020830152603d82019050919050565b6000614e4b601d836157d0565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000614e8b602a836157d0565b91507f4e6f726d616c227d2c207b2274726169745f74797065223a224a6577656c732260008301527f2c2276616c7565223a22000000000000000000000000000000000000000000006020830152602a82019050919050565b6000614ef1602b836157d0565b91507f207472616e73666f726d3d227363616c65282d312c3129207472616e736c617460008301527f65282d3330302c203029220000000000000000000000000000000000000000006020830152602b82019050919050565b6000614f576031836157bf565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614fbd602c836157bf565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006150236007836157d0565b91507f23313731663235000000000000000000000000000000000000000000000000006000830152600782019050919050565b6000615063600a836157d0565b91507f5a616669726f227d5d7d000000000000000000000000000000000000000000006000830152600a82019050919050565b60006150a3604e836157d0565b91507f222c226465736372697074696f6e223a22436c6f636b7320666f72207468652060008301527f4d6574617665727365222c22696d616765223a22646174613a696d6167652f7360208301527f76672b786d6c3b6261736536342c0000000000000000000000000000000000006040830152604e82019050919050565b61512b8161595a565b82525050565b600061513d8284612dac565b915061514882612e47565b915081905092915050565b600061515f8284612dac565b915061516a82612fb9565b915081905092915050565b60006151818284612dac565b915061518c8261301f565b915081905092915050565b60006151a38284612dac565b91506151ae82613237565b915081905092915050565b60006151c58284612dac565b91506151d082613369565b915081905092915050565b60006151e78284612dac565b91506151f2826134f3565b915081905092915050565b60006152098284612dac565b915061521482613533565b915081905092915050565b600061522b8284612dac565b915061523682613599565b915081905092915050565b600061524d8284612dac565b915061525882613c34565b915081905092915050565b600061526f8284612dac565b915061527a82613cb4565b915081905092915050565b60006152918284612dac565b915061529c82614b1a565b915081905092915050565b60006152b38284612dac565b91506152be82614c66565b915081905092915050565b60006152d58284612dac565b91506152e082614e7e565b915081905092915050565b60006152f78284612dac565b915061530282614ee4565b915081905092915050565b60006153198284612dac565b915061532482615016565b915081905092915050565b600061533b8284612dac565b915061534682615056565b915081905092915050565b600061535c82612ed3565b91506153688285612e16565b915061537382615096565b915061537f8284612e16565b915061538a82612f53565b91508190509392505050565b60006153a182614dd8565b9150819050919050565b60006153b682614e3e565b91506153c28284612e16565b915081905092915050565b60006020820190506153e26000830184612d55565b92915050565b60006080820190506153fd6000830187612d55565b61540a6020830186612d55565b6154176040830185615122565b81810360608301526154298184612d73565b905095945050505050565b60006020820190506154496000830184612d64565b92915050565b600060208201905081810360008301526154698184612ddd565b905092915050565b6000602082019050818103600083015261548a81612f13565b9050919050565b600060208201905081810360008301526154aa81613085565b9050919050565b600060208201905081810360008301526154ca816130c5565b9050919050565b600060208201905081810360008301526154ea8161312b565b9050919050565b6000602082019050818103600083015261550a81613191565b9050919050565b6000602082019050818103600083015261552a816131f7565b9050919050565b6000602082019050818103600083015261554a816132c3565b9050919050565b6000602082019050818103600083015261556a81613329565b9050919050565b6000602082019050818103600083015261558a8161348d565b9050919050565b600060208201905081810360008301526155aa81613b02565b9050919050565b600060208201905081810360008301526155ca81613b68565b9050919050565b600060208201905081810360008301526155ea81613bce565b9050919050565b6000602082019050818103600083015261560a81613c74565b9050919050565b6000602082019050818103600083015261562a81614b5a565b9050919050565b6000602082019050818103600083015261564a81614bc0565b9050919050565b6000602082019050818103600083015261566a81614c00565b9050919050565b6000602082019050818103600083015261568a81614cf2565b9050919050565b600060208201905081810360008301526156aa81614d58565b9050919050565b600060208201905081810360008301526156ca81614d98565b9050919050565b600060208201905081810360008301526156ea81614f4a565b9050919050565b6000602082019050818103600083015261570a81614fb0565b9050919050565b60006020820190506157266000830184615122565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561575357615752615adf565b5b8060405250919050565b600067ffffffffffffffff82111561577857615777615adf565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006157e68261595a565b91506157f18361595a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561582657615825615a52565b5b828201905092915050565b600061583c8261595a565b91506158478361595a565b92508261585757615856615a81565b5b828204905092915050565b600061586d8261595a565b91506158788361595a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156158b1576158b0615a52565b5b828202905092915050565b60006158c78261595a565b91506158d28361595a565b9250828210156158e5576158e4615a52565b5b828203905092915050565b60006158fb8261593a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615991578082015181840152602081019050615976565b838111156159a0576000848401525b50505050565b600060028204905060018216806159be57607f821691505b602082108114156159d2576159d1615ab0565b5b50919050565b60006159e38261595a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615a1657615a15615a52565b5b600182019050919050565b6000615a2c8261595a565b9150615a378361595a565b925082615a4757615a46615a81565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615b28816158f0565b8114615b3357600080fd5b50565b615b3f81615902565b8114615b4a57600080fd5b50565b615b568161590e565b8114615b6157600080fd5b50565b615b6d8161595a565b8114615b7857600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220289d0087048f1ec2123e67d69ff457f5f54b64afc6605b807d316dc14244d3de64736f6c63430008000033
Deployed Bytecode
0x60806040526004361061014b5760003560e01c80637019ee43116100b6578063a22cb4651161006f578063a22cb46514610452578063a9aad58c1461047b578063b88d4fde146104a6578063c87b56dd146104cf578063e985e9c51461050c578063f2fde38b146105495761014b565b80637019ee431461036657806370a0823114610391578063715018a6146103ce5780638456cb59146103e55780638da5cb5b146103fc57806395d89b41146104275761014b565b806323b872dd1161010857806323b872dd146102535780632f745c591461027c5780633ccfd60b146102b957806342842e0e146102c35780634f6ccce7146102ec5780636352211e146103295761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f55780631249c58b1461021e57806318160ddd14610228575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612cda565b610572565b6040516101849190615434565b60405180910390f35b34801561019957600080fd5b506101a26105ec565b6040516101af919061544f565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612d2c565b61067e565b6040516101ec91906153cd565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612c9e565b610703565b005b61022661081b565b005b34801561023457600080fd5b5061023d610982565b60405161024a9190615711565b60405180910390f35b34801561025f57600080fd5b5061027a60048036038101906102759190612b98565b61098f565b005b34801561028857600080fd5b506102a3600480360381019061029e9190612c9e565b6109ef565b6040516102b09190615711565b60405180910390f35b6102c1610a94565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612b98565b610b64565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612d2c565b610b84565b6040516103209190615711565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190612d2c565b610c1b565b60405161035d91906153cd565b60405180910390f35b34801561037257600080fd5b5061037b610ccd565b6040516103889190615711565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190612b33565b610cd3565b6040516103c59190615711565b60405180910390f35b3480156103da57600080fd5b506103e3610d8b565b005b3480156103f157600080fd5b506103fa610e13565b005b34801561040857600080fd5b50610411610ebb565b60405161041e91906153cd565b60405180910390f35b34801561043357600080fd5b5061043c610ee5565b604051610449919061544f565b60405180910390f35b34801561045e57600080fd5b5061047960048036038101906104749190612c62565b610f77565b005b34801561048757600080fd5b50610490610f8d565b60405161049d9190615434565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612be7565b610fa0565b005b3480156104db57600080fd5b506104f660048036038101906104f19190612d2c565b611002565b604051610503919061544f565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190612b5c565b611236565b6040516105409190615434565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190612b33565b6112ca565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e557506105e4826113c2565b5b9050919050565b6060600080546105fb906159a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610627906159a6565b80156106745780601f1061064957610100808354040283529160200191610674565b820191906000526020600020905b81548152906001019060200180831161065757829003601f168201915b5050505050905090565b6000610689826114a4565b6106c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bf90615611565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061070e82610c1b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561077f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077690615671565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661079e611510565b73ffffffffffffffffffffffffffffffffffffffff1614806107cd57506107cc816107c7611510565b611236565b5b61080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390615591565b60405180910390fd5b6108168383611518565b505050565b600c60009054906101000a900460ff161561086b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086290615471565b60405180910390fd5b600b54610876610982565b106108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad90615691565b60405180910390fd5b600d543410156108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f2906156b1565b60405180910390fd5b6000610905610982565b905060026003610914446115d1565b61091e9190615a21565b14600e600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506006610954426115d1565b61095e9190615a21565b600f60008381526020019081526020016000208190555061097f3382611610565b50565b6000600880549050905090565b6109a061099a611510565b8261162e565b6109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d6906156d1565b60405180910390fd5b6109ea83838361170c565b505050565b60006109fa83610cd3565b8210610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a32906154b1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a9c611510565b73ffffffffffffffffffffffffffffffffffffffff16610aba610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614610b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0790615631565b60405180910390fd5b73ed8d89b01cb469b75a9a18bd4680f0b4c4224a4d73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610b6257600080fd5b565b610b7f83838360405180602001604052806000815250610fa0565b505050565b6000610b8e610982565b8210610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc6906156f1565b60405180910390fd5b60088281548110610c09577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb906155d1565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b906155b1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d93611510565b73ffffffffffffffffffffffffffffffffffffffff16610db1610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90615631565b60405180910390fd5b610e116000611968565b565b610e1b611510565b73ffffffffffffffffffffffffffffffffffffffff16610e39610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690615631565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ef4906159a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610f20906159a6565b8015610f6d5780601f10610f4257610100808354040283529160200191610f6d565b820191906000526020600020905b815481529060010190602001808311610f5057829003601f168201915b5050505050905090565b610f89610f82611510565b8383611a2e565b5050565b600c60009054906101000a900460ff1681565b610fb1610fab611510565b8361162e565b610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe7906156d1565b60405180910390fd5b610ffc84848484611b9b565b50505050565b606061100d826114a4565b61104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390615491565b60405180910390fd5b600061105783611bf7565b61106861106385611da4565b611fe9565b604051602001611079929190615351565b6040516020818303038152906040529050600e600084815260200190815260200160002060009054906101000a900460ff16156110d757806040516020016110c191906151fd565b60405160208183030381529060405290506110fa565b806040516020016110e891906152c9565b60405160208183030381529060405290505b6001600f600085815260200190815260200160002054141561113d578060405160200161112791906151db565b6040516020818303038152906040529050611206565b6002600f600085815260200190815260200160002054148061117257506003600f600085815260200190815260200160002054145b1561119e5780604051602001611188919061532f565b6040516020818303038152906040529050611205565b6005600f60008581526020019081526020016000205414156111e157806040516020016111cb9190615175565b6040516020818303038152906040529050611204565b806040516020016111f29190615285565b60405160208183030381529060405290505b5b5b61120f81611fe9565b60405160200161121f91906153ab565b604051602081830303815290604052915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112d2611510565b73ffffffffffffffffffffffffffffffffffffffff166112f0610ebb565b73ffffffffffffffffffffffffffffffffffffffff1614611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90615631565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad906154f1565b60405180910390fd5b6113bf81611968565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061148d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061149d575061149c82612194565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661158b83610c1b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600060fa600a0a60018102600a800a8481038083046003600201600a0a6002600a0a8183068184068082038381049a5050505050505050505050919050565b61162a8282604051806020016040528060008152506121fe565b5050565b6000611639826114a4565b611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90615571565b60405180910390fd5b600061168383610c1b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116f257508373ffffffffffffffffffffffffffffffffffffffff166116da8461067e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061170357506117028185611236565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661172c82610c1b565b73ffffffffffffffffffffffffffffffffffffffff1614611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990615651565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e990615531565b60405180910390fd5b6117fd838383612259565b611808600082611518565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461185891906158bc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118af91906157db565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490615551565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b8e9190615434565b60405180910390a3505050565b611ba684848461170c565b611bb28484848461236d565b611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be8906154d1565b60405180910390fd5b50505050565b60606000821415611c3f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d9f565b600082905060005b60008214611c71578080611c5a906159d8565b915050600a82611c6a9190615831565b9150611c47565b60008167ffffffffffffffff811115611cb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ce55781602001600182028036833780820191505090505b5090505b60008514611d9857600182611cfe91906158bc565b9150600a85611d0d9190615a21565b6030611d1991906157db565b60f81b818381518110611d55577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d919190615831565b9450611ce9565b8093505050505b919050565b60606000604051602001611db790615396565b60405160208183030381529060405290506005600f60008581526020019081526020016000205414611e065780604051602001611df49190615153565b60405160208183030381529060405290505b6001600f6000858152602001908152602001600020541415611e495780604051602001611e339190615131565b6040516020818303038152906040529050611ece565b6002600f6000858152602001908152602001600020541480611e7e57506003600f600085815260200190815260200160002054145b15611eaa5780604051602001611e949190615197565b6040516020818303038152906040529050611ecd565b80604051602001611ebb91906152a7565b60405160208183030381529060405290505b5b80604051602001611edf91906151b9565b60405160208183030381529060405290506005600f6000858152602001908152602001600020541415611f335780604051602001611f1d919061530d565b6040516020818303038152906040529050611f56565b80604051602001611f449190615241565b60405160208183030381529060405290505b80604051602001611f67919061521f565b6040516020818303038152906040529050600e600084815260200190815260200160002060009054906101000a900460ff1615611fc15780604051602001611faf91906152eb565b60405160208183030381529060405290505b80604051602001611fd29190615263565b604051602081830303815290604052915050919050565b606060008251141561200c5760405180602001604052806000815250905061218f565b6000604051806060016040528060408152602001615b7c604091399050600060036002855161203b91906157db565b6120459190615831565b60046120519190615862565b9050600060208261206291906157db565b67ffffffffffffffff8111156120a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120d35781602001600182028036833780820191505090505b509050818152600183018586518101602084015b8183101561214e576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b8252600182019150506120e7565b600389510660018114612168576002811461217857612183565b613d3d60f01b6002830352612183565b603d60f81b60018303525b50505050508093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122088383612504565b612215600084848461236d565b612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b906154d1565b60405180910390fd5b505050565b6122648383836126d2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122a7576122a2816126d7565b6122e6565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122e5576122e48382612720565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612329576123248161288d565b612368565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123675761236682826129d0565b5b5b505050565b600061238e8473ffffffffffffffffffffffffffffffffffffffff16612a4f565b156124f7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123b7611510565b8786866040518563ffffffff1660e01b81526004016123d994939291906153e8565b602060405180830381600087803b1580156123f357600080fd5b505af192505050801561242457506040513d601f19601f820116820180604052508101906124219190612d03565b60015b6124a7573d8060008114612454576040519150601f19603f3d011682016040523d82523d6000602084013e612459565b606091505b5060008151141561249f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612496906154d1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124fc565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b906155f1565b60405180910390fd5b61257d816114a4565b156125bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b490615511565b60405180910390fd5b6125c960008383612259565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461261991906157db565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161272d84610cd3565b61273791906158bc565b905060006007600084815260200190815260200160002054905081811461281c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128a191906158bc565b90506000600960008481526020019081526020016000205490506000600883815481106128f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061293f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129db83610cd3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b6000612a75612a708461575d565b61572c565b905082815260208101848484011115612a8d57600080fd5b612a98848285615964565b509392505050565b600081359050612aaf81615b1f565b92915050565b600081359050612ac481615b36565b92915050565b600081359050612ad981615b4d565b92915050565b600081519050612aee81615b4d565b92915050565b600082601f830112612b0557600080fd5b8135612b15848260208601612a62565b91505092915050565b600081359050612b2d81615b64565b92915050565b600060208284031215612b4557600080fd5b6000612b5384828501612aa0565b91505092915050565b60008060408385031215612b6f57600080fd5b6000612b7d85828601612aa0565b9250506020612b8e85828601612aa0565b9150509250929050565b600080600060608486031215612bad57600080fd5b6000612bbb86828701612aa0565b9350506020612bcc86828701612aa0565b9250506040612bdd86828701612b1e565b9150509250925092565b60008060008060808587031215612bfd57600080fd5b6000612c0b87828801612aa0565b9450506020612c1c87828801612aa0565b9350506040612c2d87828801612b1e565b925050606085013567ffffffffffffffff811115612c4a57600080fd5b612c5687828801612af4565b91505092959194509250565b60008060408385031215612c7557600080fd5b6000612c8385828601612aa0565b9250506020612c9485828601612ab5565b9150509250929050565b60008060408385031215612cb157600080fd5b6000612cbf85828601612aa0565b9250506020612cd085828601612b1e565b9150509250929050565b600060208284031215612cec57600080fd5b6000612cfa84828501612aca565b91505092915050565b600060208284031215612d1557600080fd5b6000612d2384828501612adf565b91505092915050565b600060208284031215612d3e57600080fd5b6000612d4c84828501612b1e565b91505092915050565b612d5e816158f0565b82525050565b612d6d81615902565b82525050565b6000612d7e8261578d565b612d8881856157a3565b9350612d98818560208601615973565b612da181615b0e565b840191505092915050565b6000612db78261578d565b612dc181856157b4565b9350612dd1818560208601615973565b80840191505092915050565b6000612de882615798565b612df281856157bf565b9350612e02818560208601615973565b612e0b81615b0e565b840191505092915050565b6000612e2182615798565b612e2b81856157d0565b9350612e3b818560208601615973565b80840191505092915050565b6000612e54605c836157d0565b91507f3e3c7374796c653e3c215b43444154415b2e427b7374726f6b653a236566663360008301527f66397d2e437b7374726f6b652d6c696e656361703a726f756e647d2e447b737460208301527f726f6b652d77696474683a327d2e457b66696c6c3a23314644424343000000006040830152605c82019050919050565b6000612ee0601a836157d0565b91507f7b226e616d65223a224ec3bc434c4b2047c3a96e6573697320230000000000006000830152601a82019050919050565b6000612f20600b836157bf565b91507f53616c65207061757365640000000000000000000000000000000000000000006000830152602082019050919050565b6000612f60602f836157d0565b91507f222c202261747472696275746573223a5b7b2274726169745f74797065223a2260008301527f4c6f676f222c2276616c7565223a2200000000000000000000000000000000006020830152602f82019050919050565b6000612fc66021836157d0565b91507f207374796c653d226261636b67726f756e642d636f6c6f723a2345464345413360008301527f22000000000000000000000000000000000000000000000000000000000000006020830152602182019050919050565b600061302c6040836157d0565b91507f527562c3ad227d2c207b2274726169745f74797065223a20224261636b67726f60008301527f756e64222c202276616c7565223a20225472616e73706172656e7465227d5d7d6020830152604082019050919050565b6000613092601f836157bf565b91507f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006000830152602082019050919050565b60006130d2602b836157bf565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006131386032836157bf565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061319e6026836157bf565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613204601c836157bf565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613244605c836157d0565b91507f3e3c7374796c653e3c215b43444154415b2e427b7374726f6b653a236566663360008301527f66397d2e437b7374726f6b652d6c696e656361703a726f756e647d2e447b737460208301527f726f6b652d77696474683a327d2e457b66696c6c3a23314139304646000000006040830152605c82019050919050565b60006132d06024836157bf565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133366019836157bf565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061337660da836157d0565b91507f7d5d5d3e3c2f7374796c653e3c646566733e3c6c696e6561724772616469656e60008301527f742069643d224122206772616469656e745472616e73666f726d3d22726f746160208301527f746528393029223e3c73746f70206f66667365743d22353025222073746f702d60408301527f636f6c6f723d2223313731663235222f3e3c73746f70206f66667365743d223560608301527f3025222073746f702d636f6c6f723d2223656663656133222f3e3c2f6c696e6560808301527f61724772616469656e743e3c2f646566733e3c636972636c6520723d2231343660a08301527f222063783d22313530222063793d22313530222066696c6c3d2200000000000060c083015260da82019050919050565b600061349a602c836157bf565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613500600c836157d0565b91507f4469616d616e7465227d5d7d00000000000000000000000000000000000000006000830152600c82019050919050565b6000613540602d836157d0565b91507f496e7665727469646f227d2c207b2274726169745f74797065223a224a65776560008301527f6c73222c2276616c7565223a22000000000000000000000000000000000000006020830152602d82019050919050565b60006135a761045a836157d0565b91507f222f3e3c636972636c6520723d22313337222063783d22313530222063793d2260008301527f313530222066696c6c3d2223633439333632222f3e3c672066696c6c3d22233060208301527f6632353361223e3c636972636c6520723d22313336222063783d22313530222060408301527f63793d22313530222f3e3c6720636c6173733d2242223e3c636972636c65207260608301527f3d22313333222063783d22313530222063793d2231353022207374726f6b652d60808301527f6461736861727261793d22362e39363422207374726f6b652d646173686f666660a08301527f7365743d22332e3438322220636c6173733d2244222f3e3c636972636c65207260c08301527f3d22313138222063783d22313530222063793d2231353022207374726f6b652d60e08301527f77696474683d22323222207374726f6b652d6461736861727261793d2233302e6101008301527f38393222207374726f6b652d646173686f66667365743d2231352e343436222f6101208301527f3e3c2f673e3c2f673e3c672066696c6c3d222331373166323522207374726f6b6101408301527f652d77696474683d22312e352220636c6173733d2242223e3c636972636c65206101608301527f723d223236222063783d22313530222063793d2232313022207374726f6b652d6101808301527f6461736861727261793d22312e33363122207374726f6b652d646173686f66666101a08301527f7365743d22302e363831222f3e3c636972636c6520723d223236222063783d226101c08301527f313530222063793d22393022207374726f6b652d6461736861727261793d22306101e08301527f2e38313722207374726f6b652d646173686f66667365743d22302e343038222f6102008301527f3e3c2f673e3c673e3c706174682069643d226d696c6c692220643d224d3135306102208301527f2038347632392220636c6173733d224220432044222f3e3c616e696d617465546102408301527f72616e73666f726d206174747269627574654e616d653d227472616e73666f726102608301527f6d2220747970653d22726f74617465222066726f6d3d223020313530203930226102808301527f20746f3d223336302031353020393022206475723d22317322207265706561746102a08301527f436f756e743d22696e646566696e697465222f3e3c2f673e3c673e3c706174686102c08301527f2069643d227365632220643d224d31353020323136762d32392220636c6173736102e08301527f3d224220432044222f3e3c616e696d6174655472616e73666f726d20617474726103008301527f69627574654e616d653d227472616e73666f726d2220747970653d22726f74616103208301527f7465222066726f6d3d223020313530203231302220746f3d22333630203135306103408301527f2032313022206475723d223630732220726570656174436f756e743d22696e646103608301527f6566696e697465222f3e3c2f673e3c636972636c6520723d22322e35222063786103808301527f3d22313530222063793d223930222066696c6c3d2223656666336639222f3e3c6103a08301527f636972636c6520723d22322e35222063783d22313530222063793d22323130226103c08301527f2066696c6c3d2223656666336639222f3e3c636972636c6520723d22312220636103e08301527f783d22313530222063793d2239302220636c6173733d2245222f3e3c636972636104008301527f6c6520723d2231222063783d22313530222063793d223231302220636c6173736104208301527f3d2245222f3e3c67207374726f6b652d77696474683d222e342200000000000061044083015261045a82019050919050565b6000613b0f6038836157bf565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613b75602a836157bf565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bdb6029836157bf565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c416007836157d0565b91507f23633961383766000000000000000000000000000000000000000000000000006000830152600782019050919050565b6000613c816020836157bf565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613cc2610bb1836157d0565b91507f3e3c7265637420783d2235352220793d22313337222077696474683d2231393060008301527f22206865696768743d223236222066696c6c3d2275726c28234129222072783d60208301527f2235222f3e3c706174682066696c6c3d222365666365613322207374726f6b6560408301527f3d22236566636561332220643d224d36342e3835203134312e346830712e303760608301527f2030202e31312e30342e30342e30352e30342e3131683076352e32377130202e60808301527f30392d2e30352e31342d2e30352e30342d2e31322e30346830712d2e3033203060a08301527f2d2e30372d2e30322d2e30332d2e30312d2e30362d2e303468306c2d332e373160c08301527f2d352e30382e31312d2e303576352e30357130202e30362d2e30342e312d2e3060e08301527f342e30342d2e31312e30346830712d2e303720302d2e31312d2e30342d2e30346101008301527f2d2e30342d2e30342d2e316830762d352e3371302d2e30392e30352d2e31322e6101208301527f30352d2e30342e30392d2e30346830712e30342030202e30372e30312e30332e6101408301527f30312e30352e303568306c332e3720352e30342d2e30362e3136762d352e31316101608301527f71302d2e30362e30342d2e31312e30352d2e30342e31312d2e30347a6d342e366101808301527f3320312e36316830712e30372030202e31322e30352e30342e30342e30342e316101a08301527f31683076322e33337130202e37372d2e343420312e31362d2e34332e33392d316101c08301527f2e31352e33396830712d2e373120302d312e31352d2e33392d2e34342d2e33396101e08301527f2d2e34342d312e31366830762d322e333371302d2e30372e30352d2e31312e306102008301527f352d2e30352e31312d2e30356830712e30382030202e31322e30352e30342e306102208301527f342e30342e3131683076322e33337130202e362e33342e39322e33342e33322e6102408301527f39332e33326830712e35392030202e39332d2e33322e33342d2e33322e33342d6102608301527f2e39326830762d322e333371302d2e30372e30342d2e31312e30352d2e30352e6102808301527f31322d2e30357a6d2d2e37372d2e386830712d2e313320302d2e322d2e30382d6102a08301527f2e30382d2e30382d2e30382d2e32316830762d2e303671302d2e31332e30382d6102c08301527f2e32312e30382d2e30382e32312d2e30386830712e31312030202e31392e30386102e08301527f2e30372e30382e30372e32316830762e30367130202e31332d2e30372e32312d6103008301527f2e30382e30382d2e322e30387a6d2d312e3320306830712d2e313320302d2e326103208301527f312d2e30382d2e30372d2e30382d2e30372d2e32316830762d2e303671302d2e6103408301527f31332e30382d2e32312e30382d2e30382e32312d2e30386830712e31312030206103608301527f2e31382e30382e30382e30382e30382e32316830762e30367130202e31332d2e6103808301527f30382e32312d2e30372e30382d2e31392e30387a222f3e3c706174682066696c6103a08301527f6c3d222331373166323522207374726f6b653d22233137316632352220643d226103c08301527f4d3233352e3036203135332e38366830712d2e30372e30352d2e30382e3131206103e08301527f30202e30362e30342e31336830712e30342e30352e312e30362e30362030202e6104008301527f31312d2e30336830712e33342d2e32332e37332d2e33372e342d2e31342e38356104208301527f2d2e31346830712e35312030202e39352e31392e34352e31392e37382e35332e6104408301527f33342e33352e35332e38322e31392e34372e313920312e303468307130202e356104608301527f372d2e313920312e30342d2e31392e34372d2e35332e38322d2e33332e33342d6104808301527f2e37382e35332d2e34342e31392d2e39352e31396830712d2e343520302d2e386104a08301527f342d2e31342d2e33392d2e31342d2e37332d2e33366830712d2e30362d2e30346104c08301527f2d2e31322d2e30332d2e30362e30312d2e312e30366830712d2e30342e30362d6104e08301527f2e30342e31322e30312e30372e30372e31316830712e31392e31332e34382e326105008301527f362e32392e31332e36322e322e33332e30382e36362e30386830712e353720306105208301527f20312e30382d2e32322e352d2e32312e38392d2e362e33382d2e33392e362d2e6105408301527f39312e32322d2e35332e32322d312e3135683071302d2e36322d2e32322d312e6105608301527f31352d2e32322d2e35322d2e362d2e39312d2e33392d2e33392d2e38392d2e366105808301527f2d2e35312d2e32322d312e30382d2e32326830712d2e343920302d2e39342e316105a08301527f342d2e34352e31352d2e38312e347a6d2d312e33382d2e363276352e367130206105c08301527f2e30362e30352e31312e30352e30352e31312e30356830712e30372030202e316105e08301527f322d2e30352e30342d2e30352e30342d2e31316830762d352e3671302d2e30366106008301527f2d2e30352d2e31312d2e30352d2e30352d2e31312d2e30356830712d2e3037206106208301527f302d2e31322e30352d2e30342e30352d2e30342e313168307a6d2d312e3537206106408301527f352e37366830712e30372030202e31322d2e30352e30342d2e30352e30342d2e6106608301527f31316830762d352e3671302d2e30362d2e30342d2e31312d2e30352d2e30352d6106808301527f2e31322d2e30356830712d2e303720302d2e31312e30352d2e30352e30352d2e6106a08301527f30352e3131683076352e367130202e30362e30352e31312e30342e30352e31316106c08301527f2e30357a6d2d322e37372d342e30346830712d2e303720302d2e31322e30352d6106e08301527f2e30342e30352d2e30342e313268307130202e30372e30352e313268306c322e6107008301527f373820322e33312e30312d2e33382d322e35382d322e3137712d2e30352d2e306107208301527f352d2e312d2e30357a6d2d2e303520342e30346830712e30362030202e31322d6107408301527f2e303668306c312e39332d322e30362d2e32342d2e32312d312e393220322e306107608301527f35712d2e30352e30352d2e30352e313268307130202e30382e30362e31322e306107808301527f372e30342e312e30347a222f3e3c2f673e3c673e3c706174682069643d226d696107a08301527f6e22207374726f6b653d222366666622207374726f6b652d77696474683d22336107c08301527f2220643d224d313530203136345632312220636c6173733d2243222f3e3c616e6107e08301527f696d6174655472616e73666f726d206174747269627574654e616d653d2274726108008301527f616e73666f726d2220747970653d22726f74617465222066726f6d3d223020316108208301527f3530203135302220746f3d22333630203135302031353022206475723d2231686108408301527f2220726570656174436f756e743d22696e646566696e697465222f3e3c2f673e6108608301527f3c673e3c706174682069643d22687222207374726f6b653d22236666662220736108808301527f74726f6b652d77696474683d22352220643d224d3135302031363756353222206108a08301527f636c6173733d2243222f3e3c616e696d6174655472616e73666f726d206174746108c08301527f7269627574654e616d653d227472616e73666f726d2220747970653d22726f746108e08301527f617465222066726f6d3d223020313530203135302220746f3d223336302031356109008301527f302031353022206475723d223132682220726570656174436f756e743d22696e6109208301527f646566696e697465222f3e3c2f673e3c636972636c6520723d223130222063786109408301527f3d22313530222063793d22313530222066696c6c3d2223666666222f3e3c63696109608301527f72636c6520723d2237222063783d22313530222063793d223135302220636c616109808301527f73733d2245222f3e3c73637269707420747970653d22746578742f6a617661736109a08301527f6372697074223e3c215b43444154415b636f6e737420653d6e657720446174656109c08301527f28293b766172206e3d652e6765744d696c6c697365636f6e647328292c6f3d656109e08301527f2e6765745365636f6e647328292b6e2f3165332c723d652e6765744d696e7574610a008301527f657328292b6f2f36302c733d652e676574486f75727328292b722f36303b646f610a208301527f63756d656e742e676574456c656d656e744279496428226d696c6c6922292e73610a408301527f657441747472696275746528227472616e73666f726d222c22726f7461746528610a608301527f222b6e2f3165332a3336302b22203135302039302922292c646f63756d656e74610a808301527f2e676574456c656d656e7442794964282273656322292e736574417474726962610aa08301527f75746528227472616e73666f726d222c22726f7461746528222b6f2f36302a33610ac08301527f36302b2220313530203231302922292c646f63756d656e742e676574456c656d610ae08301527f656e744279496428226d696e22292e7365744174747269627574652822747261610b008301527f6e73666f726d222c22726f7461746528222b722f36302a3336302b2220313530610b208301527f203135302922292c646f63756d656e742e676574456c656d656e744279496428610b408301527f22687222292e73657441747472696275746528227472616e73666f726d222c22610b608301527f726f7461746528222b732f31322a3336302b2220313530203135302922293b5d610b808301527f5d3e3c2f7363726970743e3c2f7376673e000000000000000000000000000000610ba0830152610bb182019050919050565b6000614b276009836157d0565b91507f527562c3ad227d5d7d00000000000000000000000000000000000000000000006000830152600982019050919050565b6000614b67602c836157bf565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614bcd6020836157bf565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614c0d6029836157bf565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c73605c836157d0565b91507f3e3c7374796c653e3c215b43444154415b2e427b7374726f6b653a236566663360008301527f66397d2e437b7374726f6b652d6c696e656361703a726f756e647d2e447b737460208301527f726f6b652d77696474683a327d2e457b66696c6c3a23453934453737000000006040830152605c82019050919050565b6000614cff6021836157bf565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d656016836157bf565b91507f53616c652068617320616c726561647920656e646564000000000000000000006000830152602082019050919050565b6000614da56019836157bf565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000614de5603d836157d0565b91507f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008301527f30302f737667222076696577426f783d223020302033303020333030220000006020830152603d82019050919050565b6000614e4b601d836157d0565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000614e8b602a836157d0565b91507f4e6f726d616c227d2c207b2274726169745f74797065223a224a6577656c732260008301527f2c2276616c7565223a22000000000000000000000000000000000000000000006020830152602a82019050919050565b6000614ef1602b836157d0565b91507f207472616e73666f726d3d227363616c65282d312c3129207472616e736c617460008301527f65282d3330302c203029220000000000000000000000000000000000000000006020830152602b82019050919050565b6000614f576031836157bf565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614fbd602c836157bf565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006150236007836157d0565b91507f23313731663235000000000000000000000000000000000000000000000000006000830152600782019050919050565b6000615063600a836157d0565b91507f5a616669726f227d5d7d000000000000000000000000000000000000000000006000830152600a82019050919050565b60006150a3604e836157d0565b91507f222c226465736372697074696f6e223a22436c6f636b7320666f72207468652060008301527f4d6574617665727365222c22696d616765223a22646174613a696d6167652f7360208301527f76672b786d6c3b6261736536342c0000000000000000000000000000000000006040830152604e82019050919050565b61512b8161595a565b82525050565b600061513d8284612dac565b915061514882612e47565b915081905092915050565b600061515f8284612dac565b915061516a82612fb9565b915081905092915050565b60006151818284612dac565b915061518c8261301f565b915081905092915050565b60006151a38284612dac565b91506151ae82613237565b915081905092915050565b60006151c58284612dac565b91506151d082613369565b915081905092915050565b60006151e78284612dac565b91506151f2826134f3565b915081905092915050565b60006152098284612dac565b915061521482613533565b915081905092915050565b600061522b8284612dac565b915061523682613599565b915081905092915050565b600061524d8284612dac565b915061525882613c34565b915081905092915050565b600061526f8284612dac565b915061527a82613cb4565b915081905092915050565b60006152918284612dac565b915061529c82614b1a565b915081905092915050565b60006152b38284612dac565b91506152be82614c66565b915081905092915050565b60006152d58284612dac565b91506152e082614e7e565b915081905092915050565b60006152f78284612dac565b915061530282614ee4565b915081905092915050565b60006153198284612dac565b915061532482615016565b915081905092915050565b600061533b8284612dac565b915061534682615056565b915081905092915050565b600061535c82612ed3565b91506153688285612e16565b915061537382615096565b915061537f8284612e16565b915061538a82612f53565b91508190509392505050565b60006153a182614dd8565b9150819050919050565b60006153b682614e3e565b91506153c28284612e16565b915081905092915050565b60006020820190506153e26000830184612d55565b92915050565b60006080820190506153fd6000830187612d55565b61540a6020830186612d55565b6154176040830185615122565b81810360608301526154298184612d73565b905095945050505050565b60006020820190506154496000830184612d64565b92915050565b600060208201905081810360008301526154698184612ddd565b905092915050565b6000602082019050818103600083015261548a81612f13565b9050919050565b600060208201905081810360008301526154aa81613085565b9050919050565b600060208201905081810360008301526154ca816130c5565b9050919050565b600060208201905081810360008301526154ea8161312b565b9050919050565b6000602082019050818103600083015261550a81613191565b9050919050565b6000602082019050818103600083015261552a816131f7565b9050919050565b6000602082019050818103600083015261554a816132c3565b9050919050565b6000602082019050818103600083015261556a81613329565b9050919050565b6000602082019050818103600083015261558a8161348d565b9050919050565b600060208201905081810360008301526155aa81613b02565b9050919050565b600060208201905081810360008301526155ca81613b68565b9050919050565b600060208201905081810360008301526155ea81613bce565b9050919050565b6000602082019050818103600083015261560a81613c74565b9050919050565b6000602082019050818103600083015261562a81614b5a565b9050919050565b6000602082019050818103600083015261564a81614bc0565b9050919050565b6000602082019050818103600083015261566a81614c00565b9050919050565b6000602082019050818103600083015261568a81614cf2565b9050919050565b600060208201905081810360008301526156aa81614d58565b9050919050565b600060208201905081810360008301526156ca81614d98565b9050919050565b600060208201905081810360008301526156ea81614f4a565b9050919050565b6000602082019050818103600083015261570a81614fb0565b9050919050565b60006020820190506157266000830184615122565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561575357615752615adf565b5b8060405250919050565b600067ffffffffffffffff82111561577857615777615adf565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006157e68261595a565b91506157f18361595a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561582657615825615a52565b5b828201905092915050565b600061583c8261595a565b91506158478361595a565b92508261585757615856615a81565b5b828204905092915050565b600061586d8261595a565b91506158788361595a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156158b1576158b0615a52565b5b828202905092915050565b60006158c78261595a565b91506158d28361595a565b9250828210156158e5576158e4615a52565b5b828203905092915050565b60006158fb8261593a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615991578082015181840152602081019050615976565b838111156159a0576000848401525b50505050565b600060028204905060018216806159be57607f821691505b602082108114156159d2576159d1615ab0565b5b50919050565b60006159e38261595a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615a1657615a15615a52565b5b600182019050919050565b6000615a2c8261595a565b9150615a378361595a565b925082615a4757615a46615a81565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615b28816158f0565b8114615b3357600080fd5b50565b615b3f81615902565b8114615b4a57600080fd5b50565b615b568161590e565b8114615b6157600080fd5b50565b615b6d8161595a565b8114615b7857600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220289d0087048f1ec2123e67d69ff457f5f54b64afc6605b807d316dc14244d3de64736f6c63430008000033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.