ERC-721
NFT
Overview
Max Total Supply
9,919 SSS
Holders
2,681
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SSSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
StarSailorSiblings
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; /* @title Star Sailor Siblings' ERC-721 contract @author Humza K. https://starsailorsiblings.com/ */ // For readability purpose only. It could be replaced with ERC721 contract StardustContract { function ownerOf(uint256 tokenId) public view virtual returns (address) {} } contract StarSailorSiblings is ERC721Enumerable, ERC721Burnable, Ownable, ReentrancyGuard { // Type alias using Address for address; // Stardust contract StardustContract stardust; // Minting constants uint256 public constant MAX_MINT_PER_TRANSACTION = 5; uint256 public constant MAX_BURN_PER_TRANSACTION = 3; uint256 public constant MAX_SUPPLY = 10101; // 0.075 ETH uint256 public constant MINT_PRICE = 75000000000000000; // 101 are reserved. 5 guaranteed mints for each 999 STARDUST minted. // 101 + (999 * 5) = 5,096 guaranteed mints during private sale // Any supply left will be carried over to the primary sale uint256 public constant MAX_PRIVATE_SALE_SUPPLY = 5096; uint256 public constant MAX_MINT_PER_STARDUST = 5; // Keeping track of avatars/animations indexes uint256 public constant indexAvatarsStart = 0; uint256 public constant indexAvatarsEnd = 10100; uint256 public constant indexAnimationsStart = 10101; uint256 public constant indexAnimationsEnd = indexAnimationsStart + MAX_SUPPLY; // No need to call the contract for factually immutable values uint256 public constant STARDUST_TOTAL_SUPPLY = 999; // Keep track of supply uint256 public avatarsBurnedCount = 0; uint256 public animationsMintedCount = 0; // Control primary sale and burn bool private _isSaleActive; bool private _isPrivateSaleActive; bool private _isBurnActive; bool private _reserveClaimed; // Reserve 100 tokens to the staff, minted in 4 iterations of 25 each uint256 private _staffReservePerIteration = 25; uint256 private _staffReserveIterationCount = 0; // baseURI string private _uri; // Keep track of mints by stardust holders mapping(uint256 => uint256) private _stardustAlreadyMintedCount; constructor() ERC721("Star Sailor Siblings", "SSS") { _reserveClaimed = false; _isSaleActive = false; _isBurnActive = false; } // @param uri The base uri for the metadata store // @dev Allows to set the baseURI dynamically function setBaseURI(string memory uri) external onlyOwner { _uri = uri; } function _baseURI() internal view override returns (string memory) { return _uri; } // @dev Sets the StardustContract to be used function setStardustContract(address _t) public onlyOwner { stardust = StardustContract(_t); } // @dev Returns the number of SSS tokens burned function getAvatarsBurnedCount() public view returns (uint256) { return avatarsBurnedCount; } // @dev Returns the number of animations minted so far function getAnimationsMintedCount() public view returns (uint256) { return animationsMintedCount; } // @dev Allows to enable/disable minting function flipSaleState() public onlyOwner { _isSaleActive = !_isSaleActive; } // @dev Allows to enable/disable private sale function flipPrivateSaleState() public onlyOwner { _isPrivateSaleActive = !_isPrivateSaleActive; } // @dev Allows to enable/disable burn functionality // @dev Nice to have functionality, in case the burn has to be stopped for any unforeseeable reason function flipBurnState() public onlyOwner { _isBurnActive = !_isBurnActive; } // @dev Returns the number of SSS tokens a given STARDUST token id can redeem function getMintedCountForStardustTokenId(uint stardustTokenId) public view returns (uint256) { require(stardustTokenId < STARDUST_TOTAL_SUPPLY, "You have provided an invalid STARDUST token id"); return _stardustAlreadyMintedCount[stardustTokenId]; } // @dev Reserves the tokens for staff. // @dev The reserve happens in 4 iterations of 25 each function reserveSss() public onlyOwner { require(_staffReserveIterationCount < 4, "Reserve has already been claimed"); uint supply = totalSupply(); uint i; for(i = 0; i < _staffReservePerIteration; i++) { _safeMint(msg.sender, supply + i); } _staffReserveIterationCount += 1; } // @dev Returns enabled/disabled status for burn mechanism function getBurnState() public view returns (bool) { return _isBurnActive; } // @dev Returns the enabled/disabled status for minting function getSaleState() public view returns (bool) { return _isSaleActive; } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } // @dev Allows minting X number of SSS tokens // @param tokensCount No. of SSS tokens to mint function mintPublicSale(uint tokensCount) public nonReentrant payable { uint256 supply = totalSupply(); require(_isSaleActive, "Sale is not active at the moment"); require(supply < MAX_SUPPLY, "All SSS tokens have been minted"); require(tokensCount > 0, "You can only mint more than 0 tokens"); require((supply + tokensCount) <= MAX_SUPPLY, "The purchase exceeds the total supply available"); require(tokensCount <= MAX_MINT_PER_TRANSACTION, "Too much requested"); require((MINT_PRICE * tokensCount) == msg.value, "The specified ETH value is incorrect"); for (uint256 i = 0; i < tokensCount; i++) { _safeMint(msg.sender, totalSupply()); } } // @dev Allows mint for private sale by stardust holders // @dev This may introduce a bit redundancy around mint logic, but I'm choosing the safe path around conditional minting. function mintPrivateSale(uint stardustTokenId, uint tokensCount) public nonReentrant payable { uint256 supply = totalSupply(); require(_isPrivateSaleActive, "Private Sale is not active at the moment"); require(supply < MAX_PRIVATE_SALE_SUPPLY, "All SSS tokens available for private sale have been minted"); require(tokensCount > 0, "You can only mint more than 0 tokens"); require(stardust.ownerOf(stardustTokenId) == msg.sender, "You do not own the stardust token id"); require(_stardustAlreadyMintedCount[stardustTokenId] + tokensCount <= MAX_MINT_PER_STARDUST, "The purchase exceeds the available number of SSS tokens you can redeem using this STARDUST"); _stardustAlreadyMintedCount[stardustTokenId] += tokensCount; for (uint256 i = 0; i < tokensCount; i++) { _safeMint(msg.sender, totalSupply()); } } // @dev Allows burn of exactly 3 SSS tokens in exchange for an animated token // @param tokenIds Array of token ids to burn // @param tokenToAnimatedId Id of the token that should be animated function burnSss(uint256[] memory tokenIds, uint256 tokenToAnimateId) public { require(_isBurnActive, "Burn is not active yet"); require(tokenToAnimateId != 0, "You cannot burn token id 0"); require(tokenIds.length == MAX_BURN_PER_TRANSACTION, "You need to burn 3 SSS in order to receive an animated one"); require(ownerOf(tokenToAnimateId) == msg.sender, "You do not own the requested animated token id"); for(uint256 i = 0; i < 3; i++) { if (ownerOf(tokenIds[i]) != msg.sender) revert("You do not own one of the token ids specified"); if (!_validTokenId(tokenIds[i])) revert("Invalid token id specified"); burn(tokenIds[i]); avatarsBurnedCount += 1; } _mintAnimated(tokenToAnimateId, msg.sender); } // @dev Mint the token id for animations // @param tokenToAnimatedId The id of the SSS token whose animation is to be minted function _mintAnimated(uint256 tokenToAnimateId, address receiver) private { uint256 animatedTokenId = (tokenToAnimateId + indexAnimationsStart) - 1; _safeMint(receiver, animatedTokenId); animationsMintedCount += 1; } // @dev Validates a given token id // @param tokenId The token id to be verified function _validTokenId(uint256 tokenId) internal view returns (bool) { return tokenId >= 0 && tokenId < MAX_SUPPLY; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// 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; /** * @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 "../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 "./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(to).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; /* * @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; 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; 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 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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; 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; /** * @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; /** * @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" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BURN_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_STARDUST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRIVATE_SALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STARDUST_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"animationsMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"avatarsBurnedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"tokenToAnimateId","type":"uint256"}],"name":"burnSss","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipBurnState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPrivateSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAnimationsMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAvatarsBurnedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurnState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"stardustTokenId","type":"uint256"}],"name":"getMintedCountForStardustTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"indexAnimationsEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"indexAnimationsStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"indexAvatarsEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"indexAvatarsStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"stardustTokenId","type":"uint256"},{"internalType":"uint256","name":"tokensCount","type":"uint256"}],"name":"mintPrivateSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokensCount","type":"uint256"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveSss","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_t","type":"address"}],"name":"setStardustContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600d556000600e55601960105560006011553480156200002557600080fd5b506040518060400160405280601481526020017f53746172205361696c6f72205369626c696e67730000000000000000000000008152506040518060400160405280600381526020017f53535300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000aa92919062000213565b508060019080519060200190620000c392919062000213565b505050620000e6620000da6200014560201b60201c565b6200014d60201b60201c565b6001600b819055506000600f60036101000a81548160ff0219169083151502179055506000600f60006101000a81548160ff0219169083151502179055506000600f60026101000a81548160ff02191690831515021790555062000328565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022190620002c3565b90600052602060002090601f01602090048101928262000245576000855562000291565b82601f106200026057805160ff191683800117855562000291565b8280016001018555821562000291579182015b828111156200029057825182559160200191906001019062000273565b5b509050620002a09190620002a4565b5090565b5b80821115620002bf576000816000905550600101620002a5565b5090565b60006002820490506001821680620002dc57607f821691505b60208210811415620002f357620002f2620002f9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61568380620003386000396000f3fe6080604052600436106102935760003560e01c80635a5e5d581161015a578063a71c8055116100c1578063c87b56dd1161007a578063c87b56dd1461098b578063d01d1038146109c8578063e0fb8d63146109f3578063e985e9c514610a0f578063f2fde38b14610a4c578063ffc038bc14610a7557610293565b8063a71c8055146108a1578063aaaa0907146108b8578063af8b362d146108e3578063b88d4fde1461090c578063c002d23d14610935578063c31783261461096057610293565b806375d4f9521161011357806375d4f9521461078f5780638da5cb5b146107ba57806395d89b41146107e5578063998e80e6146108105780639e198bb01461083b578063a22cb4651461087857610293565b80635a5e5d581461068c5780636352211e146106a857806366d4392f146106e557806370a0823114610710578063715018a61461074d57806371c13f3b1461076457610293565b80632baf4716116101fe5780633ccfd60b116101b75780633ccfd60b1461059457806342842e0e146105ab57806342966c68146105d45780634f6ccce7146105fd57806353f3eb8e1461063a57806355f804b31461066357610293565b80632baf4716146104bc5780632f745c59146104d357806332cb6b0c1461051057806334918dfd1461053b57806335b59885146105525780633719e3b01461057d57610293565b806318160ddd1161025057806318160ddd146103bc578063209a6ba4146103e757806323b872dd1461041257806324ef901e1461043b57806325bdb2a8146104665780632a8b63ef1461049157610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d5780630a02c532146103665780631482db9414610391575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613cc0565b610aa0565b6040516102cc9190614c95565b60405180910390f35b3480156102e157600080fd5b506102ea610ab2565b6040516102f79190614cb0565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613d53565b610b44565b6040516103349190614c2e565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613c30565b610bc9565b005b34801561037257600080fd5b5061037b610ce1565b6040516103889190615192565b60405180910390f35b34801561039d57600080fd5b506103a6610ce7565b6040516103b39190615192565b60405180910390f35b3480156103c857600080fd5b506103d1610ced565b6040516103de9190615192565b60405180910390f35b3480156103f357600080fd5b506103fc610cfa565b6040516104099190615192565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190613b2a565b610d04565b005b34801561044757600080fd5b50610450610d64565b60405161045d9190615192565b60405180910390f35b34801561047257600080fd5b5061047b610d69565b6040516104889190614c95565b60405180910390f35b34801561049d57600080fd5b506104a6610d80565b6040516104b39190615192565b60405180910390f35b3480156104c857600080fd5b506104d1610d85565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190613c30565b610ea5565b6040516105079190615192565b60405180910390f35b34801561051c57600080fd5b50610525610f4a565b6040516105329190615192565b60405180910390f35b34801561054757600080fd5b50610550610f50565b005b34801561055e57600080fd5b50610567610ff8565b6040516105749190615192565b60405180910390f35b34801561058957600080fd5b50610592611009565b005b3480156105a057600080fd5b506105a96110b1565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190613b2a565b61117c565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190613d53565b61119c565b005b34801561060957600080fd5b50610624600480360381019061061f9190613d53565b6111f8565b6040516106319190615192565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190613c6c565b61128f565b005b34801561066f57600080fd5b5061068a60048036038101906106859190613d12565b6115ab565b005b6106a660048036038101906106a19190613d53565b611641565b005b3480156106b457600080fd5b506106cf60048036038101906106ca9190613d53565b611896565b6040516106dc9190614c2e565b60405180910390f35b3480156106f157600080fd5b506106fa611948565b6040516107079190615192565b60405180910390f35b34801561071c57600080fd5b5061073760048036038101906107329190613a9c565b61194e565b6040516107449190615192565b60405180910390f35b34801561075957600080fd5b50610762611a06565b005b34801561077057600080fd5b50610779611a8e565b6040516107869190615192565b60405180910390f35b34801561079b57600080fd5b506107a4611a94565b6040516107b19190615192565b60405180910390f35b3480156107c657600080fd5b506107cf611a9a565b6040516107dc9190614c2e565b60405180910390f35b3480156107f157600080fd5b506107fa611ac4565b6040516108079190614cb0565b60405180910390f35b34801561081c57600080fd5b50610825611b56565b6040516108329190614c95565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d9190613d53565b611b6d565b60405161086f9190615192565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a9190613bf4565b611bce565b005b3480156108ad57600080fd5b506108b6611d4f565b005b3480156108c457600080fd5b506108cd611df7565b6040516108da9190615192565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613a9c565b611dfc565b005b34801561091857600080fd5b50610933600480360381019061092e9190613b79565b611ebc565b005b34801561094157600080fd5b5061094a611f1e565b6040516109579190615192565b60405180910390f35b34801561096c57600080fd5b50610975611f2a565b6040516109829190615192565b60405180910390f35b34801561099757600080fd5b506109b260048036038101906109ad9190613d53565b611f2f565b6040516109bf9190614cb0565b60405180910390f35b3480156109d457600080fd5b506109dd611fd6565b6040516109ea9190615192565b60405180910390f35b610a0d6004803603810190610a089190613d7c565b611fdc565b005b348015610a1b57600080fd5b50610a366004803603810190610a319190613aee565b6122ed565b604051610a439190614c95565b60405180910390f35b348015610a5857600080fd5b50610a736004803603810190610a6e9190613a9c565b612381565b005b348015610a8157600080fd5b50610a8a612479565b604051610a979190615192565b60405180910390f35b6000610aab82612483565b9050919050565b606060008054610ac190615478565b80601f0160208091040260200160405190810160405280929190818152602001828054610aed90615478565b8015610b3a5780601f10610b0f57610100808354040283529160200191610b3a565b820191906000526020600020905b815481529060010190602001808311610b1d57829003601f168201915b5050505050905090565b6000610b4f826124fd565b610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590614f72565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd482611896565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c90615092565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c64612569565b73ffffffffffffffffffffffffffffffffffffffff161480610c935750610c9281610c8d612569565b6122ed565b5b610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990614ed2565b60405180910390fd5b610cdc8383612571565b505050565b600e5481565b61277481565b6000600880549050905090565b6000600d54905090565b610d15610d0f612569565b8261262a565b610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b906150d2565b60405180910390fd5b610d5f838383612708565b505050565b600581565b6000600f60009054906101000a900460ff16905090565b600081565b610d8d612569565b73ffffffffffffffffffffffffffffffffffffffff16610dab611a9a565b73ffffffffffffffffffffffffffffffffffffffff1614610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df890614fb2565b60405180910390fd5b600460115410610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90614cd2565b60405180910390fd5b6000610e50610ced565b905060005b601054811015610e8757610e74338284610e6f91906152ad565b612964565b8080610e7f906154aa565b915050610e55565b600160116000828254610e9a91906152ad565b925050819055505050565b6000610eb08361194e565b8210610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890614d12565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61277581565b610f58612569565b73ffffffffffffffffffffffffffffffffffffffff16610f76611a9a565b73ffffffffffffffffffffffffffffffffffffffff1614610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390614fb2565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6127758061100691906152ad565b81565b611011612569565b73ffffffffffffffffffffffffffffffffffffffff1661102f611a9a565b73ffffffffffffffffffffffffffffffffffffffff1614611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90614fb2565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b6110b9612569565b73ffffffffffffffffffffffffffffffffffffffff166110d7611a9a565b73ffffffffffffffffffffffffffffffffffffffff161461112d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112490614fb2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611178573d6000803e3d6000fd5b5050565b61119783838360405180602001604052806000815250611ebc565b505050565b6111ad6111a7612569565b8261262a565b6111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390615132565b60405180910390fd5b6111f581612982565b50565b6000611202610ced565b8210611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a906150f2565b60405180910390fd5b6008828154811061127d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600f60029054906101000a900460ff166112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590614fd2565b60405180910390fd5b6000811415611322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611319906150b2565b60405180910390fd5b6003825114611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d90614f32565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661138682611896565b73ffffffffffffffffffffffffffffffffffffffff16146113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d390614eb2565b60405180910390fd5b60005b600381101561159c573373ffffffffffffffffffffffffffffffffffffffff1661144884838151811061143b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611896565b73ffffffffffffffffffffffffffffffffffffffff161461149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590615152565b60405180910390fd5b6114e78382815181106114da577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612a93565b611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90615072565b60405180910390fd5b61156f838281518110611562577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161119c565b6001600d600082825461158291906152ad565b925050819055508080611594906154aa565b9150506113df565b506115a78133612aad565b5050565b6115b3612569565b73ffffffffffffffffffffffffffffffffffffffff166115d1611a9a565b73ffffffffffffffffffffffffffffffffffffffff1614611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90614fb2565b60405180910390fd5b806012908051906020019061163d929190613815565b5050565b6002600b541415611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e90615112565b60405180910390fd5b6002600b819055506000611699610ced565b9050600f60009054906101000a900460ff166116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190615172565b60405180910390fd5b612775811061172e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172590614e12565b60405180910390fd5b60008211611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890614d92565b60405180910390fd5b612775828261178091906152ad565b11156117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890614dd2565b60405180910390fd5b6005821115611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90615032565b60405180910390fd5b348267010a741a4627800061181a9190615334565b1461185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190615052565b60405180910390fd5b60005b828110156118895761187633611871610ced565b612964565b8080611881906154aa565b91505061185d565b50506001600b8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193690614f12565b60405180910390fd5b80915050919050565b61277581565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b690614ef2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a0e612569565b73ffffffffffffffffffffffffffffffffffffffff16611a2c611a9a565b73ffffffffffffffffffffffffffffffffffffffff1614611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990614fb2565b60405180910390fd5b611a8c6000612af4565b565b600d5481565b6113e881565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ad390615478565b80601f0160208091040260200160405190810160405280929190818152602001828054611aff90615478565b8015611b4c5780601f10611b2157610100808354040283529160200191611b4c565b820191906000526020600020905b815481529060010190602001808311611b2f57829003601f168201915b5050505050905090565b6000600f60029054906101000a900460ff16905090565b60006103e78210611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90614df2565b60405180910390fd5b60136000838152602001908152602001600020549050919050565b611bd6612569565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90614e52565b60405180910390fd5b8060056000611c51612569565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cfe612569565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d439190614c95565b60405180910390a35050565b611d57612569565b73ffffffffffffffffffffffffffffffffffffffff16611d75611a9a565b73ffffffffffffffffffffffffffffffffffffffff1614611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290614fb2565b60405180910390fd5b600f60029054906101000a900460ff1615600f60026101000a81548160ff021916908315150217905550565b600381565b611e04612569565b73ffffffffffffffffffffffffffffffffffffffff16611e22611a9a565b73ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90614fb2565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ecd611ec7612569565b8361262a565b611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906150d2565b60405180910390fd5b611f1884848484612bba565b50505050565b67010a741a4627800081565b600581565b6060611f3a826124fd565b611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090615012565b60405180910390fd5b6000611f83612c16565b90506000815111611fa35760405180602001604052806000815250611fce565b80611fad84612ca8565b604051602001611fbe929190614c0a565b6040516020818303038152906040525b915050919050565b6103e781565b6002600b541415612022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201990615112565b60405180910390fd5b6002600b819055506000612034610ced565b9050600f60019054906101000a900460ff16612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c90614e72565b60405180910390fd5b6113e881106120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090614cf2565b60405180910390fd5b6000821161210c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210390614d92565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b815260040161217e9190615192565b60206040518083038186803b15801561219657600080fd5b505afa1580156121aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ce9190613ac5565b73ffffffffffffffffffffffffffffffffffffffff1614612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b90614db2565b60405180910390fd5b600582601360008681526020019081526020016000205461224591906152ad565b1115612286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227d90614f92565b60405180910390fd5b816013600085815260200190815260200160002060008282546122a991906152ad565b9250508190555060005b828110156122df576122cc336122c7610ced565b612964565b80806122d7906154aa565b9150506122b3565b50506001600b819055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612389612569565b73ffffffffffffffffffffffffffffffffffffffff166123a7611a9a565b73ffffffffffffffffffffffffffffffffffffffff16146123fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f490614fb2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561246d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246490614d52565b60405180910390fd5b61247681612af4565b50565b6000600e54905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124f657506124f582612e55565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125e483611896565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612635826124fd565b612674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266b90614e92565b60405180910390fd5b600061267f83611896565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126ee57508373ffffffffffffffffffffffffffffffffffffffff166126d684610b44565b73ffffffffffffffffffffffffffffffffffffffff16145b806126ff57506126fe81856122ed565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661272882611896565b73ffffffffffffffffffffffffffffffffffffffff161461277e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277590614ff2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e590614e32565b60405180910390fd5b6127f9838383612f37565b612804600082612571565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612854919061538e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128ab91906152ad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61297e828260405180602001604052806000815250612f47565b5050565b600061298d82611896565b905061299b81600084612f37565b6129a6600083612571565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129f6919061538e565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000808210158015612aa6575061277582105b9050919050565b6000600161277584612abf91906152ad565b612ac9919061538e565b9050612ad58282612964565b6001600e6000828254612ae891906152ad565b92505081905550505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bc5848484612708565b612bd184848484612fa2565b612c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0790614d32565b60405180910390fd5b50505050565b606060128054612c2590615478565b80601f0160208091040260200160405190810160405280929190818152602001828054612c5190615478565b8015612c9e5780601f10612c7357610100808354040283529160200191612c9e565b820191906000526020600020905b815481529060010190602001808311612c8157829003601f168201915b5050505050905090565b60606000821415612cf0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e50565b600082905060005b60008214612d22578080612d0b906154aa565b915050600a82612d1b9190615303565b9150612cf8565b60008167ffffffffffffffff811115612d64577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d965781602001600182028036833780820191505090505b5090505b60008514612e4957600182612daf919061538e565b9150600a85612dbe91906154f3565b6030612dca91906152ad565b60f81b818381518110612e06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e429190615303565b9450612d9a565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f2057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f305750612f2f82613139565b5b9050919050565b612f428383836131a3565b505050565b612f5183836132b7565b612f5e6000848484612fa2565b612f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9490614d32565b60405180910390fd5b505050565b6000612fc38473ffffffffffffffffffffffffffffffffffffffff16613485565b1561312c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fec612569565b8786866040518563ffffffff1660e01b815260040161300e9493929190614c49565b602060405180830381600087803b15801561302857600080fd5b505af192505050801561305957506040513d601f19601f820116820180604052508101906130569190613ce9565b60015b6130dc573d8060008114613089576040519150601f19603f3d011682016040523d82523d6000602084013e61308e565b606091505b506000815114156130d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cb90614d32565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613131565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131ae838383613498565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131f1576131ec8161349d565b613230565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461322f5761322e83826134e6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132735761326e81613653565b6132b2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132b1576132b08282613796565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331e90614f52565b60405180910390fd5b613330816124fd565b15613370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336790614d72565b60405180910390fd5b61337c60008383612f37565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133cc91906152ad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134f38461194e565b6134fd919061538e565b90506000600760008481526020019081526020016000205490508181146135e2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613667919061538e565b90506000600960008481526020019081526020016000205490506000600883815481106136bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613705577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061377a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006137a18361194e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461382190615478565b90600052602060002090601f016020900481019282613843576000855561388a565b82601f1061385c57805160ff191683800117855561388a565b8280016001018555821561388a579182015b8281111561388957825182559160200191906001019061386e565b5b509050613897919061389b565b5090565b5b808211156138b457600081600090555060010161389c565b5090565b60006138cb6138c6846151de565b6151ad565b905080838252602082019050828560208602820111156138ea57600080fd5b60005b8581101561391a57816139008882613a87565b8452602084019350602083019250506001810190506138ed565b5050509392505050565b60006139376139328461520a565b6151ad565b90508281526020810184848401111561394f57600080fd5b61395a848285615436565b509392505050565b60006139756139708461523a565b6151ad565b90508281526020810184848401111561398d57600080fd5b613998848285615436565b509392505050565b6000813590506139af816155f1565b92915050565b6000815190506139c4816155f1565b92915050565b600082601f8301126139db57600080fd5b81356139eb8482602086016138b8565b91505092915050565b600081359050613a0381615608565b92915050565b600081359050613a188161561f565b92915050565b600081519050613a2d8161561f565b92915050565b600082601f830112613a4457600080fd5b8135613a54848260208601613924565b91505092915050565b600082601f830112613a6e57600080fd5b8135613a7e848260208601613962565b91505092915050565b600081359050613a9681615636565b92915050565b600060208284031215613aae57600080fd5b6000613abc848285016139a0565b91505092915050565b600060208284031215613ad757600080fd5b6000613ae5848285016139b5565b91505092915050565b60008060408385031215613b0157600080fd5b6000613b0f858286016139a0565b9250506020613b20858286016139a0565b9150509250929050565b600080600060608486031215613b3f57600080fd5b6000613b4d868287016139a0565b9350506020613b5e868287016139a0565b9250506040613b6f86828701613a87565b9150509250925092565b60008060008060808587031215613b8f57600080fd5b6000613b9d878288016139a0565b9450506020613bae878288016139a0565b9350506040613bbf87828801613a87565b925050606085013567ffffffffffffffff811115613bdc57600080fd5b613be887828801613a33565b91505092959194509250565b60008060408385031215613c0757600080fd5b6000613c15858286016139a0565b9250506020613c26858286016139f4565b9150509250929050565b60008060408385031215613c4357600080fd5b6000613c51858286016139a0565b9250506020613c6285828601613a87565b9150509250929050565b60008060408385031215613c7f57600080fd5b600083013567ffffffffffffffff811115613c9957600080fd5b613ca5858286016139ca565b9250506020613cb685828601613a87565b9150509250929050565b600060208284031215613cd257600080fd5b6000613ce084828501613a09565b91505092915050565b600060208284031215613cfb57600080fd5b6000613d0984828501613a1e565b91505092915050565b600060208284031215613d2457600080fd5b600082013567ffffffffffffffff811115613d3e57600080fd5b613d4a84828501613a5d565b91505092915050565b600060208284031215613d6557600080fd5b6000613d7384828501613a87565b91505092915050565b60008060408385031215613d8f57600080fd5b6000613d9d85828601613a87565b9250506020613dae85828601613a87565b9150509250929050565b613dc1816153c2565b82525050565b613dd0816153d4565b82525050565b6000613de18261526a565b613deb8185615280565b9350613dfb818560208601615445565b613e04816155e0565b840191505092915050565b6000613e1a82615275565b613e248185615291565b9350613e34818560208601615445565b613e3d816155e0565b840191505092915050565b6000613e5382615275565b613e5d81856152a2565b9350613e6d818560208601615445565b80840191505092915050565b6000613e86602083615291565b91507f526573657276652068617320616c7265616479206265656e20636c61696d65646000830152602082019050919050565b6000613ec6603a83615291565b91507f416c6c2053535320746f6b656e7320617661696c61626c6520666f722070726960008301527f766174652073616c652068617665206265656e206d696e7465640000000000006020830152604082019050919050565b6000613f2c602b83615291565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613f92603283615291565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613ff8602683615291565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061405e601c83615291565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061409e602483615291565b91507f596f752063616e206f6e6c79206d696e74206d6f7265207468616e203020746f60008301527f6b656e73000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614104602483615291565b91507f596f7520646f206e6f74206f776e2074686520737461726475737420746f6b6560008301527f6e206964000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061416a602f83615291565b91507f54686520707572636861736520657863656564732074686520746f74616c207360008301527f7570706c7920617661696c61626c6500000000000000000000000000000000006020830152604082019050919050565b60006141d0602e83615291565b91507f596f7520686176652070726f766964656420616e20696e76616c69642053544160008301527f524455535420746f6b656e2069640000000000000000000000000000000000006020830152604082019050919050565b6000614236601f83615291565b91507f416c6c2053535320746f6b656e732068617665206265656e206d696e746564006000830152602082019050919050565b6000614276602483615291565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142dc601983615291565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061431c602883615291565b91507f507269766174652053616c65206973206e6f742061637469766520617420746860008301527f65206d6f6d656e740000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614382602c83615291565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143e8602e83615291565b91507f596f7520646f206e6f74206f776e207468652072657175657374656420616e6960008301527f6d6174656420746f6b656e2069640000000000000000000000000000000000006020830152604082019050919050565b600061444e603883615291565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006144b4602a83615291565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061451a602983615291565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614580603a83615291565b91507f596f75206e65656420746f206275726e20332053535320696e206f726465722060008301527f746f207265636569766520616e20616e696d61746564206f6e650000000000006020830152604082019050919050565b60006145e6602083615291565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614626602c83615291565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061468c605a83615291565b91507f54686520707572636861736520657863656564732074686520617661696c616260008301527f6c65206e756d626572206f662053535320746f6b656e7320796f752063616e2060208301527f72656465656d207573696e6720746869732053544152445553540000000000006040830152606082019050919050565b6000614718602083615291565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614758601683615291565b91507f4275726e206973206e6f742061637469766520796574000000000000000000006000830152602082019050919050565b6000614798602983615291565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006147fe602f83615291565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614864601283615291565b91507f546f6f206d7563682072657175657374656400000000000000000000000000006000830152602082019050919050565b60006148a4602483615291565b91507f54686520737065636966696564204554482076616c756520697320696e636f7260008301527f72656374000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061490a601a83615291565b91507f496e76616c696420746f6b656e206964207370656369666965640000000000006000830152602082019050919050565b600061494a602183615291565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149b0601a83615291565b91507f596f752063616e6e6f74206275726e20746f6b656e20696420300000000000006000830152602082019050919050565b60006149f0603183615291565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614a56602c83615291565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614abc601f83615291565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000614afc603083615291565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b6000614b62602d83615291565b91507f596f7520646f206e6f74206f776e206f6e65206f662074686520746f6b656e2060008301527f69647320737065636966696564000000000000000000000000000000000000006020830152604082019050919050565b6000614bc8602083615291565b91507f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746000830152602082019050919050565b614c048161542c565b82525050565b6000614c168285613e48565b9150614c228284613e48565b91508190509392505050565b6000602082019050614c436000830184613db8565b92915050565b6000608082019050614c5e6000830187613db8565b614c6b6020830186613db8565b614c786040830185614bfb565b8181036060830152614c8a8184613dd6565b905095945050505050565b6000602082019050614caa6000830184613dc7565b92915050565b60006020820190508181036000830152614cca8184613e0f565b905092915050565b60006020820190508181036000830152614ceb81613e79565b9050919050565b60006020820190508181036000830152614d0b81613eb9565b9050919050565b60006020820190508181036000830152614d2b81613f1f565b9050919050565b60006020820190508181036000830152614d4b81613f85565b9050919050565b60006020820190508181036000830152614d6b81613feb565b9050919050565b60006020820190508181036000830152614d8b81614051565b9050919050565b60006020820190508181036000830152614dab81614091565b9050919050565b60006020820190508181036000830152614dcb816140f7565b9050919050565b60006020820190508181036000830152614deb8161415d565b9050919050565b60006020820190508181036000830152614e0b816141c3565b9050919050565b60006020820190508181036000830152614e2b81614229565b9050919050565b60006020820190508181036000830152614e4b81614269565b9050919050565b60006020820190508181036000830152614e6b816142cf565b9050919050565b60006020820190508181036000830152614e8b8161430f565b9050919050565b60006020820190508181036000830152614eab81614375565b9050919050565b60006020820190508181036000830152614ecb816143db565b9050919050565b60006020820190508181036000830152614eeb81614441565b9050919050565b60006020820190508181036000830152614f0b816144a7565b9050919050565b60006020820190508181036000830152614f2b8161450d565b9050919050565b60006020820190508181036000830152614f4b81614573565b9050919050565b60006020820190508181036000830152614f6b816145d9565b9050919050565b60006020820190508181036000830152614f8b81614619565b9050919050565b60006020820190508181036000830152614fab8161467f565b9050919050565b60006020820190508181036000830152614fcb8161470b565b9050919050565b60006020820190508181036000830152614feb8161474b565b9050919050565b6000602082019050818103600083015261500b8161478b565b9050919050565b6000602082019050818103600083015261502b816147f1565b9050919050565b6000602082019050818103600083015261504b81614857565b9050919050565b6000602082019050818103600083015261506b81614897565b9050919050565b6000602082019050818103600083015261508b816148fd565b9050919050565b600060208201905081810360008301526150ab8161493d565b9050919050565b600060208201905081810360008301526150cb816149a3565b9050919050565b600060208201905081810360008301526150eb816149e3565b9050919050565b6000602082019050818103600083015261510b81614a49565b9050919050565b6000602082019050818103600083015261512b81614aaf565b9050919050565b6000602082019050818103600083015261514b81614aef565b9050919050565b6000602082019050818103600083015261516b81614b55565b9050919050565b6000602082019050818103600083015261518b81614bbb565b9050919050565b60006020820190506151a76000830184614bfb565b92915050565b6000604051905081810181811067ffffffffffffffff821117156151d4576151d36155b1565b5b8060405250919050565b600067ffffffffffffffff8211156151f9576151f86155b1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615225576152246155b1565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615255576152546155b1565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006152b88261542c565b91506152c38361542c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152f8576152f7615524565b5b828201905092915050565b600061530e8261542c565b91506153198361542c565b92508261532957615328615553565b5b828204905092915050565b600061533f8261542c565b915061534a8361542c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561538357615382615524565b5b828202905092915050565b60006153998261542c565b91506153a48361542c565b9250828210156153b7576153b6615524565b5b828203905092915050565b60006153cd8261540c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615463578082015181840152602081019050615448565b83811115615472576000848401525b50505050565b6000600282049050600182168061549057607f821691505b602082108114156154a4576154a3615582565b5b50919050565b60006154b58261542c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154e8576154e7615524565b5b600182019050919050565b60006154fe8261542c565b91506155098361542c565b92508261551957615518615553565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6155fa816153c2565b811461560557600080fd5b50565b615611816153d4565b811461561c57600080fd5b50565b615628816153e0565b811461563357600080fd5b50565b61563f8161542c565b811461564a57600080fd5b5056fea2646970667358221220589587e2959272b16ed0ad4374fdfd30a2e5e67d13e02075b4577a52446bfbf764736f6c63430008000033
Deployed Bytecode
0x6080604052600436106102935760003560e01c80635a5e5d581161015a578063a71c8055116100c1578063c87b56dd1161007a578063c87b56dd1461098b578063d01d1038146109c8578063e0fb8d63146109f3578063e985e9c514610a0f578063f2fde38b14610a4c578063ffc038bc14610a7557610293565b8063a71c8055146108a1578063aaaa0907146108b8578063af8b362d146108e3578063b88d4fde1461090c578063c002d23d14610935578063c31783261461096057610293565b806375d4f9521161011357806375d4f9521461078f5780638da5cb5b146107ba57806395d89b41146107e5578063998e80e6146108105780639e198bb01461083b578063a22cb4651461087857610293565b80635a5e5d581461068c5780636352211e146106a857806366d4392f146106e557806370a0823114610710578063715018a61461074d57806371c13f3b1461076457610293565b80632baf4716116101fe5780633ccfd60b116101b75780633ccfd60b1461059457806342842e0e146105ab57806342966c68146105d45780634f6ccce7146105fd57806353f3eb8e1461063a57806355f804b31461066357610293565b80632baf4716146104bc5780632f745c59146104d357806332cb6b0c1461051057806334918dfd1461053b57806335b59885146105525780633719e3b01461057d57610293565b806318160ddd1161025057806318160ddd146103bc578063209a6ba4146103e757806323b872dd1461041257806324ef901e1461043b57806325bdb2a8146104665780632a8b63ef1461049157610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d5780630a02c532146103665780631482db9414610391575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613cc0565b610aa0565b6040516102cc9190614c95565b60405180910390f35b3480156102e157600080fd5b506102ea610ab2565b6040516102f79190614cb0565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613d53565b610b44565b6040516103349190614c2e565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613c30565b610bc9565b005b34801561037257600080fd5b5061037b610ce1565b6040516103889190615192565b60405180910390f35b34801561039d57600080fd5b506103a6610ce7565b6040516103b39190615192565b60405180910390f35b3480156103c857600080fd5b506103d1610ced565b6040516103de9190615192565b60405180910390f35b3480156103f357600080fd5b506103fc610cfa565b6040516104099190615192565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190613b2a565b610d04565b005b34801561044757600080fd5b50610450610d64565b60405161045d9190615192565b60405180910390f35b34801561047257600080fd5b5061047b610d69565b6040516104889190614c95565b60405180910390f35b34801561049d57600080fd5b506104a6610d80565b6040516104b39190615192565b60405180910390f35b3480156104c857600080fd5b506104d1610d85565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190613c30565b610ea5565b6040516105079190615192565b60405180910390f35b34801561051c57600080fd5b50610525610f4a565b6040516105329190615192565b60405180910390f35b34801561054757600080fd5b50610550610f50565b005b34801561055e57600080fd5b50610567610ff8565b6040516105749190615192565b60405180910390f35b34801561058957600080fd5b50610592611009565b005b3480156105a057600080fd5b506105a96110b1565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190613b2a565b61117c565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190613d53565b61119c565b005b34801561060957600080fd5b50610624600480360381019061061f9190613d53565b6111f8565b6040516106319190615192565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190613c6c565b61128f565b005b34801561066f57600080fd5b5061068a60048036038101906106859190613d12565b6115ab565b005b6106a660048036038101906106a19190613d53565b611641565b005b3480156106b457600080fd5b506106cf60048036038101906106ca9190613d53565b611896565b6040516106dc9190614c2e565b60405180910390f35b3480156106f157600080fd5b506106fa611948565b6040516107079190615192565b60405180910390f35b34801561071c57600080fd5b5061073760048036038101906107329190613a9c565b61194e565b6040516107449190615192565b60405180910390f35b34801561075957600080fd5b50610762611a06565b005b34801561077057600080fd5b50610779611a8e565b6040516107869190615192565b60405180910390f35b34801561079b57600080fd5b506107a4611a94565b6040516107b19190615192565b60405180910390f35b3480156107c657600080fd5b506107cf611a9a565b6040516107dc9190614c2e565b60405180910390f35b3480156107f157600080fd5b506107fa611ac4565b6040516108079190614cb0565b60405180910390f35b34801561081c57600080fd5b50610825611b56565b6040516108329190614c95565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d9190613d53565b611b6d565b60405161086f9190615192565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a9190613bf4565b611bce565b005b3480156108ad57600080fd5b506108b6611d4f565b005b3480156108c457600080fd5b506108cd611df7565b6040516108da9190615192565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613a9c565b611dfc565b005b34801561091857600080fd5b50610933600480360381019061092e9190613b79565b611ebc565b005b34801561094157600080fd5b5061094a611f1e565b6040516109579190615192565b60405180910390f35b34801561096c57600080fd5b50610975611f2a565b6040516109829190615192565b60405180910390f35b34801561099757600080fd5b506109b260048036038101906109ad9190613d53565b611f2f565b6040516109bf9190614cb0565b60405180910390f35b3480156109d457600080fd5b506109dd611fd6565b6040516109ea9190615192565b60405180910390f35b610a0d6004803603810190610a089190613d7c565b611fdc565b005b348015610a1b57600080fd5b50610a366004803603810190610a319190613aee565b6122ed565b604051610a439190614c95565b60405180910390f35b348015610a5857600080fd5b50610a736004803603810190610a6e9190613a9c565b612381565b005b348015610a8157600080fd5b50610a8a612479565b604051610a979190615192565b60405180910390f35b6000610aab82612483565b9050919050565b606060008054610ac190615478565b80601f0160208091040260200160405190810160405280929190818152602001828054610aed90615478565b8015610b3a5780601f10610b0f57610100808354040283529160200191610b3a565b820191906000526020600020905b815481529060010190602001808311610b1d57829003601f168201915b5050505050905090565b6000610b4f826124fd565b610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590614f72565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd482611896565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c90615092565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c64612569565b73ffffffffffffffffffffffffffffffffffffffff161480610c935750610c9281610c8d612569565b6122ed565b5b610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990614ed2565b60405180910390fd5b610cdc8383612571565b505050565b600e5481565b61277481565b6000600880549050905090565b6000600d54905090565b610d15610d0f612569565b8261262a565b610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b906150d2565b60405180910390fd5b610d5f838383612708565b505050565b600581565b6000600f60009054906101000a900460ff16905090565b600081565b610d8d612569565b73ffffffffffffffffffffffffffffffffffffffff16610dab611a9a565b73ffffffffffffffffffffffffffffffffffffffff1614610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df890614fb2565b60405180910390fd5b600460115410610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90614cd2565b60405180910390fd5b6000610e50610ced565b905060005b601054811015610e8757610e74338284610e6f91906152ad565b612964565b8080610e7f906154aa565b915050610e55565b600160116000828254610e9a91906152ad565b925050819055505050565b6000610eb08361194e565b8210610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890614d12565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61277581565b610f58612569565b73ffffffffffffffffffffffffffffffffffffffff16610f76611a9a565b73ffffffffffffffffffffffffffffffffffffffff1614610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390614fb2565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6127758061100691906152ad565b81565b611011612569565b73ffffffffffffffffffffffffffffffffffffffff1661102f611a9a565b73ffffffffffffffffffffffffffffffffffffffff1614611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90614fb2565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b6110b9612569565b73ffffffffffffffffffffffffffffffffffffffff166110d7611a9a565b73ffffffffffffffffffffffffffffffffffffffff161461112d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112490614fb2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611178573d6000803e3d6000fd5b5050565b61119783838360405180602001604052806000815250611ebc565b505050565b6111ad6111a7612569565b8261262a565b6111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390615132565b60405180910390fd5b6111f581612982565b50565b6000611202610ced565b8210611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a906150f2565b60405180910390fd5b6008828154811061127d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600f60029054906101000a900460ff166112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590614fd2565b60405180910390fd5b6000811415611322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611319906150b2565b60405180910390fd5b6003825114611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d90614f32565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661138682611896565b73ffffffffffffffffffffffffffffffffffffffff16146113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d390614eb2565b60405180910390fd5b60005b600381101561159c573373ffffffffffffffffffffffffffffffffffffffff1661144884838151811061143b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611896565b73ffffffffffffffffffffffffffffffffffffffff161461149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590615152565b60405180910390fd5b6114e78382815181106114da577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612a93565b611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90615072565b60405180910390fd5b61156f838281518110611562577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161119c565b6001600d600082825461158291906152ad565b925050819055508080611594906154aa565b9150506113df565b506115a78133612aad565b5050565b6115b3612569565b73ffffffffffffffffffffffffffffffffffffffff166115d1611a9a565b73ffffffffffffffffffffffffffffffffffffffff1614611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90614fb2565b60405180910390fd5b806012908051906020019061163d929190613815565b5050565b6002600b541415611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e90615112565b60405180910390fd5b6002600b819055506000611699610ced565b9050600f60009054906101000a900460ff166116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190615172565b60405180910390fd5b612775811061172e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172590614e12565b60405180910390fd5b60008211611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890614d92565b60405180910390fd5b612775828261178091906152ad565b11156117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890614dd2565b60405180910390fd5b6005821115611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc90615032565b60405180910390fd5b348267010a741a4627800061181a9190615334565b1461185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190615052565b60405180910390fd5b60005b828110156118895761187633611871610ced565b612964565b8080611881906154aa565b91505061185d565b50506001600b8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193690614f12565b60405180910390fd5b80915050919050565b61277581565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b690614ef2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a0e612569565b73ffffffffffffffffffffffffffffffffffffffff16611a2c611a9a565b73ffffffffffffffffffffffffffffffffffffffff1614611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990614fb2565b60405180910390fd5b611a8c6000612af4565b565b600d5481565b6113e881565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ad390615478565b80601f0160208091040260200160405190810160405280929190818152602001828054611aff90615478565b8015611b4c5780601f10611b2157610100808354040283529160200191611b4c565b820191906000526020600020905b815481529060010190602001808311611b2f57829003601f168201915b5050505050905090565b6000600f60029054906101000a900460ff16905090565b60006103e78210611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90614df2565b60405180910390fd5b60136000838152602001908152602001600020549050919050565b611bd6612569565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90614e52565b60405180910390fd5b8060056000611c51612569565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cfe612569565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d439190614c95565b60405180910390a35050565b611d57612569565b73ffffffffffffffffffffffffffffffffffffffff16611d75611a9a565b73ffffffffffffffffffffffffffffffffffffffff1614611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290614fb2565b60405180910390fd5b600f60029054906101000a900460ff1615600f60026101000a81548160ff021916908315150217905550565b600381565b611e04612569565b73ffffffffffffffffffffffffffffffffffffffff16611e22611a9a565b73ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90614fb2565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ecd611ec7612569565b8361262a565b611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906150d2565b60405180910390fd5b611f1884848484612bba565b50505050565b67010a741a4627800081565b600581565b6060611f3a826124fd565b611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090615012565b60405180910390fd5b6000611f83612c16565b90506000815111611fa35760405180602001604052806000815250611fce565b80611fad84612ca8565b604051602001611fbe929190614c0a565b6040516020818303038152906040525b915050919050565b6103e781565b6002600b541415612022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201990615112565b60405180910390fd5b6002600b819055506000612034610ced565b9050600f60019054906101000a900460ff16612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c90614e72565b60405180910390fd5b6113e881106120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090614cf2565b60405180910390fd5b6000821161210c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210390614d92565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b815260040161217e9190615192565b60206040518083038186803b15801561219657600080fd5b505afa1580156121aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ce9190613ac5565b73ffffffffffffffffffffffffffffffffffffffff1614612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b90614db2565b60405180910390fd5b600582601360008681526020019081526020016000205461224591906152ad565b1115612286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227d90614f92565b60405180910390fd5b816013600085815260200190815260200160002060008282546122a991906152ad565b9250508190555060005b828110156122df576122cc336122c7610ced565b612964565b80806122d7906154aa565b9150506122b3565b50506001600b819055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612389612569565b73ffffffffffffffffffffffffffffffffffffffff166123a7611a9a565b73ffffffffffffffffffffffffffffffffffffffff16146123fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f490614fb2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561246d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246490614d52565b60405180910390fd5b61247681612af4565b50565b6000600e54905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124f657506124f582612e55565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125e483611896565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612635826124fd565b612674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266b90614e92565b60405180910390fd5b600061267f83611896565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126ee57508373ffffffffffffffffffffffffffffffffffffffff166126d684610b44565b73ffffffffffffffffffffffffffffffffffffffff16145b806126ff57506126fe81856122ed565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661272882611896565b73ffffffffffffffffffffffffffffffffffffffff161461277e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277590614ff2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e590614e32565b60405180910390fd5b6127f9838383612f37565b612804600082612571565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612854919061538e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128ab91906152ad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61297e828260405180602001604052806000815250612f47565b5050565b600061298d82611896565b905061299b81600084612f37565b6129a6600083612571565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129f6919061538e565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000808210158015612aa6575061277582105b9050919050565b6000600161277584612abf91906152ad565b612ac9919061538e565b9050612ad58282612964565b6001600e6000828254612ae891906152ad565b92505081905550505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bc5848484612708565b612bd184848484612fa2565b612c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0790614d32565b60405180910390fd5b50505050565b606060128054612c2590615478565b80601f0160208091040260200160405190810160405280929190818152602001828054612c5190615478565b8015612c9e5780601f10612c7357610100808354040283529160200191612c9e565b820191906000526020600020905b815481529060010190602001808311612c8157829003601f168201915b5050505050905090565b60606000821415612cf0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e50565b600082905060005b60008214612d22578080612d0b906154aa565b915050600a82612d1b9190615303565b9150612cf8565b60008167ffffffffffffffff811115612d64577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d965781602001600182028036833780820191505090505b5090505b60008514612e4957600182612daf919061538e565b9150600a85612dbe91906154f3565b6030612dca91906152ad565b60f81b818381518110612e06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e429190615303565b9450612d9a565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f2057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f305750612f2f82613139565b5b9050919050565b612f428383836131a3565b505050565b612f5183836132b7565b612f5e6000848484612fa2565b612f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9490614d32565b60405180910390fd5b505050565b6000612fc38473ffffffffffffffffffffffffffffffffffffffff16613485565b1561312c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fec612569565b8786866040518563ffffffff1660e01b815260040161300e9493929190614c49565b602060405180830381600087803b15801561302857600080fd5b505af192505050801561305957506040513d601f19601f820116820180604052508101906130569190613ce9565b60015b6130dc573d8060008114613089576040519150601f19603f3d011682016040523d82523d6000602084013e61308e565b606091505b506000815114156130d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cb90614d32565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613131565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131ae838383613498565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131f1576131ec8161349d565b613230565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461322f5761322e83826134e6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132735761326e81613653565b6132b2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132b1576132b08282613796565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331e90614f52565b60405180910390fd5b613330816124fd565b15613370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336790614d72565b60405180910390fd5b61337c60008383612f37565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133cc91906152ad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134f38461194e565b6134fd919061538e565b90506000600760008481526020019081526020016000205490508181146135e2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613667919061538e565b90506000600960008481526020019081526020016000205490506000600883815481106136bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613705577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061377a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006137a18361194e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461382190615478565b90600052602060002090601f016020900481019282613843576000855561388a565b82601f1061385c57805160ff191683800117855561388a565b8280016001018555821561388a579182015b8281111561388957825182559160200191906001019061386e565b5b509050613897919061389b565b5090565b5b808211156138b457600081600090555060010161389c565b5090565b60006138cb6138c6846151de565b6151ad565b905080838252602082019050828560208602820111156138ea57600080fd5b60005b8581101561391a57816139008882613a87565b8452602084019350602083019250506001810190506138ed565b5050509392505050565b60006139376139328461520a565b6151ad565b90508281526020810184848401111561394f57600080fd5b61395a848285615436565b509392505050565b60006139756139708461523a565b6151ad565b90508281526020810184848401111561398d57600080fd5b613998848285615436565b509392505050565b6000813590506139af816155f1565b92915050565b6000815190506139c4816155f1565b92915050565b600082601f8301126139db57600080fd5b81356139eb8482602086016138b8565b91505092915050565b600081359050613a0381615608565b92915050565b600081359050613a188161561f565b92915050565b600081519050613a2d8161561f565b92915050565b600082601f830112613a4457600080fd5b8135613a54848260208601613924565b91505092915050565b600082601f830112613a6e57600080fd5b8135613a7e848260208601613962565b91505092915050565b600081359050613a9681615636565b92915050565b600060208284031215613aae57600080fd5b6000613abc848285016139a0565b91505092915050565b600060208284031215613ad757600080fd5b6000613ae5848285016139b5565b91505092915050565b60008060408385031215613b0157600080fd5b6000613b0f858286016139a0565b9250506020613b20858286016139a0565b9150509250929050565b600080600060608486031215613b3f57600080fd5b6000613b4d868287016139a0565b9350506020613b5e868287016139a0565b9250506040613b6f86828701613a87565b9150509250925092565b60008060008060808587031215613b8f57600080fd5b6000613b9d878288016139a0565b9450506020613bae878288016139a0565b9350506040613bbf87828801613a87565b925050606085013567ffffffffffffffff811115613bdc57600080fd5b613be887828801613a33565b91505092959194509250565b60008060408385031215613c0757600080fd5b6000613c15858286016139a0565b9250506020613c26858286016139f4565b9150509250929050565b60008060408385031215613c4357600080fd5b6000613c51858286016139a0565b9250506020613c6285828601613a87565b9150509250929050565b60008060408385031215613c7f57600080fd5b600083013567ffffffffffffffff811115613c9957600080fd5b613ca5858286016139ca565b9250506020613cb685828601613a87565b9150509250929050565b600060208284031215613cd257600080fd5b6000613ce084828501613a09565b91505092915050565b600060208284031215613cfb57600080fd5b6000613d0984828501613a1e565b91505092915050565b600060208284031215613d2457600080fd5b600082013567ffffffffffffffff811115613d3e57600080fd5b613d4a84828501613a5d565b91505092915050565b600060208284031215613d6557600080fd5b6000613d7384828501613a87565b91505092915050565b60008060408385031215613d8f57600080fd5b6000613d9d85828601613a87565b9250506020613dae85828601613a87565b9150509250929050565b613dc1816153c2565b82525050565b613dd0816153d4565b82525050565b6000613de18261526a565b613deb8185615280565b9350613dfb818560208601615445565b613e04816155e0565b840191505092915050565b6000613e1a82615275565b613e248185615291565b9350613e34818560208601615445565b613e3d816155e0565b840191505092915050565b6000613e5382615275565b613e5d81856152a2565b9350613e6d818560208601615445565b80840191505092915050565b6000613e86602083615291565b91507f526573657276652068617320616c7265616479206265656e20636c61696d65646000830152602082019050919050565b6000613ec6603a83615291565b91507f416c6c2053535320746f6b656e7320617661696c61626c6520666f722070726960008301527f766174652073616c652068617665206265656e206d696e7465640000000000006020830152604082019050919050565b6000613f2c602b83615291565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613f92603283615291565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613ff8602683615291565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061405e601c83615291565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061409e602483615291565b91507f596f752063616e206f6e6c79206d696e74206d6f7265207468616e203020746f60008301527f6b656e73000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614104602483615291565b91507f596f7520646f206e6f74206f776e2074686520737461726475737420746f6b6560008301527f6e206964000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061416a602f83615291565b91507f54686520707572636861736520657863656564732074686520746f74616c207360008301527f7570706c7920617661696c61626c6500000000000000000000000000000000006020830152604082019050919050565b60006141d0602e83615291565b91507f596f7520686176652070726f766964656420616e20696e76616c69642053544160008301527f524455535420746f6b656e2069640000000000000000000000000000000000006020830152604082019050919050565b6000614236601f83615291565b91507f416c6c2053535320746f6b656e732068617665206265656e206d696e746564006000830152602082019050919050565b6000614276602483615291565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142dc601983615291565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061431c602883615291565b91507f507269766174652053616c65206973206e6f742061637469766520617420746860008301527f65206d6f6d656e740000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614382602c83615291565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143e8602e83615291565b91507f596f7520646f206e6f74206f776e207468652072657175657374656420616e6960008301527f6d6174656420746f6b656e2069640000000000000000000000000000000000006020830152604082019050919050565b600061444e603883615291565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006144b4602a83615291565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061451a602983615291565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614580603a83615291565b91507f596f75206e65656420746f206275726e20332053535320696e206f726465722060008301527f746f207265636569766520616e20616e696d61746564206f6e650000000000006020830152604082019050919050565b60006145e6602083615291565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614626602c83615291565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061468c605a83615291565b91507f54686520707572636861736520657863656564732074686520617661696c616260008301527f6c65206e756d626572206f662053535320746f6b656e7320796f752063616e2060208301527f72656465656d207573696e6720746869732053544152445553540000000000006040830152606082019050919050565b6000614718602083615291565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614758601683615291565b91507f4275726e206973206e6f742061637469766520796574000000000000000000006000830152602082019050919050565b6000614798602983615291565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006147fe602f83615291565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614864601283615291565b91507f546f6f206d7563682072657175657374656400000000000000000000000000006000830152602082019050919050565b60006148a4602483615291565b91507f54686520737065636966696564204554482076616c756520697320696e636f7260008301527f72656374000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061490a601a83615291565b91507f496e76616c696420746f6b656e206964207370656369666965640000000000006000830152602082019050919050565b600061494a602183615291565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149b0601a83615291565b91507f596f752063616e6e6f74206275726e20746f6b656e20696420300000000000006000830152602082019050919050565b60006149f0603183615291565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614a56602c83615291565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614abc601f83615291565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000614afc603083615291565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b6000614b62602d83615291565b91507f596f7520646f206e6f74206f776e206f6e65206f662074686520746f6b656e2060008301527f69647320737065636966696564000000000000000000000000000000000000006020830152604082019050919050565b6000614bc8602083615291565b91507f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746000830152602082019050919050565b614c048161542c565b82525050565b6000614c168285613e48565b9150614c228284613e48565b91508190509392505050565b6000602082019050614c436000830184613db8565b92915050565b6000608082019050614c5e6000830187613db8565b614c6b6020830186613db8565b614c786040830185614bfb565b8181036060830152614c8a8184613dd6565b905095945050505050565b6000602082019050614caa6000830184613dc7565b92915050565b60006020820190508181036000830152614cca8184613e0f565b905092915050565b60006020820190508181036000830152614ceb81613e79565b9050919050565b60006020820190508181036000830152614d0b81613eb9565b9050919050565b60006020820190508181036000830152614d2b81613f1f565b9050919050565b60006020820190508181036000830152614d4b81613f85565b9050919050565b60006020820190508181036000830152614d6b81613feb565b9050919050565b60006020820190508181036000830152614d8b81614051565b9050919050565b60006020820190508181036000830152614dab81614091565b9050919050565b60006020820190508181036000830152614dcb816140f7565b9050919050565b60006020820190508181036000830152614deb8161415d565b9050919050565b60006020820190508181036000830152614e0b816141c3565b9050919050565b60006020820190508181036000830152614e2b81614229565b9050919050565b60006020820190508181036000830152614e4b81614269565b9050919050565b60006020820190508181036000830152614e6b816142cf565b9050919050565b60006020820190508181036000830152614e8b8161430f565b9050919050565b60006020820190508181036000830152614eab81614375565b9050919050565b60006020820190508181036000830152614ecb816143db565b9050919050565b60006020820190508181036000830152614eeb81614441565b9050919050565b60006020820190508181036000830152614f0b816144a7565b9050919050565b60006020820190508181036000830152614f2b8161450d565b9050919050565b60006020820190508181036000830152614f4b81614573565b9050919050565b60006020820190508181036000830152614f6b816145d9565b9050919050565b60006020820190508181036000830152614f8b81614619565b9050919050565b60006020820190508181036000830152614fab8161467f565b9050919050565b60006020820190508181036000830152614fcb8161470b565b9050919050565b60006020820190508181036000830152614feb8161474b565b9050919050565b6000602082019050818103600083015261500b8161478b565b9050919050565b6000602082019050818103600083015261502b816147f1565b9050919050565b6000602082019050818103600083015261504b81614857565b9050919050565b6000602082019050818103600083015261506b81614897565b9050919050565b6000602082019050818103600083015261508b816148fd565b9050919050565b600060208201905081810360008301526150ab8161493d565b9050919050565b600060208201905081810360008301526150cb816149a3565b9050919050565b600060208201905081810360008301526150eb816149e3565b9050919050565b6000602082019050818103600083015261510b81614a49565b9050919050565b6000602082019050818103600083015261512b81614aaf565b9050919050565b6000602082019050818103600083015261514b81614aef565b9050919050565b6000602082019050818103600083015261516b81614b55565b9050919050565b6000602082019050818103600083015261518b81614bbb565b9050919050565b60006020820190506151a76000830184614bfb565b92915050565b6000604051905081810181811067ffffffffffffffff821117156151d4576151d36155b1565b5b8060405250919050565b600067ffffffffffffffff8211156151f9576151f86155b1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615225576152246155b1565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615255576152546155b1565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006152b88261542c565b91506152c38361542c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152f8576152f7615524565b5b828201905092915050565b600061530e8261542c565b91506153198361542c565b92508261532957615328615553565b5b828204905092915050565b600061533f8261542c565b915061534a8361542c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561538357615382615524565b5b828202905092915050565b60006153998261542c565b91506153a48361542c565b9250828210156153b7576153b6615524565b5b828203905092915050565b60006153cd8261540c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615463578082015181840152602081019050615448565b83811115615472576000848401525b50505050565b6000600282049050600182168061549057607f821691505b602082108114156154a4576154a3615582565b5b50919050565b60006154b58261542c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154e8576154e7615524565b5b600182019050919050565b60006154fe8261542c565b91506155098361542c565b92508261551957615518615553565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6155fa816153c2565b811461560557600080fd5b50565b615611816153d4565b811461561c57600080fd5b50565b615628816153e0565b811461563357600080fd5b50565b61563f8161542c565b811461564a57600080fd5b5056fea2646970667358221220589587e2959272b16ed0ad4374fdfd30a2e5e67d13e02075b4577a52446bfbf764736f6c63430008000033
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.