ERC-721
Overview
Max Total Supply
99 GG
Holders
66
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 GGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Arcade
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.0; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; contract Arcade is ERC721Enumerable, Ownable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIds; string public baseTokenURI; uint public constant supply = 99; bool public whitelistSale = false; bool public reserveListSale = false; mapping(address => bool) private mintedWallets; address[] private whitelistAddr; address[] private reserveListAddr; constructor(string memory baseURI) ERC721("4rcade", "GG") { setBaseURI(baseURI); } modifier isUser() { require(tx.origin == msg.sender, "not hooman"); _; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory _baseTokenURI) public onlyOwner { baseTokenURI = _baseTokenURI; } function toggleWhitelistSale() external onlyOwner { whitelistSale = !whitelistSale; } function toggleReserveListSale() external onlyOwner { reserveListSale = !reserveListSale; } function reserveNFTs(uint numTokens) public onlyOwner { uint tokensMinted = _tokenIds.current(); require(tokensMinted.add(numTokens) <= supply, "exceeds supply"); for (uint i = 0; i < numTokens; i++) { _mintToken(); } } function isWhitelisted(address addy) private view returns (bool) { for (uint i = 0; i < whitelistAddr.length; i++) { if (whitelistAddr[i] == addy) return true; } return false; } function isReserveListed(address addy) private view returns (bool) { for (uint i = 0; i < reserveListAddr.length; i++) { if (reserveListAddr[i] == addy) return true; } return false; } function mintWhitelist() public isUser { require(whitelistSale, "whitelist mint not active"); require(isWhitelisted(msg.sender), "sorry, not on whitelist"); require(!mintedWallets[msg.sender], "already minted"); uint tokensMinted = _tokenIds.current(); require(tokensMinted.add(1) <= supply, "exceeds supply"); _mintToken(); mintedWallets[msg.sender] = true; } function mintReserveList() public isUser { require(reserveListSale, "reserve list mint not active"); require(isReserveListed(msg.sender), "sorry, not on reserve list"); require(!mintedWallets[msg.sender], "already minted"); uint tokensMinted = _tokenIds.current(); require(tokensMinted.add(1) <= supply, "exceeds supply"); _mintToken(); mintedWallets[msg.sender] = true; } function _mintToken() private { _tokenIds.increment(); _mint(msg.sender, _tokenIds.current()); } function reserveListAdd(address[] memory addys) public onlyOwner { for (uint i = 0; i < addys.length; i++) { reserveListAddr.push(addys[i]); } } function whitelistAdd(address[] memory addys) public onlyOwner { for (uint i = 0; i < addys.length; i++) { whitelistAddr.push(addys[i]); } } function withdraw() public payable onlyOwner { uint balance = address(this).balance; require(balance > 0, "youre broke"); (bool success, ) = (msg.sender).call{value: balance}(""); require(success, "failed withdrawal"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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); /** * @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 (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"mintReserveList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addys","type":"address[]"}],"name":"reserveListAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"reserveNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"toggleReserveListSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addys","type":"address[]"}],"name":"whitelistAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055503480156200004757600080fd5b50604051620051953803806200519583398181016040528101906200006d91906200040a565b6040518060400160405280600681526020017f34726361646500000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f47470000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f1929190620002e8565b5080600190805190602001906200010a929190620002e8565b5050506200012d620001216200014560201b60201c565b6200014d60201b60201c565b6200013e816200021360201b60201c565b5062000642565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002236200014560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000249620002be60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002999062000476565b60405180910390fd5b80600c9080519060200190620002ba929190620002e8565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002f6906200053e565b90600052602060002090601f0160209004810192826200031a576000855562000366565b82601f106200033557805160ff191683800117855562000366565b8280016001018555821562000366579182015b828111156200036557825182559160200191906001019062000348565b5b50905062000375919062000379565b5090565b5b80821115620003945760008160009055506001016200037a565b5090565b6000620003af620003a984620004c1565b62000498565b905082815260208101848484011115620003c857600080fd5b620003d584828562000508565b509392505050565b600082601f830112620003ef57600080fd5b81516200040184826020860162000398565b91505092915050565b6000602082840312156200041d57600080fd5b600082015167ffffffffffffffff8111156200043857600080fd5b6200044684828501620003dd565b91505092915050565b60006200045e602083620004f7565b91506200046b8262000619565b602082019050919050565b6000602082019050818103600083015262000491816200044f565b9050919050565b6000620004a4620004b7565b9050620004b2828262000574565b919050565b6000604051905090565b600067ffffffffffffffff821115620004df57620004de620005d9565b5b620004ea8262000608565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005285780820151818401526020810190506200050b565b8381111562000538576000848401525b50505050565b600060028204905060018216806200055757607f821691505b602082108114156200056e576200056d620005aa565b5b50919050565b6200057f8262000608565b810181811067ffffffffffffffff82111715620005a157620005a0620005d9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614b4380620006526000396000f3fe6080604052600436106101e35760003560e01c806355f804b3116101025780639cf9494311610095578063c87b56dd11610064578063c87b56dd14610671578063d547cfb7146106ae578063e985e9c5146106d9578063f2fde38b14610716576101e3565b80639cf94943146105cd578063a22cb465146105f6578063b88d4fde1461061f578063bc7df09114610648576101e3565b806370a08231116100d157806370a0823114610523578063715018a6146105605780638da5cb5b1461057757806395d89b41146105a2576101e3565b806355f804b31461048f57806359eda1b5146104b85780636352211e146104cf5780636f06bf491461050c576101e3565b8063246f060c1161017a5780633ccfd60b116101495780633ccfd60b146103f457806342842e0e146103fe578063498b4a76146104275780634f6ccce714610452576101e3565b8063246f060c1461034c5780632d3df31f146103755780632f745c591461038c57806331ffd6f1146103c9576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630971383d146102e157806318160ddd146102f857806323b872dd14610323576101e3565b806301ffc9a7146101e8578063047fc9aa1461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613673565b61073f565b60405161021c9190613c73565b60405180910390f35b34801561023157600080fd5b5061023a6107b9565b6040516102479190614010565b60405180910390f35b34801561025c57600080fd5b506102656107be565b6040516102729190613c8e565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190613706565b610850565b6040516102af9190613c0c565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906135f6565b6108d5565b005b3480156102ed57600080fd5b506102f66109ed565b005b34801561030457600080fd5b5061030d610c47565b60405161031a9190614010565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906134f0565b610c54565b005b34801561035857600080fd5b50610373600480360381019061036e9190613632565b610cb4565b005b34801561038157600080fd5b5061038a610df6565b005b34801561039857600080fd5b506103b360048036038101906103ae91906135f6565b611050565b6040516103c09190614010565b60405180910390f35b3480156103d557600080fd5b506103de6110f5565b6040516103eb9190613c73565b60405180910390f35b6103fc611108565b005b34801561040a57600080fd5b50610425600480360381019061042091906134f0565b61127c565b005b34801561043357600080fd5b5061043c61129c565b6040516104499190613c73565b60405180910390f35b34801561045e57600080fd5b5061047960048036038101906104749190613706565b6112af565b6040516104869190614010565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b191906136c5565b611346565b005b3480156104c457600080fd5b506104cd6113dc565b005b3480156104db57600080fd5b506104f660048036038101906104f19190613706565b611484565b6040516105039190613c0c565b60405180910390f35b34801561051857600080fd5b50610521611536565b005b34801561052f57600080fd5b5061054a6004803603810190610545919061348b565b6115de565b6040516105579190614010565b60405180910390f35b34801561056c57600080fd5b50610575611696565b005b34801561058357600080fd5b5061058c61171e565b6040516105999190613c0c565b60405180910390f35b3480156105ae57600080fd5b506105b7611748565b6040516105c49190613c8e565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef9190613632565b6117da565b005b34801561060257600080fd5b5061061d600480360381019061061891906135ba565b61191c565b005b34801561062b57600080fd5b506106466004803603810190610641919061353f565b611932565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613706565b611994565b005b34801561067d57600080fd5b5061069860048036038101906106939190613706565b611a9f565b6040516106a59190613c8e565b60405180910390f35b3480156106ba57600080fd5b506106c3611b46565b6040516106d09190613c8e565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb91906134b4565b611bd4565b60405161070d9190613c73565b60405180910390f35b34801561072257600080fd5b5061073d6004803603810190610738919061348b565b611c68565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b257506107b182611d60565b5b9050919050565b606381565b6060600080546107cd9061429d565b80601f01602080910402602001604051908101604052809291908181526020018280546107f99061429d565b80156108465780601f1061081b57610100808354040283529160200191610846565b820191906000526020600020905b81548152906001019060200180831161082957829003601f168201915b5050505050905090565b600061085b82611e42565b61089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190613ed0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e082611484565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094890613f30565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610970611eae565b73ffffffffffffffffffffffffffffffffffffffff16148061099f575061099e81610999611eae565b611bd4565b5b6109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590613e50565b60405180910390fd5b6109e88383611eb6565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5290613df0565b60405180910390fd5b600d60019054906101000a900460ff16610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190613fb0565b60405180910390fd5b610ab333611f6f565b610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae990613db0565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690613ff0565b60405180910390fd5b6000610b8b600b612044565b90506063610ba360018361205290919063ffffffff16565b1115610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb90613f50565b60405180910390fd5b610bec612068565b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600880549050905090565b610c65610c5f611eae565b82612087565b610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90613f70565b60405180910390fd5b610caf838383612165565b505050565b610cbc611eae565b73ffffffffffffffffffffffffffffffffffffffff16610cda61171e565b73ffffffffffffffffffffffffffffffffffffffff1614610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613ef0565b60405180910390fd5b60005b8151811015610df2576010828281518110610d77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080610dea90614300565b915050610d33565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90613df0565b60405180910390fd5b600d60009054906101000a900460ff16610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613fd0565b60405180910390fd5b610ebc336123cc565b610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290613e10565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613ff0565b60405180910390fd5b6000610f94600b612044565b90506063610fac60018361205290919063ffffffff16565b1115610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490613f50565b60405180910390fd5b610ff5612068565b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061105b836115de565b821061109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390613cd0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600d60009054906101000a900460ff1681565b611110611eae565b73ffffffffffffffffffffffffffffffffffffffff1661112e61171e565b73ffffffffffffffffffffffffffffffffffffffff1614611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90613ef0565b60405180910390fd5b6000479050600081116111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390613d70565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516111f290613bf7565b60006040518083038185875af1925050503d806000811461122f576040519150601f19603f3d011682016040523d82523d6000602084013e611234565b606091505b5050905080611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90613cb0565b60405180910390fd5b5050565b61129783838360405180602001604052806000815250611932565b505050565b600d60019054906101000a900460ff1681565b60006112b9610c47565b82106112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f190613f90565b60405180910390fd5b60088281548110611334577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61134e611eae565b73ffffffffffffffffffffffffffffffffffffffff1661136c61171e565b73ffffffffffffffffffffffffffffffffffffffff16146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990613ef0565b60405180910390fd5b80600c90805190602001906113d8929190613219565b5050565b6113e4611eae565b73ffffffffffffffffffffffffffffffffffffffff1661140261171e565b73ffffffffffffffffffffffffffffffffffffffff1614611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613ef0565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490613e90565b60405180910390fd5b80915050919050565b61153e611eae565b73ffffffffffffffffffffffffffffffffffffffff1661155c61171e565b73ffffffffffffffffffffffffffffffffffffffff16146115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a990613ef0565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164690613e70565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61169e611eae565b73ffffffffffffffffffffffffffffffffffffffff166116bc61171e565b73ffffffffffffffffffffffffffffffffffffffff1614611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990613ef0565b60405180910390fd5b61171c60006124a1565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117579061429d565b80601f01602080910402602001604051908101604052809291908181526020018280546117839061429d565b80156117d05780601f106117a5576101008083540402835291602001916117d0565b820191906000526020600020905b8154815290600101906020018083116117b357829003601f168201915b5050505050905090565b6117e2611eae565b73ffffffffffffffffffffffffffffffffffffffff1661180061171e565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90613ef0565b60405180910390fd5b60005b815181101561191857600f82828151811061189d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808061191090614300565b915050611859565b5050565b61192e611927611eae565b8383612567565b5050565b61194361193d611eae565b83612087565b611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990613f70565b60405180910390fd5b61198e848484846126d4565b50505050565b61199c611eae565b73ffffffffffffffffffffffffffffffffffffffff166119ba61171e565b73ffffffffffffffffffffffffffffffffffffffff1614611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0790613ef0565b60405180910390fd5b6000611a1c600b612044565b90506063611a33838361205290919063ffffffff16565b1115611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90613f50565b60405180910390fd5b60005b82811015611a9a57611a87612068565b8080611a9290614300565b915050611a77565b505050565b6060611aaa82611e42565b611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090613f10565b60405180910390fd5b6000611af3612730565b90506000815111611b135760405180602001604052806000815250611b3e565b80611b1d846127c2565b604051602001611b2e929190613bd3565b6040516020818303038152906040525b915050919050565b600c8054611b539061429d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7f9061429d565b8015611bcc5780601f10611ba157610100808354040283529160200191611bcc565b820191906000526020600020905b815481529060010190602001808311611baf57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c70611eae565b73ffffffffffffffffffffffffffffffffffffffff16611c8e61171e565b73ffffffffffffffffffffffffffffffffffffffff1614611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90613ef0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b90613d10565b60405180910390fd5b611d5d816124a1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e2b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e3b5750611e3a8261296f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f2983611484565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080600090505b601080549050811015612039578273ffffffffffffffffffffffffffffffffffffffff1660108281548110611fd5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561202657600191505061203f565b808061203190614300565b915050611f77565b50600090505b919050565b600081600001549050919050565b60008183612060919061412c565b905092915050565b612072600b6129d9565b61208533612080600b612044565b6129ef565b565b600061209282611e42565b6120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c890613e30565b60405180910390fd5b60006120dc83611484565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061211e575061211d8185611bd4565b5b8061215c57508373ffffffffffffffffffffffffffffffffffffffff1661214484610850565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661218582611484565b73ffffffffffffffffffffffffffffffffffffffff16146121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d290613d30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561224b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224290613d90565b60405180910390fd5b612256838383612bc9565b612261600082611eb6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b191906141b3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612308919061412c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c7838383612cdd565b505050565b600080600090505b600f80549050811015612496578273ffffffffffffffffffffffffffffffffffffffff16600f8281548110612432577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561248357600191505061249c565b808061248e90614300565b9150506123d4565b50600090505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cd90613dd0565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126c79190613c73565b60405180910390a3505050565b6126df848484612165565b6126eb84848484612ce2565b61272a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272190613cf0565b60405180910390fd5b50505050565b6060600c805461273f9061429d565b80601f016020809104026020016040519081016040528092919081815260200182805461276b9061429d565b80156127b85780601f1061278d576101008083540402835291602001916127b8565b820191906000526020600020905b81548152906001019060200180831161279b57829003601f168201915b5050505050905090565b6060600082141561280a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061296a565b600082905060005b6000821461283c57808061282590614300565b915050600a826128359190614182565b9150612812565b60008167ffffffffffffffff81111561287e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128b05781602001600182028036833780820191505090505b5090505b60008514612963576001826128c991906141b3565b9150600a856128d89190614349565b60306128e4919061412c565b60f81b818381518110612920577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561295c9190614182565b94506128b4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5690613eb0565b60405180910390fd5b612a6881611e42565b15612aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9f90613d50565b60405180910390fd5b612ab460008383612bc9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b04919061412c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bc560008383612cdd565b5050565b612bd4838383612e79565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c1757612c1281612e7e565b612c56565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c5557612c548382612ec7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c9957612c9481613034565b612cd8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612cd757612cd68282613177565b5b5b505050565b505050565b6000612d038473ffffffffffffffffffffffffffffffffffffffff166131f6565b15612e6c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d2c611eae565b8786866040518563ffffffff1660e01b8152600401612d4e9493929190613c27565b602060405180830381600087803b158015612d6857600080fd5b505af1925050508015612d9957506040513d601f19601f82011682018060405250810190612d96919061369c565b60015b612e1c573d8060008114612dc9576040519150601f19603f3d011682016040523d82523d6000602084013e612dce565b606091505b50600081511415612e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0b90613cf0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e71565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ed4846115de565b612ede91906141b3565b9050600060076000848152602001908152602001600020549050818114612fc3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061304891906141b3565b905060006009600084815260200190815260200160002054905060006008838154811061309e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106130e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061315b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613182836115de565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546132259061429d565b90600052602060002090601f016020900481019282613247576000855561328e565b82601f1061326057805160ff191683800117855561328e565b8280016001018555821561328e579182015b8281111561328d578251825591602001919060010190613272565b5b50905061329b919061329f565b5090565b5b808211156132b85760008160009055506001016132a0565b5090565b60006132cf6132ca84614050565b61402b565b905080838252602082019050828560208602820111156132ee57600080fd5b60005b8581101561331e578161330488826133a4565b8452602084019350602083019250506001810190506132f1565b5050509392505050565b600061333b6133368461407c565b61402b565b90508281526020810184848401111561335357600080fd5b61335e84828561425b565b509392505050565b6000613379613374846140ad565b61402b565b90508281526020810184848401111561339157600080fd5b61339c84828561425b565b509392505050565b6000813590506133b381614ab1565b92915050565b600082601f8301126133ca57600080fd5b81356133da8482602086016132bc565b91505092915050565b6000813590506133f281614ac8565b92915050565b60008135905061340781614adf565b92915050565b60008151905061341c81614adf565b92915050565b600082601f83011261343357600080fd5b8135613443848260208601613328565b91505092915050565b600082601f83011261345d57600080fd5b813561346d848260208601613366565b91505092915050565b60008135905061348581614af6565b92915050565b60006020828403121561349d57600080fd5b60006134ab848285016133a4565b91505092915050565b600080604083850312156134c757600080fd5b60006134d5858286016133a4565b92505060206134e6858286016133a4565b9150509250929050565b60008060006060848603121561350557600080fd5b6000613513868287016133a4565b9350506020613524868287016133a4565b925050604061353586828701613476565b9150509250925092565b6000806000806080858703121561355557600080fd5b6000613563878288016133a4565b9450506020613574878288016133a4565b935050604061358587828801613476565b925050606085013567ffffffffffffffff8111156135a257600080fd5b6135ae87828801613422565b91505092959194509250565b600080604083850312156135cd57600080fd5b60006135db858286016133a4565b92505060206135ec858286016133e3565b9150509250929050565b6000806040838503121561360957600080fd5b6000613617858286016133a4565b925050602061362885828601613476565b9150509250929050565b60006020828403121561364457600080fd5b600082013567ffffffffffffffff81111561365e57600080fd5b61366a848285016133b9565b91505092915050565b60006020828403121561368557600080fd5b6000613693848285016133f8565b91505092915050565b6000602082840312156136ae57600080fd5b60006136bc8482850161340d565b91505092915050565b6000602082840312156136d757600080fd5b600082013567ffffffffffffffff8111156136f157600080fd5b6136fd8482850161344c565b91505092915050565b60006020828403121561371857600080fd5b600061372684828501613476565b91505092915050565b613738816141e7565b82525050565b613747816141f9565b82525050565b6000613758826140de565b61376281856140f4565b935061377281856020860161426a565b61377b81614436565b840191505092915050565b6000613791826140e9565b61379b8185614110565b93506137ab81856020860161426a565b6137b481614436565b840191505092915050565b60006137ca826140e9565b6137d48185614121565b93506137e481856020860161426a565b80840191505092915050565b60006137fd601183614110565b915061380882614447565b602082019050919050565b6000613820602b83614110565b915061382b82614470565b604082019050919050565b6000613843603283614110565b915061384e826144bf565b604082019050919050565b6000613866602683614110565b91506138718261450e565b604082019050919050565b6000613889602583614110565b91506138948261455d565b604082019050919050565b60006138ac601c83614110565b91506138b7826145ac565b602082019050919050565b60006138cf600b83614110565b91506138da826145d5565b602082019050919050565b60006138f2602483614110565b91506138fd826145fe565b604082019050919050565b6000613915601a83614110565b91506139208261464d565b602082019050919050565b6000613938601983614110565b915061394382614676565b602082019050919050565b600061395b600a83614110565b91506139668261469f565b602082019050919050565b600061397e601783614110565b9150613989826146c8565b602082019050919050565b60006139a1602c83614110565b91506139ac826146f1565b604082019050919050565b60006139c4603883614110565b91506139cf82614740565b604082019050919050565b60006139e7602a83614110565b91506139f28261478f565b604082019050919050565b6000613a0a602983614110565b9150613a15826147de565b604082019050919050565b6000613a2d602083614110565b9150613a388261482d565b602082019050919050565b6000613a50602c83614110565b9150613a5b82614856565b604082019050919050565b6000613a73602083614110565b9150613a7e826148a5565b602082019050919050565b6000613a96602f83614110565b9150613aa1826148ce565b604082019050919050565b6000613ab9602183614110565b9150613ac48261491d565b604082019050919050565b6000613adc600e83614110565b9150613ae78261496c565b602082019050919050565b6000613aff600083614105565b9150613b0a82614995565b600082019050919050565b6000613b22603183614110565b9150613b2d82614998565b604082019050919050565b6000613b45602c83614110565b9150613b50826149e7565b604082019050919050565b6000613b68601c83614110565b9150613b7382614a36565b602082019050919050565b6000613b8b601983614110565b9150613b9682614a5f565b602082019050919050565b6000613bae600e83614110565b9150613bb982614a88565b602082019050919050565b613bcd81614251565b82525050565b6000613bdf82856137bf565b9150613beb82846137bf565b91508190509392505050565b6000613c0282613af2565b9150819050919050565b6000602082019050613c21600083018461372f565b92915050565b6000608082019050613c3c600083018761372f565b613c49602083018661372f565b613c566040830185613bc4565b8181036060830152613c68818461374d565b905095945050505050565b6000602082019050613c88600083018461373e565b92915050565b60006020820190508181036000830152613ca88184613786565b905092915050565b60006020820190508181036000830152613cc9816137f0565b9050919050565b60006020820190508181036000830152613ce981613813565b9050919050565b60006020820190508181036000830152613d0981613836565b9050919050565b60006020820190508181036000830152613d2981613859565b9050919050565b60006020820190508181036000830152613d498161387c565b9050919050565b60006020820190508181036000830152613d698161389f565b9050919050565b60006020820190508181036000830152613d89816138c2565b9050919050565b60006020820190508181036000830152613da9816138e5565b9050919050565b60006020820190508181036000830152613dc981613908565b9050919050565b60006020820190508181036000830152613de98161392b565b9050919050565b60006020820190508181036000830152613e098161394e565b9050919050565b60006020820190508181036000830152613e2981613971565b9050919050565b60006020820190508181036000830152613e4981613994565b9050919050565b60006020820190508181036000830152613e69816139b7565b9050919050565b60006020820190508181036000830152613e89816139da565b9050919050565b60006020820190508181036000830152613ea9816139fd565b9050919050565b60006020820190508181036000830152613ec981613a20565b9050919050565b60006020820190508181036000830152613ee981613a43565b9050919050565b60006020820190508181036000830152613f0981613a66565b9050919050565b60006020820190508181036000830152613f2981613a89565b9050919050565b60006020820190508181036000830152613f4981613aac565b9050919050565b60006020820190508181036000830152613f6981613acf565b9050919050565b60006020820190508181036000830152613f8981613b15565b9050919050565b60006020820190508181036000830152613fa981613b38565b9050919050565b60006020820190508181036000830152613fc981613b5b565b9050919050565b60006020820190508181036000830152613fe981613b7e565b9050919050565b6000602082019050818103600083015261400981613ba1565b9050919050565b60006020820190506140256000830184613bc4565b92915050565b6000614035614046565b905061404182826142cf565b919050565b6000604051905090565b600067ffffffffffffffff82111561406b5761406a614407565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561409757614096614407565b5b6140a082614436565b9050602081019050919050565b600067ffffffffffffffff8211156140c8576140c7614407565b5b6140d182614436565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061413782614251565b915061414283614251565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141775761417661437a565b5b828201905092915050565b600061418d82614251565b915061419883614251565b9250826141a8576141a76143a9565b5b828204905092915050565b60006141be82614251565b91506141c983614251565b9250828210156141dc576141db61437a565b5b828203905092915050565b60006141f282614231565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561428857808201518184015260208101905061426d565b83811115614297576000848401525b50505050565b600060028204905060018216806142b557607f821691505b602082108114156142c9576142c86143d8565b5b50919050565b6142d882614436565b810181811067ffffffffffffffff821117156142f7576142f6614407565b5b80604052505050565b600061430b82614251565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561433e5761433d61437a565b5b600182019050919050565b600061435482614251565b915061435f83614251565b92508261436f5761436e6143a9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6661696c6564207769746864726177616c000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f796f7572652062726f6b65000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f736f7272792c206e6f74206f6e2072657365727665206c697374000000000000600082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6e6f7420686f6f6d616e00000000000000000000000000000000000000000000600082015250565b7f736f7272792c206e6f74206f6e2077686974656c697374000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6578636565647320737570706c79000000000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f72657365727665206c697374206d696e74206e6f742061637469766500000000600082015250565b7f77686974656c697374206d696e74206e6f742061637469766500000000000000600082015250565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b614aba816141e7565b8114614ac557600080fd5b50565b614ad1816141f9565b8114614adc57600080fd5b50565b614ae881614205565b8114614af357600080fd5b50565b614aff81614251565b8114614b0a57600080fd5b5056fea264697066735822122036a28e078d787ae1a9fbe5276a793438fdee797c3d82314eefa30401eba8632f64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e6b76424353324a383241756e7562735767676e706e3245726161745767526374766942596a77547473476a2f00000000000000000000
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806355f804b3116101025780639cf9494311610095578063c87b56dd11610064578063c87b56dd14610671578063d547cfb7146106ae578063e985e9c5146106d9578063f2fde38b14610716576101e3565b80639cf94943146105cd578063a22cb465146105f6578063b88d4fde1461061f578063bc7df09114610648576101e3565b806370a08231116100d157806370a0823114610523578063715018a6146105605780638da5cb5b1461057757806395d89b41146105a2576101e3565b806355f804b31461048f57806359eda1b5146104b85780636352211e146104cf5780636f06bf491461050c576101e3565b8063246f060c1161017a5780633ccfd60b116101495780633ccfd60b146103f457806342842e0e146103fe578063498b4a76146104275780634f6ccce714610452576101e3565b8063246f060c1461034c5780632d3df31f146103755780632f745c591461038c57806331ffd6f1146103c9576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630971383d146102e157806318160ddd146102f857806323b872dd14610323576101e3565b806301ffc9a7146101e8578063047fc9aa1461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613673565b61073f565b60405161021c9190613c73565b60405180910390f35b34801561023157600080fd5b5061023a6107b9565b6040516102479190614010565b60405180910390f35b34801561025c57600080fd5b506102656107be565b6040516102729190613c8e565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190613706565b610850565b6040516102af9190613c0c565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906135f6565b6108d5565b005b3480156102ed57600080fd5b506102f66109ed565b005b34801561030457600080fd5b5061030d610c47565b60405161031a9190614010565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906134f0565b610c54565b005b34801561035857600080fd5b50610373600480360381019061036e9190613632565b610cb4565b005b34801561038157600080fd5b5061038a610df6565b005b34801561039857600080fd5b506103b360048036038101906103ae91906135f6565b611050565b6040516103c09190614010565b60405180910390f35b3480156103d557600080fd5b506103de6110f5565b6040516103eb9190613c73565b60405180910390f35b6103fc611108565b005b34801561040a57600080fd5b50610425600480360381019061042091906134f0565b61127c565b005b34801561043357600080fd5b5061043c61129c565b6040516104499190613c73565b60405180910390f35b34801561045e57600080fd5b5061047960048036038101906104749190613706565b6112af565b6040516104869190614010565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b191906136c5565b611346565b005b3480156104c457600080fd5b506104cd6113dc565b005b3480156104db57600080fd5b506104f660048036038101906104f19190613706565b611484565b6040516105039190613c0c565b60405180910390f35b34801561051857600080fd5b50610521611536565b005b34801561052f57600080fd5b5061054a6004803603810190610545919061348b565b6115de565b6040516105579190614010565b60405180910390f35b34801561056c57600080fd5b50610575611696565b005b34801561058357600080fd5b5061058c61171e565b6040516105999190613c0c565b60405180910390f35b3480156105ae57600080fd5b506105b7611748565b6040516105c49190613c8e565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef9190613632565b6117da565b005b34801561060257600080fd5b5061061d600480360381019061061891906135ba565b61191c565b005b34801561062b57600080fd5b506106466004803603810190610641919061353f565b611932565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613706565b611994565b005b34801561067d57600080fd5b5061069860048036038101906106939190613706565b611a9f565b6040516106a59190613c8e565b60405180910390f35b3480156106ba57600080fd5b506106c3611b46565b6040516106d09190613c8e565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb91906134b4565b611bd4565b60405161070d9190613c73565b60405180910390f35b34801561072257600080fd5b5061073d6004803603810190610738919061348b565b611c68565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b257506107b182611d60565b5b9050919050565b606381565b6060600080546107cd9061429d565b80601f01602080910402602001604051908101604052809291908181526020018280546107f99061429d565b80156108465780601f1061081b57610100808354040283529160200191610846565b820191906000526020600020905b81548152906001019060200180831161082957829003601f168201915b5050505050905090565b600061085b82611e42565b61089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190613ed0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e082611484565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094890613f30565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610970611eae565b73ffffffffffffffffffffffffffffffffffffffff16148061099f575061099e81610999611eae565b611bd4565b5b6109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590613e50565b60405180910390fd5b6109e88383611eb6565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5290613df0565b60405180910390fd5b600d60019054906101000a900460ff16610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190613fb0565b60405180910390fd5b610ab333611f6f565b610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae990613db0565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690613ff0565b60405180910390fd5b6000610b8b600b612044565b90506063610ba360018361205290919063ffffffff16565b1115610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb90613f50565b60405180910390fd5b610bec612068565b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600880549050905090565b610c65610c5f611eae565b82612087565b610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90613f70565b60405180910390fd5b610caf838383612165565b505050565b610cbc611eae565b73ffffffffffffffffffffffffffffffffffffffff16610cda61171e565b73ffffffffffffffffffffffffffffffffffffffff1614610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613ef0565b60405180910390fd5b60005b8151811015610df2576010828281518110610d77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080610dea90614300565b915050610d33565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90613df0565b60405180910390fd5b600d60009054906101000a900460ff16610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613fd0565b60405180910390fd5b610ebc336123cc565b610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290613e10565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613ff0565b60405180910390fd5b6000610f94600b612044565b90506063610fac60018361205290919063ffffffff16565b1115610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490613f50565b60405180910390fd5b610ff5612068565b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061105b836115de565b821061109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390613cd0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600d60009054906101000a900460ff1681565b611110611eae565b73ffffffffffffffffffffffffffffffffffffffff1661112e61171e565b73ffffffffffffffffffffffffffffffffffffffff1614611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90613ef0565b60405180910390fd5b6000479050600081116111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390613d70565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516111f290613bf7565b60006040518083038185875af1925050503d806000811461122f576040519150601f19603f3d011682016040523d82523d6000602084013e611234565b606091505b5050905080611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90613cb0565b60405180910390fd5b5050565b61129783838360405180602001604052806000815250611932565b505050565b600d60019054906101000a900460ff1681565b60006112b9610c47565b82106112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f190613f90565b60405180910390fd5b60088281548110611334577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61134e611eae565b73ffffffffffffffffffffffffffffffffffffffff1661136c61171e565b73ffffffffffffffffffffffffffffffffffffffff16146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990613ef0565b60405180910390fd5b80600c90805190602001906113d8929190613219565b5050565b6113e4611eae565b73ffffffffffffffffffffffffffffffffffffffff1661140261171e565b73ffffffffffffffffffffffffffffffffffffffff1614611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613ef0565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490613e90565b60405180910390fd5b80915050919050565b61153e611eae565b73ffffffffffffffffffffffffffffffffffffffff1661155c61171e565b73ffffffffffffffffffffffffffffffffffffffff16146115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a990613ef0565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164690613e70565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61169e611eae565b73ffffffffffffffffffffffffffffffffffffffff166116bc61171e565b73ffffffffffffffffffffffffffffffffffffffff1614611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990613ef0565b60405180910390fd5b61171c60006124a1565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117579061429d565b80601f01602080910402602001604051908101604052809291908181526020018280546117839061429d565b80156117d05780601f106117a5576101008083540402835291602001916117d0565b820191906000526020600020905b8154815290600101906020018083116117b357829003601f168201915b5050505050905090565b6117e2611eae565b73ffffffffffffffffffffffffffffffffffffffff1661180061171e565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90613ef0565b60405180910390fd5b60005b815181101561191857600f82828151811061189d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808061191090614300565b915050611859565b5050565b61192e611927611eae565b8383612567565b5050565b61194361193d611eae565b83612087565b611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990613f70565b60405180910390fd5b61198e848484846126d4565b50505050565b61199c611eae565b73ffffffffffffffffffffffffffffffffffffffff166119ba61171e565b73ffffffffffffffffffffffffffffffffffffffff1614611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0790613ef0565b60405180910390fd5b6000611a1c600b612044565b90506063611a33838361205290919063ffffffff16565b1115611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90613f50565b60405180910390fd5b60005b82811015611a9a57611a87612068565b8080611a9290614300565b915050611a77565b505050565b6060611aaa82611e42565b611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090613f10565b60405180910390fd5b6000611af3612730565b90506000815111611b135760405180602001604052806000815250611b3e565b80611b1d846127c2565b604051602001611b2e929190613bd3565b6040516020818303038152906040525b915050919050565b600c8054611b539061429d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7f9061429d565b8015611bcc5780601f10611ba157610100808354040283529160200191611bcc565b820191906000526020600020905b815481529060010190602001808311611baf57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c70611eae565b73ffffffffffffffffffffffffffffffffffffffff16611c8e61171e565b73ffffffffffffffffffffffffffffffffffffffff1614611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90613ef0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b90613d10565b60405180910390fd5b611d5d816124a1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e2b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e3b5750611e3a8261296f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f2983611484565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080600090505b601080549050811015612039578273ffffffffffffffffffffffffffffffffffffffff1660108281548110611fd5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561202657600191505061203f565b808061203190614300565b915050611f77565b50600090505b919050565b600081600001549050919050565b60008183612060919061412c565b905092915050565b612072600b6129d9565b61208533612080600b612044565b6129ef565b565b600061209282611e42565b6120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c890613e30565b60405180910390fd5b60006120dc83611484565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061211e575061211d8185611bd4565b5b8061215c57508373ffffffffffffffffffffffffffffffffffffffff1661214484610850565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661218582611484565b73ffffffffffffffffffffffffffffffffffffffff16146121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d290613d30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561224b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224290613d90565b60405180910390fd5b612256838383612bc9565b612261600082611eb6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b191906141b3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612308919061412c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c7838383612cdd565b505050565b600080600090505b600f80549050811015612496578273ffffffffffffffffffffffffffffffffffffffff16600f8281548110612432577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561248357600191505061249c565b808061248e90614300565b9150506123d4565b50600090505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cd90613dd0565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126c79190613c73565b60405180910390a3505050565b6126df848484612165565b6126eb84848484612ce2565b61272a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272190613cf0565b60405180910390fd5b50505050565b6060600c805461273f9061429d565b80601f016020809104026020016040519081016040528092919081815260200182805461276b9061429d565b80156127b85780601f1061278d576101008083540402835291602001916127b8565b820191906000526020600020905b81548152906001019060200180831161279b57829003601f168201915b5050505050905090565b6060600082141561280a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061296a565b600082905060005b6000821461283c57808061282590614300565b915050600a826128359190614182565b9150612812565b60008167ffffffffffffffff81111561287e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128b05781602001600182028036833780820191505090505b5090505b60008514612963576001826128c991906141b3565b9150600a856128d89190614349565b60306128e4919061412c565b60f81b818381518110612920577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561295c9190614182565b94506128b4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5690613eb0565b60405180910390fd5b612a6881611e42565b15612aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9f90613d50565b60405180910390fd5b612ab460008383612bc9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b04919061412c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bc560008383612cdd565b5050565b612bd4838383612e79565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c1757612c1281612e7e565b612c56565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c5557612c548382612ec7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c9957612c9481613034565b612cd8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612cd757612cd68282613177565b5b5b505050565b505050565b6000612d038473ffffffffffffffffffffffffffffffffffffffff166131f6565b15612e6c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d2c611eae565b8786866040518563ffffffff1660e01b8152600401612d4e9493929190613c27565b602060405180830381600087803b158015612d6857600080fd5b505af1925050508015612d9957506040513d601f19601f82011682018060405250810190612d96919061369c565b60015b612e1c573d8060008114612dc9576040519150601f19603f3d011682016040523d82523d6000602084013e612dce565b606091505b50600081511415612e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0b90613cf0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e71565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ed4846115de565b612ede91906141b3565b9050600060076000848152602001908152602001600020549050818114612fc3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061304891906141b3565b905060006009600084815260200190815260200160002054905060006008838154811061309e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106130e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061315b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613182836115de565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546132259061429d565b90600052602060002090601f016020900481019282613247576000855561328e565b82601f1061326057805160ff191683800117855561328e565b8280016001018555821561328e579182015b8281111561328d578251825591602001919060010190613272565b5b50905061329b919061329f565b5090565b5b808211156132b85760008160009055506001016132a0565b5090565b60006132cf6132ca84614050565b61402b565b905080838252602082019050828560208602820111156132ee57600080fd5b60005b8581101561331e578161330488826133a4565b8452602084019350602083019250506001810190506132f1565b5050509392505050565b600061333b6133368461407c565b61402b565b90508281526020810184848401111561335357600080fd5b61335e84828561425b565b509392505050565b6000613379613374846140ad565b61402b565b90508281526020810184848401111561339157600080fd5b61339c84828561425b565b509392505050565b6000813590506133b381614ab1565b92915050565b600082601f8301126133ca57600080fd5b81356133da8482602086016132bc565b91505092915050565b6000813590506133f281614ac8565b92915050565b60008135905061340781614adf565b92915050565b60008151905061341c81614adf565b92915050565b600082601f83011261343357600080fd5b8135613443848260208601613328565b91505092915050565b600082601f83011261345d57600080fd5b813561346d848260208601613366565b91505092915050565b60008135905061348581614af6565b92915050565b60006020828403121561349d57600080fd5b60006134ab848285016133a4565b91505092915050565b600080604083850312156134c757600080fd5b60006134d5858286016133a4565b92505060206134e6858286016133a4565b9150509250929050565b60008060006060848603121561350557600080fd5b6000613513868287016133a4565b9350506020613524868287016133a4565b925050604061353586828701613476565b9150509250925092565b6000806000806080858703121561355557600080fd5b6000613563878288016133a4565b9450506020613574878288016133a4565b935050604061358587828801613476565b925050606085013567ffffffffffffffff8111156135a257600080fd5b6135ae87828801613422565b91505092959194509250565b600080604083850312156135cd57600080fd5b60006135db858286016133a4565b92505060206135ec858286016133e3565b9150509250929050565b6000806040838503121561360957600080fd5b6000613617858286016133a4565b925050602061362885828601613476565b9150509250929050565b60006020828403121561364457600080fd5b600082013567ffffffffffffffff81111561365e57600080fd5b61366a848285016133b9565b91505092915050565b60006020828403121561368557600080fd5b6000613693848285016133f8565b91505092915050565b6000602082840312156136ae57600080fd5b60006136bc8482850161340d565b91505092915050565b6000602082840312156136d757600080fd5b600082013567ffffffffffffffff8111156136f157600080fd5b6136fd8482850161344c565b91505092915050565b60006020828403121561371857600080fd5b600061372684828501613476565b91505092915050565b613738816141e7565b82525050565b613747816141f9565b82525050565b6000613758826140de565b61376281856140f4565b935061377281856020860161426a565b61377b81614436565b840191505092915050565b6000613791826140e9565b61379b8185614110565b93506137ab81856020860161426a565b6137b481614436565b840191505092915050565b60006137ca826140e9565b6137d48185614121565b93506137e481856020860161426a565b80840191505092915050565b60006137fd601183614110565b915061380882614447565b602082019050919050565b6000613820602b83614110565b915061382b82614470565b604082019050919050565b6000613843603283614110565b915061384e826144bf565b604082019050919050565b6000613866602683614110565b91506138718261450e565b604082019050919050565b6000613889602583614110565b91506138948261455d565b604082019050919050565b60006138ac601c83614110565b91506138b7826145ac565b602082019050919050565b60006138cf600b83614110565b91506138da826145d5565b602082019050919050565b60006138f2602483614110565b91506138fd826145fe565b604082019050919050565b6000613915601a83614110565b91506139208261464d565b602082019050919050565b6000613938601983614110565b915061394382614676565b602082019050919050565b600061395b600a83614110565b91506139668261469f565b602082019050919050565b600061397e601783614110565b9150613989826146c8565b602082019050919050565b60006139a1602c83614110565b91506139ac826146f1565b604082019050919050565b60006139c4603883614110565b91506139cf82614740565b604082019050919050565b60006139e7602a83614110565b91506139f28261478f565b604082019050919050565b6000613a0a602983614110565b9150613a15826147de565b604082019050919050565b6000613a2d602083614110565b9150613a388261482d565b602082019050919050565b6000613a50602c83614110565b9150613a5b82614856565b604082019050919050565b6000613a73602083614110565b9150613a7e826148a5565b602082019050919050565b6000613a96602f83614110565b9150613aa1826148ce565b604082019050919050565b6000613ab9602183614110565b9150613ac48261491d565b604082019050919050565b6000613adc600e83614110565b9150613ae78261496c565b602082019050919050565b6000613aff600083614105565b9150613b0a82614995565b600082019050919050565b6000613b22603183614110565b9150613b2d82614998565b604082019050919050565b6000613b45602c83614110565b9150613b50826149e7565b604082019050919050565b6000613b68601c83614110565b9150613b7382614a36565b602082019050919050565b6000613b8b601983614110565b9150613b9682614a5f565b602082019050919050565b6000613bae600e83614110565b9150613bb982614a88565b602082019050919050565b613bcd81614251565b82525050565b6000613bdf82856137bf565b9150613beb82846137bf565b91508190509392505050565b6000613c0282613af2565b9150819050919050565b6000602082019050613c21600083018461372f565b92915050565b6000608082019050613c3c600083018761372f565b613c49602083018661372f565b613c566040830185613bc4565b8181036060830152613c68818461374d565b905095945050505050565b6000602082019050613c88600083018461373e565b92915050565b60006020820190508181036000830152613ca88184613786565b905092915050565b60006020820190508181036000830152613cc9816137f0565b9050919050565b60006020820190508181036000830152613ce981613813565b9050919050565b60006020820190508181036000830152613d0981613836565b9050919050565b60006020820190508181036000830152613d2981613859565b9050919050565b60006020820190508181036000830152613d498161387c565b9050919050565b60006020820190508181036000830152613d698161389f565b9050919050565b60006020820190508181036000830152613d89816138c2565b9050919050565b60006020820190508181036000830152613da9816138e5565b9050919050565b60006020820190508181036000830152613dc981613908565b9050919050565b60006020820190508181036000830152613de98161392b565b9050919050565b60006020820190508181036000830152613e098161394e565b9050919050565b60006020820190508181036000830152613e2981613971565b9050919050565b60006020820190508181036000830152613e4981613994565b9050919050565b60006020820190508181036000830152613e69816139b7565b9050919050565b60006020820190508181036000830152613e89816139da565b9050919050565b60006020820190508181036000830152613ea9816139fd565b9050919050565b60006020820190508181036000830152613ec981613a20565b9050919050565b60006020820190508181036000830152613ee981613a43565b9050919050565b60006020820190508181036000830152613f0981613a66565b9050919050565b60006020820190508181036000830152613f2981613a89565b9050919050565b60006020820190508181036000830152613f4981613aac565b9050919050565b60006020820190508181036000830152613f6981613acf565b9050919050565b60006020820190508181036000830152613f8981613b15565b9050919050565b60006020820190508181036000830152613fa981613b38565b9050919050565b60006020820190508181036000830152613fc981613b5b565b9050919050565b60006020820190508181036000830152613fe981613b7e565b9050919050565b6000602082019050818103600083015261400981613ba1565b9050919050565b60006020820190506140256000830184613bc4565b92915050565b6000614035614046565b905061404182826142cf565b919050565b6000604051905090565b600067ffffffffffffffff82111561406b5761406a614407565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561409757614096614407565b5b6140a082614436565b9050602081019050919050565b600067ffffffffffffffff8211156140c8576140c7614407565b5b6140d182614436565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061413782614251565b915061414283614251565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141775761417661437a565b5b828201905092915050565b600061418d82614251565b915061419883614251565b9250826141a8576141a76143a9565b5b828204905092915050565b60006141be82614251565b91506141c983614251565b9250828210156141dc576141db61437a565b5b828203905092915050565b60006141f282614231565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561428857808201518184015260208101905061426d565b83811115614297576000848401525b50505050565b600060028204905060018216806142b557607f821691505b602082108114156142c9576142c86143d8565b5b50919050565b6142d882614436565b810181811067ffffffffffffffff821117156142f7576142f6614407565b5b80604052505050565b600061430b82614251565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561433e5761433d61437a565b5b600182019050919050565b600061435482614251565b915061435f83614251565b92508261436f5761436e6143a9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6661696c6564207769746864726177616c000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f796f7572652062726f6b65000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f736f7272792c206e6f74206f6e2072657365727665206c697374000000000000600082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6e6f7420686f6f6d616e00000000000000000000000000000000000000000000600082015250565b7f736f7272792c206e6f74206f6e2077686974656c697374000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6578636565647320737570706c79000000000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f72657365727665206c697374206d696e74206e6f742061637469766500000000600082015250565b7f77686974656c697374206d696e74206e6f742061637469766500000000000000600082015250565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b614aba816141e7565b8114614ac557600080fd5b50565b614ad1816141f9565b8114614adc57600080fd5b50565b614ae881614205565b8114614af357600080fd5b50565b614aff81614251565b8114614b0a57600080fd5b5056fea264697066735822122036a28e078d787ae1a9fbe5276a793438fdee797c3d82314eefa30401eba8632f64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e6b76424353324a383241756e7562735767676e706e3245726161745767526374766942596a77547473476a2f00000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmNkvBCS2J82AunubsWggnpn2EraatWgRctviBYjwTtsGj/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d4e6b76424353324a383241756e7562735767676e706e32
Arg [3] : 45726161745767526374766942596a77547473476a2f00000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.