ETH Price: $2,283.23 (+2.93%)

Token

CHIBI DINOS (CHIBIDINOS)
 

Overview

Max Total Supply

10,000 CHIBIDINOS

Holders

3,054

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sanza.eth
Balance
1 CHIBIDINOS
0x2894f4fe2c4dfc83b20445cf1511d9892fc7ba73
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Chibi Dinos are 10,000 NFTs of different Chibis wearing Dino Suits. Jerseys of 10 different basketball teams are randomized.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ChibiDinos

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Audited
File 1 of 20 : ChibiDinos.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: Unlicense
// @title: Chibi Dinos
// @author: Chibi Dinos Team
//
// ______ __ __ __ .______ __ _______ __ .__ __. ______ _______.
// / || | | | | | | _ \ | | | \ | | | \ | | / __ \ / |
// | ,----'| |__| | | | | |_) | | | | .--. || | | \| | | | | | | (----`
// | | | __ | | | | _ < | | | | | || | | . ` | | | | | \ \
// | `----.| | | | | | | |_) | | | | '--' || | | |\ | | `--' | .----) |
// \______||__| |__| |__| |______/ |__| |_______/ |__| |__| \__| \______/ |_______/
//
//
pragma solidity ^0.8.0;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 20 : console.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.4.22 <0.9.0;
library console {
address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);
function _sendLogPayload(bytes memory payload) private view {
uint256 payloadLength = payload.length;
address consoleAddress = CONSOLE_ADDRESS;
assembly {
let payloadStart := add(payload, 32)
let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)
}
}
function log() internal view {
_sendLogPayload(abi.encodeWithSignature("log()"));
}
function logInt(int p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(int)", p0));
}
function logUint(uint p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 20 : 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 "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 20 : ERC721Burnable.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
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "../../../utils/Context.sol";
/**
* @title ERC721 Burnable Token
* @dev ERC721 Token that can be irreversibly burned (destroyed).
*/
abstract contract ERC721Burnable is Context, ERC721 {
/**
* @dev Burns `tokenId`. See {ERC721-_burn}.
*
* Requirements:
*
* - The caller must own `tokenId` or be an approved operator.
*/
function burn(uint256 tokenId) public virtual {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
_burn(tokenId);
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 20 : ERC721Enumerable.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 "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 20 : ERC721Pausable.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 "../ERC721.sol";
import "../../../security/Pausable.sol";
/**
* @dev ERC721 token with pausable token transfers, minting and burning.
*
* Useful for scenarios such as preventing trades until the end of an evaluation
* period, or having an emergency switch for freezing all token transfers in the
* event of a large bug.
*/
abstract contract ERC721Pausable is ERC721, Pausable {
/**
* @dev See {ERC721-_beforeTokenTransfer}.
*
* Requirements:
*
* - the contract must not be paused.
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 20 : ERC721URIStorage.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 "../ERC721.sol";
/**
* @dev ERC721 token with storage based token URI management.
*/
abstract contract ERC721URIStorage is ERC721 {
using Strings for uint256;
// Optional mapping for token URIs
mapping(uint256 => string) private _tokenURIs;
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");
string memory _tokenURI = _tokenURIs[tokenId];
string memory base = _baseURI();
// If there is no base URI, return the token URI.
if (bytes(base).length == 0) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 20 : 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.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 20 : 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
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 no longer needed starting with Solidity 0.8. 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 10 of 20 : 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
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 20 : 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 12 of 20 : IERC721Receiver.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;
/**
* @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 20 : 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 14 of 20 : 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 15 of 20 : 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
// 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) {
return msg.data;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 16 of 20 : 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 _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 17 of 20 : 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 18 of 20 : 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

File 19 of 20 : 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 20 of 20 : Pausable.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 allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_key","type":"string"},{"indexed":false,"internalType":"string","name":"_value","type":"string"}],"name":"AttributeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateChibi","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_ITEMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_ITEMS","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":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RENAME_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"key","type":"string"},{"internalType":"string","name":"value","type":"string"}],"name":"changeAttribute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b506040516200324a3803806200324a83398101604081905262000034916200040a565b604080518082018252600b81526a43484942492044494e4f5360a81b60208083019182528351808501909452600a845269434849424944494e4f5360b01b908401528151919291620000899160009162000364565b5080516200009f90600190602084019062000364565b505050620000bc620000b6620000f260201b60201c565b620000f6565b600a805460ff60a01b19169055620000d48162000148565b620000e06001620001b0565b50600c805461ffff1916905562000533565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001975760405162461bcd60e51b815260206004820181905260248201526000805160206200322a83398151915260448201526064015b60405180910390fd5b8051620001ac90600d90602084019062000364565b5050565b600a546001600160a01b03163314620001fb5760405162461bcd60e51b815260206004820181905260248201526000805160206200322a83398151915260448201526064016200018e565b600181151514156200021457620002116200021e565b50565b62000211620002cd565b62000232600a54600160a01b900460ff1690565b15620002745760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016200018e565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002b03390565b6040516001600160a01b03909116815260200160405180910390a1565b620002e1600a54600160a01b900460ff1690565b6200032f5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016200018e565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33620002b0565b8280546200037290620004e0565b90600052602060002090601f016020900481019282620003965760008555620003e1565b82601f10620003b157805160ff1916838001178555620003e1565b82800160010185558215620003e1579182015b82811115620003e1578251825591602001919060010190620003c4565b50620003ef929150620003f3565b5090565b5b80821115620003ef5760008155600101620003f4565b600060208083850312156200041d578182fd5b82516001600160401b038082111562000434578384fd5b818501915085601f83011262000448578384fd5b8151818111156200045d576200045d6200051d565b604051601f8201601f19908116603f011681019083821181831017156200048857620004886200051d565b816040528281528886848701011115620004a0578687fd5b8693505b82841015620004c35784840186015181850187015292850192620004a4565b82841115620004d457868684830101525b98975050505050505050565b600181811c90821680620004f557607f821691505b602082108114156200051757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612ce780620005436000396000f3fe60806040526004361061025c5760003560e01c80636352211e11610144578063b66a0e5d116100b6578063e927fc5c1161007a578063e927fc5c146106aa578063e985e9c5146106d2578063ed16e3a61461071b578063eff31e9e1461072e578063f0292a0314610743578063f2fde38b1461075857600080fd5b8063b66a0e5d14610625578063b88d4fde1461063a578063c87b56dd1461065a578063d547cfb71461067a578063d773154f1461068f57600080fd5b8063853828b611610108578063853828b61461059c5780638d859f3e146105a45780638da5cb5b146105bf57806395d89b41146105dd5780639b6a6709146105f2578063a22cb4651461060557600080fd5b80636352211e1461051257806370a0823114610532578063715018a6146105525780637e95eac414610567578063850dd0911461057c57600080fd5b80632f745c59116101dd578063438b6300116101a1578063438b63001461045b5780634f6ccce71461048857806355f804b3146104a857806357d4c4ee146104c857806359a7715a146104de5780635c975abb146104f357600080fd5b80632f745c59146103c05780633ad10ef6146103e057806340c10f191461040857806342842e0e1461041b57806342966c681461043b57600080fd5b8063095ea7b311610224578063095ea7b3146103275780630ffc67281461034757806318160ddd1461036b57806323b872dd1461038057806326a49e37146103a057600080fd5b806301ffc9a71461026157806302329a291461029657806304c98b2b146102b857806306fdde03146102cd578063081812fc146102ef575b600080fd5b34801561026d57600080fd5b5061028161027c366004612816565b610778565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b13660046127fc565b610789565b005b3480156102c457600080fd5b506102b66107da565b3480156102d957600080fd5b506102e2610813565b60405161028d9190612a01565b3480156102fb57600080fd5b5061030f61030a366004612881565b6108a5565b6040516001600160a01b03909116815260200161028d565b34801561033357600080fd5b506102b66103423660046127d3565b61093a565b34801561035357600080fd5b5061035d6103e881565b60405190815260200161028d565b34801561037757600080fd5b5060085461035d565b34801561038c57600080fd5b506102b661039b3660046126f6565b610a50565b3480156103ac57600080fd5b5061035d6103bb366004612881565b610a82565b3480156103cc57600080fd5b5061035d6103db3660046127d3565b610a95565b3480156103ec57600080fd5b5061030f736f095133e814200fcf06bc185569544249bd171381565b6102b66104163660046127d3565b610b2b565b34801561042757600080fd5b506102b66104363660046126f6565b610d24565b34801561044757600080fd5b506102b6610456366004612881565b610d3f565b34801561046757600080fd5b5061047b6104763660046126aa565b610db6565b60405161028d91906129bd565b34801561049457600080fd5b5061035d6104a3366004612881565b610e74565b3480156104b457600080fd5b506102b66104c336600461284e565b610f15565b3480156104d457600080fd5b5061035d61271081565b3480156104ea57600080fd5b5061035d610f56565b3480156104ff57600080fd5b50600a54600160a01b900460ff16610281565b34801561051e57600080fd5b5061030f61052d366004612881565b610f65565b34801561053e57600080fd5b5061035d61054d3660046126aa565b610fdc565b34801561055e57600080fd5b506102b6611063565b34801561057357600080fd5b5061035d600281565b34801561058857600080fd5b506102b6610597366004612899565b611099565b6102b6611142565b3480156105b057600080fd5b5061035d66d529ae9e86000081565b3480156105cb57600080fd5b50600a546001600160a01b031661030f565b3480156105e957600080fd5b506102e26111c8565b6102b66106003660046127d3565b6111d7565b34801561061157600080fd5b506102b66106203660046127aa565b61135c565b34801561063157600080fd5b506102b6611421565b34801561064657600080fd5b506102b6610655366004612731565b61145c565b34801561066657600080fd5b506102e2610675366004612881565b61148e565b34801561068657600080fd5b506102e2611569565b34801561069b57600080fd5b5061035d662386f26fc1000081565b3480156106b657600080fd5b5061030f73f27030ef0ace4dfee90f45c2ac6210bcf53ba7b481565b3480156106de57600080fd5b506102816106ed3660046126c4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102b66107293660046128bb565b6115f7565b34801561073a57600080fd5b5061035d606481565b34801561074f57600080fd5b5061035d601481565b34801561076457600080fd5b506102b66107733660046126aa565b61170b565b6000610783826117a3565b92915050565b600a546001600160a01b031633146107bc5760405162461bcd60e51b81526004016107b390612ab7565b60405180910390fd5b600181151514156107d2576107cf6117c8565b50565b6107cf61186d565b600a546001600160a01b031633146108045760405162461bcd60e51b81526004016107b390612ab7565b600c805460ff19166001179055565b60606000805461082290612bef565b80601f016020809104026020016040519081016040528092919081815260200182805461084e90612bef565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b3565b506000908152600460205260409020546001600160a01b031690565b600061094582610f65565b9050806001600160a01b0316836001600160a01b031614156109b35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107b3565b336001600160a01b03821614806109cf57506109cf81336106ed565b610a415760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107b3565b610a4b83836118f1565b505050565b610a5b335b8261195f565b610a775760405162461bcd60e51b81526004016107b390612b10565b610a4b838383611a56565b600061078366d529ae9e86000083611c01565b6000610aa083610fdc565b8210610b025760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107b3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b612710610b36611c0d565b1115610b545760405162461bcd60e51b81526004016107b390612aec565b600a546001600160a01b03163314610bb357600a54600160a01b900460ff1615610bb35760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107b3565b6000610bbd611c0d565b600c5490915060ff610100909104161515600114610c1d5760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f74207965742073746172746564000000000000000060448201526064016107b3565b612710811115610c3f5760405162461bcd60e51b81526004016107b390612aec565b612710610c4c8383612b61565b1115610c6a5760405162461bcd60e51b81526004016107b390612a94565b6014821115610cac5760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b60448201526064016107b3565b610cb582610a82565b341015610cf85760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b60448201526064016107b3565b60005b82811015610d1e57610d0c84611c18565b80610d1681612c2a565b915050610cfb565b50505050565b610a4b8383836040518060200160405280600081525061145c565b610d4833610a55565b610dad5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016107b3565b6107cf81611c6b565b60606000610dc383610fdc565b905060008167ffffffffffffffff811115610dee57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e17578160200160208202803683370190505b50905060005b82811015610e6c57610e2f8582610a95565b828281518110610e4f57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610e6481612c2a565b915050610e1d565b509392505050565b6000610e7f60085490565b8210610ee25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107b3565b60088281548110610f0357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610f3f5760405162461bcd60e51b81526004016107b390612ab7565b8051610f5290600d906020840190612550565b5050565b6000610f60611c0d565b905090565b6000818152600260205260408120546001600160a01b0316806107835760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107b3565b60006001600160a01b0382166110475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107b3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461108d5760405162461bcd60e51b81526004016107b390612ab7565b6110976000611d12565b565b600a546001600160a01b031633146110c35760405162461bcd60e51b81526004016107b390612ab7565b60006110cd611c0d565b90506127108111156110f15760405162461bcd60e51b81526004016107b390612aec565b6127106110fe8483612b61565b111561111c5760405162461bcd60e51b81526004016107b390612a94565b60005b83811015610d1e5761113083611c18565b8061113a81612c2a565b91505061111f565b600a546001600160a01b0316331461116c5760405162461bcd60e51b81526004016107b390612ab7565b478061117757600080fd5b6111aa736f095133e814200fcf06bc185569544249bd17136111a5606461119f856028611c01565b90611d64565b611d70565b6107cf73f27030ef0ace4dfee90f45c2ac6210bcf53ba7b447611d70565b60606001805461082290612bef565b60006111e1611c0d565b600c5490915060ff16151560011461123b5760405162461bcd60e51b815260206004820152601b60248201527f50726573616c6520686173206e6f74207965742073746172746564000000000060448201526064016107b3565b6103e881111561127d5760405162461bcd60e51b815260206004820152600d60248201526c141c995cd85b1948195b991959609a1b60448201526064016107b3565b6103e861128a8383612b61565b11156112a85760405162461bcd60e51b81526004016107b390612a94565b60028211156112ea5760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b60448201526064016107b3565b6112f382610a82565b3410156113365760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b60448201526064016107b3565b60005b82811015610d1e5761134a84611c18565b8061135481612c2a565b915050611339565b6001600160a01b0382163314156113b55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107b3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461144b5760405162461bcd60e51b81526004016107b390612ab7565b600c805461ff001916610100179055565b611466338361195f565b6114825760405162461bcd60e51b81526004016107b390612b10565b610d1e84848484611e06565b6000818152600260205260409020546060906001600160a01b031661150d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107b3565b6000611517611e39565b905060008151116115375760405180602001604052806000815250611562565b8061154184611e48565b604051602001611552929190612951565b6040516020818303038152906040525b9392505050565b600d805461157690612bef565b80601f01602080910402602001604051908101604052809291908181526020018280546115a290612bef565b80156115ef5780601f106115c4576101008083540402835291602001916115ef565b820191906000526020600020905b8154815290600101906020018083116115d257829003601f168201915b505050505081565b600061160284610f65565b9050336001600160a01b0382161461165c5760405162461bcd60e51b815260206004820152601760248201527f54686973206973206e6f7420796f75722043686962692e00000000000000000060448201526064016107b3565b34662386f26fc1000081146116ca5760405162461bcd60e51b815260206004820152602e60248201527f5468657265206973206120707269636520666f72206368616e67696e6720796f60448201526d3ab91030ba3a3934b13aba32b99760911b60648201526084016107b3565b847f071e2b5b04043a73f97c13dbdcd19e7f2d114c2277c6f5d4c6403e547756e45d85856040516116fc929190612a14565b60405180910390a25050505050565b600a546001600160a01b031633146117355760405162461bcd60e51b81526004016107b390612ab7565b6001600160a01b03811661179a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b3565b6107cf81611d12565b60006001600160e01b0319821663780e9d6360e01b1480610783575061078382611f62565b600a54600160a01b900460ff16156118155760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107b3565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118503390565b6040516001600160a01b03909116815260200160405180910390a1565b600a54600160a01b900460ff166118bd5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107b3565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611850565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061192682610f65565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b3565b60006119e383610f65565b9050806001600160a01b0316846001600160a01b03161480611a1e5750836001600160a01b0316611a13846108a5565b6001600160a01b0316145b80611a4e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a6982610f65565b6001600160a01b031614611ad15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107b3565b6001600160a01b038216611b335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107b3565b611b3e838383611fb2565b611b496000826118f1565b6001600160a01b0383166000908152600360205260408120805460019290611b72908490612bac565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ba0908490612b61565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006115628284612b8d565b6000610f60600b5490565b6000611c22611c0d565b9050611c32600b80546001019055565b611c3c8282611fbd565b60405181907f22cd2e2b3a93eacc03b35e195001b58e39ccbe011e621dd8cb3f7ce2966adc7790600090a25050565b6000611c7682610f65565b9050611c8481600084611fb2565b611c8f6000836118f1565b6001600160a01b0381166000908152600360205260408120805460019290611cb8908490612bac565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006115628284612b79565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611dbd576040519150601f19603f3d011682016040523d82523d6000602084013e611dc2565b606091505b5050905080610a4b5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107b3565b611e11848484611a56565b611e1d84848484611fd7565b610d1e5760405162461bcd60e51b81526004016107b390612a42565b6060600d805461082290612bef565b606081611e6c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e965780611e8081612c2a565b9150611e8f9050600a83612b79565b9150611e70565b60008167ffffffffffffffff811115611ebf57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ee9576020820181803683370190505b5090505b8415611a4e57611efe600183612bac565b9150611f0b600a86612c45565b611f16906030612b61565b60f81b818381518110611f3957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f5b600a86612b79565b9450611eed565b60006001600160e01b031982166380ac58cd60e01b1480611f9357506001600160e01b03198216635b5e139f60e01b145b8061078357506301ffc9a760e01b6001600160e01b0319831614610783565b610a4b8383836120e4565b610f5282826040518060200160405280600081525061215d565b60006001600160a01b0384163b156120d957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061201b903390899088908890600401612980565b602060405180830381600087803b15801561203557600080fd5b505af1925050508015612065575060408051601f3d908101601f1916820190925261206291810190612832565b60015b6120bf573d808015612093576040519150601f19603f3d011682016040523d82523d6000602084013e612098565b606091505b5080516120b75760405162461bcd60e51b81526004016107b390612a42565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a4e565b506001949350505050565b6120ef838383612190565b600a54600160a01b900460ff1615610a4b5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b60648201526084016107b3565b6121678383612248565b6121746000848484611fd7565b610a4b5760405162461bcd60e51b81526004016107b390612a42565b6001600160a01b0383166121eb576121e681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61220e565b816001600160a01b0316836001600160a01b03161461220e5761220e8382612396565b6001600160a01b03821661222557610a4b81612433565b826001600160a01b0316826001600160a01b031614610a4b57610a4b828261250c565b6001600160a01b03821661229e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107b3565b6000818152600260205260409020546001600160a01b0316156123035760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107b3565b61230f60008383611fb2565b6001600160a01b0382166000908152600360205260408120805460019290612338908490612b61565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016123a384610fdc565b6123ad9190612bac565b600083815260076020526040902054909150808214612400576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061244590600190612bac565b6000838152600960205260408120546008805493945090928490811061247b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106124aa57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124f057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061251783610fdc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461255c90612bef565b90600052602060002090601f01602090048101928261257e57600085556125c4565b82601f1061259757805160ff19168380011785556125c4565b828001600101855582156125c4579182015b828111156125c45782518255916020019190600101906125a9565b506125d09291506125d4565b5090565b5b808211156125d057600081556001016125d5565b600067ffffffffffffffff8084111561260457612604612c85565b604051601f8501601f19908116603f0116810190828211818310171561262c5761262c612c85565b8160405280935085815286868601111561264557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461267657600080fd5b919050565b8035801515811461267657600080fd5b600082601f83011261269b578081fd5b611562838335602085016125e9565b6000602082840312156126bb578081fd5b6115628261265f565b600080604083850312156126d6578081fd5b6126df8361265f565b91506126ed6020840161265f565b90509250929050565b60008060006060848603121561270a578081fd5b6127138461265f565b92506127216020850161265f565b9150604084013590509250925092565b60008060008060808587031215612746578081fd5b61274f8561265f565b935061275d6020860161265f565b925060408501359150606085013567ffffffffffffffff81111561277f578182fd5b8501601f8101871361278f578182fd5b61279e878235602084016125e9565b91505092959194509250565b600080604083850312156127bc578182fd5b6127c58361265f565b91506126ed6020840161267b565b600080604083850312156127e5578182fd5b6127ee8361265f565b946020939093013593505050565b60006020828403121561280d578081fd5b6115628261267b565b600060208284031215612827578081fd5b813561156281612c9b565b600060208284031215612843578081fd5b815161156281612c9b565b60006020828403121561285f578081fd5b813567ffffffffffffffff811115612875578182fd5b611a4e8482850161268b565b600060208284031215612892578081fd5b5035919050565b600080604083850312156128ab578182fd5b823591506126ed6020840161265f565b6000806000606084860312156128cf578283fd5b83359250602084013567ffffffffffffffff808211156128ed578384fd5b6128f98783880161268b565b9350604086013591508082111561290e578283fd5b5061291b8682870161268b565b9150509250925092565b6000815180845261293d816020860160208601612bc3565b601f01601f19169290920160200192915050565b60008351612963818460208801612bc3565b835190830190612977818360208801612bc3565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129b390830184612925565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129f5578351835292840192918401916001016129d9565b50909695505050505050565b6020815260006115626020830184612925565b604081526000612a276040830185612925565b8281036020840152612a398185612925565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600a908201526914d85b1948195b99195960b21b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612b7457612b74612c59565b500190565b600082612b8857612b88612c6f565b500490565b6000816000190483118215151615612ba757612ba7612c59565b500290565b600082821015612bbe57612bbe612c59565b500390565b60005b83811015612bde578181015183820152602001612bc6565b83811115610d1e5750506000910152565b600181811c90821680612c0357607f821691505b60208210811415612c2457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c3e57612c3e612c59565b5060010190565b600082612c5457612c54612c6f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107cf57600080fdfea26469706673582212205cc1291ca4ea8248639237c9a4f40b65eca30235378c49e180fc2764af43091b64736f6c634300080400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f6e66742e636869626964696e6f732e696f2f636869626964696e6f732f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636352211e11610144578063b66a0e5d116100b6578063e927fc5c1161007a578063e927fc5c146106aa578063e985e9c5146106d2578063ed16e3a61461071b578063eff31e9e1461072e578063f0292a0314610743578063f2fde38b1461075857600080fd5b8063b66a0e5d14610625578063b88d4fde1461063a578063c87b56dd1461065a578063d547cfb71461067a578063d773154f1461068f57600080fd5b8063853828b611610108578063853828b61461059c5780638d859f3e146105a45780638da5cb5b146105bf57806395d89b41146105dd5780639b6a6709146105f2578063a22cb4651461060557600080fd5b80636352211e1461051257806370a0823114610532578063715018a6146105525780637e95eac414610567578063850dd0911461057c57600080fd5b80632f745c59116101dd578063438b6300116101a1578063438b63001461045b5780634f6ccce71461048857806355f804b3146104a857806357d4c4ee146104c857806359a7715a146104de5780635c975abb146104f357600080fd5b80632f745c59146103c05780633ad10ef6146103e057806340c10f191461040857806342842e0e1461041b57806342966c681461043b57600080fd5b8063095ea7b311610224578063095ea7b3146103275780630ffc67281461034757806318160ddd1461036b57806323b872dd1461038057806326a49e37146103a057600080fd5b806301ffc9a71461026157806302329a291461029657806304c98b2b146102b857806306fdde03146102cd578063081812fc146102ef575b600080fd5b34801561026d57600080fd5b5061028161027c366004612816565b610778565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b13660046127fc565b610789565b005b3480156102c457600080fd5b506102b66107da565b3480156102d957600080fd5b506102e2610813565b60405161028d9190612a01565b3480156102fb57600080fd5b5061030f61030a366004612881565b6108a5565b6040516001600160a01b03909116815260200161028d565b34801561033357600080fd5b506102b66103423660046127d3565b61093a565b34801561035357600080fd5b5061035d6103e881565b60405190815260200161028d565b34801561037757600080fd5b5060085461035d565b34801561038c57600080fd5b506102b661039b3660046126f6565b610a50565b3480156103ac57600080fd5b5061035d6103bb366004612881565b610a82565b3480156103cc57600080fd5b5061035d6103db3660046127d3565b610a95565b3480156103ec57600080fd5b5061030f736f095133e814200fcf06bc185569544249bd171381565b6102b66104163660046127d3565b610b2b565b34801561042757600080fd5b506102b66104363660046126f6565b610d24565b34801561044757600080fd5b506102b6610456366004612881565b610d3f565b34801561046757600080fd5b5061047b6104763660046126aa565b610db6565b60405161028d91906129bd565b34801561049457600080fd5b5061035d6104a3366004612881565b610e74565b3480156104b457600080fd5b506102b66104c336600461284e565b610f15565b3480156104d457600080fd5b5061035d61271081565b3480156104ea57600080fd5b5061035d610f56565b3480156104ff57600080fd5b50600a54600160a01b900460ff16610281565b34801561051e57600080fd5b5061030f61052d366004612881565b610f65565b34801561053e57600080fd5b5061035d61054d3660046126aa565b610fdc565b34801561055e57600080fd5b506102b6611063565b34801561057357600080fd5b5061035d600281565b34801561058857600080fd5b506102b6610597366004612899565b611099565b6102b6611142565b3480156105b057600080fd5b5061035d66d529ae9e86000081565b3480156105cb57600080fd5b50600a546001600160a01b031661030f565b3480156105e957600080fd5b506102e26111c8565b6102b66106003660046127d3565b6111d7565b34801561061157600080fd5b506102b66106203660046127aa565b61135c565b34801561063157600080fd5b506102b6611421565b34801561064657600080fd5b506102b6610655366004612731565b61145c565b34801561066657600080fd5b506102e2610675366004612881565b61148e565b34801561068657600080fd5b506102e2611569565b34801561069b57600080fd5b5061035d662386f26fc1000081565b3480156106b657600080fd5b5061030f73f27030ef0ace4dfee90f45c2ac6210bcf53ba7b481565b3480156106de57600080fd5b506102816106ed3660046126c4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102b66107293660046128bb565b6115f7565b34801561073a57600080fd5b5061035d606481565b34801561074f57600080fd5b5061035d601481565b34801561076457600080fd5b506102b66107733660046126aa565b61170b565b6000610783826117a3565b92915050565b600a546001600160a01b031633146107bc5760405162461bcd60e51b81526004016107b390612ab7565b60405180910390fd5b600181151514156107d2576107cf6117c8565b50565b6107cf61186d565b600a546001600160a01b031633146108045760405162461bcd60e51b81526004016107b390612ab7565b600c805460ff19166001179055565b60606000805461082290612bef565b80601f016020809104026020016040519081016040528092919081815260200182805461084e90612bef565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b3565b506000908152600460205260409020546001600160a01b031690565b600061094582610f65565b9050806001600160a01b0316836001600160a01b031614156109b35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107b3565b336001600160a01b03821614806109cf57506109cf81336106ed565b610a415760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107b3565b610a4b83836118f1565b505050565b610a5b335b8261195f565b610a775760405162461bcd60e51b81526004016107b390612b10565b610a4b838383611a56565b600061078366d529ae9e86000083611c01565b6000610aa083610fdc565b8210610b025760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107b3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b612710610b36611c0d565b1115610b545760405162461bcd60e51b81526004016107b390612aec565b600a546001600160a01b03163314610bb357600a54600160a01b900460ff1615610bb35760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107b3565b6000610bbd611c0d565b600c5490915060ff610100909104161515600114610c1d5760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f74207965742073746172746564000000000000000060448201526064016107b3565b612710811115610c3f5760405162461bcd60e51b81526004016107b390612aec565b612710610c4c8383612b61565b1115610c6a5760405162461bcd60e51b81526004016107b390612a94565b6014821115610cac5760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b60448201526064016107b3565b610cb582610a82565b341015610cf85760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b60448201526064016107b3565b60005b82811015610d1e57610d0c84611c18565b80610d1681612c2a565b915050610cfb565b50505050565b610a4b8383836040518060200160405280600081525061145c565b610d4833610a55565b610dad5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016107b3565b6107cf81611c6b565b60606000610dc383610fdc565b905060008167ffffffffffffffff811115610dee57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e17578160200160208202803683370190505b50905060005b82811015610e6c57610e2f8582610a95565b828281518110610e4f57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610e6481612c2a565b915050610e1d565b509392505050565b6000610e7f60085490565b8210610ee25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107b3565b60088281548110610f0357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610f3f5760405162461bcd60e51b81526004016107b390612ab7565b8051610f5290600d906020840190612550565b5050565b6000610f60611c0d565b905090565b6000818152600260205260408120546001600160a01b0316806107835760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107b3565b60006001600160a01b0382166110475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107b3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461108d5760405162461bcd60e51b81526004016107b390612ab7565b6110976000611d12565b565b600a546001600160a01b031633146110c35760405162461bcd60e51b81526004016107b390612ab7565b60006110cd611c0d565b90506127108111156110f15760405162461bcd60e51b81526004016107b390612aec565b6127106110fe8483612b61565b111561111c5760405162461bcd60e51b81526004016107b390612a94565b60005b83811015610d1e5761113083611c18565b8061113a81612c2a565b91505061111f565b600a546001600160a01b0316331461116c5760405162461bcd60e51b81526004016107b390612ab7565b478061117757600080fd5b6111aa736f095133e814200fcf06bc185569544249bd17136111a5606461119f856028611c01565b90611d64565b611d70565b6107cf73f27030ef0ace4dfee90f45c2ac6210bcf53ba7b447611d70565b60606001805461082290612bef565b60006111e1611c0d565b600c5490915060ff16151560011461123b5760405162461bcd60e51b815260206004820152601b60248201527f50726573616c6520686173206e6f74207965742073746172746564000000000060448201526064016107b3565b6103e881111561127d5760405162461bcd60e51b815260206004820152600d60248201526c141c995cd85b1948195b991959609a1b60448201526064016107b3565b6103e861128a8383612b61565b11156112a85760405162461bcd60e51b81526004016107b390612a94565b60028211156112ea5760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b60448201526064016107b3565b6112f382610a82565b3410156113365760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b60448201526064016107b3565b60005b82811015610d1e5761134a84611c18565b8061135481612c2a565b915050611339565b6001600160a01b0382163314156113b55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107b3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461144b5760405162461bcd60e51b81526004016107b390612ab7565b600c805461ff001916610100179055565b611466338361195f565b6114825760405162461bcd60e51b81526004016107b390612b10565b610d1e84848484611e06565b6000818152600260205260409020546060906001600160a01b031661150d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107b3565b6000611517611e39565b905060008151116115375760405180602001604052806000815250611562565b8061154184611e48565b604051602001611552929190612951565b6040516020818303038152906040525b9392505050565b600d805461157690612bef565b80601f01602080910402602001604051908101604052809291908181526020018280546115a290612bef565b80156115ef5780601f106115c4576101008083540402835291602001916115ef565b820191906000526020600020905b8154815290600101906020018083116115d257829003601f168201915b505050505081565b600061160284610f65565b9050336001600160a01b0382161461165c5760405162461bcd60e51b815260206004820152601760248201527f54686973206973206e6f7420796f75722043686962692e00000000000000000060448201526064016107b3565b34662386f26fc1000081146116ca5760405162461bcd60e51b815260206004820152602e60248201527f5468657265206973206120707269636520666f72206368616e67696e6720796f60448201526d3ab91030ba3a3934b13aba32b99760911b60648201526084016107b3565b847f071e2b5b04043a73f97c13dbdcd19e7f2d114c2277c6f5d4c6403e547756e45d85856040516116fc929190612a14565b60405180910390a25050505050565b600a546001600160a01b031633146117355760405162461bcd60e51b81526004016107b390612ab7565b6001600160a01b03811661179a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b3565b6107cf81611d12565b60006001600160e01b0319821663780e9d6360e01b1480610783575061078382611f62565b600a54600160a01b900460ff16156118155760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107b3565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118503390565b6040516001600160a01b03909116815260200160405180910390a1565b600a54600160a01b900460ff166118bd5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107b3565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611850565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061192682610f65565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b3565b60006119e383610f65565b9050806001600160a01b0316846001600160a01b03161480611a1e5750836001600160a01b0316611a13846108a5565b6001600160a01b0316145b80611a4e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a6982610f65565b6001600160a01b031614611ad15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107b3565b6001600160a01b038216611b335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107b3565b611b3e838383611fb2565b611b496000826118f1565b6001600160a01b0383166000908152600360205260408120805460019290611b72908490612bac565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ba0908490612b61565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006115628284612b8d565b6000610f60600b5490565b6000611c22611c0d565b9050611c32600b80546001019055565b611c3c8282611fbd565b60405181907f22cd2e2b3a93eacc03b35e195001b58e39ccbe011e621dd8cb3f7ce2966adc7790600090a25050565b6000611c7682610f65565b9050611c8481600084611fb2565b611c8f6000836118f1565b6001600160a01b0381166000908152600360205260408120805460019290611cb8908490612bac565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006115628284612b79565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611dbd576040519150601f19603f3d011682016040523d82523d6000602084013e611dc2565b606091505b5050905080610a4b5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107b3565b611e11848484611a56565b611e1d84848484611fd7565b610d1e5760405162461bcd60e51b81526004016107b390612a42565b6060600d805461082290612bef565b606081611e6c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e965780611e8081612c2a565b9150611e8f9050600a83612b79565b9150611e70565b60008167ffffffffffffffff811115611ebf57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ee9576020820181803683370190505b5090505b8415611a4e57611efe600183612bac565b9150611f0b600a86612c45565b611f16906030612b61565b60f81b818381518110611f3957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f5b600a86612b79565b9450611eed565b60006001600160e01b031982166380ac58cd60e01b1480611f9357506001600160e01b03198216635b5e139f60e01b145b8061078357506301ffc9a760e01b6001600160e01b0319831614610783565b610a4b8383836120e4565b610f5282826040518060200160405280600081525061215d565b60006001600160a01b0384163b156120d957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061201b903390899088908890600401612980565b602060405180830381600087803b15801561203557600080fd5b505af1925050508015612065575060408051601f3d908101601f1916820190925261206291810190612832565b60015b6120bf573d808015612093576040519150601f19603f3d011682016040523d82523d6000602084013e612098565b606091505b5080516120b75760405162461bcd60e51b81526004016107b390612a42565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a4e565b506001949350505050565b6120ef838383612190565b600a54600160a01b900460ff1615610a4b5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b60648201526084016107b3565b6121678383612248565b6121746000848484611fd7565b610a4b5760405162461bcd60e51b81526004016107b390612a42565b6001600160a01b0383166121eb576121e681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61220e565b816001600160a01b0316836001600160a01b03161461220e5761220e8382612396565b6001600160a01b03821661222557610a4b81612433565b826001600160a01b0316826001600160a01b031614610a4b57610a4b828261250c565b6001600160a01b03821661229e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107b3565b6000818152600260205260409020546001600160a01b0316156123035760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107b3565b61230f60008383611fb2565b6001600160a01b0382166000908152600360205260408120805460019290612338908490612b61565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016123a384610fdc565b6123ad9190612bac565b600083815260076020526040902054909150808214612400576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061244590600190612bac565b6000838152600960205260408120546008805493945090928490811061247b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106124aa57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124f057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061251783610fdc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461255c90612bef565b90600052602060002090601f01602090048101928261257e57600085556125c4565b82601f1061259757805160ff19168380011785556125c4565b828001600101855582156125c4579182015b828111156125c45782518255916020019190600101906125a9565b506125d09291506125d4565b5090565b5b808211156125d057600081556001016125d5565b600067ffffffffffffffff8084111561260457612604612c85565b604051601f8501601f19908116603f0116810190828211818310171561262c5761262c612c85565b8160405280935085815286868601111561264557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461267657600080fd5b919050565b8035801515811461267657600080fd5b600082601f83011261269b578081fd5b611562838335602085016125e9565b6000602082840312156126bb578081fd5b6115628261265f565b600080604083850312156126d6578081fd5b6126df8361265f565b91506126ed6020840161265f565b90509250929050565b60008060006060848603121561270a578081fd5b6127138461265f565b92506127216020850161265f565b9150604084013590509250925092565b60008060008060808587031215612746578081fd5b61274f8561265f565b935061275d6020860161265f565b925060408501359150606085013567ffffffffffffffff81111561277f578182fd5b8501601f8101871361278f578182fd5b61279e878235602084016125e9565b91505092959194509250565b600080604083850312156127bc578182fd5b6127c58361265f565b91506126ed6020840161267b565b600080604083850312156127e5578182fd5b6127ee8361265f565b946020939093013593505050565b60006020828403121561280d578081fd5b6115628261267b565b600060208284031215612827578081fd5b813561156281612c9b565b600060208284031215612843578081fd5b815161156281612c9b565b60006020828403121561285f578081fd5b813567ffffffffffffffff811115612875578182fd5b611a4e8482850161268b565b600060208284031215612892578081fd5b5035919050565b600080604083850312156128ab578182fd5b823591506126ed6020840161265f565b6000806000606084860312156128cf578283fd5b83359250602084013567ffffffffffffffff808211156128ed578384fd5b6128f98783880161268b565b9350604086013591508082111561290e578283fd5b5061291b8682870161268b565b9150509250925092565b6000815180845261293d816020860160208601612bc3565b601f01601f19169290920160200192915050565b60008351612963818460208801612bc3565b835190830190612977818360208801612bc3565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129b390830184612925565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129f5578351835292840192918401916001016129d9565b50909695505050505050565b6020815260006115626020830184612925565b604081526000612a276040830185612925565b8281036020840152612a398185612925565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600a908201526914d85b1948195b99195960b21b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612b7457612b74612c59565b500190565b600082612b8857612b88612c6f565b500490565b6000816000190483118215151615612ba757612ba7612c59565b500290565b600082821015612bbe57612bbe612c59565b500390565b60005b83811015612bde578181015183820152602001612bc6565b83811115610d1e5750506000910152565b600181811c90821680612c0357607f821691505b60208210811415612c2457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c3e57612c3e612c59565b5060010190565b600082612c5457612c54612c6f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107cf57600080fdfea26469706673582212205cc1291ca4ea8248639237c9a4f40b65eca30235378c49e180fc2764af43091b64736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f6e66742e636869626964696e6f732e696f2f636869626964696e6f732f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://nft.chibidinos.io/chibidinos/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [2] : 68747470733a2f2f6e66742e636869626964696e6f732e696f2f636869626964
Arg [3] : 696e6f732f000000000000000000000000000000000000000000000000000000


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.