ETH Price: $2,151.68 (-0.64%)
Gas: 0.85 Gwei

Token

OneOnes (11)
 

Overview

Max Total Supply

6,565 11

Holders

3,330

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
justbenice.eth
Balance
1 11
0x061e959e956fEe494F5b3362cc75De47af6Ccc64
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

OneOnes is a collection of 6565 companions that will transport you to the hidden Magical World. The OneOnes is an NFT project built on storytelling and interaction expanding the Magical World created by Migrating Lines in his 1/1 art.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OneOnes

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 14 : OneOnes.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/FrankNFT-labs/ERC721F/blob/v1.0.2/ERC721F.sol";
/**
* @title OneOnes contract
* @dev Extends ERC721F Non-Fungible Token Standard basic implementation.
* Optimized to no longer use ERC721Enumarable , but still provide a totalSupply() implementation.
* @author @FrankNFT.eth
*
*/
contract OneOnes is ERC721F {
uint256 public tokenPrice = 0.09 ether;
uint256 public preSaleTokenPrice = 0.08 ether;
uint256 public constant MAX_TOKENS=6565;
uint public constant MAX_PURCHASE = 26; // set 1 to high to avoid some gas
uint public constant MAX_RESERVE = 26; // set 1 to high to avoid some gas
string public constant IMAGE_HASH="df5518ebd60e4dc03b603c990d211a1e075e5dd4e6d7bf71fc40d4766b7d21a4";
bool public saleIsActive;
bool public preSaleIsActive;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 14 : 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 ERC721F
* @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 @FrankNFT.eth
*
*/
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 3 of 14 : 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 4 of 14 : 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 5 of 14 : 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 6 of 14 : 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 7 of 14 : 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 8 of 14 : 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 9 of 14 : 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 10 of 14 : 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 11 of 14 : 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 12 of 14 : 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 13 of 14 : 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 14 of 14 : 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

API
[{"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":"IMAGE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"addAllowList","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":"address","name":"_address","type":"address"}],"name":"getAllowedMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAllowlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":[],"name":"preSaleTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeAllowList","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"}]

608060405267013fbe85edc9000060095567011c37937e080000600a553480156200002957600080fd5b50604051806040016040528060078152602001664f6e654f6e657360c81b81525060405180604001604052806002815260200161313160f01b81525081816000620000796200013e60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000d890600190602085019062000536565b508051620000ee90600290602084019062000536565b505050505062000117604051806060016040528060368152602001620031f66036913962000142565b6200013873f40fd88ac59a206d009a07f8c09828a01e2acc0d6000620001bb565b620006ed565b3390565b6000546001600160a01b03163314620001a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620001b790600890602084019062000536565b5050565b620001b7828260405180602001604052806000815250620001dd60201b60201c565b620001e9838362000255565b620001f8600084848462000283565b620002505760405162461bcd60e51b81526020600482015260326024820152600080516020620031d683398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000199565b505050565b6200026c8282620003df60201b62001b1b1760201c565b620001b760076200052760201b62001c5d1760201c565b6000620002a4846001600160a01b03166200053060201b62001c661760201c565b15620003d357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620002de903390899088908890600401620005dc565b6020604051808303816000875af19250505080156200031c575060408051601f3d908101601f19168201909252620003199181019062000657565b60015b620003b8573d8080156200034d576040519150601f19603f3d011682016040523d82523d6000602084013e62000352565b606091505b508051600003620003b05760405162461bcd60e51b81526020600482015260326024820152600080516020620031d683398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000199565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620003d7565b5060015b949350505050565b6001600160a01b038216620004375760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000199565b6000818152600360205260409020546001600160a01b0316156200049e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000199565b6001600160a01b0382166000908152600460205260408120805460019290620004c99084906200068a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b3b151590565b8280546200054490620006b1565b90600052602060002090601f016020900481019282620005685760008555620005b3565b82601f106200058357805160ff1916838001178555620005b3565b82800160010185558215620005b3579182015b82811115620005b357825182559160200191906001019062000596565b50620005c1929150620005c5565b5090565b5b80821115620005c15760008155600101620005c6565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b828110156200062b5785810182015185820160a0015281016200060d565b828111156200063e57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200066a57600080fd5b81516001600160e01b0319811681146200068357600080fd5b9392505050565b60008219821115620006ac57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620006c657607f821691505b602082108103620006e757634e487b7160e01b600052602260045260246000fd5b50919050565b612ad980620006fd6000396000f3fe6080604052600436106102775760003560e01c8063715018a611610156578063b88d4fde116100bf578063eb8d244411610079578063f032554911610061578063f0325549146106ea578063f2fde38b146106ff578063f47c84c51461071f57005b8063eb8d2444146106d0578063eff31e9e146104f657005b8063ca480c30116100a7578063ca480c3014610647578063e1dc847714610667578063e985e9c51461068757005b8063b88d4fde14610607578063c87b56dd1461062757005b806395d89b4111610110578063a0712d68116100f8578063a0712d68146105bf578063a22cb465146105d2578063a685412f146105f257005b806395d89b411461058a5780639da211671461059f57005b80637ff9b5961161013e5780637ff9b596146105365780638da5cb5b1461054c57806391b7f5ed1461056a57005b8063715018a61461050b5780637259bce31461052057005b806334918dfd116101f85780636352211e116101b25780636c350ba61161019a5780636c350ba61461049d57806370a08231146104d65780637146bd08146104f657005b80636352211e1461045d57806367df005e1461047d57005b806340c10f19116101e057806340c10f19146103f057806342842e0e14610410578063438b63001461043057005b806334918dfd146103c65780633ccfd60b146103db57005b806318160ddd1161024957806323b872dd1161023157806323b872dd1461037157806327ac36c41461039157806330176e13146103a657005b806318160ddd1461032f5780631f0234d81461035257005b806301ffc9a71461028057806306fdde03146102b5578063081812fc146102d7578063095ea7b31461030f57005b3661027e57005b005b34801561028c57600080fd5b506102a061029b3660046124ae565b610735565b60405190151581526020015b60405180910390f35b3480156102c157600080fd5b506102ca6107d2565b6040516102ac9190612523565b3480156102e357600080fd5b506102f76102f2366004612536565b610864565b6040516001600160a01b0390911681526020016102ac565b34801561031b57600080fd5b5061027e61032a36600461256b565b6108fe565b34801561033b57600080fd5b50610344610a2f565b6040519081526020016102ac565b34801561035e57600080fd5b50600b546102a090610100900460ff1681565b34801561037d57600080fd5b5061027e61038c366004612595565b610a3f565b34801561039d57600080fd5b5061027e610ac6565b3480156103b257600080fd5b5061027e6103c1366004612670565b610b31565b3480156103d257600080fd5b5061027e610b90565b3480156103e757600080fd5b5061027e610c00565b3480156103fc57600080fd5b5061027e61040b36600461256b565b610d7f565b34801561041c57600080fd5b5061027e61042b366004612595565b610ee4565b34801561043c57600080fd5b5061045061044b3660046126b9565b610eff565b6040516102ac91906126d4565b34801561046957600080fd5b506102f7610478366004612536565b610fd7565b34801561048957600080fd5b506103446104983660046126b9565b611062565b3480156104a957600080fd5b506102a06104b83660046126b9565b6001600160a01b03166000908152600c602052604090205460ff1690565b3480156104e257600080fd5b506103446104f13660046126b9565b611086565b34801561050257600080fd5b50610344601a81565b34801561051757600080fd5b5061027e611120565b34801561052c57600080fd5b50610344600a5481565b34801561054257600080fd5b5061034460095481565b34801561055857600080fd5b506000546001600160a01b03166102f7565b34801561057657600080fd5b5061027e610585366004612536565b6111b2565b34801561059657600080fd5b506102ca61123b565b3480156105ab57600080fd5b5061027e6105ba3660046126b9565b61124a565b61027e6105cd366004612536565b6112b6565b3480156105de57600080fd5b5061027e6105ed366004612718565b611655565b3480156105fe57600080fd5b506102ca611719565b34801561061357600080fd5b5061027e610622366004612754565b611735565b34801561063357600080fd5b506102ca610642366004612536565b6117bd565b34801561065357600080fd5b5061027e6106623660046126b9565b6118a6565b34801561067357600080fd5b5061027e6106823660046127d0565b61190f565b34801561069357600080fd5b506102a06106a236600461287d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106dc57600080fd5b50600b546102a09060ff1681565b3480156106f657600080fd5b5061027e611997565b34801561070b57600080fd5b5061027e61071a3660046126b9565b6119fc565b34801561072b57600080fd5b506103446119a581565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061079857506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107cc57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600180546107e1906128b0565b80601f016020809104026020016040519081016040528092919081815260200182805461080d906128b0565b801561085a5780601f1061082f5761010080835404028352916020019161085a565b820191906000526020600020905b81548152906001019060200180831161083d57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166108e25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061090982610fd7565b9050806001600160a01b0316836001600160a01b0316036109925760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016108d9565b336001600160a01b03821614806109ae57506109ae81336106a2565b610a205760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108d9565b610a2a8383611c6c565b505050565b6000610a3a60075490565b905090565b610a493382611cda565b610abb5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108d9565b610a2a838383611dd1565b6000546001600160a01b03163314610b0e5760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b610b2f610b236000546001600160a01b031690565b61040b6001601a612900565b565b6000546001600160a01b03163314610b795760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b8051610b8c9060089060208401906123ff565b5050565b6000546001600160a01b03163314610bd85760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b600b805460ff19811660ff918216159081179092551615610b2f57600b805461ff0019169055565b6000546001600160a01b03163314610c485760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b4780610c965760405162461bcd60e51b815260206004820152601360248201527f496e737566666963656e742062616c616e63650000000000000000000000000060448201526064016108d9565b610cca73f40fd88ac59a206d009a07f8c09828a01e2acc0d6064610cbb846005612917565b610cc5919061294c565b611f9e565b610cef73f450a5d6c4205ca8151fb1c6faf49a02c8a527fc6064610cbb846005612917565b610d1473209aed6244189fcc69e419befadc7ab4dcae0ab06064610cbb84601e612917565b610d397360b8630c9f3842674896732c826e0fcf559d4e8a6064610cbb846014612917565b610d5e736524f10644f7e10339743c4cb8bc46c0ed14f7456064610cbb846014612917565b610d7c7329a0ac7892d7bdf17cc43fa487443255946d01b747611f9e565b50565b6000546001600160a01b03163314610dc75760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b6000610dd1610a2f565b90506119a5610de08383612960565b1115610e545760405162461bcd60e51b815260206004820152602960248201527f5265736572766520776f756c6420657863656564206d617820737570706c792060448201527f6f6620546f6b656e73000000000000000000000000000000000000000000000060648201526084016108d9565b601a8210610eae5760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420323520746f6b656e7320617420612074696d6044820152606560f81b60648201526084016108d9565b60005b82811015610ede57610ecc84610ec78385612960565b612041565b80610ed681612978565b915050610eb1565b50505050565b610a2a83838360405180602001604052806000815250611735565b60606000610f0c83611086565b905060008167ffffffffffffffff811115610f2957610f296125d1565b604051908082528060200260200182016040528015610f52578160200160208202803683370190505b5090506000805b8381108015610f69575060075482105b15610fcd57856001600160a01b0316610f8183610fd7565b6001600160a01b031603610fbb5781838281518110610fa257610fa2612991565b602090810291909101015280610fb781612978565b9150505b81610fc581612978565b925050610f59565b5090949350505050565b6000818152600360205260408120546001600160a01b0316806107cc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016108d9565b6001600160a01b0381166000908152600d60205260408120546107cc906002612900565b60006001600160a01b0382166111045760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016108d9565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146111685760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146111fa5760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b600981905560408051338152602081018390527f2a270679203ad5c6be2af882c755f81ff060752614a378c1804df57dd7d2add0910160405180910390a150565b6060600280546107e1906128b0565b6000546001600160a01b031633146112925760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b600b54610100900460ff161561144457336000908152600c602052604090205460ff166113255760405162461bcd60e51b815260206004820152601a60248201527f73656e646572206973204e4f5420416c6c6f776c69737465642000000000000060448201526064016108d9565b336000908152600d6020526040902054600390611343908390612960565b106113b65760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d6178206d696e74206660448201527f6f722077616c657400000000000000000000000000000000000000000000000060648201526084016108d9565b336000908152600d60205260409020546113d1908290612960565b336000908152600d6020526040902055600a5434906113f1908390612917565b111561143f5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016108d9565b6114f3565b600b5460ff166114965760405162461bcd60e51b815260206004820152601360248201527f53616c65204e4f5420616374697665207965740000000000000000000000000060448201526064016108d9565b34816009546114a59190612917565b11156114f35760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016108d9565b600081116115435760405162461bcd60e51b815260206004820152601860248201527f6e756d6265724f664e6674732063616e6e6f742062652030000000000000000060448201526064016108d9565b601a811061159d5760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420323520746f6b656e7320617420612074696d6044820152606560f81b60648201526084016108d9565b60006115a7610a2f565b90506119a56115b68383612960565b111561162a5760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f6620546f6b656e730000000000000000000000000000000000000000000060648201526084016108d9565b60005b82811015610a2a5761164333610ec78385612960565b8061164d81612978565b91505061162d565b336001600160a01b038316036116ad5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108d9565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b604051806060016040528060408152602001612a646040913981565b61173f3383611cda565b6117b15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108d9565b610ede8484848461205b565b6000818152600360205260409020546060906001600160a01b031661184a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108d9565b60006118546120d9565b90506000815111611874576040518060200160405280600081525061189f565b8061187e846120e8565b60405160200161188f9291906129a7565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146118ee5760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b6000546001600160a01b031633146119575760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b60005b8151811015610b8c5761198582828151811061197857611978612991565b602002602001015161124a565b8061198f81612978565b91505061195a565b6000546001600160a01b031633146119df5760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b600b805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b03163314611a445760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b6001600160a01b038116611ac05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108d9565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216611b715760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108d9565b6000818152600360205260409020546001600160a01b031615611bd65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108d9565b6001600160a01b0382166000908152600460205260408120805460019290611bff908490612960565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b3b151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ca182610fd7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611d535760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d9565b6000611d5e83610fd7565b9050806001600160a01b0316846001600160a01b03161480611d995750836001600160a01b0316611d8e84610864565b6001600160a01b0316145b80611dc957506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611de482610fd7565b6001600160a01b031614611e605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016108d9565b6001600160a01b038216611edb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108d9565b611ee6600082611c6c565b6001600160a01b0383166000908152600460205260408120805460019290611f0f908490612900565b90915550506001600160a01b0382166000908152600460205260408120805460019290611f3d908490612960565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611feb576040519150601f19603f3d011682016040523d82523d6000602084013e611ff0565b606091505b5050905080610a2a5760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f207769647468647261772045746865720000000000000060448201526064016108d9565b610b8c82826040518060200160405280600081525061221d565b612066848484611dd1565b6120728484848461229b565b610ede5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108d9565b6060600880546107e1906128b0565b60608160000361212b57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612155578061213f81612978565b915061214e9050600a8361294c565b915061212f565b60008167ffffffffffffffff811115612170576121706125d1565b6040519080825280601f01601f19166020018201604052801561219a576020820181803683370190505b5090505b8415611dc9576121af600183612900565b91506121bc600a866129d6565b6121c7906030612960565b60f81b8183815181106121dc576121dc612991565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612216600a8661294c565b945061219e565b61222783836123e7565b612234600084848461229b565b610a2a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108d9565b60006001600160a01b0384163b156123dc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122df9033908990889088906004016129ea565b6020604051808303816000875af192505050801561231a575060408051601f3d908101601f1916820190925261231791810190612a26565b60015b6123c2573d808015612348576040519150601f19603f3d011682016040523d82523d6000602084013e61234d565b606091505b5080516000036123ba5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108d9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dc9565b506001949350505050565b6123f18282611b1b565b610b8c600780546001019055565b82805461240b906128b0565b90600052602060002090601f01602090048101928261242d5760008555612473565b82601f1061244657805160ff1916838001178555612473565b82800160010185558215612473579182015b82811115612473578251825591602001919060010190612458565b5061247f929150612483565b5090565b5b8082111561247f5760008155600101612484565b6001600160e01b031981168114610d7c57600080fd5b6000602082840312156124c057600080fd5b813561189f81612498565b60005b838110156124e65781810151838201526020016124ce565b83811115610ede5750506000910152565b6000815180845261250f8160208601602086016124cb565b601f01601f19169290920160200192915050565b60208152600061189f60208301846124f7565b60006020828403121561254857600080fd5b5035919050565b80356001600160a01b038116811461256657600080fd5b919050565b6000806040838503121561257e57600080fd5b6125878361254f565b946020939093013593505050565b6000806000606084860312156125aa57600080fd5b6125b38461254f565b92506125c16020850161254f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612610576126106125d1565b604052919050565b600067ffffffffffffffff831115612632576126326125d1565b612645601f8401601f19166020016125e7565b905082815283838301111561265957600080fd5b828260208301376000602084830101529392505050565b60006020828403121561268257600080fd5b813567ffffffffffffffff81111561269957600080fd5b8201601f810184136126aa57600080fd5b611dc984823560208401612618565b6000602082840312156126cb57600080fd5b61189f8261254f565b6020808252825182820181905260009190848201906040850190845b8181101561270c578351835292840192918401916001016126f0565b50909695505050505050565b6000806040838503121561272b57600080fd5b6127348361254f565b91506020830135801515811461274957600080fd5b809150509250929050565b6000806000806080858703121561276a57600080fd5b6127738561254f565b93506127816020860161254f565b925060408501359150606085013567ffffffffffffffff8111156127a457600080fd5b8501601f810187136127b557600080fd5b6127c487823560208401612618565b91505092959194509250565b600060208083850312156127e357600080fd5b823567ffffffffffffffff808211156127fb57600080fd5b818501915085601f83011261280f57600080fd5b813581811115612821576128216125d1565b8060051b91506128328483016125e7565b818152918301840191848101908884111561284c57600080fd5b938501935b83851015612871576128628561254f565b82529385019390850190612851565b98975050505050505050565b6000806040838503121561289057600080fd5b6128998361254f565b91506128a76020840161254f565b90509250929050565b600181811c908216806128c457607f821691505b6020821081036128e457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612912576129126128ea565b500390565b6000816000190483118215151615612931576129316128ea565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261295b5761295b612936565b500490565b60008219821115612973576129736128ea565b500190565b60006001820161298a5761298a6128ea565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600083516129b98184602088016124cb565b8351908301906129cd8183602088016124cb565b01949350505050565b6000826129e5576129e5612936565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612a1c60808301846124f7565b9695505050505050565b600060208284031215612a3857600080fd5b815161189f8161249856fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657264663535313865626436306534646330336236303363393930643231316131653037356535646434653664376266373166633430643437363662376432316134a2646970667358221220235e87ce6d8432c8f638a54aec7477c1ff1228bbfd62cf45c3532c76baca73d564736f6c634300080d00334552433732313a207472616e7366657220746f206e6f6e204552433732315265697066733a2f2f516d56373567757438727246726e35595063593677353379646363314768416942644872656b4c656a33727534672f

Deployed Bytecode

0x6080604052600436106102775760003560e01c8063715018a611610156578063b88d4fde116100bf578063eb8d244411610079578063f032554911610061578063f0325549146106ea578063f2fde38b146106ff578063f47c84c51461071f57005b8063eb8d2444146106d0578063eff31e9e146104f657005b8063ca480c30116100a7578063ca480c3014610647578063e1dc847714610667578063e985e9c51461068757005b8063b88d4fde14610607578063c87b56dd1461062757005b806395d89b4111610110578063a0712d68116100f8578063a0712d68146105bf578063a22cb465146105d2578063a685412f146105f257005b806395d89b411461058a5780639da211671461059f57005b80637ff9b5961161013e5780637ff9b596146105365780638da5cb5b1461054c57806391b7f5ed1461056a57005b8063715018a61461050b5780637259bce31461052057005b806334918dfd116101f85780636352211e116101b25780636c350ba61161019a5780636c350ba61461049d57806370a08231146104d65780637146bd08146104f657005b80636352211e1461045d57806367df005e1461047d57005b806340c10f19116101e057806340c10f19146103f057806342842e0e14610410578063438b63001461043057005b806334918dfd146103c65780633ccfd60b146103db57005b806318160ddd1161024957806323b872dd1161023157806323b872dd1461037157806327ac36c41461039157806330176e13146103a657005b806318160ddd1461032f5780631f0234d81461035257005b806301ffc9a71461028057806306fdde03146102b5578063081812fc146102d7578063095ea7b31461030f57005b3661027e57005b005b34801561028c57600080fd5b506102a061029b3660046124ae565b610735565b60405190151581526020015b60405180910390f35b3480156102c157600080fd5b506102ca6107d2565b6040516102ac9190612523565b3480156102e357600080fd5b506102f76102f2366004612536565b610864565b6040516001600160a01b0390911681526020016102ac565b34801561031b57600080fd5b5061027e61032a36600461256b565b6108fe565b34801561033b57600080fd5b50610344610a2f565b6040519081526020016102ac565b34801561035e57600080fd5b50600b546102a090610100900460ff1681565b34801561037d57600080fd5b5061027e61038c366004612595565b610a3f565b34801561039d57600080fd5b5061027e610ac6565b3480156103b257600080fd5b5061027e6103c1366004612670565b610b31565b3480156103d257600080fd5b5061027e610b90565b3480156103e757600080fd5b5061027e610c00565b3480156103fc57600080fd5b5061027e61040b36600461256b565b610d7f565b34801561041c57600080fd5b5061027e61042b366004612595565b610ee4565b34801561043c57600080fd5b5061045061044b3660046126b9565b610eff565b6040516102ac91906126d4565b34801561046957600080fd5b506102f7610478366004612536565b610fd7565b34801561048957600080fd5b506103446104983660046126b9565b611062565b3480156104a957600080fd5b506102a06104b83660046126b9565b6001600160a01b03166000908152600c602052604090205460ff1690565b3480156104e257600080fd5b506103446104f13660046126b9565b611086565b34801561050257600080fd5b50610344601a81565b34801561051757600080fd5b5061027e611120565b34801561052c57600080fd5b50610344600a5481565b34801561054257600080fd5b5061034460095481565b34801561055857600080fd5b506000546001600160a01b03166102f7565b34801561057657600080fd5b5061027e610585366004612536565b6111b2565b34801561059657600080fd5b506102ca61123b565b3480156105ab57600080fd5b5061027e6105ba3660046126b9565b61124a565b61027e6105cd366004612536565b6112b6565b3480156105de57600080fd5b5061027e6105ed366004612718565b611655565b3480156105fe57600080fd5b506102ca611719565b34801561061357600080fd5b5061027e610622366004612754565b611735565b34801561063357600080fd5b506102ca610642366004612536565b6117bd565b34801561065357600080fd5b5061027e6106623660046126b9565b6118a6565b34801561067357600080fd5b5061027e6106823660046127d0565b61190f565b34801561069357600080fd5b506102a06106a236600461287d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106dc57600080fd5b50600b546102a09060ff1681565b3480156106f657600080fd5b5061027e611997565b34801561070b57600080fd5b5061027e61071a3660046126b9565b6119fc565b34801561072b57600080fd5b506103446119a581565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061079857506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107cc57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600180546107e1906128b0565b80601f016020809104026020016040519081016040528092919081815260200182805461080d906128b0565b801561085a5780601f1061082f5761010080835404028352916020019161085a565b820191906000526020600020905b81548152906001019060200180831161083d57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166108e25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061090982610fd7565b9050806001600160a01b0316836001600160a01b0316036109925760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016108d9565b336001600160a01b03821614806109ae57506109ae81336106a2565b610a205760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108d9565b610a2a8383611c6c565b505050565b6000610a3a60075490565b905090565b610a493382611cda565b610abb5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108d9565b610a2a838383611dd1565b6000546001600160a01b03163314610b0e5760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b610b2f610b236000546001600160a01b031690565b61040b6001601a612900565b565b6000546001600160a01b03163314610b795760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b8051610b8c9060089060208401906123ff565b5050565b6000546001600160a01b03163314610bd85760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b600b805460ff19811660ff918216159081179092551615610b2f57600b805461ff0019169055565b6000546001600160a01b03163314610c485760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b4780610c965760405162461bcd60e51b815260206004820152601360248201527f496e737566666963656e742062616c616e63650000000000000000000000000060448201526064016108d9565b610cca73f40fd88ac59a206d009a07f8c09828a01e2acc0d6064610cbb846005612917565b610cc5919061294c565b611f9e565b610cef73f450a5d6c4205ca8151fb1c6faf49a02c8a527fc6064610cbb846005612917565b610d1473209aed6244189fcc69e419befadc7ab4dcae0ab06064610cbb84601e612917565b610d397360b8630c9f3842674896732c826e0fcf559d4e8a6064610cbb846014612917565b610d5e736524f10644f7e10339743c4cb8bc46c0ed14f7456064610cbb846014612917565b610d7c7329a0ac7892d7bdf17cc43fa487443255946d01b747611f9e565b50565b6000546001600160a01b03163314610dc75760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b6000610dd1610a2f565b90506119a5610de08383612960565b1115610e545760405162461bcd60e51b815260206004820152602960248201527f5265736572766520776f756c6420657863656564206d617820737570706c792060448201527f6f6620546f6b656e73000000000000000000000000000000000000000000000060648201526084016108d9565b601a8210610eae5760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420323520746f6b656e7320617420612074696d6044820152606560f81b60648201526084016108d9565b60005b82811015610ede57610ecc84610ec78385612960565b612041565b80610ed681612978565b915050610eb1565b50505050565b610a2a83838360405180602001604052806000815250611735565b60606000610f0c83611086565b905060008167ffffffffffffffff811115610f2957610f296125d1565b604051908082528060200260200182016040528015610f52578160200160208202803683370190505b5090506000805b8381108015610f69575060075482105b15610fcd57856001600160a01b0316610f8183610fd7565b6001600160a01b031603610fbb5781838281518110610fa257610fa2612991565b602090810291909101015280610fb781612978565b9150505b81610fc581612978565b925050610f59565b5090949350505050565b6000818152600360205260408120546001600160a01b0316806107cc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016108d9565b6001600160a01b0381166000908152600d60205260408120546107cc906002612900565b60006001600160a01b0382166111045760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016108d9565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146111685760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146111fa5760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b600981905560408051338152602081018390527f2a270679203ad5c6be2af882c755f81ff060752614a378c1804df57dd7d2add0910160405180910390a150565b6060600280546107e1906128b0565b6000546001600160a01b031633146112925760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b600b54610100900460ff161561144457336000908152600c602052604090205460ff166113255760405162461bcd60e51b815260206004820152601a60248201527f73656e646572206973204e4f5420416c6c6f776c69737465642000000000000060448201526064016108d9565b336000908152600d6020526040902054600390611343908390612960565b106113b65760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d6178206d696e74206660448201527f6f722077616c657400000000000000000000000000000000000000000000000060648201526084016108d9565b336000908152600d60205260409020546113d1908290612960565b336000908152600d6020526040902055600a5434906113f1908390612917565b111561143f5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016108d9565b6114f3565b600b5460ff166114965760405162461bcd60e51b815260206004820152601360248201527f53616c65204e4f5420616374697665207965740000000000000000000000000060448201526064016108d9565b34816009546114a59190612917565b11156114f35760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016108d9565b600081116115435760405162461bcd60e51b815260206004820152601860248201527f6e756d6265724f664e6674732063616e6e6f742062652030000000000000000060448201526064016108d9565b601a811061159d5760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420323520746f6b656e7320617420612074696d6044820152606560f81b60648201526084016108d9565b60006115a7610a2f565b90506119a56115b68383612960565b111561162a5760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f6620546f6b656e730000000000000000000000000000000000000000000060648201526084016108d9565b60005b82811015610a2a5761164333610ec78385612960565b8061164d81612978565b91505061162d565b336001600160a01b038316036116ad5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108d9565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b604051806060016040528060408152602001612a646040913981565b61173f3383611cda565b6117b15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108d9565b610ede8484848461205b565b6000818152600360205260409020546060906001600160a01b031661184a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108d9565b60006118546120d9565b90506000815111611874576040518060200160405280600081525061189f565b8061187e846120e8565b60405160200161188f9291906129a7565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146118ee5760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b6000546001600160a01b031633146119575760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b60005b8151811015610b8c5761198582828151811061197857611978612991565b602002602001015161124a565b8061198f81612978565b91505061195a565b6000546001600160a01b031633146119df5760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b600b805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b03163314611a445760405162461bcd60e51b81526020600482018190526024820152600080516020612a4483398151915260448201526064016108d9565b6001600160a01b038116611ac05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108d9565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216611b715760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108d9565b6000818152600360205260409020546001600160a01b031615611bd65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108d9565b6001600160a01b0382166000908152600460205260408120805460019290611bff908490612960565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b3b151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ca182610fd7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611d535760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d9565b6000611d5e83610fd7565b9050806001600160a01b0316846001600160a01b03161480611d995750836001600160a01b0316611d8e84610864565b6001600160a01b0316145b80611dc957506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611de482610fd7565b6001600160a01b031614611e605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016108d9565b6001600160a01b038216611edb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108d9565b611ee6600082611c6c565b6001600160a01b0383166000908152600460205260408120805460019290611f0f908490612900565b90915550506001600160a01b0382166000908152600460205260408120805460019290611f3d908490612960565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611feb576040519150601f19603f3d011682016040523d82523d6000602084013e611ff0565b606091505b5050905080610a2a5760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f207769647468647261772045746865720000000000000060448201526064016108d9565b610b8c82826040518060200160405280600081525061221d565b612066848484611dd1565b6120728484848461229b565b610ede5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108d9565b6060600880546107e1906128b0565b60608160000361212b57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612155578061213f81612978565b915061214e9050600a8361294c565b915061212f565b60008167ffffffffffffffff811115612170576121706125d1565b6040519080825280601f01601f19166020018201604052801561219a576020820181803683370190505b5090505b8415611dc9576121af600183612900565b91506121bc600a866129d6565b6121c7906030612960565b60f81b8183815181106121dc576121dc612991565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612216600a8661294c565b945061219e565b61222783836123e7565b612234600084848461229b565b610a2a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108d9565b60006001600160a01b0384163b156123dc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122df9033908990889088906004016129ea565b6020604051808303816000875af192505050801561231a575060408051601f3d908101601f1916820190925261231791810190612a26565b60015b6123c2573d808015612348576040519150601f19603f3d011682016040523d82523d6000602084013e61234d565b606091505b5080516000036123ba5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016108d9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dc9565b506001949350505050565b6123f18282611b1b565b610b8c600780546001019055565b82805461240b906128b0565b90600052602060002090601f01602090048101928261242d5760008555612473565b82601f1061244657805160ff1916838001178555612473565b82800160010185558215612473579182015b82811115612473578251825591602001919060010190612458565b5061247f929150612483565b5090565b5b8082111561247f5760008155600101612484565b6001600160e01b031981168114610d7c57600080fd5b6000602082840312156124c057600080fd5b813561189f81612498565b60005b838110156124e65781810151838201526020016124ce565b83811115610ede5750506000910152565b6000815180845261250f8160208601602086016124cb565b601f01601f19169290920160200192915050565b60208152600061189f60208301846124f7565b60006020828403121561254857600080fd5b5035919050565b80356001600160a01b038116811461256657600080fd5b919050565b6000806040838503121561257e57600080fd5b6125878361254f565b946020939093013593505050565b6000806000606084860312156125aa57600080fd5b6125b38461254f565b92506125c16020850161254f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612610576126106125d1565b604052919050565b600067ffffffffffffffff831115612632576126326125d1565b612645601f8401601f19166020016125e7565b905082815283838301111561265957600080fd5b828260208301376000602084830101529392505050565b60006020828403121561268257600080fd5b813567ffffffffffffffff81111561269957600080fd5b8201601f810184136126aa57600080fd5b611dc984823560208401612618565b6000602082840312156126cb57600080fd5b61189f8261254f565b6020808252825182820181905260009190848201906040850190845b8181101561270c578351835292840192918401916001016126f0565b50909695505050505050565b6000806040838503121561272b57600080fd5b6127348361254f565b91506020830135801515811461274957600080fd5b809150509250929050565b6000806000806080858703121561276a57600080fd5b6127738561254f565b93506127816020860161254f565b925060408501359150606085013567ffffffffffffffff8111156127a457600080fd5b8501601f810187136127b557600080fd5b6127c487823560208401612618565b91505092959194509250565b600060208083850312156127e357600080fd5b823567ffffffffffffffff808211156127fb57600080fd5b818501915085601f83011261280f57600080fd5b813581811115612821576128216125d1565b8060051b91506128328483016125e7565b818152918301840191848101908884111561284c57600080fd5b938501935b83851015612871576128628561254f565b82529385019390850190612851565b98975050505050505050565b6000806040838503121561289057600080fd5b6128998361254f565b91506128a76020840161254f565b90509250929050565b600181811c908216806128c457607f821691505b6020821081036128e457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612912576129126128ea565b500390565b6000816000190483118215151615612931576129316128ea565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261295b5761295b612936565b500490565b60008219821115612973576129736128ea565b500190565b60006001820161298a5761298a6128ea565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600083516129b98184602088016124cb565b8351908301906129cd8183602088016124cb565b01949350505050565b6000826129e5576129e5612936565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612a1c60808301846124f7565b9695505050505050565b600060208284031215612a3857600080fd5b815161189f8161249856fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657264663535313865626436306534646330336236303363393930643231316131653037356535646434653664376266373166633430643437363662376432316134a2646970667358221220235e87ce6d8432c8f638a54aec7477c1ff1228bbfd62cf45c3532c76baca73d564736f6c634300080d0033

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.