NFT
Overview
TokenID
1890
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Wickens
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; contract Wickens is ERC721Enumerable, Ownable { using Address for address; using Strings for uint256; // Starting and stopping sale and presale bool public saleActive = false; bool public presaleActive = false; // Reserved for the team, customs, giveaways, collabs and so on. uint256 public reserved = 100; // Price of each token uint256 public price = 0.05 ether; // Maximum limit of tokens that can ever exist uint256 constant MAX_SUPPLY = 6666; uint256 public constant MAX_PER_ADDRESS_PRESALE = 3; uint256 public constant MAX_PER_ADDRESS_PUBLIC = 10; // The base link that leads to the image / video of the token string public baseTokenURI; // whitelist for presale mapping(address => bool) public whitelisted; string public baseExtension = ".json"; bool public revealed = false; string public notRevealedUri; // Team addresses for withdrawals address public Shannon = 0xbBB59bce1FDB930be2cfEE29F9a467269d5B8761; address public Ryan = 0x77b06916B10A32e89810D3CD6A04744722B49915; address public Steve = 0x27853Ea1152048Fa174E2E64a724AdbB70D92452; address public Treasury = 0x80bd15B854384B9E8b920f56A3aE2687c1368a65; constructor () ERC721 ("Wickens", "WCK") { setBaseURI("ipfs://QmXotxqQNjfcbdpWauv4hwHKMNTW96PFWVfN4gaDh8NmFV/"); setNotRevealedURI("ipfs://QmQZsBZsq16Qi8uuY7BYAGrVu9MeSAe6nKfKcTR336Rgx5/hidden.json"); } // Override so the openzeppelin tokenURI() method will use this method to create the full tokenURI instead function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } // See which address owns which tokens function tokensOfOwner(address addr) public view returns(uint256[] memory) { uint256 tokenCount = balanceOf(addr); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(addr, i); } return tokensId; } // mint function function mint(uint256 _amount) public payable { uint256 supply = totalSupply(); if (presaleActive) { require(whitelisted[msg.sender] == true, "Not presale member"); require( _amount > 0 && _amount <= MAX_PER_ADDRESS_PRESALE, "Can only mint between 1 and 3 tokens at once" ); require( supply + _amount <= MAX_SUPPLY, "Can't mint more than max supply" ); require(balanceOf(msg.sender) + _amount <= MAX_PER_ADDRESS_PRESALE, "Can only mint up to 3 tokens per wallet"); require( msg.value == price * _amount, "Wrong amount of ETH sent" ); for(uint256 i; i < _amount; i++){ _safeMint( msg.sender, supply + i + 1 ); // Token id starts from 1 } } else { if (saleActive) { require( _amount > 0 && _amount <= MAX_PER_ADDRESS_PUBLIC, "Can only mint between 1 and 10 tokens at once" ); require( supply + _amount <= MAX_SUPPLY, "Can't mint more than max supply" ); require(balanceOf(msg.sender) + _amount <= MAX_PER_ADDRESS_PUBLIC, "Can only mint up to 10 tokens per wallet"); require( msg.value == price * _amount, "Wrong amount of ETH sent" ); for(uint256 i; i < _amount; i++){ _safeMint( msg.sender, supply + i + 1); // Token id starts from 1 } } else { require( presaleActive, "Presale isn't active" ); require( saleActive, "Sale isn't active" ); } } } // Admin minting function to reserve tokens for the team, collabs, customs and giveaways function mintReserved(uint256 _amount) public { require( msg.sender == Treasury, "Don't have permission to mint" ); // Limited to a publicly set amount require( _amount <= reserved, "Can't reserve more than set amount" ); reserved -= _amount; uint256 supply = totalSupply(); for(uint256 i; i < _amount; i++){ _safeMint( msg.sender, supply + i + 1); // Token id starts from 1 } } // Start and stop presale function setPresaleActive(bool val) public onlyOwner { presaleActive = val; } // Start and stop sale function setSaleActive(bool val) public onlyOwner { saleActive = val; } // Set new baseURI function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function tokenURI(uint256 tokenId)public view virtual override returns (string memory) { require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token"); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } //only owner function reveal() public onlyOwner { revealed = true; } // Set a different price in case ETH changes drastically function setPrice(uint256 newPrice) public onlyOwner { price = newPrice; } // add user's address to whitelist for presale function addWhitelistUser(address[] memory _user) public onlyOwner { for(uint256 idx = 0; idx < _user.length; idx++) { require(whitelisted[_user[idx]] == false, "already set"); whitelisted[_user[idx]] = true; } } // remove user's address to whitelist for presale function removeWhitelistUser(address[] memory _user) public onlyOwner { for(uint256 idx = 0; idx < _user.length; idx++) { require(whitelisted[_user[idx]] == true, "not exist"); whitelisted[_user[idx]] = false; } } // withdraw all amount from contract function withdrawAll() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "There is no balance to withdraw"); uint256 percent = balance / 100; _widthdraw(Shannon, percent * 100/3); _widthdraw(Ryan, percent * 100/3); _widthdraw(Steve, percent * 100/3); } function _widthdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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_PER_ADDRESS_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_ADDRESS_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Ryan","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Shannon","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Steve","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"addWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","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":[{"internalType":"address","name":"addr","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff0219169083151502179055506064600b5566b1a2bc2ec50000600c556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f9080519060200190620000979291906200057d565b506000601060006101000a81548160ff02191690831515021790555073bbb59bce1fdb930be2cfee29f9a467269d5b8761601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507377b06916b10a32e89810d3cd6a04744722b49915601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507327853ea1152048fa174e2e64a724adbb70d92452601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507380bd15b854384b9e8b920f56a3ae2687c1368a65601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200021457600080fd5b506040518060400160405280600781526020017f5769636b656e73000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f57434b00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620002999291906200057d565b508060019080519060200190620002b29291906200057d565b505050620002d5620002c96200032f60201b60201c565b6200033760201b60201c565b620002ff604051806060016040528060368152602001620060f560369139620003fd60201b60201c565b620003296040518060800160405280604181526020016200612b60419139620004a860201b60201c565b62000715565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200040d6200032f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004336200055360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200048c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004839062000654565b60405180910390fd5b80600d9080519060200190620004a49291906200057d565b5050565b620004b86200032f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004de6200055360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000537576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200052e9062000654565b60405180910390fd5b80601190805190602001906200054f9291906200057d565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200058b9062000687565b90600052602060002090601f016020900481019282620005af5760008555620005fb565b82601f10620005ca57805160ff1916838001178555620005fb565b82800160010185558215620005fb579182015b82811115620005fa578251825591602001919060010190620005dd565b5b5090506200060a91906200060e565b5090565b5b80821115620006295760008160009055506001016200060f565b5090565b60006200063c60208362000676565b91506200064982620006ec565b602082019050919050565b600060208201905081810360008301526200066f816200062d565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620006a057607f821691505b60208210811415620006b757620006b6620006bd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6159d080620007256000396000f3fe60806040526004361061027d5760003560e01c80638462151c1161014f578063adfe866f116100c1578063e562c0ec1161007a578063e562c0ec14610979578063e985e9c5146109a4578063eedd8f29146109e1578063f2c4ce1e14610a0c578063f2fde38b14610a35578063fe60d12c14610a5e5761027d565b8063adfe866f14610855578063b88d4fde14610880578063c6682862146108a9578063c87b56dd146108d4578063d547cfb714610911578063d936547e1461093c5761027d565b8063999abb7b11610113578063999abb7b1461077c5780639a5d140b146107a5578063a035b1fe146107ce578063a0712d68146107f9578063a22cb46514610815578063a475b5dd1461083e5761027d565b80638462151c146106a9578063853828b6146106e65780638da5cb5b146106fd57806391b7f5ed1461072857806395d89b41146107515761027d565b806342842e0e116101f35780636352211e116101ac5780636352211e1461059957806368428a1b146105d65780636c102eef1461060157806370a082311461062c578063715018a614610669578063841718a6146106805761027d565b806342842e0e146104895780634f6ccce7146104b257806351830227146104ef57806353135ca01461051a57806355f804b314610545578063563df32f1461056e5761027d565b806318160ddd1161024557806318160ddd1461037b5780631a454b2c146103a65780631bc3f461146103d157806323b872dd146103fa5780632f745c59146104235780633f8121a2146104605761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063081c8c4414610327578063095ea7b314610352575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613fdf565b610a89565b6040516102b691906147e4565b60405180910390f35b3480156102cb57600080fd5b506102d4610b03565b6040516102e191906147ff565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190614072565b610b95565b60405161031e919061475b565b60405180910390f35b34801561033357600080fd5b5061033c610c1a565b60405161034991906147ff565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613f39565b610ca8565b005b34801561038757600080fd5b50610390610dc0565b60405161039d9190614c41565b60405180910390f35b3480156103b257600080fd5b506103bb610dcd565b6040516103c89190614c41565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190613f75565b610dd2565b005b34801561040657600080fd5b50610421600480360381019061041c9190613e33565b610fdc565b005b34801561042f57600080fd5b5061044a60048036038101906104459190613f39565b61103c565b6040516104579190614c41565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190613fb6565b6110e1565b005b34801561049557600080fd5b506104b060048036038101906104ab9190613e33565b61117a565b005b3480156104be57600080fd5b506104d960048036038101906104d49190614072565b61119a565b6040516104e69190614c41565b60405180910390f35b3480156104fb57600080fd5b50610504611231565b60405161051191906147e4565b60405180910390f35b34801561052657600080fd5b5061052f611244565b60405161053c91906147e4565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190614031565b611257565b005b34801561057a57600080fd5b506105836112ed565b604051610590919061475b565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190614072565b611313565b6040516105cd919061475b565b60405180910390f35b3480156105e257600080fd5b506105eb6113c5565b6040516105f891906147e4565b60405180910390f35b34801561060d57600080fd5b506106166113d8565b6040516106239190614c41565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190613dce565b6113dd565b6040516106609190614c41565b60405180910390f35b34801561067557600080fd5b5061067e611495565b005b34801561068c57600080fd5b506106a760048036038101906106a29190613fb6565b61151d565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190613dce565b6115b6565b6040516106dd91906147c2565b60405180910390f35b3480156106f257600080fd5b506106fb6116b0565b005b34801561070957600080fd5b50610712611855565b60405161071f919061475b565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190614072565b61187f565b005b34801561075d57600080fd5b50610766611905565b60405161077391906147ff565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190613f75565b611997565b005b3480156107b157600080fd5b506107cc60048036038101906107c79190614072565b611ba1565b005b3480156107da57600080fd5b506107e3611cdf565b6040516107f09190614c41565b60405180910390f35b610813600480360381019061080e9190614072565b611ce5565b005b34801561082157600080fd5b5061083c60048036038101906108379190613efd565b612168565b005b34801561084a57600080fd5b5061085361217e565b005b34801561086157600080fd5b5061086a612217565b604051610877919061475b565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190613e82565b61223d565b005b3480156108b557600080fd5b506108be61229f565b6040516108cb91906147ff565b60405180910390f35b3480156108e057600080fd5b506108fb60048036038101906108f69190614072565b61232d565b60405161090891906147ff565b60405180910390f35b34801561091d57600080fd5b50610926612486565b60405161093391906147ff565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613dce565b612514565b60405161097091906147e4565b60405180910390f35b34801561098557600080fd5b5061098e612534565b60405161099b919061475b565b60405180910390f35b3480156109b057600080fd5b506109cb60048036038101906109c69190613df7565b61255a565b6040516109d891906147e4565b60405180910390f35b3480156109ed57600080fd5b506109f66125ee565b604051610a03919061475b565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e9190614031565b612614565b005b348015610a4157600080fd5b50610a5c6004803603810190610a579190613dce565b6126aa565b005b348015610a6a57600080fd5b50610a736127a2565b604051610a809190614c41565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afc5750610afb826127a8565b5b9050919050565b606060008054610b1290614f76565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3e90614f76565b8015610b8b5780601f10610b6057610100808354040283529160200191610b8b565b820191906000526020600020905b815481529060010190602001808311610b6e57829003601f168201915b5050505050905090565b6000610ba08261288a565b610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690614aa1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610c2790614f76565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5390614f76565b8015610ca05780601f10610c7557610100808354040283529160200191610ca0565b820191906000526020600020905b815481529060010190602001808311610c8357829003601f168201915b505050505081565b6000610cb382611313565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90614b61565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d436128f6565b73ffffffffffffffffffffffffffffffffffffffff161480610d725750610d7181610d6c6128f6565b61255a565b5b610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da8906149e1565b60405180910390fd5b610dbb83836128fe565b505050565b6000600880549050905090565b600381565b610dda6128f6565b73ffffffffffffffffffffffffffffffffffffffff16610df8611855565b73ffffffffffffffffffffffffffffffffffffffff1614610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590614ae1565b60405180910390fd5b60005b8151811015610fd85760001515600e6000848481518110610e9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490614c21565b60405180910390fd5b6001600e6000848481518110610f6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610fd090614fd9565b915050610e51565b5050565b610fed610fe76128f6565b826129b7565b61102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390614ba1565b60405180910390fd5b611037838383612a95565b505050565b6000611047836113dd565b8210611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90614861565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110e96128f6565b73ffffffffffffffffffffffffffffffffffffffff16611107611855565b73ffffffffffffffffffffffffffffffffffffffff161461115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490614ae1565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b6111958383836040518060200160405280600081525061223d565b505050565b60006111a4610dc0565b82106111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90614bc1565b60405180910390fd5b6008828154811061121f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601060009054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b61125f6128f6565b73ffffffffffffffffffffffffffffffffffffffff1661127d611855565b73ffffffffffffffffffffffffffffffffffffffff16146112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca90614ae1565b60405180910390fd5b80600d90805190602001906112e9929190613b5c565b5050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b390614a21565b60405180910390fd5b80915050919050565b600a60149054906101000a900460ff1681565b600a81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144590614a01565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61149d6128f6565b73ffffffffffffffffffffffffffffffffffffffff166114bb611855565b73ffffffffffffffffffffffffffffffffffffffff1614611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890614ae1565b60405180910390fd5b61151b6000612cf1565b565b6115256128f6565b73ffffffffffffffffffffffffffffffffffffffff16611543611855565b73ffffffffffffffffffffffffffffffffffffffff1614611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090614ae1565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b606060006115c3836113dd565b905060008167ffffffffffffffff811115611607577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116355781602001602082028036833780820191505090505b50905060005b828110156116a55761164d858261103c565b828281518110611686577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061169d90614fd9565b91505061163b565b508092505050919050565b6116b86128f6565b73ffffffffffffffffffffffffffffffffffffffff166116d6611855565b73ffffffffffffffffffffffffffffffffffffffff161461172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390614ae1565b60405180910390fd5b600047905060008111611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176b906149a1565b60405180910390fd5b60006064826117839190614e01565b90506117c9601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660036064846117ba9190614e32565b6117c49190614e01565b612db7565b61180d601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660036064846117fe9190614e32565b6118089190614e01565b612db7565b611851601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660036064846118429190614e32565b61184c9190614e01565b612db7565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118876128f6565b73ffffffffffffffffffffffffffffffffffffffff166118a5611855565b73ffffffffffffffffffffffffffffffffffffffff16146118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290614ae1565b60405180910390fd5b80600c8190555050565b60606001805461191490614f76565b80601f016020809104026020016040519081016040528092919081815260200182805461194090614f76565b801561198d5780601f106119625761010080835404028352916020019161198d565b820191906000526020600020905b81548152906001019060200180831161197057829003601f168201915b5050505050905090565b61199f6128f6565b73ffffffffffffffffffffffffffffffffffffffff166119bd611855565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90614ae1565b60405180910390fd5b60005b8151811015611b9d5760011515600e6000848481518110611a60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990614961565b60405180910390fd5b6000600e6000848481518110611b31577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b9590614fd9565b915050611a16565b5050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c28906149c1565b60405180910390fd5b600b54811115611c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6d90614a81565b60405180910390fd5b80600b6000828254611c889190614e8c565b925050819055506000611c99610dc0565b905060005b82811015611cda57611cc73360018385611cb89190614dab565b611cc29190614dab565b612e68565b8080611cd290614fd9565b915050611c9e565b505050565b600c5481565b6000611cef610dc0565b9050600a60159054906101000a900460ff1615611f245760011515600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9090614a41565b60405180910390fd5b600082118015611daa575060038211155b611de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de090614981565b60405180910390fd5b611a0a8282611df89190614dab565b1115611e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e30906148e1565b60405180910390fd5b600382611e45336113dd565b611e4f9190614dab565b1115611e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8790614c01565b60405180910390fd5b81600c54611e9e9190614e32565b3414611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed690614be1565b60405180910390fd5b60005b82811015611f1e57611f0b3360018385611efc9190614dab565b611f069190614dab565b612e68565b8080611f1690614fd9565b915050611ee2565b50612164565b600a60149054906101000a900460ff16156120c457600082118015611f4a5750600a8211155b611f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8090614841565b60405180910390fd5b611a0a8282611f989190614dab565b1115611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd0906148e1565b60405180910390fd5b600a82611fe5336113dd565b611fef9190614dab565b1115612030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202790614821565b60405180910390fd5b81600c5461203e9190614e32565b341461207f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207690614be1565b60405180910390fd5b60005b828110156120be576120ab336001838561209c9190614dab565b6120a69190614dab565b612e68565b80806120b690614fd9565b915050612082565b50612163565b600a60159054906101000a900460ff16612113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210a90614ac1565b60405180910390fd5b600a60149054906101000a900460ff16612162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215990614b41565b60405180910390fd5b5b5b5050565b61217a6121736128f6565b8383612e86565b5050565b6121866128f6565b73ffffffffffffffffffffffffffffffffffffffff166121a4611855565b73ffffffffffffffffffffffffffffffffffffffff16146121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190614ae1565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61224e6122486128f6565b836129b7565b61228d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228490614ba1565b60405180910390fd5b61229984848484612ff3565b50505050565b600f80546122ac90614f76565b80601f01602080910402602001604051908101604052809291908181526020018280546122d890614f76565b80156123255780601f106122fa57610100808354040283529160200191612325565b820191906000526020600020905b81548152906001019060200180831161230857829003601f168201915b505050505081565b60606123388261288a565b612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90614b21565b60405180910390fd5b60001515601060009054906101000a900460ff161515141561242557601180546123a090614f76565b80601f01602080910402602001604051908101604052809291908181526020018280546123cc90614f76565b80156124195780601f106123ee57610100808354040283529160200191612419565b820191906000526020600020905b8154815290600101906020018083116123fc57829003601f168201915b50505050509050612481565b600061242f61304f565b9050600081511161244f576040518060200160405280600081525061247d565b80612459846130e1565b600f60405160200161246d93929190614715565b6040516020818303038152906040525b9150505b919050565b600d805461249390614f76565b80601f01602080910402602001604051908101604052809291908181526020018280546124bf90614f76565b801561250c5780601f106124e15761010080835404028352916020019161250c565b820191906000526020600020905b8154815290600101906020018083116124ef57829003601f168201915b505050505081565b600e6020528060005260406000206000915054906101000a900460ff1681565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61261c6128f6565b73ffffffffffffffffffffffffffffffffffffffff1661263a611855565b73ffffffffffffffffffffffffffffffffffffffff1614612690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268790614ae1565b60405180910390fd5b80601190805190602001906126a6929190613b5c565b5050565b6126b26128f6565b73ffffffffffffffffffffffffffffffffffffffff166126d0611855565b73ffffffffffffffffffffffffffffffffffffffff1614612726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271d90614ae1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278d906148a1565b60405180910390fd5b61279f81612cf1565b50565b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061287357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061288357506128828261328e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661297183611313565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006129c28261288a565b612a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f890614941565b60405180910390fd5b6000612a0c83611313565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a7b57508373ffffffffffffffffffffffffffffffffffffffff16612a6384610b95565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a8c5750612a8b818561255a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ab582611313565b73ffffffffffffffffffffffffffffffffffffffff1614612b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0290614b01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7290614901565b60405180910390fd5b612b868383836132f8565b612b916000826128fe565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612be19190614e8c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c389190614dab565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612ddd90614746565b60006040518083038185875af1925050503d8060008114612e1a576040519150601f19603f3d011682016040523d82523d6000602084013e612e1f565b606091505b5050905080612e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5a90614b81565b60405180910390fd5b505050565b612e8282826040518060200160405280600081525061340c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eec90614921565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fe691906147e4565b60405180910390a3505050565b612ffe848484612a95565b61300a84848484613467565b613049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304090614881565b60405180910390fd5b50505050565b6060600d805461305e90614f76565b80601f016020809104026020016040519081016040528092919081815260200182805461308a90614f76565b80156130d75780601f106130ac576101008083540402835291602001916130d7565b820191906000526020600020905b8154815290600101906020018083116130ba57829003601f168201915b5050505050905090565b60606000821415613129576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613289565b600082905060005b6000821461315b57808061314490614fd9565b915050600a826131549190614e01565b9150613131565b60008167ffffffffffffffff81111561319d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131cf5781602001600182028036833780820191505090505b5090505b60008514613282576001826131e89190614e8c565b9150600a856131f79190615022565b60306132039190614dab565b60f81b81838151811061323f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561327b9190614e01565b94506131d3565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6133038383836135fe565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133465761334181613603565b613385565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461338457613383838261364c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133c8576133c3816137b9565b613407565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146134065761340582826138fc565b5b5b505050565b613416838361397b565b6134236000848484613467565b613462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345990614881565b60405180910390fd5b505050565b60006134888473ffffffffffffffffffffffffffffffffffffffff16613b49565b156135f1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134b16128f6565b8786866040518563ffffffff1660e01b81526004016134d39493929190614776565b602060405180830381600087803b1580156134ed57600080fd5b505af192505050801561351e57506040513d601f19601f8201168201806040525081019061351b9190614008565b60015b6135a1573d806000811461354e576040519150601f19603f3d011682016040523d82523d6000602084013e613553565b606091505b50600081511415613599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359090614881565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135f6565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613659846113dd565b6136639190614e8c565b9050600060076000848152602001908152602001600020549050818114613748576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137cd9190614e8c565b9050600060096000848152602001908152602001600020549050600060088381548110613823577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061386b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806138e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613907836113dd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e290614a61565b60405180910390fd5b6139f48161288a565b15613a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2b906148c1565b60405180910390fd5b613a40600083836132f8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a909190614dab565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613b6890614f76565b90600052602060002090601f016020900481019282613b8a5760008555613bd1565b82601f10613ba357805160ff1916838001178555613bd1565b82800160010185558215613bd1579182015b82811115613bd0578251825591602001919060010190613bb5565b5b509050613bde9190613be2565b5090565b5b80821115613bfb576000816000905550600101613be3565b5090565b6000613c12613c0d84614c81565b614c5c565b90508083825260208201905082856020860282011115613c3157600080fd5b60005b85811015613c615781613c478882613ce7565b845260208401935060208301925050600181019050613c34565b5050509392505050565b6000613c7e613c7984614cad565b614c5c565b905082815260208101848484011115613c9657600080fd5b613ca1848285614f34565b509392505050565b6000613cbc613cb784614cde565b614c5c565b905082815260208101848484011115613cd457600080fd5b613cdf848285614f34565b509392505050565b600081359050613cf68161593e565b92915050565b600082601f830112613d0d57600080fd5b8135613d1d848260208601613bff565b91505092915050565b600081359050613d3581615955565b92915050565b600081359050613d4a8161596c565b92915050565b600081519050613d5f8161596c565b92915050565b600082601f830112613d7657600080fd5b8135613d86848260208601613c6b565b91505092915050565b600082601f830112613da057600080fd5b8135613db0848260208601613ca9565b91505092915050565b600081359050613dc881615983565b92915050565b600060208284031215613de057600080fd5b6000613dee84828501613ce7565b91505092915050565b60008060408385031215613e0a57600080fd5b6000613e1885828601613ce7565b9250506020613e2985828601613ce7565b9150509250929050565b600080600060608486031215613e4857600080fd5b6000613e5686828701613ce7565b9350506020613e6786828701613ce7565b9250506040613e7886828701613db9565b9150509250925092565b60008060008060808587031215613e9857600080fd5b6000613ea687828801613ce7565b9450506020613eb787828801613ce7565b9350506040613ec887828801613db9565b925050606085013567ffffffffffffffff811115613ee557600080fd5b613ef187828801613d65565b91505092959194509250565b60008060408385031215613f1057600080fd5b6000613f1e85828601613ce7565b9250506020613f2f85828601613d26565b9150509250929050565b60008060408385031215613f4c57600080fd5b6000613f5a85828601613ce7565b9250506020613f6b85828601613db9565b9150509250929050565b600060208284031215613f8757600080fd5b600082013567ffffffffffffffff811115613fa157600080fd5b613fad84828501613cfc565b91505092915050565b600060208284031215613fc857600080fd5b6000613fd684828501613d26565b91505092915050565b600060208284031215613ff157600080fd5b6000613fff84828501613d3b565b91505092915050565b60006020828403121561401a57600080fd5b600061402884828501613d50565b91505092915050565b60006020828403121561404357600080fd5b600082013567ffffffffffffffff81111561405d57600080fd5b61406984828501613d8f565b91505092915050565b60006020828403121561408457600080fd5b600061409284828501613db9565b91505092915050565b60006140a783836146f7565b60208301905092915050565b6140bc81614ec0565b82525050565b60006140cd82614d34565b6140d78185614d62565b93506140e283614d0f565b8060005b838110156141135781516140fa888261409b565b975061410583614d55565b9250506001810190506140e6565b5085935050505092915050565b61412981614ed2565b82525050565b600061413a82614d3f565b6141448185614d73565b9350614154818560208601614f43565b61415d8161510f565b840191505092915050565b600061417382614d4a565b61417d8185614d8f565b935061418d818560208601614f43565b6141968161510f565b840191505092915050565b60006141ac82614d4a565b6141b68185614da0565b93506141c6818560208601614f43565b80840191505092915050565b600081546141df81614f76565b6141e98186614da0565b94506001821660008114614204576001811461421557614248565b60ff19831686528186019350614248565b61421e85614d1f565b60005b8381101561424057815481890152600182019150602081019050614221565b838801955050505b50505092915050565b600061425e602883614d8f565b915061426982615120565b604082019050919050565b6000614281602d83614d8f565b915061428c8261516f565b604082019050919050565b60006142a4602b83614d8f565b91506142af826151be565b604082019050919050565b60006142c7603283614d8f565b91506142d28261520d565b604082019050919050565b60006142ea602683614d8f565b91506142f58261525c565b604082019050919050565b600061430d601c83614d8f565b9150614318826152ab565b602082019050919050565b6000614330601f83614d8f565b915061433b826152d4565b602082019050919050565b6000614353602483614d8f565b915061435e826152fd565b604082019050919050565b6000614376601983614d8f565b91506143818261534c565b602082019050919050565b6000614399602c83614d8f565b91506143a482615375565b604082019050919050565b60006143bc600983614d8f565b91506143c7826153c4565b602082019050919050565b60006143df602c83614d8f565b91506143ea826153ed565b604082019050919050565b6000614402601f83614d8f565b915061440d8261543c565b602082019050919050565b6000614425601d83614d8f565b915061443082615465565b602082019050919050565b6000614448603883614d8f565b91506144538261548e565b604082019050919050565b600061446b602a83614d8f565b9150614476826154dd565b604082019050919050565b600061448e602983614d8f565b91506144998261552c565b604082019050919050565b60006144b1601283614d8f565b91506144bc8261557b565b602082019050919050565b60006144d4602083614d8f565b91506144df826155a4565b602082019050919050565b60006144f7602283614d8f565b9150614502826155cd565b604082019050919050565b600061451a602c83614d8f565b91506145258261561c565b604082019050919050565b600061453d601483614d8f565b91506145488261566b565b602082019050919050565b6000614560602083614d8f565b915061456b82615694565b602082019050919050565b6000614583602983614d8f565b915061458e826156bd565b604082019050919050565b60006145a6602f83614d8f565b91506145b18261570c565b604082019050919050565b60006145c9601183614d8f565b91506145d48261575b565b602082019050919050565b60006145ec602183614d8f565b91506145f782615784565b604082019050919050565b600061460f600083614d84565b915061461a826157d3565b600082019050919050565b6000614632601083614d8f565b915061463d826157d6565b602082019050919050565b6000614655603183614d8f565b9150614660826157ff565b604082019050919050565b6000614678602c83614d8f565b91506146838261584e565b604082019050919050565b600061469b601883614d8f565b91506146a68261589d565b602082019050919050565b60006146be602783614d8f565b91506146c9826158c6565b604082019050919050565b60006146e1600b83614d8f565b91506146ec82615915565b602082019050919050565b61470081614f2a565b82525050565b61470f81614f2a565b82525050565b600061472182866141a1565b915061472d82856141a1565b915061473982846141d2565b9150819050949350505050565b600061475182614602565b9150819050919050565b600060208201905061477060008301846140b3565b92915050565b600060808201905061478b60008301876140b3565b61479860208301866140b3565b6147a56040830185614706565b81810360608301526147b7818461412f565b905095945050505050565b600060208201905081810360008301526147dc81846140c2565b905092915050565b60006020820190506147f96000830184614120565b92915050565b600060208201905081810360008301526148198184614168565b905092915050565b6000602082019050818103600083015261483a81614251565b9050919050565b6000602082019050818103600083015261485a81614274565b9050919050565b6000602082019050818103600083015261487a81614297565b9050919050565b6000602082019050818103600083015261489a816142ba565b9050919050565b600060208201905081810360008301526148ba816142dd565b9050919050565b600060208201905081810360008301526148da81614300565b9050919050565b600060208201905081810360008301526148fa81614323565b9050919050565b6000602082019050818103600083015261491a81614346565b9050919050565b6000602082019050818103600083015261493a81614369565b9050919050565b6000602082019050818103600083015261495a8161438c565b9050919050565b6000602082019050818103600083015261497a816143af565b9050919050565b6000602082019050818103600083015261499a816143d2565b9050919050565b600060208201905081810360008301526149ba816143f5565b9050919050565b600060208201905081810360008301526149da81614418565b9050919050565b600060208201905081810360008301526149fa8161443b565b9050919050565b60006020820190508181036000830152614a1a8161445e565b9050919050565b60006020820190508181036000830152614a3a81614481565b9050919050565b60006020820190508181036000830152614a5a816144a4565b9050919050565b60006020820190508181036000830152614a7a816144c7565b9050919050565b60006020820190508181036000830152614a9a816144ea565b9050919050565b60006020820190508181036000830152614aba8161450d565b9050919050565b60006020820190508181036000830152614ada81614530565b9050919050565b60006020820190508181036000830152614afa81614553565b9050919050565b60006020820190508181036000830152614b1a81614576565b9050919050565b60006020820190508181036000830152614b3a81614599565b9050919050565b60006020820190508181036000830152614b5a816145bc565b9050919050565b60006020820190508181036000830152614b7a816145df565b9050919050565b60006020820190508181036000830152614b9a81614625565b9050919050565b60006020820190508181036000830152614bba81614648565b9050919050565b60006020820190508181036000830152614bda8161466b565b9050919050565b60006020820190508181036000830152614bfa8161468e565b9050919050565b60006020820190508181036000830152614c1a816146b1565b9050919050565b60006020820190508181036000830152614c3a816146d4565b9050919050565b6000602082019050614c566000830184614706565b92915050565b6000614c66614c77565b9050614c728282614fa8565b919050565b6000604051905090565b600067ffffffffffffffff821115614c9c57614c9b6150e0565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614cc857614cc76150e0565b5b614cd18261510f565b9050602081019050919050565b600067ffffffffffffffff821115614cf957614cf86150e0565b5b614d028261510f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614db682614f2a565b9150614dc183614f2a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614df657614df5615053565b5b828201905092915050565b6000614e0c82614f2a565b9150614e1783614f2a565b925082614e2757614e26615082565b5b828204905092915050565b6000614e3d82614f2a565b9150614e4883614f2a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e8157614e80615053565b5b828202905092915050565b6000614e9782614f2a565b9150614ea283614f2a565b925082821015614eb557614eb4615053565b5b828203905092915050565b6000614ecb82614f0a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f61578082015181840152602081019050614f46565b83811115614f70576000848401525b50505050565b60006002820490506001821680614f8e57607f821691505b60208210811415614fa257614fa16150b1565b5b50919050565b614fb18261510f565b810181811067ffffffffffffffff82111715614fd057614fcf6150e0565b5b80604052505050565b6000614fe482614f2a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561501757615016615053565b5b600182019050919050565b600061502d82614f2a565b915061503883614f2a565b92508261504857615047615082565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43616e206f6e6c79206d696e7420757020746f20313020746f6b656e7320706560008201527f722077616c6c6574000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74206265747765656e203120616e64203130207460008201527f6f6b656e73206174206f6e636500000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e2774206d696e74206d6f7265207468616e206d617820737570706c7900600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6e6f742065786973740000000000000000000000000000000000000000000000600082015250565b7f43616e206f6e6c79206d696e74206265747765656e203120616e64203320746f60008201527f6b656e73206174206f6e63650000000000000000000000000000000000000000602082015250565b7f5468657265206973206e6f2062616c616e636520746f20776974686472617700600082015250565b7f446f6e27742068617665207065726d697373696f6e20746f206d696e74000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f742070726573616c65206d656d6265720000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e27742072657365727665206d6f7265207468616e2073657420616d6f7560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f50726573616c652069736e277420616374697665000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c652069736e277420616374697665000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f57726f6e6720616d6f756e74206f66204554482073656e740000000000000000600082015250565b7f43616e206f6e6c79206d696e7420757020746f203320746f6b656e732070657260008201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b7f616c726561647920736574000000000000000000000000000000000000000000600082015250565b61594781614ec0565b811461595257600080fd5b50565b61595e81614ed2565b811461596957600080fd5b50565b61597581614ede565b811461598057600080fd5b50565b61598c81614f2a565b811461599757600080fd5b5056fea2646970667358221220cf2fad374b3d41582cab830b3073fe2d444d66cb8cd3f6b255737914dc4c4d5564736f6c63430008040033697066733a2f2f516d586f747871514e6a666362647057617576346877484b4d4e5457393650465756664e3467614468384e6d46562f697066733a2f2f516d515a73425a737131365169387575593742594147725675394d65534165366e4b664b635452333336526778352f68696464656e2e6a736f6e
Deployed Bytecode
0x60806040526004361061027d5760003560e01c80638462151c1161014f578063adfe866f116100c1578063e562c0ec1161007a578063e562c0ec14610979578063e985e9c5146109a4578063eedd8f29146109e1578063f2c4ce1e14610a0c578063f2fde38b14610a35578063fe60d12c14610a5e5761027d565b8063adfe866f14610855578063b88d4fde14610880578063c6682862146108a9578063c87b56dd146108d4578063d547cfb714610911578063d936547e1461093c5761027d565b8063999abb7b11610113578063999abb7b1461077c5780639a5d140b146107a5578063a035b1fe146107ce578063a0712d68146107f9578063a22cb46514610815578063a475b5dd1461083e5761027d565b80638462151c146106a9578063853828b6146106e65780638da5cb5b146106fd57806391b7f5ed1461072857806395d89b41146107515761027d565b806342842e0e116101f35780636352211e116101ac5780636352211e1461059957806368428a1b146105d65780636c102eef1461060157806370a082311461062c578063715018a614610669578063841718a6146106805761027d565b806342842e0e146104895780634f6ccce7146104b257806351830227146104ef57806353135ca01461051a57806355f804b314610545578063563df32f1461056e5761027d565b806318160ddd1161024557806318160ddd1461037b5780631a454b2c146103a65780631bc3f461146103d157806323b872dd146103fa5780632f745c59146104235780633f8121a2146104605761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063081c8c4414610327578063095ea7b314610352575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613fdf565b610a89565b6040516102b691906147e4565b60405180910390f35b3480156102cb57600080fd5b506102d4610b03565b6040516102e191906147ff565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190614072565b610b95565b60405161031e919061475b565b60405180910390f35b34801561033357600080fd5b5061033c610c1a565b60405161034991906147ff565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613f39565b610ca8565b005b34801561038757600080fd5b50610390610dc0565b60405161039d9190614c41565b60405180910390f35b3480156103b257600080fd5b506103bb610dcd565b6040516103c89190614c41565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190613f75565b610dd2565b005b34801561040657600080fd5b50610421600480360381019061041c9190613e33565b610fdc565b005b34801561042f57600080fd5b5061044a60048036038101906104459190613f39565b61103c565b6040516104579190614c41565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190613fb6565b6110e1565b005b34801561049557600080fd5b506104b060048036038101906104ab9190613e33565b61117a565b005b3480156104be57600080fd5b506104d960048036038101906104d49190614072565b61119a565b6040516104e69190614c41565b60405180910390f35b3480156104fb57600080fd5b50610504611231565b60405161051191906147e4565b60405180910390f35b34801561052657600080fd5b5061052f611244565b60405161053c91906147e4565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190614031565b611257565b005b34801561057a57600080fd5b506105836112ed565b604051610590919061475b565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190614072565b611313565b6040516105cd919061475b565b60405180910390f35b3480156105e257600080fd5b506105eb6113c5565b6040516105f891906147e4565b60405180910390f35b34801561060d57600080fd5b506106166113d8565b6040516106239190614c41565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190613dce565b6113dd565b6040516106609190614c41565b60405180910390f35b34801561067557600080fd5b5061067e611495565b005b34801561068c57600080fd5b506106a760048036038101906106a29190613fb6565b61151d565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190613dce565b6115b6565b6040516106dd91906147c2565b60405180910390f35b3480156106f257600080fd5b506106fb6116b0565b005b34801561070957600080fd5b50610712611855565b60405161071f919061475b565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190614072565b61187f565b005b34801561075d57600080fd5b50610766611905565b60405161077391906147ff565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190613f75565b611997565b005b3480156107b157600080fd5b506107cc60048036038101906107c79190614072565b611ba1565b005b3480156107da57600080fd5b506107e3611cdf565b6040516107f09190614c41565b60405180910390f35b610813600480360381019061080e9190614072565b611ce5565b005b34801561082157600080fd5b5061083c60048036038101906108379190613efd565b612168565b005b34801561084a57600080fd5b5061085361217e565b005b34801561086157600080fd5b5061086a612217565b604051610877919061475b565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190613e82565b61223d565b005b3480156108b557600080fd5b506108be61229f565b6040516108cb91906147ff565b60405180910390f35b3480156108e057600080fd5b506108fb60048036038101906108f69190614072565b61232d565b60405161090891906147ff565b60405180910390f35b34801561091d57600080fd5b50610926612486565b60405161093391906147ff565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613dce565b612514565b60405161097091906147e4565b60405180910390f35b34801561098557600080fd5b5061098e612534565b60405161099b919061475b565b60405180910390f35b3480156109b057600080fd5b506109cb60048036038101906109c69190613df7565b61255a565b6040516109d891906147e4565b60405180910390f35b3480156109ed57600080fd5b506109f66125ee565b604051610a03919061475b565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e9190614031565b612614565b005b348015610a4157600080fd5b50610a5c6004803603810190610a579190613dce565b6126aa565b005b348015610a6a57600080fd5b50610a736127a2565b604051610a809190614c41565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afc5750610afb826127a8565b5b9050919050565b606060008054610b1290614f76565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3e90614f76565b8015610b8b5780601f10610b6057610100808354040283529160200191610b8b565b820191906000526020600020905b815481529060010190602001808311610b6e57829003601f168201915b5050505050905090565b6000610ba08261288a565b610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690614aa1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610c2790614f76565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5390614f76565b8015610ca05780601f10610c7557610100808354040283529160200191610ca0565b820191906000526020600020905b815481529060010190602001808311610c8357829003601f168201915b505050505081565b6000610cb382611313565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90614b61565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d436128f6565b73ffffffffffffffffffffffffffffffffffffffff161480610d725750610d7181610d6c6128f6565b61255a565b5b610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da8906149e1565b60405180910390fd5b610dbb83836128fe565b505050565b6000600880549050905090565b600381565b610dda6128f6565b73ffffffffffffffffffffffffffffffffffffffff16610df8611855565b73ffffffffffffffffffffffffffffffffffffffff1614610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590614ae1565b60405180910390fd5b60005b8151811015610fd85760001515600e6000848481518110610e9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490614c21565b60405180910390fd5b6001600e6000848481518110610f6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610fd090614fd9565b915050610e51565b5050565b610fed610fe76128f6565b826129b7565b61102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390614ba1565b60405180910390fd5b611037838383612a95565b505050565b6000611047836113dd565b8210611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90614861565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110e96128f6565b73ffffffffffffffffffffffffffffffffffffffff16611107611855565b73ffffffffffffffffffffffffffffffffffffffff161461115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490614ae1565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b6111958383836040518060200160405280600081525061223d565b505050565b60006111a4610dc0565b82106111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90614bc1565b60405180910390fd5b6008828154811061121f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601060009054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b61125f6128f6565b73ffffffffffffffffffffffffffffffffffffffff1661127d611855565b73ffffffffffffffffffffffffffffffffffffffff16146112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca90614ae1565b60405180910390fd5b80600d90805190602001906112e9929190613b5c565b5050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b390614a21565b60405180910390fd5b80915050919050565b600a60149054906101000a900460ff1681565b600a81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144590614a01565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61149d6128f6565b73ffffffffffffffffffffffffffffffffffffffff166114bb611855565b73ffffffffffffffffffffffffffffffffffffffff1614611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890614ae1565b60405180910390fd5b61151b6000612cf1565b565b6115256128f6565b73ffffffffffffffffffffffffffffffffffffffff16611543611855565b73ffffffffffffffffffffffffffffffffffffffff1614611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090614ae1565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b606060006115c3836113dd565b905060008167ffffffffffffffff811115611607577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116355781602001602082028036833780820191505090505b50905060005b828110156116a55761164d858261103c565b828281518110611686577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061169d90614fd9565b91505061163b565b508092505050919050565b6116b86128f6565b73ffffffffffffffffffffffffffffffffffffffff166116d6611855565b73ffffffffffffffffffffffffffffffffffffffff161461172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390614ae1565b60405180910390fd5b600047905060008111611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176b906149a1565b60405180910390fd5b60006064826117839190614e01565b90506117c9601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660036064846117ba9190614e32565b6117c49190614e01565b612db7565b61180d601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660036064846117fe9190614e32565b6118089190614e01565b612db7565b611851601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660036064846118429190614e32565b61184c9190614e01565b612db7565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118876128f6565b73ffffffffffffffffffffffffffffffffffffffff166118a5611855565b73ffffffffffffffffffffffffffffffffffffffff16146118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290614ae1565b60405180910390fd5b80600c8190555050565b60606001805461191490614f76565b80601f016020809104026020016040519081016040528092919081815260200182805461194090614f76565b801561198d5780601f106119625761010080835404028352916020019161198d565b820191906000526020600020905b81548152906001019060200180831161197057829003601f168201915b5050505050905090565b61199f6128f6565b73ffffffffffffffffffffffffffffffffffffffff166119bd611855565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90614ae1565b60405180910390fd5b60005b8151811015611b9d5760011515600e6000848481518110611a60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990614961565b60405180910390fd5b6000600e6000848481518110611b31577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b9590614fd9565b915050611a16565b5050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c28906149c1565b60405180910390fd5b600b54811115611c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6d90614a81565b60405180910390fd5b80600b6000828254611c889190614e8c565b925050819055506000611c99610dc0565b905060005b82811015611cda57611cc73360018385611cb89190614dab565b611cc29190614dab565b612e68565b8080611cd290614fd9565b915050611c9e565b505050565b600c5481565b6000611cef610dc0565b9050600a60159054906101000a900460ff1615611f245760011515600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9090614a41565b60405180910390fd5b600082118015611daa575060038211155b611de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de090614981565b60405180910390fd5b611a0a8282611df89190614dab565b1115611e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e30906148e1565b60405180910390fd5b600382611e45336113dd565b611e4f9190614dab565b1115611e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8790614c01565b60405180910390fd5b81600c54611e9e9190614e32565b3414611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed690614be1565b60405180910390fd5b60005b82811015611f1e57611f0b3360018385611efc9190614dab565b611f069190614dab565b612e68565b8080611f1690614fd9565b915050611ee2565b50612164565b600a60149054906101000a900460ff16156120c457600082118015611f4a5750600a8211155b611f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8090614841565b60405180910390fd5b611a0a8282611f989190614dab565b1115611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd0906148e1565b60405180910390fd5b600a82611fe5336113dd565b611fef9190614dab565b1115612030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202790614821565b60405180910390fd5b81600c5461203e9190614e32565b341461207f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207690614be1565b60405180910390fd5b60005b828110156120be576120ab336001838561209c9190614dab565b6120a69190614dab565b612e68565b80806120b690614fd9565b915050612082565b50612163565b600a60159054906101000a900460ff16612113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210a90614ac1565b60405180910390fd5b600a60149054906101000a900460ff16612162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215990614b41565b60405180910390fd5b5b5b5050565b61217a6121736128f6565b8383612e86565b5050565b6121866128f6565b73ffffffffffffffffffffffffffffffffffffffff166121a4611855565b73ffffffffffffffffffffffffffffffffffffffff16146121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190614ae1565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61224e6122486128f6565b836129b7565b61228d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228490614ba1565b60405180910390fd5b61229984848484612ff3565b50505050565b600f80546122ac90614f76565b80601f01602080910402602001604051908101604052809291908181526020018280546122d890614f76565b80156123255780601f106122fa57610100808354040283529160200191612325565b820191906000526020600020905b81548152906001019060200180831161230857829003601f168201915b505050505081565b60606123388261288a565b612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90614b21565b60405180910390fd5b60001515601060009054906101000a900460ff161515141561242557601180546123a090614f76565b80601f01602080910402602001604051908101604052809291908181526020018280546123cc90614f76565b80156124195780601f106123ee57610100808354040283529160200191612419565b820191906000526020600020905b8154815290600101906020018083116123fc57829003601f168201915b50505050509050612481565b600061242f61304f565b9050600081511161244f576040518060200160405280600081525061247d565b80612459846130e1565b600f60405160200161246d93929190614715565b6040516020818303038152906040525b9150505b919050565b600d805461249390614f76565b80601f01602080910402602001604051908101604052809291908181526020018280546124bf90614f76565b801561250c5780601f106124e15761010080835404028352916020019161250c565b820191906000526020600020905b8154815290600101906020018083116124ef57829003601f168201915b505050505081565b600e6020528060005260406000206000915054906101000a900460ff1681565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61261c6128f6565b73ffffffffffffffffffffffffffffffffffffffff1661263a611855565b73ffffffffffffffffffffffffffffffffffffffff1614612690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268790614ae1565b60405180910390fd5b80601190805190602001906126a6929190613b5c565b5050565b6126b26128f6565b73ffffffffffffffffffffffffffffffffffffffff166126d0611855565b73ffffffffffffffffffffffffffffffffffffffff1614612726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271d90614ae1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278d906148a1565b60405180910390fd5b61279f81612cf1565b50565b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061287357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061288357506128828261328e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661297183611313565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006129c28261288a565b612a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f890614941565b60405180910390fd5b6000612a0c83611313565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a7b57508373ffffffffffffffffffffffffffffffffffffffff16612a6384610b95565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a8c5750612a8b818561255a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ab582611313565b73ffffffffffffffffffffffffffffffffffffffff1614612b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0290614b01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7290614901565b60405180910390fd5b612b868383836132f8565b612b916000826128fe565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612be19190614e8c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c389190614dab565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612ddd90614746565b60006040518083038185875af1925050503d8060008114612e1a576040519150601f19603f3d011682016040523d82523d6000602084013e612e1f565b606091505b5050905080612e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5a90614b81565b60405180910390fd5b505050565b612e8282826040518060200160405280600081525061340c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eec90614921565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fe691906147e4565b60405180910390a3505050565b612ffe848484612a95565b61300a84848484613467565b613049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304090614881565b60405180910390fd5b50505050565b6060600d805461305e90614f76565b80601f016020809104026020016040519081016040528092919081815260200182805461308a90614f76565b80156130d75780601f106130ac576101008083540402835291602001916130d7565b820191906000526020600020905b8154815290600101906020018083116130ba57829003601f168201915b5050505050905090565b60606000821415613129576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613289565b600082905060005b6000821461315b57808061314490614fd9565b915050600a826131549190614e01565b9150613131565b60008167ffffffffffffffff81111561319d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131cf5781602001600182028036833780820191505090505b5090505b60008514613282576001826131e89190614e8c565b9150600a856131f79190615022565b60306132039190614dab565b60f81b81838151811061323f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561327b9190614e01565b94506131d3565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6133038383836135fe565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133465761334181613603565b613385565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461338457613383838261364c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133c8576133c3816137b9565b613407565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146134065761340582826138fc565b5b5b505050565b613416838361397b565b6134236000848484613467565b613462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345990614881565b60405180910390fd5b505050565b60006134888473ffffffffffffffffffffffffffffffffffffffff16613b49565b156135f1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134b16128f6565b8786866040518563ffffffff1660e01b81526004016134d39493929190614776565b602060405180830381600087803b1580156134ed57600080fd5b505af192505050801561351e57506040513d601f19601f8201168201806040525081019061351b9190614008565b60015b6135a1573d806000811461354e576040519150601f19603f3d011682016040523d82523d6000602084013e613553565b606091505b50600081511415613599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359090614881565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135f6565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613659846113dd565b6136639190614e8c565b9050600060076000848152602001908152602001600020549050818114613748576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137cd9190614e8c565b9050600060096000848152602001908152602001600020549050600060088381548110613823577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061386b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806138e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613907836113dd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e290614a61565b60405180910390fd5b6139f48161288a565b15613a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2b906148c1565b60405180910390fd5b613a40600083836132f8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a909190614dab565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613b6890614f76565b90600052602060002090601f016020900481019282613b8a5760008555613bd1565b82601f10613ba357805160ff1916838001178555613bd1565b82800160010185558215613bd1579182015b82811115613bd0578251825591602001919060010190613bb5565b5b509050613bde9190613be2565b5090565b5b80821115613bfb576000816000905550600101613be3565b5090565b6000613c12613c0d84614c81565b614c5c565b90508083825260208201905082856020860282011115613c3157600080fd5b60005b85811015613c615781613c478882613ce7565b845260208401935060208301925050600181019050613c34565b5050509392505050565b6000613c7e613c7984614cad565b614c5c565b905082815260208101848484011115613c9657600080fd5b613ca1848285614f34565b509392505050565b6000613cbc613cb784614cde565b614c5c565b905082815260208101848484011115613cd457600080fd5b613cdf848285614f34565b509392505050565b600081359050613cf68161593e565b92915050565b600082601f830112613d0d57600080fd5b8135613d1d848260208601613bff565b91505092915050565b600081359050613d3581615955565b92915050565b600081359050613d4a8161596c565b92915050565b600081519050613d5f8161596c565b92915050565b600082601f830112613d7657600080fd5b8135613d86848260208601613c6b565b91505092915050565b600082601f830112613da057600080fd5b8135613db0848260208601613ca9565b91505092915050565b600081359050613dc881615983565b92915050565b600060208284031215613de057600080fd5b6000613dee84828501613ce7565b91505092915050565b60008060408385031215613e0a57600080fd5b6000613e1885828601613ce7565b9250506020613e2985828601613ce7565b9150509250929050565b600080600060608486031215613e4857600080fd5b6000613e5686828701613ce7565b9350506020613e6786828701613ce7565b9250506040613e7886828701613db9565b9150509250925092565b60008060008060808587031215613e9857600080fd5b6000613ea687828801613ce7565b9450506020613eb787828801613ce7565b9350506040613ec887828801613db9565b925050606085013567ffffffffffffffff811115613ee557600080fd5b613ef187828801613d65565b91505092959194509250565b60008060408385031215613f1057600080fd5b6000613f1e85828601613ce7565b9250506020613f2f85828601613d26565b9150509250929050565b60008060408385031215613f4c57600080fd5b6000613f5a85828601613ce7565b9250506020613f6b85828601613db9565b9150509250929050565b600060208284031215613f8757600080fd5b600082013567ffffffffffffffff811115613fa157600080fd5b613fad84828501613cfc565b91505092915050565b600060208284031215613fc857600080fd5b6000613fd684828501613d26565b91505092915050565b600060208284031215613ff157600080fd5b6000613fff84828501613d3b565b91505092915050565b60006020828403121561401a57600080fd5b600061402884828501613d50565b91505092915050565b60006020828403121561404357600080fd5b600082013567ffffffffffffffff81111561405d57600080fd5b61406984828501613d8f565b91505092915050565b60006020828403121561408457600080fd5b600061409284828501613db9565b91505092915050565b60006140a783836146f7565b60208301905092915050565b6140bc81614ec0565b82525050565b60006140cd82614d34565b6140d78185614d62565b93506140e283614d0f565b8060005b838110156141135781516140fa888261409b565b975061410583614d55565b9250506001810190506140e6565b5085935050505092915050565b61412981614ed2565b82525050565b600061413a82614d3f565b6141448185614d73565b9350614154818560208601614f43565b61415d8161510f565b840191505092915050565b600061417382614d4a565b61417d8185614d8f565b935061418d818560208601614f43565b6141968161510f565b840191505092915050565b60006141ac82614d4a565b6141b68185614da0565b93506141c6818560208601614f43565b80840191505092915050565b600081546141df81614f76565b6141e98186614da0565b94506001821660008114614204576001811461421557614248565b60ff19831686528186019350614248565b61421e85614d1f565b60005b8381101561424057815481890152600182019150602081019050614221565b838801955050505b50505092915050565b600061425e602883614d8f565b915061426982615120565b604082019050919050565b6000614281602d83614d8f565b915061428c8261516f565b604082019050919050565b60006142a4602b83614d8f565b91506142af826151be565b604082019050919050565b60006142c7603283614d8f565b91506142d28261520d565b604082019050919050565b60006142ea602683614d8f565b91506142f58261525c565b604082019050919050565b600061430d601c83614d8f565b9150614318826152ab565b602082019050919050565b6000614330601f83614d8f565b915061433b826152d4565b602082019050919050565b6000614353602483614d8f565b915061435e826152fd565b604082019050919050565b6000614376601983614d8f565b91506143818261534c565b602082019050919050565b6000614399602c83614d8f565b91506143a482615375565b604082019050919050565b60006143bc600983614d8f565b91506143c7826153c4565b602082019050919050565b60006143df602c83614d8f565b91506143ea826153ed565b604082019050919050565b6000614402601f83614d8f565b915061440d8261543c565b602082019050919050565b6000614425601d83614d8f565b915061443082615465565b602082019050919050565b6000614448603883614d8f565b91506144538261548e565b604082019050919050565b600061446b602a83614d8f565b9150614476826154dd565b604082019050919050565b600061448e602983614d8f565b91506144998261552c565b604082019050919050565b60006144b1601283614d8f565b91506144bc8261557b565b602082019050919050565b60006144d4602083614d8f565b91506144df826155a4565b602082019050919050565b60006144f7602283614d8f565b9150614502826155cd565b604082019050919050565b600061451a602c83614d8f565b91506145258261561c565b604082019050919050565b600061453d601483614d8f565b91506145488261566b565b602082019050919050565b6000614560602083614d8f565b915061456b82615694565b602082019050919050565b6000614583602983614d8f565b915061458e826156bd565b604082019050919050565b60006145a6602f83614d8f565b91506145b18261570c565b604082019050919050565b60006145c9601183614d8f565b91506145d48261575b565b602082019050919050565b60006145ec602183614d8f565b91506145f782615784565b604082019050919050565b600061460f600083614d84565b915061461a826157d3565b600082019050919050565b6000614632601083614d8f565b915061463d826157d6565b602082019050919050565b6000614655603183614d8f565b9150614660826157ff565b604082019050919050565b6000614678602c83614d8f565b91506146838261584e565b604082019050919050565b600061469b601883614d8f565b91506146a68261589d565b602082019050919050565b60006146be602783614d8f565b91506146c9826158c6565b604082019050919050565b60006146e1600b83614d8f565b91506146ec82615915565b602082019050919050565b61470081614f2a565b82525050565b61470f81614f2a565b82525050565b600061472182866141a1565b915061472d82856141a1565b915061473982846141d2565b9150819050949350505050565b600061475182614602565b9150819050919050565b600060208201905061477060008301846140b3565b92915050565b600060808201905061478b60008301876140b3565b61479860208301866140b3565b6147a56040830185614706565b81810360608301526147b7818461412f565b905095945050505050565b600060208201905081810360008301526147dc81846140c2565b905092915050565b60006020820190506147f96000830184614120565b92915050565b600060208201905081810360008301526148198184614168565b905092915050565b6000602082019050818103600083015261483a81614251565b9050919050565b6000602082019050818103600083015261485a81614274565b9050919050565b6000602082019050818103600083015261487a81614297565b9050919050565b6000602082019050818103600083015261489a816142ba565b9050919050565b600060208201905081810360008301526148ba816142dd565b9050919050565b600060208201905081810360008301526148da81614300565b9050919050565b600060208201905081810360008301526148fa81614323565b9050919050565b6000602082019050818103600083015261491a81614346565b9050919050565b6000602082019050818103600083015261493a81614369565b9050919050565b6000602082019050818103600083015261495a8161438c565b9050919050565b6000602082019050818103600083015261497a816143af565b9050919050565b6000602082019050818103600083015261499a816143d2565b9050919050565b600060208201905081810360008301526149ba816143f5565b9050919050565b600060208201905081810360008301526149da81614418565b9050919050565b600060208201905081810360008301526149fa8161443b565b9050919050565b60006020820190508181036000830152614a1a8161445e565b9050919050565b60006020820190508181036000830152614a3a81614481565b9050919050565b60006020820190508181036000830152614a5a816144a4565b9050919050565b60006020820190508181036000830152614a7a816144c7565b9050919050565b60006020820190508181036000830152614a9a816144ea565b9050919050565b60006020820190508181036000830152614aba8161450d565b9050919050565b60006020820190508181036000830152614ada81614530565b9050919050565b60006020820190508181036000830152614afa81614553565b9050919050565b60006020820190508181036000830152614b1a81614576565b9050919050565b60006020820190508181036000830152614b3a81614599565b9050919050565b60006020820190508181036000830152614b5a816145bc565b9050919050565b60006020820190508181036000830152614b7a816145df565b9050919050565b60006020820190508181036000830152614b9a81614625565b9050919050565b60006020820190508181036000830152614bba81614648565b9050919050565b60006020820190508181036000830152614bda8161466b565b9050919050565b60006020820190508181036000830152614bfa8161468e565b9050919050565b60006020820190508181036000830152614c1a816146b1565b9050919050565b60006020820190508181036000830152614c3a816146d4565b9050919050565b6000602082019050614c566000830184614706565b92915050565b6000614c66614c77565b9050614c728282614fa8565b919050565b6000604051905090565b600067ffffffffffffffff821115614c9c57614c9b6150e0565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614cc857614cc76150e0565b5b614cd18261510f565b9050602081019050919050565b600067ffffffffffffffff821115614cf957614cf86150e0565b5b614d028261510f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614db682614f2a565b9150614dc183614f2a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614df657614df5615053565b5b828201905092915050565b6000614e0c82614f2a565b9150614e1783614f2a565b925082614e2757614e26615082565b5b828204905092915050565b6000614e3d82614f2a565b9150614e4883614f2a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e8157614e80615053565b5b828202905092915050565b6000614e9782614f2a565b9150614ea283614f2a565b925082821015614eb557614eb4615053565b5b828203905092915050565b6000614ecb82614f0a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f61578082015181840152602081019050614f46565b83811115614f70576000848401525b50505050565b60006002820490506001821680614f8e57607f821691505b60208210811415614fa257614fa16150b1565b5b50919050565b614fb18261510f565b810181811067ffffffffffffffff82111715614fd057614fcf6150e0565b5b80604052505050565b6000614fe482614f2a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561501757615016615053565b5b600182019050919050565b600061502d82614f2a565b915061503883614f2a565b92508261504857615047615082565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43616e206f6e6c79206d696e7420757020746f20313020746f6b656e7320706560008201527f722077616c6c6574000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74206265747765656e203120616e64203130207460008201527f6f6b656e73206174206f6e636500000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e2774206d696e74206d6f7265207468616e206d617820737570706c7900600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6e6f742065786973740000000000000000000000000000000000000000000000600082015250565b7f43616e206f6e6c79206d696e74206265747765656e203120616e64203320746f60008201527f6b656e73206174206f6e63650000000000000000000000000000000000000000602082015250565b7f5468657265206973206e6f2062616c616e636520746f20776974686472617700600082015250565b7f446f6e27742068617665207065726d697373696f6e20746f206d696e74000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f742070726573616c65206d656d6265720000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e27742072657365727665206d6f7265207468616e2073657420616d6f7560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f50726573616c652069736e277420616374697665000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c652069736e277420616374697665000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f57726f6e6720616d6f756e74206f66204554482073656e740000000000000000600082015250565b7f43616e206f6e6c79206d696e7420757020746f203320746f6b656e732070657260008201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b7f616c726561647920736574000000000000000000000000000000000000000000600082015250565b61594781614ec0565b811461595257600080fd5b50565b61595e81614ed2565b811461596957600080fd5b50565b61597581614ede565b811461598057600080fd5b50565b61598c81614f2a565b811461599757600080fd5b5056fea2646970667358221220cf2fad374b3d41582cab830b3073fe2d444d66cb8cd3f6b255737914dc4c4d5564736f6c63430008040033
Loading...
Loading
Loading...
Loading
[ 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.