ETH Price: $2,573.72 (-16.62%)
 

Overview

Max Total Supply

11,111 DEN

Holders

4,684

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 DEN
0xb36A5b79632C7e49a67a7d71E7c47e6E293Cb2A5
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

An emotional NFT collection of 11,111 by @Dentinmyhead incorporating all the moods and seasons created by feelings, for the everyday dreamer.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DentedFeels

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 15 : DentedFeels.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 15 : SafeMath.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 15 : ERC721F.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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_) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 15 : Counters.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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 {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 15 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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 () {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 15 : ERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 15 : ERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 15 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 15 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 15 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 15 : IERC721Enumerable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 12 of 15 : IERC721Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 13 of 15 : IERC721Receiver.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 14 of 15 : IERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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);
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 15 of 15 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"optimizer": {
"enabled": true,
"runs": 1000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

[{"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"}]

6080604052670186cc6acd4b00006009553480156200001d57600080fd5b506040518060400160405280600c81526020016b44656e746564204665656c7360a01b815250604051806040016040528060038152602001622222a760e91b81525081816000620000736200013860201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000d29060019060208501906200052d565b508051620000e89060029060208401906200052d565b5050505050620001116040518060800160405280604481526020016200302f604491396200013c565b6200013273f40fd88ac59a206d009a07f8c09828a01e2acc0d6000620001b5565b620006e5565b3390565b6000546001600160a01b031633146200019c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620001b19060089060208401906200052d565b5050565b620001b1828260405180602001604052806000815250620001d760201b60201c565b620001e383836200024f565b620001f260008484846200027d565b6200024a5760405162461bcd60e51b815260206004820152603260248201526000805160206200300f83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000193565b505050565b620002668282620003d660201b620019871760201c565b620001b160076200051e60201b62001ac91760201c565b60006200029e846001600160a01b03166200052760201b62001ad21760201c565b15620003ca57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620002d8903390899088908890600401620005d3565b6020604051808303816000875af192505050801562000316575060408051601f3d908101601f1916820190925262000313918101906200064e565b60015b620003af573d80801562000347576040519150601f19603f3d011682016040523d82523d6000602084013e6200034c565b606091505b508051620003a75760405162461bcd60e51b815260206004820152603260248201526000805160206200300f83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000193565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620003ce565b5060015b949350505050565b6001600160a01b0382166200042e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000193565b6000818152600360205260409020546001600160a01b031615620004955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000193565b6001600160a01b0382166000908152600460205260408120805460019290620004c090849062000681565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b3b151590565b8280546200053b90620006a8565b90600052602060002090601f0160209004810192826200055f5760008555620005aa565b82601f106200057a57805160ff1916838001178555620005aa565b82800160010185558215620005aa579182015b82811115620005aa5782518255916020019190600101906200058d565b50620005b8929150620005bc565b5090565b5b80821115620005b85760008155600101620005bd565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006225785810182015185820160a00152810162000604565b828111156200063557600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200066157600080fd5b81516001600160e01b0319811681146200067a57600080fd5b9392505050565b60008219821115620006a357634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620006bd57607f821691505b60208210811415620006df57634e487b7160e01b600052602260045260246000fd5b50919050565b61291a80620006f56000396000f3fe6080604052600436106102175760003560e01c80636352211e11610126578063b88d4fde116100a7578063eb8d244411610079578063f032554911610061578063f03255491461063f578063f2fde38b14610654578063f47c84c51461067457005b8063eb8d244414610610578063eff31e9e1461062a57005b8063b88d4fde14610567578063c87b56dd14610587578063e1dc8477146105a7578063e985e9c5146105c757005b80638da5cb5b116100f857806395d89b41116100e057806395d89b411461051f578063a0712d6814610534578063a22cb4651461054757005b80638da5cb5b146104e157806391b7f5ed146104ff57005b80636352211e1461047657806370a0823114610496578063715018a6146104b65780637ff9b596146104cb57005b806327ac36c4116101b05780633ccfd60b11610182578063419889c31161016a578063419889c31461040957806342842e0e14610429578063438b63001461044957005b80633ccfd60b146103d457806340c10f19146103e957005b806327ac36c41461035157806330176e131461036657806334918dfd146103865780633af32abf1461039b57005b8063125f48e4116101e9578063125f48e4146102cf57806318160ddd146102ef5780631f0234d81461031257806323b872dd1461033157005b806301ffc9a71461022057806306fdde0314610255578063081812fc14610277578063095ea7b3146102af57005b3661021e57005b005b34801561022c57600080fd5b5061024061023b36600461232c565b61068a565b60405190151581526020015b60405180910390f35b34801561026157600080fd5b5061026a610727565b60405161024c91906123a1565b34801561028357600080fd5b506102976102923660046123b4565b6107b9565b6040516001600160a01b03909116815260200161024c565b3480156102bb57600080fd5b5061021e6102ca3660046123e9565b610853565b3480156102db57600080fd5b5061021e6102ea366004612413565b610985565b3480156102fb57600080fd5b506103046109f1565b60405190815260200161024c565b34801561031e57600080fd5b50600a5461024090610100900460ff1681565b34801561033d57600080fd5b5061021e61034c36600461242e565b610a01565b34801561035d57600080fd5b5061021e610a88565b34801561037257600080fd5b5061021e610381366004612509565b610af3565b34801561039257600080fd5b5061021e610b52565b3480156103a757600080fd5b506102406103b6366004612413565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156103e057600080fd5b5061021e610bc2565b3480156103f557600080fd5b5061021e6104043660046123e9565b610db3565b34801561041557600080fd5b5061021e610424366004612413565b610f34565b34801561043557600080fd5b5061021e61044436600461242e565b610f9d565b34801561045557600080fd5b50610469610464366004612413565b610fb8565b60405161024c9190612552565b34801561048257600080fd5b506102976104913660046123b4565b611092565b3480156104a257600080fd5b506103046104b1366004612413565b61111d565b3480156104c257600080fd5b5061021e6111b7565b3480156104d757600080fd5b5061030460095481565b3480156104ed57600080fd5b506000546001600160a01b0316610297565b34801561050b57600080fd5b5061021e61051a3660046123b4565b611249565b34801561052b57600080fd5b5061026a6112d2565b61021e6105423660046123b4565b6112e1565b34801561055357600080fd5b5061021e610562366004612596565b611545565b34801561057357600080fd5b5061021e6105823660046125d2565b61160a565b34801561059357600080fd5b5061026a6105a23660046123b4565b611692565b3480156105b357600080fd5b5061021e6105c236600461264e565b61177b565b3480156105d357600080fd5b506102406105e23660046126fb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561061c57600080fd5b50600a546102409060ff1681565b34801561063657600080fd5b50610304601a81565b34801561064b57600080fd5b5061021e611803565b34801561066057600080fd5b5061021e61066f366004612413565b611868565b34801561068057600080fd5b50610304612b6781565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106ed57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061072157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600180546107369061272e565b80601f01602080910402602001604051908101604052809291908181526020018280546107629061272e565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166108375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061085e82611092565b9050806001600160a01b0316836001600160a01b031614156108e85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161082e565b336001600160a01b0382161480610904575061090481336105e2565b6109765760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082e565b6109808383611ad8565b505050565b6000546001600160a01b031633146109cd5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b60006109fc60075490565b905090565b610a0b3382611b46565b610a7d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161082e565b610980838383611c3d565b6000546001600160a01b03163314610ad05760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b610af1610ae56000546001600160a01b031690565b6104046001601a61277f565b565b6000546001600160a01b03163314610b3b5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b8051610b4e90600890602084019061227d565b5050565b6000546001600160a01b03163314610b9a5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600a805460ff19811660ff918216159081179092551615610af157600a805461ff0019169055565b6000546001600160a01b03163314610c0a5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b4780610c585760405162461bcd60e51b815260206004820152601360248201527f496e737566666963656e742062616c616e636500000000000000000000000000604482015260640161082e565b610c8c73e3ce6966c6dcdfb49055d8d0c6d46c09cdbd13f76064610c7d84601e612796565b610c8791906127cb565b611e0a565b610cb17312d7f4c942c8264bd1f0d3c3b2313ef7940302226064610c7d846019612796565b610cd673d7d9b479106ef63df5e46c1d9caa5db4078e2ac36064610c7d846014612796565b610cfb737356646d4bac2ee3c92700f213851fd7ae9b35336064610c7d846009612796565b610d1e7374f3647c2b76bd5257d7c1df25b1759e8fac7442610c876064846127cb565b610d43737297e66567526781ca42b818bff80bb7478769556064610c7d846005612796565b610d6873b57df54d276b3555b2f99ab5c1266cbe4e931b1e6064610c7d846005612796565b610d8b73f40fd88ac59a206d009a07f8c09828a01e2acc0d610c876064846127cb565b610db073743ca37e0b8bafb4ca2d49382f820410d6e6e4316064610c7d846004612796565b50565b6000546001600160a01b03163314610dfb5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6000610e056109f1565b9050612b67610e148284611ead565b1115610e885760405162461bcd60e51b815260206004820152602960248201527f5265736572766520776f756c6420657863656564206d617820737570706c792060448201527f6f6620546f6b656e730000000000000000000000000000000000000000000000606482015260840161082e565b601a8210610efe5760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420323520746f6b656e7320617420612074696d60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015260840161082e565b60005b82811015610f2e57610f1c84610f1783856127df565b611eb9565b80610f26816127f7565b915050610f01565b50505050565b6000546001600160a01b03163314610f7c5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b6109808383836040518060200160405280600081525061160a565b60606000610fc58361111d565b905060008167ffffffffffffffff811115610fe257610fe261246a565b60405190808252806020026020018201604052801561100b578160200160208202803683370190505b509050600160005b8381108015611023575060075482105b1561108857856001600160a01b031661103b83611092565b6001600160a01b03161415611076578183828151811061105d5761105d612812565b602090810291909101015280611072816127f7565b9150505b81611080816127f7565b925050611013565b5090949350505050565b6000818152600360205260408120546001600160a01b0316806107215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161082e565b60006001600160a01b03821661119b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161082e565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146111ff5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112915760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600981905560408051338152602081018390527f2a270679203ad5c6be2af882c755f81ff060752614a378c1804df57dd7d2add0910160405180910390a150565b6060600280546107369061272e565b600a54610100900460ff161561135557336000908152600b602052604090205460ff166113505760405162461bcd60e51b815260206004820152601a60248201527f73656e646572206973204e4f542057686974656c697374656420000000000000604482015260640161082e565b6113a7565b600a5460ff166113a75760405162461bcd60e51b815260206004820152601360248201527f53616c65204e4f54206163746976652079657400000000000000000000000000604482015260640161082e565b6003816113b33361111d565b6113bd91906127df565b106114305760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d6178206d696e74206660448201527f6f722077616c6574000000000000000000000000000000000000000000000000606482015260840161082e565b600061143a6109f1565b9050612b676114498284611ead565b11156114bd5760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f6620546f6b656e7300000000000000000000000000000000000000000000606482015260840161082e565b60095434906114cc9084611ed3565b111561151a5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161082e565b60005b828110156109805761153333610f1783856127df565b8061153d816127f7565b91505061151d565b6001600160a01b03821633141561159e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116143383611b46565b6116865760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161082e565b610f2e84848484611edf565b6000818152600360205260409020546060906001600160a01b031661171f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161082e565b6000611729611f5d565b905060008151116117495760405180602001604052806000815250611774565b8061175384611f6c565b604051602001611764929190612828565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146117c35760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b60005b8151811015610b4e576117f18282815181106117e4576117e4612812565b6020026020010151610985565b806117fb816127f7565b9150506117c6565b6000546001600160a01b0316331461184b5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600a805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b031633146118b05760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6001600160a01b03811661192c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161082e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166119dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082e565b6000818152600360205260409020546001600160a01b031615611a425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082e565b6001600160a01b0382166000908152600460205260408120805460019290611a6b9084906127df565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b3b151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b0d82611092565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611bbf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082e565b6000611bca83611092565b9050806001600160a01b0316846001600160a01b03161480611c055750836001600160a01b0316611bfa846107b9565b6001600160a01b0316145b80611c3557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c5082611092565b6001600160a01b031614611ccc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161082e565b6001600160a01b038216611d475760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161082e565b611d52600082611ad8565b6001600160a01b0383166000908152600460205260408120805460019290611d7b90849061277f565b90915550506001600160a01b0382166000908152600460205260408120805460019290611da99084906127df565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e57576040519150601f19603f3d011682016040523d82523d6000602084013e611e5c565b606091505b50509050806109805760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f2077696474686472617720457468657200000000000000604482015260640161082e565b600061177482846127df565b610b4e82826040518060200160405280600081525061209e565b60006117748284612796565b611eea848484611c3d565b611ef68484848461211c565b610f2e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161082e565b6060600880546107369061272e565b606081611fac57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611fd65780611fc0816127f7565b9150611fcf9050600a836127cb565b9150611fb0565b60008167ffffffffffffffff811115611ff157611ff161246a565b6040519080825280601f01601f19166020018201604052801561201b576020820181803683370190505b5090505b8415611c355761203060018361277f565b915061203d600a86612857565b6120489060306127df565b60f81b81838151811061205d5761205d612812565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612097600a866127cb565b945061201f565b6120a88383612265565b6120b5600084848461211c565b6109805760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161082e565b60006001600160a01b0384163b1561225a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061216090339089908890889060040161286b565b6020604051808303816000875af192505050801561219b575060408051601f3d908101601f19168201909252612198918101906128a7565b60015b612240573d8080156121c9576040519150601f19603f3d011682016040523d82523d6000602084013e6121ce565b606091505b5080516122385760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161082e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c35565b506001949350505050565b61226f8282611987565b610b4e600780546001019055565b8280546122899061272e565b90600052602060002090601f0160209004810192826122ab57600085556122f1565b82601f106122c457805160ff19168380011785556122f1565b828001600101855582156122f1579182015b828111156122f15782518255916020019190600101906122d6565b506122fd929150612301565b5090565b5b808211156122fd5760008155600101612302565b6001600160e01b031981168114610db057600080fd5b60006020828403121561233e57600080fd5b813561177481612316565b60005b8381101561236457818101518382015260200161234c565b83811115610f2e5750506000910152565b6000815180845261238d816020860160208601612349565b601f01601f19169290920160200192915050565b6020815260006117746020830184612375565b6000602082840312156123c657600080fd5b5035919050565b80356001600160a01b03811681146123e457600080fd5b919050565b600080604083850312156123fc57600080fd5b612405836123cd565b946020939093013593505050565b60006020828403121561242557600080fd5b611774826123cd565b60008060006060848603121561244357600080fd5b61244c846123cd565b925061245a602085016123cd565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156124a9576124a961246a565b604052919050565b600067ffffffffffffffff8311156124cb576124cb61246a565b6124de601f8401601f1916602001612480565b90508281528383830111156124f257600080fd5b828260208301376000602084830101529392505050565b60006020828403121561251b57600080fd5b813567ffffffffffffffff81111561253257600080fd5b8201601f8101841361254357600080fd5b611c35848235602084016124b1565b6020808252825182820181905260009190848201906040850190845b8181101561258a5783518352928401929184019160010161256e565b50909695505050505050565b600080604083850312156125a957600080fd5b6125b2836123cd565b9150602083013580151581146125c757600080fd5b809150509250929050565b600080600080608085870312156125e857600080fd5b6125f1856123cd565b93506125ff602086016123cd565b925060408501359150606085013567ffffffffffffffff81111561262257600080fd5b8501601f8101871361263357600080fd5b612642878235602084016124b1565b91505092959194509250565b6000602080838503121561266157600080fd5b823567ffffffffffffffff8082111561267957600080fd5b818501915085601f83011261268d57600080fd5b81358181111561269f5761269f61246a565b8060051b91506126b0848301612480565b81815291830184019184810190888411156126ca57600080fd5b938501935b838510156126ef576126e0856123cd565b825293850193908501906126cf565b98975050505050505050565b6000806040838503121561270e57600080fd5b612717836123cd565b9150612725602084016123cd565b90509250929050565b600181811c9082168061274257607f821691505b6020821081141561276357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561279157612791612769565b500390565b60008160001904831182151516156127b0576127b0612769565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826127da576127da6127b5565b500490565b600082198211156127f2576127f2612769565b500190565b600060001982141561280b5761280b612769565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000835161283a818460208801612349565b83519083019061284e818360208801612349565b01949350505050565b600082612866576128666127b5565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261289d6080830184612375565b9695505050505050565b6000602082840312156128b957600080fd5b81516117748161231656fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220bf991799be7750a8d0a0ddea703f7bb3d1c762b66a5296975cdb2e2b1d6f654e64736f6c634300080b00334552433732313a207472616e7366657220746f206e6f6e20455243373231526568747470733a2f2f697066732e696f2f697066732f516d5074694a614d4b67527959723559354579704253516e344d76614459335a6d474e39617a446b6948463763642f

Deployed Bytecode

0x6080604052600436106102175760003560e01c80636352211e11610126578063b88d4fde116100a7578063eb8d244411610079578063f032554911610061578063f03255491461063f578063f2fde38b14610654578063f47c84c51461067457005b8063eb8d244414610610578063eff31e9e1461062a57005b8063b88d4fde14610567578063c87b56dd14610587578063e1dc8477146105a7578063e985e9c5146105c757005b80638da5cb5b116100f857806395d89b41116100e057806395d89b411461051f578063a0712d6814610534578063a22cb4651461054757005b80638da5cb5b146104e157806391b7f5ed146104ff57005b80636352211e1461047657806370a0823114610496578063715018a6146104b65780637ff9b596146104cb57005b806327ac36c4116101b05780633ccfd60b11610182578063419889c31161016a578063419889c31461040957806342842e0e14610429578063438b63001461044957005b80633ccfd60b146103d457806340c10f19146103e957005b806327ac36c41461035157806330176e131461036657806334918dfd146103865780633af32abf1461039b57005b8063125f48e4116101e9578063125f48e4146102cf57806318160ddd146102ef5780631f0234d81461031257806323b872dd1461033157005b806301ffc9a71461022057806306fdde0314610255578063081812fc14610277578063095ea7b3146102af57005b3661021e57005b005b34801561022c57600080fd5b5061024061023b36600461232c565b61068a565b60405190151581526020015b60405180910390f35b34801561026157600080fd5b5061026a610727565b60405161024c91906123a1565b34801561028357600080fd5b506102976102923660046123b4565b6107b9565b6040516001600160a01b03909116815260200161024c565b3480156102bb57600080fd5b5061021e6102ca3660046123e9565b610853565b3480156102db57600080fd5b5061021e6102ea366004612413565b610985565b3480156102fb57600080fd5b506103046109f1565b60405190815260200161024c565b34801561031e57600080fd5b50600a5461024090610100900460ff1681565b34801561033d57600080fd5b5061021e61034c36600461242e565b610a01565b34801561035d57600080fd5b5061021e610a88565b34801561037257600080fd5b5061021e610381366004612509565b610af3565b34801561039257600080fd5b5061021e610b52565b3480156103a757600080fd5b506102406103b6366004612413565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156103e057600080fd5b5061021e610bc2565b3480156103f557600080fd5b5061021e6104043660046123e9565b610db3565b34801561041557600080fd5b5061021e610424366004612413565b610f34565b34801561043557600080fd5b5061021e61044436600461242e565b610f9d565b34801561045557600080fd5b50610469610464366004612413565b610fb8565b60405161024c9190612552565b34801561048257600080fd5b506102976104913660046123b4565b611092565b3480156104a257600080fd5b506103046104b1366004612413565b61111d565b3480156104c257600080fd5b5061021e6111b7565b3480156104d757600080fd5b5061030460095481565b3480156104ed57600080fd5b506000546001600160a01b0316610297565b34801561050b57600080fd5b5061021e61051a3660046123b4565b611249565b34801561052b57600080fd5b5061026a6112d2565b61021e6105423660046123b4565b6112e1565b34801561055357600080fd5b5061021e610562366004612596565b611545565b34801561057357600080fd5b5061021e6105823660046125d2565b61160a565b34801561059357600080fd5b5061026a6105a23660046123b4565b611692565b3480156105b357600080fd5b5061021e6105c236600461264e565b61177b565b3480156105d357600080fd5b506102406105e23660046126fb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561061c57600080fd5b50600a546102409060ff1681565b34801561063657600080fd5b50610304601a81565b34801561064b57600080fd5b5061021e611803565b34801561066057600080fd5b5061021e61066f366004612413565b611868565b34801561068057600080fd5b50610304612b6781565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106ed57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061072157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600180546107369061272e565b80601f01602080910402602001604051908101604052809291908181526020018280546107629061272e565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166108375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061085e82611092565b9050806001600160a01b0316836001600160a01b031614156108e85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161082e565b336001600160a01b0382161480610904575061090481336105e2565b6109765760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082e565b6109808383611ad8565b505050565b6000546001600160a01b031633146109cd5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b60006109fc60075490565b905090565b610a0b3382611b46565b610a7d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161082e565b610980838383611c3d565b6000546001600160a01b03163314610ad05760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b610af1610ae56000546001600160a01b031690565b6104046001601a61277f565b565b6000546001600160a01b03163314610b3b5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b8051610b4e90600890602084019061227d565b5050565b6000546001600160a01b03163314610b9a5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600a805460ff19811660ff918216159081179092551615610af157600a805461ff0019169055565b6000546001600160a01b03163314610c0a5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b4780610c585760405162461bcd60e51b815260206004820152601360248201527f496e737566666963656e742062616c616e636500000000000000000000000000604482015260640161082e565b610c8c73e3ce6966c6dcdfb49055d8d0c6d46c09cdbd13f76064610c7d84601e612796565b610c8791906127cb565b611e0a565b610cb17312d7f4c942c8264bd1f0d3c3b2313ef7940302226064610c7d846019612796565b610cd673d7d9b479106ef63df5e46c1d9caa5db4078e2ac36064610c7d846014612796565b610cfb737356646d4bac2ee3c92700f213851fd7ae9b35336064610c7d846009612796565b610d1e7374f3647c2b76bd5257d7c1df25b1759e8fac7442610c876064846127cb565b610d43737297e66567526781ca42b818bff80bb7478769556064610c7d846005612796565b610d6873b57df54d276b3555b2f99ab5c1266cbe4e931b1e6064610c7d846005612796565b610d8b73f40fd88ac59a206d009a07f8c09828a01e2acc0d610c876064846127cb565b610db073743ca37e0b8bafb4ca2d49382f820410d6e6e4316064610c7d846004612796565b50565b6000546001600160a01b03163314610dfb5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6000610e056109f1565b9050612b67610e148284611ead565b1115610e885760405162461bcd60e51b815260206004820152602960248201527f5265736572766520776f756c6420657863656564206d617820737570706c792060448201527f6f6620546f6b656e730000000000000000000000000000000000000000000000606482015260840161082e565b601a8210610efe5760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420323520746f6b656e7320617420612074696d60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015260840161082e565b60005b82811015610f2e57610f1c84610f1783856127df565b611eb9565b80610f26816127f7565b915050610f01565b50505050565b6000546001600160a01b03163314610f7c5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b6109808383836040518060200160405280600081525061160a565b60606000610fc58361111d565b905060008167ffffffffffffffff811115610fe257610fe261246a565b60405190808252806020026020018201604052801561100b578160200160208202803683370190505b509050600160005b8381108015611023575060075482105b1561108857856001600160a01b031661103b83611092565b6001600160a01b03161415611076578183828151811061105d5761105d612812565b602090810291909101015280611072816127f7565b9150505b81611080816127f7565b925050611013565b5090949350505050565b6000818152600360205260408120546001600160a01b0316806107215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161082e565b60006001600160a01b03821661119b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161082e565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146111ff5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112915760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600981905560408051338152602081018390527f2a270679203ad5c6be2af882c755f81ff060752614a378c1804df57dd7d2add0910160405180910390a150565b6060600280546107369061272e565b600a54610100900460ff161561135557336000908152600b602052604090205460ff166113505760405162461bcd60e51b815260206004820152601a60248201527f73656e646572206973204e4f542057686974656c697374656420000000000000604482015260640161082e565b6113a7565b600a5460ff166113a75760405162461bcd60e51b815260206004820152601360248201527f53616c65204e4f54206163746976652079657400000000000000000000000000604482015260640161082e565b6003816113b33361111d565b6113bd91906127df565b106114305760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d6178206d696e74206660448201527f6f722077616c6574000000000000000000000000000000000000000000000000606482015260840161082e565b600061143a6109f1565b9050612b676114498284611ead565b11156114bd5760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f6620546f6b656e7300000000000000000000000000000000000000000000606482015260840161082e565b60095434906114cc9084611ed3565b111561151a5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161082e565b60005b828110156109805761153333610f1783856127df565b8061153d816127f7565b91505061151d565b6001600160a01b03821633141561159e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116143383611b46565b6116865760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161082e565b610f2e84848484611edf565b6000818152600360205260409020546060906001600160a01b031661171f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161082e565b6000611729611f5d565b905060008151116117495760405180602001604052806000815250611774565b8061175384611f6c565b604051602001611764929190612828565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146117c35760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b60005b8151811015610b4e576117f18282815181106117e4576117e4612812565b6020026020010151610985565b806117fb816127f7565b9150506117c6565b6000546001600160a01b0316331461184b5760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b600a805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b031633146118b05760405162461bcd60e51b815260206004820181905260248201526000805160206128c5833981519152604482015260640161082e565b6001600160a01b03811661192c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161082e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166119dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082e565b6000818152600360205260409020546001600160a01b031615611a425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082e565b6001600160a01b0382166000908152600460205260408120805460019290611a6b9084906127df565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b3b151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b0d82611092565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611bbf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082e565b6000611bca83611092565b9050806001600160a01b0316846001600160a01b03161480611c055750836001600160a01b0316611bfa846107b9565b6001600160a01b0316145b80611c3557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c5082611092565b6001600160a01b031614611ccc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161082e565b6001600160a01b038216611d475760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161082e565b611d52600082611ad8565b6001600160a01b0383166000908152600460205260408120805460019290611d7b90849061277f565b90915550506001600160a01b0382166000908152600460205260408120805460019290611da99084906127df565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e57576040519150601f19603f3d011682016040523d82523d6000602084013e611e5c565b606091505b50509050806109805760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f2077696474686472617720457468657200000000000000604482015260640161082e565b600061177482846127df565b610b4e82826040518060200160405280600081525061209e565b60006117748284612796565b611eea848484611c3d565b611ef68484848461211c565b610f2e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161082e565b6060600880546107369061272e565b606081611fac57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611fd65780611fc0816127f7565b9150611fcf9050600a836127cb565b9150611fb0565b60008167ffffffffffffffff811115611ff157611ff161246a565b6040519080825280601f01601f19166020018201604052801561201b576020820181803683370190505b5090505b8415611c355761203060018361277f565b915061203d600a86612857565b6120489060306127df565b60f81b81838151811061205d5761205d612812565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612097600a866127cb565b945061201f565b6120a88383612265565b6120b5600084848461211c565b6109805760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161082e565b60006001600160a01b0384163b1561225a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061216090339089908890889060040161286b565b6020604051808303816000875af192505050801561219b575060408051601f3d908101601f19168201909252612198918101906128a7565b60015b612240573d8080156121c9576040519150601f19603f3d011682016040523d82523d6000602084013e6121ce565b606091505b5080516122385760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161082e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c35565b506001949350505050565b61226f8282611987565b610b4e600780546001019055565b8280546122899061272e565b90600052602060002090601f0160209004810192826122ab57600085556122f1565b82601f106122c457805160ff19168380011785556122f1565b828001600101855582156122f1579182015b828111156122f15782518255916020019190600101906122d6565b506122fd929150612301565b5090565b5b808211156122fd5760008155600101612302565b6001600160e01b031981168114610db057600080fd5b60006020828403121561233e57600080fd5b813561177481612316565b60005b8381101561236457818101518382015260200161234c565b83811115610f2e5750506000910152565b6000815180845261238d816020860160208601612349565b601f01601f19169290920160200192915050565b6020815260006117746020830184612375565b6000602082840312156123c657600080fd5b5035919050565b80356001600160a01b03811681146123e457600080fd5b919050565b600080604083850312156123fc57600080fd5b612405836123cd565b946020939093013593505050565b60006020828403121561242557600080fd5b611774826123cd565b60008060006060848603121561244357600080fd5b61244c846123cd565b925061245a602085016123cd565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156124a9576124a961246a565b604052919050565b600067ffffffffffffffff8311156124cb576124cb61246a565b6124de601f8401601f1916602001612480565b90508281528383830111156124f257600080fd5b828260208301376000602084830101529392505050565b60006020828403121561251b57600080fd5b813567ffffffffffffffff81111561253257600080fd5b8201601f8101841361254357600080fd5b611c35848235602084016124b1565b6020808252825182820181905260009190848201906040850190845b8181101561258a5783518352928401929184019160010161256e565b50909695505050505050565b600080604083850312156125a957600080fd5b6125b2836123cd565b9150602083013580151581146125c757600080fd5b809150509250929050565b600080600080608085870312156125e857600080fd5b6125f1856123cd565b93506125ff602086016123cd565b925060408501359150606085013567ffffffffffffffff81111561262257600080fd5b8501601f8101871361263357600080fd5b612642878235602084016124b1565b91505092959194509250565b6000602080838503121561266157600080fd5b823567ffffffffffffffff8082111561267957600080fd5b818501915085601f83011261268d57600080fd5b81358181111561269f5761269f61246a565b8060051b91506126b0848301612480565b81815291830184019184810190888411156126ca57600080fd5b938501935b838510156126ef576126e0856123cd565b825293850193908501906126cf565b98975050505050505050565b6000806040838503121561270e57600080fd5b612717836123cd565b9150612725602084016123cd565b90509250929050565b600181811c9082168061274257607f821691505b6020821081141561276357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561279157612791612769565b500390565b60008160001904831182151516156127b0576127b0612769565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826127da576127da6127b5565b500490565b600082198211156127f2576127f2612769565b500190565b600060001982141561280b5761280b612769565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000835161283a818460208801612349565b83519083019061284e818360208801612349565b01949350505050565b600082612866576128666127b5565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261289d6080830184612375565b9695505050505050565b6000602082840312156128b957600080fd5b81516117748161231656fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220bf991799be7750a8d0a0ddea703f7bb3d1c762b66a5296975cdb2e2b1d6f654e64736f6c634300080b0033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.