Feature Tip: Add private address tag to any address under My Name Tag !
NFT
Overview
TokenID
954
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DentedFeels
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9 <0.9.0; import "./library/ERC721F.sol"; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/utils/math/SafeMath.sol"; /** * @title Dented Feels contract * @dev Extends ERC721F Non-Fungible Token Standard basic implementation. * Optimized to no longer use ERC721Enumerable , but still provide a totalSupply() and walletOfOwner(address _owner) implementation. * @author @FrankPoncelet * */ contract DentedFeels is ERC721F { using SafeMath for uint256; uint256 public tokenPrice = 0.11 ether; uint256 public constant MAX_TOKENS=11111; uint public constant MAX_RESERVE = 26; // set 1 to high to avoid some gas bool public saleIsActive; bool public preSaleIsActive; address private constant ONE = 0xE3cE6966c6dCdfB49055d8d0c6D46C09CDbd13f7; address private constant TWO = 0x12d7F4C942C8264BD1f0D3c3B2313EF794030222; address private constant TREE = 0xd7d9B479106EF63DF5e46C1D9cAA5db4078E2Ac3; address private constant FOUR = 0x7356646D4bAC2Ee3c92700f213851fd7Ae9b3533; address private constant FIVE = 0x74F3647c2b76BD5257D7c1dF25b1759e8fAc7442; address private constant SIX = 0x7297E66567526781Ca42B818bff80bb747876955; address private constant SEVEN = 0xB57dF54d276B3555b2F99ab5C1266cBe4e931b1e; address private constant FRANK = 0xF40Fd88ac59A206D009A07F8c09828a01e2ACC0d; address private constant SIMON = 0x743CA37E0b8bAFb4Ca2D49382f820410d6e6E431; mapping(address => bool) private whitelist; event priceChange(address _by, uint256 price); constructor() ERC721F("Dented Feels", "DEN") { setBaseTokenURI("https://ipfs.io/ipfs/QmPtiJaMKgRyYr5Y5EypBSQn4MvaDY3ZmGN9azDkiHF7cd/"); _safeMint( FRANK, 0); } /** * Mint Tokens to a wallet. */ function mint(address to,uint numberOfTokens) public onlyOwner { uint supply = totalSupply(); require(supply.add(numberOfTokens) <= MAX_TOKENS, "Reserve would exceed max supply of Tokens"); require(numberOfTokens < MAX_RESERVE, "Can only mint 25 tokens at a time"); for (uint i = 0; i < numberOfTokens; i++) { _safeMint(to, supply + i); } } /** * Mint Tokens to the owners reserve. */ function reserveTokens() external onlyOwner { mint(owner(),MAX_RESERVE-1); } /** * Pause sale if active, make active if paused */ function flipSaleState() external onlyOwner { saleIsActive = !saleIsActive; if(saleIsActive){ preSaleIsActive=false; } } /** * Pause sale if active, make active if paused */ function flipPreSaleState() external onlyOwner { preSaleIsActive = !preSaleIsActive; } /** * Set price */ function setPrice(uint256 price) external onlyOwner { tokenPrice = price; emit priceChange(msg.sender, tokenPrice); } /** * add an address to the WL */ function addWL(address _address) public onlyOwner { whitelist[_address] = true; } /** * add an array of address to the WL */ function addAdresses(address[] memory _address) external onlyOwner { for (uint i=0; i<_address.length; i++) { addWL(_address[i]); } } /** * remove an address off the WL */ function removeWL(address _address) external onlyOwner { whitelist[_address] = false; } /** * returns true if the wallet is Whitelisted. */ function isWhitelisted(address _address) public view returns(bool) { return whitelist[_address]; } function mint(uint256 numberOfTokens) external payable{ if(preSaleIsActive){ require(isWhitelisted(msg.sender),"sender is NOT Whitelisted "); }else{ require(saleIsActive,"Sale NOT active yet"); } require(balanceOf(msg.sender)+numberOfTokens<3,"Purchase would exceed max mint for walet"); uint256 supply = totalSupply(); require(supply.add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of Tokens"); require(tokenPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct"); for(uint256 i; i < numberOfTokens; i++){ _safeMint( msg.sender, supply + i ); } } function withdraw() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "Insufficent balance"); _withdraw(ONE, (balance*30)/100); _withdraw(TWO, (balance*25)/100); _withdraw(TREE, (balance*20)/100); _withdraw(FOUR, (balance*9)/100); _withdraw(FIVE, (balance)/100); _withdraw(SIX, (balance*5)/100); _withdraw(SEVEN, (balance*5)/100); _withdraw(FRANK, (balance)/100); _withdraw(SIMON, (balance*4)/100); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{ value: _amount }(""); require(success, "Failed to widthdraw Ether"); } // contract can recieve Ether fallback() external payable { } receive() external payable { } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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 substraction 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 pragma solidity ^0.8.9 <0.9.0; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/token/ERC721/ERC721.sol"; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/access/Ownable.sol"; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/utils/Counters.sol"; /** * @title ERC721B * @dev Extends ERC721 Non-Fungible Token Standard basic implementation. * Optimized to no longer use ERC721Enumerable , but still provide a totalSupply() and walletOfOwner(address _owner) implementation. * @author @FrankPoncelet * */ contract ERC721F is Ownable, ERC721 { using Counters for Counters.Counter; Counters.Counter private _tokenSupply; // Base URI for Meta data string private _baseTokenURI; constructor(string memory name_, string memory symbol_) ERC721(name_, symbol_) { } /** * @dev walletofOwner * @return tokens id owned by the given address * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function walletOfOwner(address _owner) external view returns (uint256[] memory){ uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while ( ownedTokenIndex < ownerTokenCount && currentTokenId < _tokenSupply.current() ) { if (ownerOf(currentTokenId) == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } /** * @dev Set the base token URI */ function setBaseTokenURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } /** * * @dev Mints `tokenId` and transfers it to `to`. * */ function _mint(address to, uint256 tokenId) internal virtual override { super._mint(to, tokenId); _tokenSupply.increment(); } /** * @dev Gets the total amount of tokens stored by the contract. * @return uint256 representing the total amount of tokens */ function totalSupply() public view returns (uint256) { return _tokenSupply.current(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "./extensions/IERC721Enumerable.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}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly 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` 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 { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"priceChange","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"addAdresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052670186cc6acd4b00006009553480156200001d57600080fd5b506040518060400160405280600c81526020016b44656e746564204665656c7360a01b815250604051806040016040528060038152602001622222a760e91b81525081816000620000736200013860201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000d29060019060208501906200052d565b508051620000e89060029060208401906200052d565b5050505050620001116040518060800160405280604481526020016200302f604491396200013c565b6200013273f40fd88ac59a206d009a07f8c09828a01e2acc0d6000620001b5565b620006e5565b3390565b6000546001600160a01b031633146200019c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620001b19060089060208401906200052d565b5050565b620001b1828260405180602001604052806000815250620001d760201b60201c565b620001e383836200024f565b620001f260008484846200027d565b6200024a5760405162461bcd60e51b815260206004820152603260248201526000805160206200300f83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000193565b505050565b620002668282620003d660201b620019871760201c565b620001b160076200051e60201b62001ac91760201c565b60006200029e846001600160a01b03166200052760201b62001ad21760201c565b15620003ca57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620002d8903390899088908890600401620005d3565b6020604051808303816000875af192505050801562000316575060408051601f3d908101601f1916820190925262000313918101906200064e565b60015b620003af573d80801562000347576040519150601f19603f3d011682016040523d82523d6000602084013e6200034c565b606091505b508051620003a75760405162461bcd60e51b815260206004820152603260248201526000805160206200300f83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000193565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620003ce565b5060015b949350505050565b6001600160a01b0382166200042e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000193565b6000818152600360205260409020546001600160a01b031615620004955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000193565b6001600160a01b0382166000908152600460205260408120805460019290620004c090849062000681565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b3b151590565b8280546200053b90620006a8565b90600052602060002090601f0160209004810192826200055f5760008555620005aa565b82601f106200057a57805160ff1916838001178555620005aa565b82800160010185558215620005aa579182015b82811115620005aa5782518255916020019190600101906200058d565b50620005b8929150620005bc565b5090565b5b80821115620005b85760008155600101620005bd565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006225785810182015185820160a00152810162000604565b828111156200063557600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200066157600080fd5b81516001600160e01b0319811681146200067a57600080fd5b9392505050565b60008219821115620006a357634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620006bd57607f821691505b60208210811415620006df57634e487b7160e01b600052602260045260246000fd5b50919050565b61291a80620006f56000396000f3fe6080604052600436106102175760003560e01c80636352211e11610126578063b88d4fde116100a7578063eb8d244411610079578063f032554911610061578063f03255491461063f578063f2fde38b14610654578063f47c84c51461067457005b8063eb8d244414610610578063eff31e9e1461062a57005b8063b88d4fde14610567578063c87b56dd14610587578063e1dc8477146105a7578063e985e9c5146105c757005b80638da5cb5b116100f857806395d89b41116100e057806395d89b411461051f578063a0712d6814610534578063a22cb4651461054757005b80638da5cb5b146104e157806391b7f5ed146104ff57005b80636352211e1461047657806370a0823114610496578063715018a6146104b65780637ff9b596146104cb57005b806327ac36c4116101b05780633ccfd60b11610182578063419889c31161016a578063419889c31461040957806342842e0e14610429578063438b63001461044957005b80633ccfd60b146103d457806340c10f19146103e957005b806327ac36c41461035157806330176e131461036657806334918dfd146103865780633af32abf1461039b57005b8063125f48e4116101e9578063125f48e4146102cf57806318160ddd146102ef5780631f0234d81461031257806323b872dd1461033157005b806301ffc9a71461022057806306fdde0314610255578063081812fc14610277578063095ea7b3146102af57005b3661021e57005b005b34801561022c57600080fd5b5061024061023b36600461232c565b61068a565b60405190151581526020015b60405180910390f35b34801561026157600080fd5b5061026a610727565b60405161024c91906123a1565b34801561028357600080fd5b506102976102923660046123b4565b6107b9565b6040516001600160a01b03909116815260200161024c565b3480156102bb57600080fd5b5061021e6102ca3660046123e9565b610853565b3480156102db57600080fd5b5061021e6102ea366004612413565b610985565b3480156102fb57600080fd5b506103046109f1565b60405190815260200161024c565b34801561031e57600080fd5b50600a5461024090610100900460ff1681565b34801561033d57600080fd5b5061021e61034c36600461242e565b610a01565b34801561035d57600080fd5b5061021e610a88565b34801561037257600080fd5b5061021e610381366004612509565b610af3565b34801561039257600080fd5b5061021e610b52565b3480156103a757600080fd5b506102406103b6366004612413565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156103e057600080fd5b5061021e610bc2565b3480156103f557600080fd5b5061021e6104043660046123e9565b610db3565b34801561041557600080fd5b5061021e610424366004612413565b610f34565b34801561043557600080fd5b5061021e61044436600461242e565b610f9d565b34801561045557600080fd5b50610469610464366004612413565b610fb8565b60405161024c9190612552565b34801561048257600080fd5b506102976104913660046123b4565b611092565b3480156104a257600080fd5b506103046104b1366004612413565b61111d565b3480156104c257600080fd5b5061021e6111b7565b3480156104d757600080fd5b5061030460095481565b3480156104ed57600080fd5b506000546001600160a01b0316610297565b34801561050b57600080fd5b5061021e61051a3660046123b4565b611249565b34801561052b57600080fd5b5061026a6112d2565b61021e6105423660046123b4565b6112e1565b34801561055357600080fd5b5061021e610562366004612596565b611545565b34801561057357600080fd5b5061021e6105823660046125d2565b61160a565b34801561059357600080fd5b5061026a6105a23660046123b4565b611692565b3480156105b357600080fd5b5061021e6105c236600461264e565b61177b565b3480156105d357600080fd5b506102406105e23660046126fb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561061c57600080fd5b50600a546102409060ff1681565b34801561063657600080fd5b50610304601a81565b34801561064b57600080fd5b5061021e611803565b34801561066057600080fd5b5061021e61066f366004612413565b611868565b34801561068057600080fd5b50610304612b6781565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106ed57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061072157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600180546107369061272e565b80601f01602080910402602001604051908101604052809291908181526020018280546107629061272e565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166108375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061085e82611092565b9050806001600160a01b0316836001600160a01b031614156108e85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161082e565b336001600160a01b0382161480610904575061090481336105e2565b6109765760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082e565b6109808383611ad8565b505050565b6000546001600160a01b031633146109cd5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b60006109fc60075490565b905090565b610a0b3382611b46565b610a7d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161082e565b610980838383611c3d565b6000546001600160a01b03163314610ad05760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b610af1610ae56000546001600160a01b031690565b6104046001601a61277f565b565b6000546001600160a01b03163314610b3b5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b8051610b4e90600890602084019061227d565b5050565b6000546001600160a01b03163314610b9a5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600a805460ff19811660ff918216159081179092551615610af157600a805461ff0019169055565b6000546001600160a01b03163314610c0a5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b4780610c585760405162461bcd60e51b815260206004820152601360248201527f496e737566666963656e742062616c616e636500000000000000000000000000604482015260640161082e565b610c8c73e3ce6966c6dcdfb49055d8d0c6d46c09cdbd13f76064610c7d84601e612796565b610c8791906127cb565b611e0a565b610cb17312d7f4c942c8264bd1f0d3c3b2313ef7940302226064610c7d846019612796565b610cd673d7d9b479106ef63df5e46c1d9caa5db4078e2ac36064610c7d846014612796565b610cfb737356646d4bac2ee3c92700f213851fd7ae9b35336064610c7d846009612796565b610d1e7374f3647c2b76bd5257d7c1df25b1759e8fac7442610c876064846127cb565b610d43737297e66567526781ca42b818bff80bb7478769556064610c7d846005612796565b610d6873b57df54d276b3555b2f99ab5c1266cbe4e931b1e6064610c7d846005612796565b610d8b73f40fd88ac59a206d009a07f8c09828a01e2acc0d610c876064846127cb565b610db073743ca37e0b8bafb4ca2d49382f820410d6e6e4316064610c7d846004612796565b50565b6000546001600160a01b03163314610dfb5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6000610e056109f1565b9050612b67610e148284611ead565b1115610e885760405162461bcd60e51b815260206004820152602960248201527f5265736572766520776f756c6420657863656564206d617820737570706c792060448201527f6f6620546f6b656e730000000000000000000000000000000000000000000000606482015260840161082e565b601a8210610efe5760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420323520746f6b656e7320617420612074696d60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015260840161082e565b60005b82811015610f2e57610f1c84610f1783856127df565b611eb9565b80610f26816127f7565b915050610f01565b50505050565b6000546001600160a01b03163314610f7c5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b6109808383836040518060200160405280600081525061160a565b60606000610fc58361111d565b905060008167ffffffffffffffff811115610fe257610fe261246a565b60405190808252806020026020018201604052801561100b578160200160208202803683370190505b509050600160005b8381108015611023575060075482105b1561108857856001600160a01b031661103b83611092565b6001600160a01b03161415611076578183828151811061105d5761105d612812565b602090810291909101015280611072816127f7565b9150505b81611080816127f7565b925050611013565b5090949350505050565b6000818152600360205260408120546001600160a01b0316806107215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161082e565b60006001600160a01b03821661119b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161082e565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146111ff5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112915760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600981905560408051338152602081018390527f2a270679203ad5c6be2af882c755f81ff060752614a378c1804df57dd7d2add0910160405180910390a150565b6060600280546107369061272e565b600a54610100900460ff161561135557336000908152600b602052604090205460ff166113505760405162461bcd60e51b815260206004820152601a60248201527f73656e646572206973204e4f542057686974656c697374656420000000000000604482015260640161082e565b6113a7565b600a5460ff166113a75760405162461bcd60e51b815260206004820152601360248201527f53616c65204e4f54206163746976652079657400000000000000000000000000604482015260640161082e565b6003816113b33361111d565b6113bd91906127df565b106114305760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d6178206d696e74206660448201527f6f722077616c6574000000000000000000000000000000000000000000000000606482015260840161082e565b600061143a6109f1565b9050612b676114498284611ead565b11156114bd5760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f6620546f6b656e7300000000000000000000000000000000000000000000606482015260840161082e565b60095434906114cc9084611ed3565b111561151a5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161082e565b60005b828110156109805761153333610f1783856127df565b8061153d816127f7565b91505061151d565b6001600160a01b03821633141561159e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116143383611b46565b6116865760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161082e565b610f2e84848484611edf565b6000818152600360205260409020546060906001600160a01b031661171f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161082e565b6000611729611f5d565b905060008151116117495760405180602001604052806000815250611774565b8061175384611f6c565b604051602001611764929190612828565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146117c35760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b60005b8151811015610b4e576117f18282815181106117e4576117e4612812565b6020026020010151610985565b806117fb816127f7565b9150506117c6565b6000546001600160a01b0316331461184b5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600a805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b031633146118b05760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6001600160a01b03811661192c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161082e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166119dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082e565b6000818152600360205260409020546001600160a01b031615611a425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082e565b6001600160a01b0382166000908152600460205260408120805460019290611a6b9084906127df565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b3b151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b0d82611092565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611bbf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082e565b6000611bca83611092565b9050806001600160a01b0316846001600160a01b03161480611c055750836001600160a01b0316611bfa846107b9565b6001600160a01b0316145b80611c3557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c5082611092565b6001600160a01b031614611ccc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161082e565b6001600160a01b038216611d475760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161082e565b611d52600082611ad8565b6001600160a01b0383166000908152600460205260408120805460019290611d7b90849061277f565b90915550506001600160a01b0382166000908152600460205260408120805460019290611da99084906127df565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e57576040519150601f19603f3d011682016040523d82523d6000602084013e611e5c565b606091505b50509050806109805760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f2077696474686472617720457468657200000000000000604482015260640161082e565b600061177482846127df565b610b4e82826040518060200160405280600081525061209e565b60006117748284612796565b611eea848484611c3d565b611ef68484848461211c565b610f2e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161082e565b6060600880546107369061272e565b606081611fac57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611fd65780611fc0816127f7565b9150611fcf9050600a836127cb565b9150611fb0565b60008167ffffffffffffffff811115611ff157611ff161246a565b6040519080825280601f01601f19166020018201604052801561201b576020820181803683370190505b5090505b8415611c355761203060018361277f565b915061203d600a86612857565b6120489060306127df565b60f81b81838151811061205d5761205d612812565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612097600a866127cb565b945061201f565b6120a88383612265565b6120b5600084848461211c565b6109805760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161082e565b60006001600160a01b0384163b1561225a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061216090339089908890889060040161286b565b6020604051808303816000875af192505050801561219b575060408051601f3d908101601f19168201909252612198918101906128a7565b60015b612240573d8080156121c9576040519150601f19603f3d011682016040523d82523d6000602084013e6121ce565b606091505b5080516122385760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161082e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c35565b506001949350505050565b61226f8282611987565b610b4e600780546001019055565b8280546122899061272e565b90600052602060002090601f0160209004810192826122ab57600085556122f1565b82601f106122c457805160ff19168380011785556122f1565b828001600101855582156122f1579182015b828111156122f15782518255916020019190600101906122d6565b506122fd929150612301565b5090565b5b808211156122fd5760008155600101612302565b6001600160e01b031981168114610db057600080fd5b60006020828403121561233e57600080fd5b813561177481612316565b60005b8381101561236457818101518382015260200161234c565b83811115610f2e5750506000910152565b6000815180845261238d816020860160208601612349565b601f01601f19169290920160200192915050565b6020815260006117746020830184612375565b6000602082840312156123c657600080fd5b5035919050565b80356001600160a01b03811681146123e457600080fd5b919050565b600080604083850312156123fc57600080fd5b612405836123cd565b946020939093013593505050565b60006020828403121561242557600080fd5b611774826123cd565b60008060006060848603121561244357600080fd5b61244c846123cd565b925061245a602085016123cd565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156124a9576124a961246a565b604052919050565b600067ffffffffffffffff8311156124cb576124cb61246a565b6124de601f8401601f1916602001612480565b90508281528383830111156124f257600080fd5b828260208301376000602084830101529392505050565b60006020828403121561251b57600080fd5b813567ffffffffffffffff81111561253257600080fd5b8201601f8101841361254357600080fd5b611c35848235602084016124b1565b6020808252825182820181905260009190848201906040850190845b8181101561258a5783518352928401929184019160010161256e565b50909695505050505050565b600080604083850312156125a957600080fd5b6125b2836123cd565b9150602083013580151581146125c757600080fd5b809150509250929050565b600080600080608085870312156125e857600080fd5b6125f1856123cd565b93506125ff602086016123cd565b925060408501359150606085013567ffffffffffffffff81111561262257600080fd5b8501601f8101871361263357600080fd5b612642878235602084016124b1565b91505092959194509250565b6000602080838503121561266157600080fd5b823567ffffffffffffffff8082111561267957600080fd5b818501915085601f83011261268d57600080fd5b81358181111561269f5761269f61246a565b8060051b91506126b0848301612480565b81815291830184019184810190888411156126ca57600080fd5b938501935b838510156126ef576126e0856123cd565b825293850193908501906126cf565b98975050505050505050565b6000806040838503121561270e57600080fd5b612717836123cd565b9150612725602084016123cd565b90509250929050565b600181811c9082168061274257607f821691505b6020821081141561276357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561279157612791612769565b500390565b60008160001904831182151516156127b0576127b0612769565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826127da576127da6127b5565b500490565b600082198211156127f2576127f2612769565b500190565b600060001982141561280b5761280b612769565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000835161283a818460208801612349565b83519083019061284e818360208801612349565b01949350505050565b600082612866576128666127b5565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261289d6080830184612375565b9695505050505050565b6000602082840312156128b957600080fd5b81516117748161231656fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220bf991799be7750a8d0a0ddea703f7bb3d1c762b66a5296975cdb2e2b1d6f654e64736f6c634300080b00334552433732313a207472616e7366657220746f206e6f6e20455243373231526568747470733a2f2f697066732e696f2f697066732f516d5074694a614d4b67527959723559354579704253516e344d76614459335a6d474e39617a446b6948463763642f
Deployed Bytecode
0x6080604052600436106102175760003560e01c80636352211e11610126578063b88d4fde116100a7578063eb8d244411610079578063f032554911610061578063f03255491461063f578063f2fde38b14610654578063f47c84c51461067457005b8063eb8d244414610610578063eff31e9e1461062a57005b8063b88d4fde14610567578063c87b56dd14610587578063e1dc8477146105a7578063e985e9c5146105c757005b80638da5cb5b116100f857806395d89b41116100e057806395d89b411461051f578063a0712d6814610534578063a22cb4651461054757005b80638da5cb5b146104e157806391b7f5ed146104ff57005b80636352211e1461047657806370a0823114610496578063715018a6146104b65780637ff9b596146104cb57005b806327ac36c4116101b05780633ccfd60b11610182578063419889c31161016a578063419889c31461040957806342842e0e14610429578063438b63001461044957005b80633ccfd60b146103d457806340c10f19146103e957005b806327ac36c41461035157806330176e131461036657806334918dfd146103865780633af32abf1461039b57005b8063125f48e4116101e9578063125f48e4146102cf57806318160ddd146102ef5780631f0234d81461031257806323b872dd1461033157005b806301ffc9a71461022057806306fdde0314610255578063081812fc14610277578063095ea7b3146102af57005b3661021e57005b005b34801561022c57600080fd5b5061024061023b36600461232c565b61068a565b60405190151581526020015b60405180910390f35b34801561026157600080fd5b5061026a610727565b60405161024c91906123a1565b34801561028357600080fd5b506102976102923660046123b4565b6107b9565b6040516001600160a01b03909116815260200161024c565b3480156102bb57600080fd5b5061021e6102ca3660046123e9565b610853565b3480156102db57600080fd5b5061021e6102ea366004612413565b610985565b3480156102fb57600080fd5b506103046109f1565b60405190815260200161024c565b34801561031e57600080fd5b50600a5461024090610100900460ff1681565b34801561033d57600080fd5b5061021e61034c36600461242e565b610a01565b34801561035d57600080fd5b5061021e610a88565b34801561037257600080fd5b5061021e610381366004612509565b610af3565b34801561039257600080fd5b5061021e610b52565b3480156103a757600080fd5b506102406103b6366004612413565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156103e057600080fd5b5061021e610bc2565b3480156103f557600080fd5b5061021e6104043660046123e9565b610db3565b34801561041557600080fd5b5061021e610424366004612413565b610f34565b34801561043557600080fd5b5061021e61044436600461242e565b610f9d565b34801561045557600080fd5b50610469610464366004612413565b610fb8565b60405161024c9190612552565b34801561048257600080fd5b506102976104913660046123b4565b611092565b3480156104a257600080fd5b506103046104b1366004612413565b61111d565b3480156104c257600080fd5b5061021e6111b7565b3480156104d757600080fd5b5061030460095481565b3480156104ed57600080fd5b506000546001600160a01b0316610297565b34801561050b57600080fd5b5061021e61051a3660046123b4565b611249565b34801561052b57600080fd5b5061026a6112d2565b61021e6105423660046123b4565b6112e1565b34801561055357600080fd5b5061021e610562366004612596565b611545565b34801561057357600080fd5b5061021e6105823660046125d2565b61160a565b34801561059357600080fd5b5061026a6105a23660046123b4565b611692565b3480156105b357600080fd5b5061021e6105c236600461264e565b61177b565b3480156105d357600080fd5b506102406105e23660046126fb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561061c57600080fd5b50600a546102409060ff1681565b34801561063657600080fd5b50610304601a81565b34801561064b57600080fd5b5061021e611803565b34801561066057600080fd5b5061021e61066f366004612413565b611868565b34801561068057600080fd5b50610304612b6781565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106ed57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061072157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600180546107369061272e565b80601f01602080910402602001604051908101604052809291908181526020018280546107629061272e565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166108375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061085e82611092565b9050806001600160a01b0316836001600160a01b031614156108e85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161082e565b336001600160a01b0382161480610904575061090481336105e2565b6109765760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082e565b6109808383611ad8565b505050565b6000546001600160a01b031633146109cd5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b60006109fc60075490565b905090565b610a0b3382611b46565b610a7d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161082e565b610980838383611c3d565b6000546001600160a01b03163314610ad05760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b610af1610ae56000546001600160a01b031690565b6104046001601a61277f565b565b6000546001600160a01b03163314610b3b5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b8051610b4e90600890602084019061227d565b5050565b6000546001600160a01b03163314610b9a5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600a805460ff19811660ff918216159081179092551615610af157600a805461ff0019169055565b6000546001600160a01b03163314610c0a5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b4780610c585760405162461bcd60e51b815260206004820152601360248201527f496e737566666963656e742062616c616e636500000000000000000000000000604482015260640161082e565b610c8c73e3ce6966c6dcdfb49055d8d0c6d46c09cdbd13f76064610c7d84601e612796565b610c8791906127cb565b611e0a565b610cb17312d7f4c942c8264bd1f0d3c3b2313ef7940302226064610c7d846019612796565b610cd673d7d9b479106ef63df5e46c1d9caa5db4078e2ac36064610c7d846014612796565b610cfb737356646d4bac2ee3c92700f213851fd7ae9b35336064610c7d846009612796565b610d1e7374f3647c2b76bd5257d7c1df25b1759e8fac7442610c876064846127cb565b610d43737297e66567526781ca42b818bff80bb7478769556064610c7d846005612796565b610d6873b57df54d276b3555b2f99ab5c1266cbe4e931b1e6064610c7d846005612796565b610d8b73f40fd88ac59a206d009a07f8c09828a01e2acc0d610c876064846127cb565b610db073743ca37e0b8bafb4ca2d49382f820410d6e6e4316064610c7d846004612796565b50565b6000546001600160a01b03163314610dfb5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6000610e056109f1565b9050612b67610e148284611ead565b1115610e885760405162461bcd60e51b815260206004820152602960248201527f5265736572766520776f756c6420657863656564206d617820737570706c792060448201527f6f6620546f6b656e730000000000000000000000000000000000000000000000606482015260840161082e565b601a8210610efe5760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420323520746f6b656e7320617420612074696d60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015260840161082e565b60005b82811015610f2e57610f1c84610f1783856127df565b611eb9565b80610f26816127f7565b915050610f01565b50505050565b6000546001600160a01b03163314610f7c5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b6109808383836040518060200160405280600081525061160a565b60606000610fc58361111d565b905060008167ffffffffffffffff811115610fe257610fe261246a565b60405190808252806020026020018201604052801561100b578160200160208202803683370190505b509050600160005b8381108015611023575060075482105b1561108857856001600160a01b031661103b83611092565b6001600160a01b03161415611076578183828151811061105d5761105d612812565b602090810291909101015280611072816127f7565b9150505b81611080816127f7565b925050611013565b5090949350505050565b6000818152600360205260408120546001600160a01b0316806107215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161082e565b60006001600160a01b03821661119b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161082e565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146111ff5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112915760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600981905560408051338152602081018390527f2a270679203ad5c6be2af882c755f81ff060752614a378c1804df57dd7d2add0910160405180910390a150565b6060600280546107369061272e565b600a54610100900460ff161561135557336000908152600b602052604090205460ff166113505760405162461bcd60e51b815260206004820152601a60248201527f73656e646572206973204e4f542057686974656c697374656420000000000000604482015260640161082e565b6113a7565b600a5460ff166113a75760405162461bcd60e51b815260206004820152601360248201527f53616c65204e4f54206163746976652079657400000000000000000000000000604482015260640161082e565b6003816113b33361111d565b6113bd91906127df565b106114305760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d6178206d696e74206660448201527f6f722077616c6574000000000000000000000000000000000000000000000000606482015260840161082e565b600061143a6109f1565b9050612b676114498284611ead565b11156114bd5760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f6620546f6b656e7300000000000000000000000000000000000000000000606482015260840161082e565b60095434906114cc9084611ed3565b111561151a5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161082e565b60005b828110156109805761153333610f1783856127df565b8061153d816127f7565b91505061151d565b6001600160a01b03821633141561159e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116143383611b46565b6116865760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161082e565b610f2e84848484611edf565b6000818152600360205260409020546060906001600160a01b031661171f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161082e565b6000611729611f5d565b905060008151116117495760405180602001604052806000815250611774565b8061175384611f6c565b604051602001611764929190612828565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146117c35760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b60005b8151811015610b4e576117f18282815181106117e4576117e4612812565b6020026020010151610985565b806117fb816127f7565b9150506117c6565b6000546001600160a01b0316331461184b5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600a805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b031633146118b05760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6001600160a01b03811661192c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161082e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166119dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082e565b6000818152600360205260409020546001600160a01b031615611a425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082e565b6001600160a01b0382166000908152600460205260408120805460019290611a6b9084906127df565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b3b151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b0d82611092565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611bbf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082e565b6000611bca83611092565b9050806001600160a01b0316846001600160a01b03161480611c055750836001600160a01b0316611bfa846107b9565b6001600160a01b0316145b80611c3557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c5082611092565b6001600160a01b031614611ccc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161082e565b6001600160a01b038216611d475760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161082e565b611d52600082611ad8565b6001600160a01b0383166000908152600460205260408120805460019290611d7b90849061277f565b90915550506001600160a01b0382166000908152600460205260408120805460019290611da99084906127df565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e57576040519150601f19603f3d011682016040523d82523d6000602084013e611e5c565b606091505b50509050806109805760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f2077696474686472617720457468657200000000000000604482015260640161082e565b600061177482846127df565b610b4e82826040518060200160405280600081525061209e565b60006117748284612796565b611eea848484611c3d565b611ef68484848461211c565b610f2e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161082e565b6060600880546107369061272e565b606081611fac57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611fd65780611fc0816127f7565b9150611fcf9050600a836127cb565b9150611fb0565b60008167ffffffffffffffff811115611ff157611ff161246a565b6040519080825280601f01601f19166020018201604052801561201b576020820181803683370190505b5090505b8415611c355761203060018361277f565b915061203d600a86612857565b6120489060306127df565b60f81b81838151811061205d5761205d612812565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612097600a866127cb565b945061201f565b6120a88383612265565b6120b5600084848461211c565b6109805760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161082e565b60006001600160a01b0384163b1561225a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061216090339089908890889060040161286b565b6020604051808303816000875af192505050801561219b575060408051601f3d908101601f19168201909252612198918101906128a7565b60015b612240573d8080156121c9576040519150601f19603f3d011682016040523d82523d6000602084013e6121ce565b606091505b5080516122385760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161082e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c35565b506001949350505050565b61226f8282611987565b610b4e600780546001019055565b8280546122899061272e565b90600052602060002090601f0160209004810192826122ab57600085556122f1565b82601f106122c457805160ff19168380011785556122f1565b828001600101855582156122f1579182015b828111156122f15782518255916020019190600101906122d6565b506122fd929150612301565b5090565b5b808211156122fd5760008155600101612302565b6001600160e01b031981168114610db057600080fd5b60006020828403121561233e57600080fd5b813561177481612316565b60005b8381101561236457818101518382015260200161234c565b83811115610f2e5750506000910152565b6000815180845261238d816020860160208601612349565b601f01601f19169290920160200192915050565b6020815260006117746020830184612375565b6000602082840312156123c657600080fd5b5035919050565b80356001600160a01b03811681146123e457600080fd5b919050565b600080604083850312156123fc57600080fd5b612405836123cd565b946020939093013593505050565b60006020828403121561242557600080fd5b611774826123cd565b60008060006060848603121561244357600080fd5b61244c846123cd565b925061245a602085016123cd565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156124a9576124a961246a565b604052919050565b600067ffffffffffffffff8311156124cb576124cb61246a565b6124de601f8401601f1916602001612480565b90508281528383830111156124f257600080fd5b828260208301376000602084830101529392505050565b60006020828403121561251b57600080fd5b813567ffffffffffffffff81111561253257600080fd5b8201601f8101841361254357600080fd5b611c35848235602084016124b1565b6020808252825182820181905260009190848201906040850190845b8181101561258a5783518352928401929184019160010161256e565b50909695505050505050565b600080604083850312156125a957600080fd5b6125b2836123cd565b9150602083013580151581146125c757600080fd5b809150509250929050565b600080600080608085870312156125e857600080fd5b6125f1856123cd565b93506125ff602086016123cd565b925060408501359150606085013567ffffffffffffffff81111561262257600080fd5b8501601f8101871361263357600080fd5b612642878235602084016124b1565b91505092959194509250565b6000602080838503121561266157600080fd5b823567ffffffffffffffff8082111561267957600080fd5b818501915085601f83011261268d57600080fd5b81358181111561269f5761269f61246a565b8060051b91506126b0848301612480565b81815291830184019184810190888411156126ca57600080fd5b938501935b838510156126ef576126e0856123cd565b825293850193908501906126cf565b98975050505050505050565b6000806040838503121561270e57600080fd5b612717836123cd565b9150612725602084016123cd565b90509250929050565b600181811c9082168061274257607f821691505b6020821081141561276357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561279157612791612769565b500390565b60008160001904831182151516156127b0576127b0612769565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826127da576127da6127b5565b500490565b600082198211156127f2576127f2612769565b500190565b600060001982141561280b5761280b612769565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000835161283a818460208801612349565b83519083019061284e818360208801612349565b01949350505050565b600082612866576128666127b5565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261289d6080830184612375565b9695505050505050565b6000602082840312156128b957600080fd5b81516117748161231656fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220bf991799be7750a8d0a0ddea703f7bb3d1c762b66a5296975cdb2e2b1d6f654e64736f6c634300080b0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.