ERC-721
Overview
Max Total Supply
253 RBW
Holders
78
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 RBWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EthRainbow
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.7; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract EthRainbow is ERC721Enumerable, ReentrancyGuard, Ownable { uint256 constant MAX_TOKENS = 6000; function random(string memory input) internal pure returns (uint256) { return uint256(keccak256(abi.encodePacked(input))); } function getFirst(uint256 tokenId) public pure returns (uint8[3] memory) { require(tokenId>0 && tokenId<=MAX_TOKENS, "Out of range"); return getColors(tokenId, "FIRST"); } function getSecond(uint256 tokenId) public pure returns (uint8[3] memory) { require(tokenId>0 && tokenId<=MAX_TOKENS, "Out of range"); return getColors(tokenId, "SECOND"); } function getThird(uint256 tokenId) public pure returns (uint8[3] memory) { require(tokenId>0 && tokenId<=MAX_TOKENS, "Out of range"); return getColors(tokenId, "THIRD"); } function getFourth(uint256 tokenId) public pure returns (uint8[3] memory) { require(tokenId>0 && tokenId<=MAX_TOKENS, "Out of range"); return getColors(tokenId, "FOURTH"); } function getFifth(uint256 tokenId) public pure returns (uint8[3] memory) { require(tokenId>0 && tokenId<=MAX_TOKENS, "Out of range"); return getColors(tokenId, "FIFTH"); } function getColors( uint256 tokenId, string memory keyPrefix ) internal pure returns (uint8[3] memory) { require(tokenId>0 && tokenId<=MAX_TOKENS, "Out of range"); uint256 rand_red = random(string(abi.encodePacked(keyPrefix, 'red', toString(tokenId)))); uint256 rand_green = random(string(abi.encodePacked(keyPrefix, 'green', toString(tokenId)))); uint256 rand_blue = random(string(abi.encodePacked(keyPrefix, 'blue', toString(tokenId)))); uint8[3] memory output = [uint8(rand_red % 256), uint8(rand_green % 256), uint8(rand_blue % 256)]; return output; } function colorString(uint8[3] memory colors) internal pure returns (string memory) { string memory red = toString(uint256(colors[0])); string memory green = toString(uint256(colors[1])); string memory blue = toString(uint256(colors[2])); string memory output = string(abi.encodePacked('rgb(', red, ',', green, ',', blue, ')')); return output; } function tokenURI(uint256 tokenId) public pure override returns (string memory) { require(tokenId>0 && tokenId<=MAX_TOKENS, "Out of range"); string[13] memory parts; parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>'; parts[1] = string(abi.encodePacked('.a {fill:', colorString(getFirst(tokenId)), '}')); parts[2] = string(abi.encodePacked('.b {fill:', colorString(getSecond(tokenId)), '}')); parts[3] = string(abi.encodePacked('.c {fill:', colorString(getThird(tokenId)), '}')); parts[4] = string(abi.encodePacked('.d {fill:', colorString(getFourth(tokenId)), '}')); parts[5] = string(abi.encodePacked('.e {fill:', colorString(getFifth(tokenId)), '}')); parts[6] = '</style>'; parts[7] = '<g><rect class="a" width="350" height="70"/></g>'; parts[8] = '<g><rect y="70" class="b" width="350" height="70"/></g>'; parts[9] = '<g><rect y="140" class="c" width="350" height="70"/></g>'; parts[10] = '<g><rect y="210" class="d" width="350" height="70"/></g>'; parts[11] = '<g><rect y="280" class="e" width="350" height="70"/></g>'; parts[12] = '</svg>'; string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8])); output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12])); string memory json = Base64.encode( bytes( string( abi.encodePacked( '{"name": "EthRainbow #', toString(tokenId), '", "description": "EthRainbow are just colors.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}' ) ) ) ); output = string(abi.encodePacked("data:application/json;base64,", json)); return output; } function claim(uint256 tokenId) public nonReentrant { require(tokenId>0 && tokenId<=MAX_TOKENS, "Out of range"); _safeMint(_msgSender(), tokenId); } function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT license // 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); } constructor() ERC721("EthRainbow", "RBW") Ownable() {} } /// [MIT License] /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT 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 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 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 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 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 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 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: MIT 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 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", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFifth","outputs":[{"internalType":"uint8[3]","name":"","type":"uint8[3]"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFirst","outputs":[{"internalType":"uint8[3]","name":"","type":"uint8[3]"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFourth","outputs":[{"internalType":"uint8[3]","name":"","type":"uint8[3]"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSecond","outputs":[{"internalType":"uint8[3]","name":"","type":"uint8[3]"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getThird","outputs":[{"internalType":"uint8[3]","name":"","type":"uint8[3]"}],"stateMutability":"pure","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"pure","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f4574685261696e626f77000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5242570000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001ae565b508060019080519060200190620000af929190620001ae565b5050506001600a81905550620000da620000ce620000e060201b60201c565b620000e860201b60201c565b620002c3565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001bc906200025e565b90600052602060002090601f016020900481019282620001e057600085556200022c565b82601f10620001fb57805160ff19168380011785556200022c565b828001600101855582156200022c579182015b828111156200022b5782518255916020019190600101906200020e565b5b5090506200023b91906200023f565b5090565b5b808211156200025a57600081600090555060010162000240565b5090565b600060028204905060018216806200027757607f821691505b602082108114156200028e576200028d62000294565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614bf080620002d36000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063667386f7116100de5780639ec29b8211610097578063c87b56dd11610071578063c87b56dd14610482578063e985e9c5146104b2578063f2fde38b146104e2578063fa7f71b1146104fe57610173565b80639ec29b821461041a578063a22cb4651461044a578063b88d4fde1461046657610173565b8063667386f71461034457806370a0823114610374578063715018a6146103a45780638aa001fc146103ae5780638da5cb5b146103de57806395d89b41146103fc57610173565b806323b872dd1161013057806323b872dd146102605780632f745c591461027c578063379607f5146102ac57806342842e0e146102c85780634f6ccce7146102e45780636352211e1461031457610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f65780630b2503a61461021257806318160ddd14610242575b600080fd5b610192600480360381019061018d919061302c565b61052e565b60405161019f9190613a5f565b60405180910390f35b6101b06105a8565b6040516101bd9190613a7a565b60405180910390f35b6101e060048036038101906101db9190613086565b61063a565b6040516101ed91906139dd565b60405180910390f35b610210600480360381019061020b9190612fec565b6106bf565b005b61022c60048036038101906102279190613086565b6107d7565b6040516102399190613a44565b60405180910390f35b61024a610876565b6040516102579190613cfc565b60405180910390f35b61027a60048036038101906102759190612ed6565b610883565b005b61029660048036038101906102919190612fec565b6108e3565b6040516102a39190613cfc565b60405180910390f35b6102c660048036038101906102c19190613086565b610988565b005b6102e260048036038101906102dd9190612ed6565b610a43565b005b6102fe60048036038101906102f99190613086565b610a63565b60405161030b9190613cfc565b60405180910390f35b61032e60048036038101906103299190613086565b610ad4565b60405161033b91906139dd565b60405180910390f35b61035e60048036038101906103599190613086565b610b86565b60405161036b9190613a44565b60405180910390f35b61038e60048036038101906103899190612e69565b610c25565b60405161039b9190613cfc565b60405180910390f35b6103ac610cdd565b005b6103c860048036038101906103c39190613086565b610d65565b6040516103d59190613a44565b60405180910390f35b6103e6610e04565b6040516103f391906139dd565b60405180910390f35b610404610e2e565b6040516104119190613a7a565b60405180910390f35b610434600480360381019061042f9190613086565b610ec0565b6040516104419190613a44565b60405180910390f35b610464600480360381019061045f9190612fac565b610f5f565b005b610480600480360381019061047b9190612f29565b6110e0565b005b61049c60048036038101906104979190613086565b611142565b6040516104a99190613a7a565b60405180910390f35b6104cc60048036038101906104c79190612e96565b6116fc565b6040516104d99190613a5f565b60405180910390f35b6104fc60048036038101906104f79190612e69565b611790565b005b61051860048036038101906105139190613086565b611888565b6040516105259190613a44565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105a157506105a082611927565b5b9050919050565b6060600080546105b790613fb5565b80601f01602080910402602001604051908101604052809291908181526020018280546105e390613fb5565b80156106305780601f1061060557610100808354040283529160200191610630565b820191906000526020600020905b81548152906001019060200180831161061357829003601f168201915b5050505050905090565b600061064582611a09565b610684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067b90613bfc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106ca82610ad4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561073b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073290613c5c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661075a611a75565b73ffffffffffffffffffffffffffffffffffffffff161480610789575061078881610783611a75565b6116fc565b5b6107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf90613b7c565b60405180910390fd5b6107d28383611a7d565b505050565b6107df612d46565b6000821180156107f157506117708211155b610830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082790613c9c565b60405180910390fd5b61086f826040518060400160405280600581526020017f4649465448000000000000000000000000000000000000000000000000000000815250611b36565b9050919050565b6000600880549050905090565b61089461088e611a75565b82611c96565b6108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90613c7c565b60405180910390fd5b6108de838383611d74565b505050565b60006108ee83610c25565b821061092f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092690613a9c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6002600a5414156109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c590613cdc565b60405180910390fd5b6002600a819055506000811180156109e857506117708111155b610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e90613c9c565b60405180910390fd5b610a38610a32611a75565b82611fd0565b6001600a8190555050565b610a5e838383604051806020016040528060008152506110e0565b505050565b6000610a6d610876565b8210610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa590613cbc565b60405180910390fd5b60088281548110610ac257610ac161414e565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490613bbc565b60405180910390fd5b80915050919050565b610b8e612d46565b600082118015610ba057506117708211155b610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613c9c565b60405180910390fd5b610c1e826040518060400160405280600581526020017f4649525354000000000000000000000000000000000000000000000000000000815250611b36565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d90613b9c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ce5611a75565b73ffffffffffffffffffffffffffffffffffffffff16610d03610e04565b73ffffffffffffffffffffffffffffffffffffffff1614610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090613c1c565b60405180910390fd5b610d636000611fee565b565b610d6d612d46565b600082118015610d7f57506117708211155b610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590613c9c565b60405180910390fd5b610dfd826040518060400160405280600681526020017f5345434f4e440000000000000000000000000000000000000000000000000000815250611b36565b9050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e3d90613fb5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6990613fb5565b8015610eb65780601f10610e8b57610100808354040283529160200191610eb6565b820191906000526020600020905b815481529060010190602001808311610e9957829003601f168201915b5050505050905090565b610ec8612d46565b600082118015610eda57506117708211155b610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1090613c9c565b60405180910390fd5b610f58826040518060400160405280600681526020017f464f555254480000000000000000000000000000000000000000000000000000815250611b36565b9050919050565b610f67611a75565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90613b3c565b60405180910390fd5b8060056000610fe2611a75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661108f611a75565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110d49190613a5f565b60405180910390a35050565b6110f16110eb611a75565b83611c96565b611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613c7c565b60405180910390fd5b61113c848484846120b4565b50505050565b606060008211801561115657506117708211155b611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613c9c565b60405180910390fd5b61119d612d68565b6040518060a0016040528060698152602001614a3b60699139816000600d81106111ca576111c961414e565b5b60200201819052506111e36111de84610b86565b612110565b6040516020016111f39190613961565b604051602081830303815290604052816001600d81106112165761121561414e565b5b602002018190525061122f61122a84610d65565b612110565b60405160200161123f9190613865565b604051602081830303815290604052816002600d81106112625761126161414e565b5b602002018190525061127b61127684611888565b612110565b60405160200161128b91906139b0565b604051602081830303815290604052816003600d81106112ae576112ad61414e565b5b60200201819052506112c76112c284610ec0565b612110565b6040516020016112d79190613934565b604051602081830303815290604052816004600d81106112fa576112f961414e565b5b602002018190525061131361130e846107d7565b612110565b6040516020016113239190613838565b604051602081830303815290604052816005600d81106113465761134561414e565b5b60200201819052506040518060400160405280600881526020017f3c2f7374796c653e000000000000000000000000000000000000000000000000815250816006600d81106113985761139761414e565b5b6020020181905250604051806060016040528060308152602001614b8b60309139816007600d81106113cd576113cc61414e565b5b6020020181905250604051806060016040528060378152602001614adc60379139816008600d81106114025761140161414e565b5b6020020181905250604051806060016040528060388152602001614a0360389139816009600d81106114375761143661414e565b5b6020020181905250604051806060016040528060388152602001614b136038913981600a600d811061146c5761146b61414e565b5b6020020181905250604051806060016040528060388152602001614aa46038913981600b600d81106114a1576114a061414e565b5b60200201819052506040518060400160405280600681526020017f3c2f7376673e000000000000000000000000000000000000000000000000000081525081600c600d81106114f3576114f261414e565b5b60200201819052506000816000600d81106115115761151061414e565b5b6020020151826001600d811061152a5761152961414e565b5b6020020151836002600d81106115435761154261414e565b5b6020020151846003600d811061155c5761155b61414e565b5b6020020151856004600d81106115755761157461414e565b5b6020020151866005600d811061158e5761158d61414e565b5b6020020151876006600d81106115a7576115a661414e565b5b6020020151886007600d81106115c0576115bf61414e565b5b6020020151896008600d81106115d9576115d861414e565b5b60200201516040516020016115f69998979695949392919061372c565b604051602081830303815290604052905080826009600d811061161c5761161b61414e565b5b602002015183600a600d81106116355761163461414e565b5b602002015184600b600d811061164e5761164d61414e565b5b602002015185600c600d81106116675761166661414e565b5b60200201516040516020016116809594939291906136e1565b604051602081830303815290604052905060006116cd61169f866121be565b6116a88461231f565b6040516020016116b99291906138ef565b60405160208183030381529060405261231f565b9050806040516020016116e0919061398e565b6040516020818303038152906040529150819350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611798611a75565b73ffffffffffffffffffffffffffffffffffffffff166117b6610e04565b73ffffffffffffffffffffffffffffffffffffffff161461180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390613c1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390613adc565b60405180910390fd5b61188581611fee565b50565b611890612d46565b6000821180156118a257506117708211155b6118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890613c9c565b60405180910390fd5b611920826040518060400160405280600581526020017f5448495244000000000000000000000000000000000000000000000000000000815250611b36565b9050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119f257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a025750611a01826124b7565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611af083610ad4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611b3e612d46565b600083118015611b5057506117708311155b611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8690613c9c565b60405180910390fd5b6000611bc383611b9e866121be565b604051602001611baf9291906137ab565b604051602081830303815290604052612521565b90506000611bf984611bd4876121be565b604051602001611be59291906137da565b604051602081830303815290604052612521565b90506000611c2f85611c0a886121be565b604051602001611c1b929190613809565b604051602081830303815290604052612521565b90506000604051806060016040528061010086611c4c9190614061565b60ff1660ff16815260200161010085611c659190614061565b60ff1660ff16815260200161010084611c7e9190614061565b60ff1660ff1681525090508094505050505092915050565b6000611ca182611a09565b611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd790613b5c565b60405180910390fd5b6000611ceb83610ad4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d5a57508373ffffffffffffffffffffffffffffffffffffffff16611d428461063a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d6b5750611d6a81856116fc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d9482610ad4565b73ffffffffffffffffffffffffffffffffffffffff1614611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de190613c3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190613b1c565b60405180910390fd5b611e65838383612554565b611e70600082611a7d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ec09190613ebe565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f179190613ddd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611fea828260405180602001604052806000815250612668565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120bf848484611d74565b6120cb848484846126c3565b61210a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210190613abc565b60405180910390fd5b50505050565b606060006121388360006003811061212b5761212a61414e565b5b602002015160ff166121be565b90506000612160846001600381106121535761215261414e565b5b602002015160ff166121be565b905060006121888560026003811061217b5761217a61414e565b5b602002015160ff166121be565b905060008383836040516020016121a193929190613892565b604051602081830303815290604052905080945050505050919050565b60606000821415612206576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061231a565b600082905060005b6000821461223857808061222190614018565b915050600a826122319190613e33565b915061220e565b60008167ffffffffffffffff8111156122545761225361417d565b5b6040519080825280601f01601f1916602001820160405280156122865781602001600182028036833780820191505090505b5090505b600085146123135760018261229f9190613ebe565b9150600a856122ae9190614061565b60306122ba9190613ddd565b60f81b8183815181106122d0576122cf61414e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561230c9190613e33565b945061228a565b8093505050505b919050565b6060600082519050600081141561234857604051806020016040528060008152509150506124b2565b600060036002836123599190613ddd565b6123639190613e33565b600461236f9190613e64565b905060006020826123809190613ddd565b67ffffffffffffffff8111156123995761239861417d565b5b6040519080825280601f01601f1916602001820160405280156123cb5781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614b4b604091399050600181016020830160005b8681101561246f5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b905080845260048401935050506123f6565b5060038606600181146124895760028114612499576124a4565b613d3d60f01b60028303526124a4565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008160405160200161253491906136ca565b6040516020818303038152906040528051906020012060001c9050919050565b61255f83838361285a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125a25761259d8161285f565b6125e1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125e0576125df83826128a8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126245761261f81612a15565b612663565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612662576126618282612ae6565b5b5b505050565b6126728383612b65565b61267f60008484846126c3565b6126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b590613abc565b60405180910390fd5b505050565b60006126e48473ffffffffffffffffffffffffffffffffffffffff16612d33565b1561284d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261270d611a75565b8786866040518563ffffffff1660e01b815260040161272f94939291906139f8565b602060405180830381600087803b15801561274957600080fd5b505af192505050801561277a57506040513d601f19601f820116820180604052508101906127779190613059565b60015b6127fd573d80600081146127aa576040519150601f19603f3d011682016040523d82523d6000602084013e6127af565b606091505b506000815114156127f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ec90613abc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612852565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128b584610c25565b6128bf9190613ebe565b90506000600760008481526020019081526020016000205490508181146129a4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a299190613ebe565b9050600060096000848152602001908152602001600020549050600060088381548110612a5957612a5861414e565b5b906000526020600020015490508060088381548110612a7b57612a7a61414e565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612aca57612ac961411f565b5b6001900381819060005260206000200160009055905550505050565b6000612af183610c25565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcc90613bdc565b60405180910390fd5b612bde81611a09565b15612c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1590613afc565b60405180910390fd5b612c2a60008383612554565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c7a9190613ddd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518060600160405280600390602082028036833780820191505090505090565b604051806101a00160405280600d905b6060815260200190600190039081612d785790505090565b6000612da3612d9e84613d3c565b613d17565b905082815260208101848484011115612dbf57612dbe6141b1565b5b612dca848285613f73565b509392505050565b600081359050612de1816149a6565b92915050565b600081359050612df6816149bd565b92915050565b600081359050612e0b816149d4565b92915050565b600081519050612e20816149d4565b92915050565b600082601f830112612e3b57612e3a6141ac565b5b8135612e4b848260208601612d90565b91505092915050565b600081359050612e63816149eb565b92915050565b600060208284031215612e7f57612e7e6141bb565b5b6000612e8d84828501612dd2565b91505092915050565b60008060408385031215612ead57612eac6141bb565b5b6000612ebb85828601612dd2565b9250506020612ecc85828601612dd2565b9150509250929050565b600080600060608486031215612eef57612eee6141bb565b5b6000612efd86828701612dd2565b9350506020612f0e86828701612dd2565b9250506040612f1f86828701612e54565b9150509250925092565b60008060008060808587031215612f4357612f426141bb565b5b6000612f5187828801612dd2565b9450506020612f6287828801612dd2565b9350506040612f7387828801612e54565b925050606085013567ffffffffffffffff811115612f9457612f936141b6565b5b612fa087828801612e26565b91505092959194509250565b60008060408385031215612fc357612fc26141bb565b5b6000612fd185828601612dd2565b9250506020612fe285828601612de7565b9150509250929050565b60008060408385031215613003576130026141bb565b5b600061301185828601612dd2565b925050602061302285828601612e54565b9150509250929050565b600060208284031215613042576130416141bb565b5b600061305084828501612dfc565b91505092915050565b60006020828403121561306f5761306e6141bb565b5b600061307d84828501612e11565b91505092915050565b60006020828403121561309c5761309b6141bb565b5b60006130aa84828501612e54565b91505092915050565b60006130bf83836136bb565b60208301905092915050565b6130d481613ef2565b82525050565b6130e381613d77565b6130ed8184613da5565b92506130f882613d6d565b8060005b8381101561312957815161311087826130b3565b965061311b83613d98565b9250506001810190506130fc565b505050505050565b61313a81613f04565b82525050565b600061314b82613d82565b6131558185613db0565b9350613165818560208601613f82565b61316e816141c0565b840191505092915050565b600061318482613d8d565b61318e8185613dc1565b935061319e818560208601613f82565b6131a7816141c0565b840191505092915050565b60006131bd82613d8d565b6131c78185613dd2565b93506131d7818560208601613f82565b80840191505092915050565b60006131f0600983613dd2565b91506131fb826141d1565b600982019050919050565b6000613213602b83613dc1565b915061321e826141fa565b604082019050919050565b6000613236603283613dc1565b915061324182614249565b604082019050919050565b6000613259602683613dc1565b915061326482614298565b604082019050919050565b600061327c601c83613dc1565b9150613287826142e7565b602082019050919050565b600061329f600983613dd2565b91506132aa82614310565b600982019050919050565b60006132c2600183613dd2565b91506132cd82614339565b600182019050919050565b60006132e5600483613dd2565b91506132f082614362565b600482019050919050565b6000613308602483613dc1565b91506133138261438b565b604082019050919050565b600061332b601983613dc1565b9150613336826143da565b602082019050919050565b600061334e602c83613dc1565b915061335982614403565b604082019050919050565b6000613371600183613dd2565b915061337c82614452565b600182019050919050565b6000613394603883613dc1565b915061339f8261447b565b604082019050919050565b60006133b7602a83613dc1565b91506133c2826144ca565b604082019050919050565b60006133da602983613dc1565b91506133e582614519565b604082019050919050565b60006133fd600283613dd2565b915061340882614568565b600282019050919050565b6000613420602083613dc1565b915061342b82614591565b602082019050919050565b6000613443600183613dd2565b915061344e826145ba565b600182019050919050565b6000613466600383613dd2565b9150613471826145e3565b600382019050919050565b6000613489601683613dd2565b91506134948261460c565b601682019050919050565b60006134ac600983613dd2565b91506134b782614635565b600982019050919050565b60006134cf602c83613dc1565b91506134da8261465e565b604082019050919050565b60006134f2602083613dc1565b91506134fd826146ad565b602082019050919050565b6000613515602983613dc1565b9150613520826146d6565b604082019050919050565b6000613538600983613dd2565b915061354382614725565b600982019050919050565b600061355b602183613dc1565b91506135668261474e565b604082019050919050565b600061357e601d83613dd2565b91506135898261479d565b601d82019050919050565b60006135a1600983613dd2565b91506135ac826147c6565b600982019050919050565b60006135c4603183613dc1565b91506135cf826147ef565b604082019050919050565b60006135e7600c83613dc1565b91506135f28261483e565b602082019050919050565b600061360a605583613dd2565b915061361582614867565b605582019050919050565b600061362d602c83613dc1565b9150613638826148dc565b604082019050919050565b6000613650601f83613dc1565b915061365b8261492b565b602082019050919050565b6000613673600583613dd2565b915061367e82614954565b600582019050919050565b6000613696600483613dd2565b91506136a18261497d565b600482019050919050565b6136b581613f5c565b82525050565b6136c481613f66565b82525050565b60006136d682846131b2565b915081905092915050565b60006136ed82886131b2565b91506136f982876131b2565b915061370582866131b2565b915061371182856131b2565b915061371d82846131b2565b91508190509695505050505050565b6000613738828c6131b2565b9150613744828b6131b2565b9150613750828a6131b2565b915061375c82896131b2565b915061376882886131b2565b915061377482876131b2565b915061378082866131b2565b915061378c82856131b2565b915061379882846131b2565b91508190509a9950505050505050505050565b60006137b782856131b2565b91506137c282613459565b91506137ce82846131b2565b91508190509392505050565b60006137e682856131b2565b91506137f182613666565b91506137fd82846131b2565b91508190509392505050565b600061381582856131b2565b915061382082613689565b915061382c82846131b2565b91508190509392505050565b6000613843826131e3565b915061384f82846131b2565b915061385a82613436565b915081905092915050565b600061387082613292565b915061387c82846131b2565b915061388782613436565b915081905092915050565b600061389d826132d8565b91506138a982866131b2565b91506138b4826132b5565b91506138c082856131b2565b91506138cb826132b5565b91506138d782846131b2565b91506138e282613364565b9150819050949350505050565b60006138fa8261347c565b915061390682856131b2565b9150613911826135fd565b915061391d82846131b2565b9150613928826133f0565b91508190509392505050565b600061393f8261349f565b915061394b82846131b2565b915061395682613436565b915081905092915050565b600061396c8261352b565b915061397882846131b2565b915061398382613436565b915081905092915050565b600061399982613571565b91506139a582846131b2565b915081905092915050565b60006139bb82613594565b91506139c782846131b2565b91506139d282613436565b915081905092915050565b60006020820190506139f260008301846130cb565b92915050565b6000608082019050613a0d60008301876130cb565b613a1a60208301866130cb565b613a2760408301856136ac565b8181036060830152613a398184613140565b905095945050505050565b6000606082019050613a5960008301846130da565b92915050565b6000602082019050613a746000830184613131565b92915050565b60006020820190508181036000830152613a948184613179565b905092915050565b60006020820190508181036000830152613ab581613206565b9050919050565b60006020820190508181036000830152613ad581613229565b9050919050565b60006020820190508181036000830152613af58161324c565b9050919050565b60006020820190508181036000830152613b158161326f565b9050919050565b60006020820190508181036000830152613b35816132fb565b9050919050565b60006020820190508181036000830152613b558161331e565b9050919050565b60006020820190508181036000830152613b7581613341565b9050919050565b60006020820190508181036000830152613b9581613387565b9050919050565b60006020820190508181036000830152613bb5816133aa565b9050919050565b60006020820190508181036000830152613bd5816133cd565b9050919050565b60006020820190508181036000830152613bf581613413565b9050919050565b60006020820190508181036000830152613c15816134c2565b9050919050565b60006020820190508181036000830152613c35816134e5565b9050919050565b60006020820190508181036000830152613c5581613508565b9050919050565b60006020820190508181036000830152613c758161354e565b9050919050565b60006020820190508181036000830152613c95816135b7565b9050919050565b60006020820190508181036000830152613cb5816135da565b9050919050565b60006020820190508181036000830152613cd581613620565b9050919050565b60006020820190508181036000830152613cf581613643565b9050919050565b6000602082019050613d1160008301846136ac565b92915050565b6000613d21613d32565b9050613d2d8282613fe7565b919050565b6000604051905090565b600067ffffffffffffffff821115613d5757613d5661417d565b5b613d60826141c0565b9050602081019050919050565b6000819050919050565b600060039050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613de882613f5c565b9150613df383613f5c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e2857613e27614092565b5b828201905092915050565b6000613e3e82613f5c565b9150613e4983613f5c565b925082613e5957613e586140c1565b5b828204905092915050565b6000613e6f82613f5c565b9150613e7a83613f5c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613eb357613eb2614092565b5b828202905092915050565b6000613ec982613f5c565b9150613ed483613f5c565b925082821015613ee757613ee6614092565b5b828203905092915050565b6000613efd82613f3c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613fa0578082015181840152602081019050613f85565b83811115613faf576000848401525b50505050565b60006002820490506001821680613fcd57607f821691505b60208210811415613fe157613fe06140f0565b5b50919050565b613ff0826141c0565b810181811067ffffffffffffffff8211171561400f5761400e61417d565b5b80604052505050565b600061402382613f5c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561405657614055614092565b5b600182019050919050565b600061406c82613f5c565b915061407783613f5c565b925082614087576140866140c1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f2e65207b66696c6c3a0000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f2e62207b66696c6c3a0000000000000000000000000000000000000000000000600082015250565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b7f7267622800000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2900000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f7265640000000000000000000000000000000000000000000000000000000000600082015250565b7f7b226e616d65223a20224574685261696e626f77202300000000000000000000600082015250565b7f2e64207b66696c6c3a0000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f2e61207b66696c6c3a0000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f2e63207b66696c6c3a0000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4f7574206f662072616e67650000000000000000000000000000000000000000600082015250565b7f222c20226465736372697074696f6e223a20224574685261696e626f7720617260008201527f65206a75737420636f6c6f72732e222c2022696d616765223a2022646174613a60208201527f696d6167652f7376672b786d6c3b6261736536342c0000000000000000000000604082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f677265656e000000000000000000000000000000000000000000000000000000600082015250565b7f626c756500000000000000000000000000000000000000000000000000000000600082015250565b6149af81613ef2565b81146149ba57600080fd5b50565b6149c681613f04565b81146149d157600080fd5b50565b6149dd81613f10565b81146149e857600080fd5b50565b6149f481613f5c565b81146149ff57600080fd5b5056fe3c673e3c7265637420793d223134302220636c6173733d2263222077696474683d2233353022206865696768743d223730222f3e3c2f673e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e3c673e3c7265637420793d223238302220636c6173733d2265222077696474683d2233353022206865696768743d223730222f3e3c2f673e3c673e3c7265637420793d2237302220636c6173733d2262222077696474683d2233353022206865696768743d223730222f3e3c2f673e3c673e3c7265637420793d223231302220636c6173733d2264222077696474683d2233353022206865696768743d223730222f3e3c2f673e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c673e3c7265637420636c6173733d2261222077696474683d2233353022206865696768743d223730222f3e3c2f673ea2646970667358221220aa3c411d40ddb456196b0e7c037016d1eb36535f0d2314e21f1d05eb73bcb51c64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063667386f7116100de5780639ec29b8211610097578063c87b56dd11610071578063c87b56dd14610482578063e985e9c5146104b2578063f2fde38b146104e2578063fa7f71b1146104fe57610173565b80639ec29b821461041a578063a22cb4651461044a578063b88d4fde1461046657610173565b8063667386f71461034457806370a0823114610374578063715018a6146103a45780638aa001fc146103ae5780638da5cb5b146103de57806395d89b41146103fc57610173565b806323b872dd1161013057806323b872dd146102605780632f745c591461027c578063379607f5146102ac57806342842e0e146102c85780634f6ccce7146102e45780636352211e1461031457610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f65780630b2503a61461021257806318160ddd14610242575b600080fd5b610192600480360381019061018d919061302c565b61052e565b60405161019f9190613a5f565b60405180910390f35b6101b06105a8565b6040516101bd9190613a7a565b60405180910390f35b6101e060048036038101906101db9190613086565b61063a565b6040516101ed91906139dd565b60405180910390f35b610210600480360381019061020b9190612fec565b6106bf565b005b61022c60048036038101906102279190613086565b6107d7565b6040516102399190613a44565b60405180910390f35b61024a610876565b6040516102579190613cfc565b60405180910390f35b61027a60048036038101906102759190612ed6565b610883565b005b61029660048036038101906102919190612fec565b6108e3565b6040516102a39190613cfc565b60405180910390f35b6102c660048036038101906102c19190613086565b610988565b005b6102e260048036038101906102dd9190612ed6565b610a43565b005b6102fe60048036038101906102f99190613086565b610a63565b60405161030b9190613cfc565b60405180910390f35b61032e60048036038101906103299190613086565b610ad4565b60405161033b91906139dd565b60405180910390f35b61035e60048036038101906103599190613086565b610b86565b60405161036b9190613a44565b60405180910390f35b61038e60048036038101906103899190612e69565b610c25565b60405161039b9190613cfc565b60405180910390f35b6103ac610cdd565b005b6103c860048036038101906103c39190613086565b610d65565b6040516103d59190613a44565b60405180910390f35b6103e6610e04565b6040516103f391906139dd565b60405180910390f35b610404610e2e565b6040516104119190613a7a565b60405180910390f35b610434600480360381019061042f9190613086565b610ec0565b6040516104419190613a44565b60405180910390f35b610464600480360381019061045f9190612fac565b610f5f565b005b610480600480360381019061047b9190612f29565b6110e0565b005b61049c60048036038101906104979190613086565b611142565b6040516104a99190613a7a565b60405180910390f35b6104cc60048036038101906104c79190612e96565b6116fc565b6040516104d99190613a5f565b60405180910390f35b6104fc60048036038101906104f79190612e69565b611790565b005b61051860048036038101906105139190613086565b611888565b6040516105259190613a44565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105a157506105a082611927565b5b9050919050565b6060600080546105b790613fb5565b80601f01602080910402602001604051908101604052809291908181526020018280546105e390613fb5565b80156106305780601f1061060557610100808354040283529160200191610630565b820191906000526020600020905b81548152906001019060200180831161061357829003601f168201915b5050505050905090565b600061064582611a09565b610684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067b90613bfc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106ca82610ad4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561073b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073290613c5c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661075a611a75565b73ffffffffffffffffffffffffffffffffffffffff161480610789575061078881610783611a75565b6116fc565b5b6107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf90613b7c565b60405180910390fd5b6107d28383611a7d565b505050565b6107df612d46565b6000821180156107f157506117708211155b610830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082790613c9c565b60405180910390fd5b61086f826040518060400160405280600581526020017f4649465448000000000000000000000000000000000000000000000000000000815250611b36565b9050919050565b6000600880549050905090565b61089461088e611a75565b82611c96565b6108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90613c7c565b60405180910390fd5b6108de838383611d74565b505050565b60006108ee83610c25565b821061092f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092690613a9c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6002600a5414156109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c590613cdc565b60405180910390fd5b6002600a819055506000811180156109e857506117708111155b610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e90613c9c565b60405180910390fd5b610a38610a32611a75565b82611fd0565b6001600a8190555050565b610a5e838383604051806020016040528060008152506110e0565b505050565b6000610a6d610876565b8210610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa590613cbc565b60405180910390fd5b60088281548110610ac257610ac161414e565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490613bbc565b60405180910390fd5b80915050919050565b610b8e612d46565b600082118015610ba057506117708211155b610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613c9c565b60405180910390fd5b610c1e826040518060400160405280600581526020017f4649525354000000000000000000000000000000000000000000000000000000815250611b36565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d90613b9c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ce5611a75565b73ffffffffffffffffffffffffffffffffffffffff16610d03610e04565b73ffffffffffffffffffffffffffffffffffffffff1614610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090613c1c565b60405180910390fd5b610d636000611fee565b565b610d6d612d46565b600082118015610d7f57506117708211155b610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590613c9c565b60405180910390fd5b610dfd826040518060400160405280600681526020017f5345434f4e440000000000000000000000000000000000000000000000000000815250611b36565b9050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e3d90613fb5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6990613fb5565b8015610eb65780601f10610e8b57610100808354040283529160200191610eb6565b820191906000526020600020905b815481529060010190602001808311610e9957829003601f168201915b5050505050905090565b610ec8612d46565b600082118015610eda57506117708211155b610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1090613c9c565b60405180910390fd5b610f58826040518060400160405280600681526020017f464f555254480000000000000000000000000000000000000000000000000000815250611b36565b9050919050565b610f67611a75565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90613b3c565b60405180910390fd5b8060056000610fe2611a75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661108f611a75565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110d49190613a5f565b60405180910390a35050565b6110f16110eb611a75565b83611c96565b611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613c7c565b60405180910390fd5b61113c848484846120b4565b50505050565b606060008211801561115657506117708211155b611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613c9c565b60405180910390fd5b61119d612d68565b6040518060a0016040528060698152602001614a3b60699139816000600d81106111ca576111c961414e565b5b60200201819052506111e36111de84610b86565b612110565b6040516020016111f39190613961565b604051602081830303815290604052816001600d81106112165761121561414e565b5b602002018190525061122f61122a84610d65565b612110565b60405160200161123f9190613865565b604051602081830303815290604052816002600d81106112625761126161414e565b5b602002018190525061127b61127684611888565b612110565b60405160200161128b91906139b0565b604051602081830303815290604052816003600d81106112ae576112ad61414e565b5b60200201819052506112c76112c284610ec0565b612110565b6040516020016112d79190613934565b604051602081830303815290604052816004600d81106112fa576112f961414e565b5b602002018190525061131361130e846107d7565b612110565b6040516020016113239190613838565b604051602081830303815290604052816005600d81106113465761134561414e565b5b60200201819052506040518060400160405280600881526020017f3c2f7374796c653e000000000000000000000000000000000000000000000000815250816006600d81106113985761139761414e565b5b6020020181905250604051806060016040528060308152602001614b8b60309139816007600d81106113cd576113cc61414e565b5b6020020181905250604051806060016040528060378152602001614adc60379139816008600d81106114025761140161414e565b5b6020020181905250604051806060016040528060388152602001614a0360389139816009600d81106114375761143661414e565b5b6020020181905250604051806060016040528060388152602001614b136038913981600a600d811061146c5761146b61414e565b5b6020020181905250604051806060016040528060388152602001614aa46038913981600b600d81106114a1576114a061414e565b5b60200201819052506040518060400160405280600681526020017f3c2f7376673e000000000000000000000000000000000000000000000000000081525081600c600d81106114f3576114f261414e565b5b60200201819052506000816000600d81106115115761151061414e565b5b6020020151826001600d811061152a5761152961414e565b5b6020020151836002600d81106115435761154261414e565b5b6020020151846003600d811061155c5761155b61414e565b5b6020020151856004600d81106115755761157461414e565b5b6020020151866005600d811061158e5761158d61414e565b5b6020020151876006600d81106115a7576115a661414e565b5b6020020151886007600d81106115c0576115bf61414e565b5b6020020151896008600d81106115d9576115d861414e565b5b60200201516040516020016115f69998979695949392919061372c565b604051602081830303815290604052905080826009600d811061161c5761161b61414e565b5b602002015183600a600d81106116355761163461414e565b5b602002015184600b600d811061164e5761164d61414e565b5b602002015185600c600d81106116675761166661414e565b5b60200201516040516020016116809594939291906136e1565b604051602081830303815290604052905060006116cd61169f866121be565b6116a88461231f565b6040516020016116b99291906138ef565b60405160208183030381529060405261231f565b9050806040516020016116e0919061398e565b6040516020818303038152906040529150819350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611798611a75565b73ffffffffffffffffffffffffffffffffffffffff166117b6610e04565b73ffffffffffffffffffffffffffffffffffffffff161461180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390613c1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390613adc565b60405180910390fd5b61188581611fee565b50565b611890612d46565b6000821180156118a257506117708211155b6118e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d890613c9c565b60405180910390fd5b611920826040518060400160405280600581526020017f5448495244000000000000000000000000000000000000000000000000000000815250611b36565b9050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119f257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a025750611a01826124b7565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611af083610ad4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611b3e612d46565b600083118015611b5057506117708311155b611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8690613c9c565b60405180910390fd5b6000611bc383611b9e866121be565b604051602001611baf9291906137ab565b604051602081830303815290604052612521565b90506000611bf984611bd4876121be565b604051602001611be59291906137da565b604051602081830303815290604052612521565b90506000611c2f85611c0a886121be565b604051602001611c1b929190613809565b604051602081830303815290604052612521565b90506000604051806060016040528061010086611c4c9190614061565b60ff1660ff16815260200161010085611c659190614061565b60ff1660ff16815260200161010084611c7e9190614061565b60ff1660ff1681525090508094505050505092915050565b6000611ca182611a09565b611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd790613b5c565b60405180910390fd5b6000611ceb83610ad4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d5a57508373ffffffffffffffffffffffffffffffffffffffff16611d428461063a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d6b5750611d6a81856116fc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d9482610ad4565b73ffffffffffffffffffffffffffffffffffffffff1614611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de190613c3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190613b1c565b60405180910390fd5b611e65838383612554565b611e70600082611a7d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ec09190613ebe565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f179190613ddd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611fea828260405180602001604052806000815250612668565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120bf848484611d74565b6120cb848484846126c3565b61210a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210190613abc565b60405180910390fd5b50505050565b606060006121388360006003811061212b5761212a61414e565b5b602002015160ff166121be565b90506000612160846001600381106121535761215261414e565b5b602002015160ff166121be565b905060006121888560026003811061217b5761217a61414e565b5b602002015160ff166121be565b905060008383836040516020016121a193929190613892565b604051602081830303815290604052905080945050505050919050565b60606000821415612206576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061231a565b600082905060005b6000821461223857808061222190614018565b915050600a826122319190613e33565b915061220e565b60008167ffffffffffffffff8111156122545761225361417d565b5b6040519080825280601f01601f1916602001820160405280156122865781602001600182028036833780820191505090505b5090505b600085146123135760018261229f9190613ebe565b9150600a856122ae9190614061565b60306122ba9190613ddd565b60f81b8183815181106122d0576122cf61414e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561230c9190613e33565b945061228a565b8093505050505b919050565b6060600082519050600081141561234857604051806020016040528060008152509150506124b2565b600060036002836123599190613ddd565b6123639190613e33565b600461236f9190613e64565b905060006020826123809190613ddd565b67ffffffffffffffff8111156123995761239861417d565b5b6040519080825280601f01601f1916602001820160405280156123cb5781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614b4b604091399050600181016020830160005b8681101561246f5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b905080845260048401935050506123f6565b5060038606600181146124895760028114612499576124a4565b613d3d60f01b60028303526124a4565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008160405160200161253491906136ca565b6040516020818303038152906040528051906020012060001c9050919050565b61255f83838361285a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125a25761259d8161285f565b6125e1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125e0576125df83826128a8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126245761261f81612a15565b612663565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612662576126618282612ae6565b5b5b505050565b6126728383612b65565b61267f60008484846126c3565b6126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b590613abc565b60405180910390fd5b505050565b60006126e48473ffffffffffffffffffffffffffffffffffffffff16612d33565b1561284d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261270d611a75565b8786866040518563ffffffff1660e01b815260040161272f94939291906139f8565b602060405180830381600087803b15801561274957600080fd5b505af192505050801561277a57506040513d601f19601f820116820180604052508101906127779190613059565b60015b6127fd573d80600081146127aa576040519150601f19603f3d011682016040523d82523d6000602084013e6127af565b606091505b506000815114156127f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ec90613abc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612852565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128b584610c25565b6128bf9190613ebe565b90506000600760008481526020019081526020016000205490508181146129a4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a299190613ebe565b9050600060096000848152602001908152602001600020549050600060088381548110612a5957612a5861414e565b5b906000526020600020015490508060088381548110612a7b57612a7a61414e565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612aca57612ac961411f565b5b6001900381819060005260206000200160009055905550505050565b6000612af183610c25565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcc90613bdc565b60405180910390fd5b612bde81611a09565b15612c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1590613afc565b60405180910390fd5b612c2a60008383612554565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c7a9190613ddd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518060600160405280600390602082028036833780820191505090505090565b604051806101a00160405280600d905b6060815260200190600190039081612d785790505090565b6000612da3612d9e84613d3c565b613d17565b905082815260208101848484011115612dbf57612dbe6141b1565b5b612dca848285613f73565b509392505050565b600081359050612de1816149a6565b92915050565b600081359050612df6816149bd565b92915050565b600081359050612e0b816149d4565b92915050565b600081519050612e20816149d4565b92915050565b600082601f830112612e3b57612e3a6141ac565b5b8135612e4b848260208601612d90565b91505092915050565b600081359050612e63816149eb565b92915050565b600060208284031215612e7f57612e7e6141bb565b5b6000612e8d84828501612dd2565b91505092915050565b60008060408385031215612ead57612eac6141bb565b5b6000612ebb85828601612dd2565b9250506020612ecc85828601612dd2565b9150509250929050565b600080600060608486031215612eef57612eee6141bb565b5b6000612efd86828701612dd2565b9350506020612f0e86828701612dd2565b9250506040612f1f86828701612e54565b9150509250925092565b60008060008060808587031215612f4357612f426141bb565b5b6000612f5187828801612dd2565b9450506020612f6287828801612dd2565b9350506040612f7387828801612e54565b925050606085013567ffffffffffffffff811115612f9457612f936141b6565b5b612fa087828801612e26565b91505092959194509250565b60008060408385031215612fc357612fc26141bb565b5b6000612fd185828601612dd2565b9250506020612fe285828601612de7565b9150509250929050565b60008060408385031215613003576130026141bb565b5b600061301185828601612dd2565b925050602061302285828601612e54565b9150509250929050565b600060208284031215613042576130416141bb565b5b600061305084828501612dfc565b91505092915050565b60006020828403121561306f5761306e6141bb565b5b600061307d84828501612e11565b91505092915050565b60006020828403121561309c5761309b6141bb565b5b60006130aa84828501612e54565b91505092915050565b60006130bf83836136bb565b60208301905092915050565b6130d481613ef2565b82525050565b6130e381613d77565b6130ed8184613da5565b92506130f882613d6d565b8060005b8381101561312957815161311087826130b3565b965061311b83613d98565b9250506001810190506130fc565b505050505050565b61313a81613f04565b82525050565b600061314b82613d82565b6131558185613db0565b9350613165818560208601613f82565b61316e816141c0565b840191505092915050565b600061318482613d8d565b61318e8185613dc1565b935061319e818560208601613f82565b6131a7816141c0565b840191505092915050565b60006131bd82613d8d565b6131c78185613dd2565b93506131d7818560208601613f82565b80840191505092915050565b60006131f0600983613dd2565b91506131fb826141d1565b600982019050919050565b6000613213602b83613dc1565b915061321e826141fa565b604082019050919050565b6000613236603283613dc1565b915061324182614249565b604082019050919050565b6000613259602683613dc1565b915061326482614298565b604082019050919050565b600061327c601c83613dc1565b9150613287826142e7565b602082019050919050565b600061329f600983613dd2565b91506132aa82614310565b600982019050919050565b60006132c2600183613dd2565b91506132cd82614339565b600182019050919050565b60006132e5600483613dd2565b91506132f082614362565b600482019050919050565b6000613308602483613dc1565b91506133138261438b565b604082019050919050565b600061332b601983613dc1565b9150613336826143da565b602082019050919050565b600061334e602c83613dc1565b915061335982614403565b604082019050919050565b6000613371600183613dd2565b915061337c82614452565b600182019050919050565b6000613394603883613dc1565b915061339f8261447b565b604082019050919050565b60006133b7602a83613dc1565b91506133c2826144ca565b604082019050919050565b60006133da602983613dc1565b91506133e582614519565b604082019050919050565b60006133fd600283613dd2565b915061340882614568565b600282019050919050565b6000613420602083613dc1565b915061342b82614591565b602082019050919050565b6000613443600183613dd2565b915061344e826145ba565b600182019050919050565b6000613466600383613dd2565b9150613471826145e3565b600382019050919050565b6000613489601683613dd2565b91506134948261460c565b601682019050919050565b60006134ac600983613dd2565b91506134b782614635565b600982019050919050565b60006134cf602c83613dc1565b91506134da8261465e565b604082019050919050565b60006134f2602083613dc1565b91506134fd826146ad565b602082019050919050565b6000613515602983613dc1565b9150613520826146d6565b604082019050919050565b6000613538600983613dd2565b915061354382614725565b600982019050919050565b600061355b602183613dc1565b91506135668261474e565b604082019050919050565b600061357e601d83613dd2565b91506135898261479d565b601d82019050919050565b60006135a1600983613dd2565b91506135ac826147c6565b600982019050919050565b60006135c4603183613dc1565b91506135cf826147ef565b604082019050919050565b60006135e7600c83613dc1565b91506135f28261483e565b602082019050919050565b600061360a605583613dd2565b915061361582614867565b605582019050919050565b600061362d602c83613dc1565b9150613638826148dc565b604082019050919050565b6000613650601f83613dc1565b915061365b8261492b565b602082019050919050565b6000613673600583613dd2565b915061367e82614954565b600582019050919050565b6000613696600483613dd2565b91506136a18261497d565b600482019050919050565b6136b581613f5c565b82525050565b6136c481613f66565b82525050565b60006136d682846131b2565b915081905092915050565b60006136ed82886131b2565b91506136f982876131b2565b915061370582866131b2565b915061371182856131b2565b915061371d82846131b2565b91508190509695505050505050565b6000613738828c6131b2565b9150613744828b6131b2565b9150613750828a6131b2565b915061375c82896131b2565b915061376882886131b2565b915061377482876131b2565b915061378082866131b2565b915061378c82856131b2565b915061379882846131b2565b91508190509a9950505050505050505050565b60006137b782856131b2565b91506137c282613459565b91506137ce82846131b2565b91508190509392505050565b60006137e682856131b2565b91506137f182613666565b91506137fd82846131b2565b91508190509392505050565b600061381582856131b2565b915061382082613689565b915061382c82846131b2565b91508190509392505050565b6000613843826131e3565b915061384f82846131b2565b915061385a82613436565b915081905092915050565b600061387082613292565b915061387c82846131b2565b915061388782613436565b915081905092915050565b600061389d826132d8565b91506138a982866131b2565b91506138b4826132b5565b91506138c082856131b2565b91506138cb826132b5565b91506138d782846131b2565b91506138e282613364565b9150819050949350505050565b60006138fa8261347c565b915061390682856131b2565b9150613911826135fd565b915061391d82846131b2565b9150613928826133f0565b91508190509392505050565b600061393f8261349f565b915061394b82846131b2565b915061395682613436565b915081905092915050565b600061396c8261352b565b915061397882846131b2565b915061398382613436565b915081905092915050565b600061399982613571565b91506139a582846131b2565b915081905092915050565b60006139bb82613594565b91506139c782846131b2565b91506139d282613436565b915081905092915050565b60006020820190506139f260008301846130cb565b92915050565b6000608082019050613a0d60008301876130cb565b613a1a60208301866130cb565b613a2760408301856136ac565b8181036060830152613a398184613140565b905095945050505050565b6000606082019050613a5960008301846130da565b92915050565b6000602082019050613a746000830184613131565b92915050565b60006020820190508181036000830152613a948184613179565b905092915050565b60006020820190508181036000830152613ab581613206565b9050919050565b60006020820190508181036000830152613ad581613229565b9050919050565b60006020820190508181036000830152613af58161324c565b9050919050565b60006020820190508181036000830152613b158161326f565b9050919050565b60006020820190508181036000830152613b35816132fb565b9050919050565b60006020820190508181036000830152613b558161331e565b9050919050565b60006020820190508181036000830152613b7581613341565b9050919050565b60006020820190508181036000830152613b9581613387565b9050919050565b60006020820190508181036000830152613bb5816133aa565b9050919050565b60006020820190508181036000830152613bd5816133cd565b9050919050565b60006020820190508181036000830152613bf581613413565b9050919050565b60006020820190508181036000830152613c15816134c2565b9050919050565b60006020820190508181036000830152613c35816134e5565b9050919050565b60006020820190508181036000830152613c5581613508565b9050919050565b60006020820190508181036000830152613c758161354e565b9050919050565b60006020820190508181036000830152613c95816135b7565b9050919050565b60006020820190508181036000830152613cb5816135da565b9050919050565b60006020820190508181036000830152613cd581613620565b9050919050565b60006020820190508181036000830152613cf581613643565b9050919050565b6000602082019050613d1160008301846136ac565b92915050565b6000613d21613d32565b9050613d2d8282613fe7565b919050565b6000604051905090565b600067ffffffffffffffff821115613d5757613d5661417d565b5b613d60826141c0565b9050602081019050919050565b6000819050919050565b600060039050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613de882613f5c565b9150613df383613f5c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e2857613e27614092565b5b828201905092915050565b6000613e3e82613f5c565b9150613e4983613f5c565b925082613e5957613e586140c1565b5b828204905092915050565b6000613e6f82613f5c565b9150613e7a83613f5c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613eb357613eb2614092565b5b828202905092915050565b6000613ec982613f5c565b9150613ed483613f5c565b925082821015613ee757613ee6614092565b5b828203905092915050565b6000613efd82613f3c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613fa0578082015181840152602081019050613f85565b83811115613faf576000848401525b50505050565b60006002820490506001821680613fcd57607f821691505b60208210811415613fe157613fe06140f0565b5b50919050565b613ff0826141c0565b810181811067ffffffffffffffff8211171561400f5761400e61417d565b5b80604052505050565b600061402382613f5c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561405657614055614092565b5b600182019050919050565b600061406c82613f5c565b915061407783613f5c565b925082614087576140866140c1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f2e65207b66696c6c3a0000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f2e62207b66696c6c3a0000000000000000000000000000000000000000000000600082015250565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b7f7267622800000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2900000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f7265640000000000000000000000000000000000000000000000000000000000600082015250565b7f7b226e616d65223a20224574685261696e626f77202300000000000000000000600082015250565b7f2e64207b66696c6c3a0000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f2e61207b66696c6c3a0000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f2e63207b66696c6c3a0000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4f7574206f662072616e67650000000000000000000000000000000000000000600082015250565b7f222c20226465736372697074696f6e223a20224574685261696e626f7720617260008201527f65206a75737420636f6c6f72732e222c2022696d616765223a2022646174613a60208201527f696d6167652f7376672b786d6c3b6261736536342c0000000000000000000000604082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f677265656e000000000000000000000000000000000000000000000000000000600082015250565b7f626c756500000000000000000000000000000000000000000000000000000000600082015250565b6149af81613ef2565b81146149ba57600080fd5b50565b6149c681613f04565b81146149d157600080fd5b50565b6149dd81613f10565b81146149e857600080fd5b50565b6149f481613f5c565b81146149ff57600080fd5b5056fe3c673e3c7265637420793d223134302220636c6173733d2263222077696474683d2233353022206865696768743d223730222f3e3c2f673e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e3c673e3c7265637420793d223238302220636c6173733d2265222077696474683d2233353022206865696768743d223730222f3e3c2f673e3c673e3c7265637420793d2237302220636c6173733d2262222077696474683d2233353022206865696768743d223730222f3e3c2f673e3c673e3c7265637420793d223231302220636c6173733d2264222077696474683d2233353022206865696768743d223730222f3e3c2f673e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c673e3c7265637420636c6173733d2261222077696474683d2233353022206865696768743d223730222f3e3c2f673ea2646970667358221220aa3c411d40ddb456196b0e7c037016d1eb36535f0d2314e21f1d05eb73bcb51c64736f6c63430008070033
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.