More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 647 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 23999710 | 55 days ago | IN | 0 ETH | 0.00000179 | ||||
| Set Approval For... | 23999709 | 55 days ago | IN | 0 ETH | 0.00000185 | ||||
| Set Approval For... | 23999709 | 55 days ago | IN | 0 ETH | 0.00000185 | ||||
| Set Approval For... | 23999686 | 55 days ago | IN | 0 ETH | 0.00000167 | ||||
| Set Approval For... | 23612064 | 110 days ago | IN | 0 ETH | 0.00007579 | ||||
| Set Approval For... | 22669281 | 241 days ago | IN | 0 ETH | 0.00009185 | ||||
| Set Approval For... | 21945992 | 343 days ago | IN | 0 ETH | 0.00012074 | ||||
| Set Approval For... | 21945975 | 343 days ago | IN | 0 ETH | 0.00012913 | ||||
| Set Approval For... | 21945975 | 343 days ago | IN | 0 ETH | 0.000227 | ||||
| Set Approval For... | 21423796 | 416 days ago | IN | 0 ETH | 0.00126202 | ||||
| Set Approval For... | 21064548 | 466 days ago | IN | 0 ETH | 0.0005789 | ||||
| Set Approval For... | 20900430 | 489 days ago | IN | 0 ETH | 0.00042844 | ||||
| Set Approval For... | 20875232 | 492 days ago | IN | 0 ETH | 0.00032056 | ||||
| Set Approval For... | 20686824 | 518 days ago | IN | 0 ETH | 0.00027441 | ||||
| Set Approval For... | 18912606 | 767 days ago | IN | 0 ETH | 0.00051156 | ||||
| Set Approval For... | 18888262 | 770 days ago | IN | 0 ETH | 0.0007867 | ||||
| Transfer From | 18879783 | 771 days ago | IN | 0 ETH | 0.00134036 | ||||
| Transfer From | 18879782 | 771 days ago | IN | 0 ETH | 0.00145041 | ||||
| Transfer From | 18879781 | 771 days ago | IN | 0 ETH | 0.00200437 | ||||
| Set Approval For... | 18561919 | 816 days ago | IN | 0 ETH | 0.00208873 | ||||
| Set Approval For... | 18458211 | 830 days ago | IN | 0 ETH | 0.00062727 | ||||
| Set Approval For... | 18415784 | 836 days ago | IN | 0 ETH | 0.00084161 | ||||
| Set Approval For... | 18371415 | 843 days ago | IN | 0 ETH | 0.00057808 | ||||
| Set Approval For... | 18061172 | 886 days ago | IN | 0 ETH | 0.00049149 | ||||
| Set Approval For... | 17677405 | 940 days ago | IN | 0 ETH | 0.0006859 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 14085498 | 1471 days ago | 71.06 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
NUXUI
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
/*
███╗ ██╗██╗ ██████╗
████╗ ██║██║██╔════╝
██╔██╗ ██║██║██║
██║╚██╗██║██║██║
██║ ╚████║██║╚██████╗
╚═╝ ╚═══╝╚═╝ ╚═════╝
██╗ ██╗ █████╗ ███╗ ███╗██╗██╗ ████████╗ ██████╗ ███╗ ██╗
██║ ██║██╔══██╗████╗ ████║██║██║ ╚══██╔══╝██╔═══██╗████╗ ██║
███████║███████║██╔████╔██║██║██║ ██║ ██║ ██║██╔██╗ ██║
██╔══██║██╔══██║██║╚██╔╝██║██║██║ ██║ ██║ ██║██║╚██╗██║
██║ ██║██║ ██║██║ ╚═╝ ██║██║███████╗██║ ╚██████╔╝██║ ╚████║
*/
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
contract NUXUI is
ERC721,
IERC2981,
Pausable,
AccessControl
{
using Strings for uint256;
using Counters for Counters.Counter;
Counters.Counter private _tokenIds;
bytes32 public constant MANAGER_ROLE = keccak256("MANAGER_ROLE");
uint256 public constant MAX_MINT_COUNT = 8; // +1 to save on gas cost of <= vs <
uint256 public constant ARTIST_PROOF_COUNT = 11; // +1 to save on gas cost of <= vs <
uint256 public constant MAX_SUPPLY = 334; // +1 to save on gas cost of <= vs <
uint256 public constant ETH_PRICE = 0.22 ether;
string public provenanceHash = '8d08f9bd916abfa9cbc965cabb8fd7bdbcc34deb599c48fafe4b4e283c5ba24f';
string private _baseURIextended = "https://nuxui.art/api/metadata/";
string private _tombURI = "https://tombseri.es/metadata/20.json";
address payable private _withdrawalWallet = payable(0x24a1891178b0f4700A6F7D6b4e030Da0054683BA);
constructor() ERC721("NUXUI", "NUXUI") {
_pause(); // start paused
_setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
_setupRole(MANAGER_ROLE, 0xcb77c9A73E969D0d19CcaE16545eF635702baA85); // k ledger
grantRole(MANAGER_ROLE, msg.sender);
_mint(0x518201899E316bf98c957C73e1326b77672Fe52b, 0); // Tomb mint
}
function setWithdrawalWallet(address payable withdrawalWallet_) external onlyRole(MANAGER_ROLE) {
_withdrawalWallet = (withdrawalWallet_);
}
function withdraw() external onlyRole(MANAGER_ROLE) {
payable(_withdrawalWallet).transfer(address(this).balance);
}
function pause() public onlyRole(MANAGER_ROLE) {
_pause();
}
function unpause() public onlyRole(MANAGER_ROLE) {
_unpause();
}
function setProvenanceHash(string memory provenanceHash_) external onlyRole(MANAGER_ROLE) {
provenanceHash = provenanceHash_;
}
function setBaseURI(string memory baseURI_) external onlyRole(MANAGER_ROLE) {
_baseURIextended = baseURI_;
}
function setTombURI(string memory tombURI_) external onlyRole(MANAGER_ROLE) {
_tombURI = tombURI_;
}
function contractURI() external view returns (string memory) {
return string(abi.encodePacked(_baseURIextended, "metadata.json"));
}
function getLastTokenId() external view returns (uint256) {
return _tokenIds.current();
}
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(tokenId <= _tokenIds.current(), "Nonexistent token");
if (tokenId == 0) {
return _tombURI;
}
return string(abi.encodePacked(_baseURIextended, tokenId.toString(), ".json"));
}
function mint(uint256 count)
external
payable
whenNotPaused
returns (uint256)
{
require((ETH_PRICE * count) == msg.value, "Incorrect ETH sent; check price!");
require(count < MAX_MINT_COUNT, "Tried to mint too many NFTs at once");
require(_tokenIds.current() + count < MAX_SUPPLY, "SOLD OUT");
for (uint256 i=0; i<count; i++) {
_tokenIds.increment();
_mint(msg.sender, _tokenIds.current());
}
return _tokenIds.current();
}
// Allows an admin to mint the artist proofs, and send it to an address
// This can be run while the contract is paused
function artistMint(uint256 count, address recipient)
external
onlyRole(MANAGER_ROLE)
returns (uint256)
{
require(_tokenIds.current() + count < ARTIST_PROOF_COUNT, "Exceeded max proofs");
require(_tokenIds.current() + count < MAX_SUPPLY, "SOLD OUT");
for (uint256 i=0; i<count; i++) {
_tokenIds.increment();
_mint(recipient, _tokenIds.current());
}
return _tokenIds.current();
}
/**
* @dev See {IERC165-royaltyInfo}.
*/
function royaltyInfo(uint256 tokenId, uint256 salePrice)
external
view
override
returns (address receiver, uint256 royaltyAmount)
{
require(_exists(tokenId), "Nonexistent token");
return (address(this), SafeMath.div(SafeMath.mul(salePrice, 10), 100));
}
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, IERC165, AccessControl) returns (bool) {
return
interfaceId == type(IERC2981).interfaceId ||
super.supportsInterface(interfaceId);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Interface for the NFT Royalty Standard
*/
interface IERC2981 is IERC165 {
/**
* @dev Called with the sale price to determine how much royalty is owed and to whom.
* @param tokenId - the NFT asset queried for royalty information
* @param salePrice - the sale price of the NFT asset specified by `tokenId`
* @return receiver - address of who should be sent the royalty payment
* @return royaltyAmount - the royalty payment amount for `salePrice`
*/
function royaltyInfo(uint256 tokenId, uint256 salePrice)
external
view
returns (address receiver, uint256 royaltyAmount);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol)
pragma solidity ^0.8.0;
import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address => bool) members;
bytes32 adminRole;
}
mapping(bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with a standardized message including the required role.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*
* _Available since v4.1._
*/
modifier onlyRole(bytes32 role) {
_checkRole(role, _msgSender());
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view override returns (bool) {
return _roles[role].members[account];
}
/**
* @dev Revert with a standard message if `account` is missing `role`.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*/
function _checkRole(bytes32 role, address account) internal view {
if (!hasRole(role, account)) {
revert(
string(
abi.encodePacked(
"AccessControl: account ",
Strings.toHexString(uint160(account), 20),
" is missing role ",
Strings.toHexString(uint256(role), 32)
)
)
);
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been revoked `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) public virtual override {
require(account == _msgSender(), "AccessControl: can only renounce roles for self");
_revokeRole(role, account);
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event. Note that unlike {grantRole}, this function doesn't perform any
* checks on the calling account.
*
* [WARNING]
* ====
* This function should only be called from the constructor when setting
* up the initial roles for the system.
*
* Using this function in any other way is effectively circumventing the admin
* system imposed by {AccessControl}.
* ====
*
* NOTE: This function is deprecated in favor of {_grantRole}.
*/
function _setupRole(bytes32 role, address account) internal virtual {
_grantRole(role, account);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
/**
* @dev Grants `role` to `account`.
*
* Internal function without access restriction.
*/
function _grantRole(bytes32 role, address account) internal virtual {
if (!hasRole(role, account)) {
_roles[role].members[account] = true;
emit RoleGranted(role, account, _msgSender());
}
}
/**
* @dev Revokes `role` from `account`.
*
* Internal function without access restriction.
*/
function _revokeRole(bytes32 role, address account) internal virtual {
if (hasRole(role, account)) {
_roles[role].members[account] = false;
emit RoleRevoked(role, account, _msgSender());
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)
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);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)
pragma solidity ^0.8.0;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) external;
}{
"optimizer": {
"enabled": true,
"runs": 1000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"ARTIST_PROOF_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ETH_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"artistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","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":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":[{"internalType":"string","name":"provenanceHash_","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tombURI_","type":"string"}],"name":"setTombURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawalWallet_","type":"address"}],"name":"setWithdrawalWallet","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60e060409081526080818152906200338160a0398051620000299160099160209091019062000724565b5060408051808201909152601f8082527f68747470733a2f2f6e757875692e6172742f6170692f6d657461646174612f0060209092019182526200007091600a9162000724565b50604051806060016040528060248152602001620033e1602491398051620000a191600b9160209091019062000724565b50600c80546001600160a01b0319167324a1891178b0f4700a6f7d6b4e030da0054683ba179055348015620000d557600080fd5b506040805180820182526005808252644e5558554960d81b602080840182815285518087019096529285528401528151919291620001169160009162000724565b5080516200012c90600190602084019062000724565b50506006805460ff191690555062000143620001c1565b6200015060003362000260565b6200017f600080516020620033c183398151915273cb77c9a73e969d0d19ccae16545ef635702baa8562000260565b6200019a600080516020620033c18339815191523362000270565b620001bb73518201899e316bf98c957c73e1326b77672fe52b60006200029f565b62000955565b60065460ff16156200020d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064015b60405180910390fd5b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002433390565b6040516001600160a01b03909116815260200160405180910390a1565b6200026c8282620003e7565b5050565b6000828152600760205260409020600101546200028e81336200048b565b6200029a8383620003e7565b505050565b6001600160a01b038216620002f75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000204565b6000818152600260205260409020546001600160a01b0316156200035e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000204565b6001600160a01b03821660009081526003602052604081208054600192906200038990849062000878565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff166200026c5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620004473390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff166200026c57620004d7816001600160a01b031660146200052860201b620014af1760201c565b620004ed836020620014af62000528821b17811c565b60405160200162000500929190620007ca565b60408051601f198184030181529082905262461bcd60e51b8252620002049160040162000843565b606060006200053983600262000893565b6200054690600262000878565b6001600160401b038111156200056c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801562000597576020820181803683370190505b509050600360fc1b81600081518110620005c157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620005ff57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006200062584600262000893565b6200063290600162000878565b90505b6001811115620006cc576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106200067657634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106200069b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93620006c481620008e8565b905062000635565b5083156200071d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640162000204565b9392505050565b828054620007329062000902565b90600052602060002090601f016020900481019282620007565760008555620007a1565b82601f106200077157805160ff1916838001178555620007a1565b82800160010185558215620007a1579182015b82811115620007a157825182559160200191906001019062000784565b50620007af929150620007b3565b5090565b5b80821115620007af5760008155600101620007b4565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162000804816017850160208801620008b5565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162000837816028840160208801620008b5565b01602801949350505050565b602081526000825180602084015262000864816040850160208701620008b5565b601f01601f19169190910160400192915050565b600082198211156200088e576200088e6200093f565b500190565b6000816000190483118215151615620008b057620008b06200093f565b500290565b60005b83811015620008d2578181015183820152602001620008b8565b83811115620008e2576000848401525b50505050565b600081620008fa57620008fa6200093f565b506000190190565b600181811c908216806200091757607f821691505b602082108114156200093957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b612a1c80620009656000396000f3fe6080604052600436106102855760003560e01c806370a0823111610153578063a217fddf116100cb578063cdf653061161007f578063e8a3d48511610064578063e8a3d485146106f8578063e985e9c51461070d578063ec87621c1461075657600080fd5b8063cdf65306146106c3578063d547741f146106d857600080fd5b8063b88d4fde116100b0578063b88d4fde1461066e578063c6ab67a31461068e578063c87b56dd146106a357600080fd5b8063a217fddf14610639578063a22cb4651461064e57600080fd5b806387033ce91161012257806391d148541161010757806391d14854146105cb57806395d89b4114610611578063a0712d681461062657600080fd5b806387033ce91461059a5780638832bc29146105af57600080fd5b806370a082311461053057806375796f761461055057806383c4c00d146105705780638456cb591461058557600080fd5b80632f2ff15d1161020157806342842e0e116101b55780635c975abb1161019a5780635c975abb146104d85780636352211e146104f05780636fcc0d9e1461051057600080fd5b806342842e0e1461049857806355f804b3146104b857600080fd5b806336568abe116101e657806336568abe1461044e5780633ccfd60b1461046e5780633f4ba83a1461048357600080fd5b80632f2ff15d1461041857806332cb6b0c1461043857600080fd5b80630edc96291161025857806323b872dd1161023d57806323b872dd14610389578063248a9ca3146103a95780632a55205a146103d957600080fd5b80630edc96291461033b578063109695231461036957600080fd5b806301ffc9a71461028a57806306fdde03146102bf578063081812fc146102e1578063095ea7b314610319575b600080fd5b34801561029657600080fd5b506102aa6102a536600461259f565b61078a565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d46107ce565b6040516102b69190612857565b3480156102ed57600080fd5b506103016102fc366004612563565b610860565b6040516001600160a01b0390911681526020016102b6565b34801561032557600080fd5b50610339610334366004612538565b6108fa565b005b34801561034757600080fd5b5061035b61035636600461261d565b610a2c565b6040519081526020016102b6565b34801561037557600080fd5b506103396103843660046125d7565b610b55565b34801561039557600080fd5b506103396103a436600461244a565b610b93565b3480156103b557600080fd5b5061035b6103c4366004612563565b60009081526007602052604090206001015490565b3480156103e557600080fd5b506103f96103f436600461262f565b610c1a565b604080516001600160a01b0390931683526020830191909152016102b6565b34801561042457600080fd5b5061033961043336600461257b565b610ca1565b34801561044457600080fd5b5061035b61014e81565b34801561045a57600080fd5b5061033961046936600461257b565b610cc7565b34801561047a57600080fd5b50610339610d53565b34801561048f57600080fd5b50610339610db7565b3480156104a457600080fd5b506103396104b336600461244a565b610ded565b3480156104c457600080fd5b506103396104d33660046125d7565b610e08565b3480156104e457600080fd5b5060065460ff166102aa565b3480156104fc57600080fd5b5061030161050b366004612563565b610e46565b34801561051c57600080fd5b5061033961052b3660046125d7565b610ed1565b34801561053c57600080fd5b5061035b61054b3660046123f6565b610f0f565b34801561055c57600080fd5b5061033961056b3660046123f6565b610fa9565b34801561057c57600080fd5b5061035b611004565b34801561059157600080fd5b50610339611014565b3480156105a657600080fd5b5061035b600b81565b3480156105bb57600080fd5b5061035b67030d98d59a96000081565b3480156105d757600080fd5b506102aa6105e636600461257b565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561061d57600080fd5b506102d4611047565b61035b610634366004612563565b611056565b34801561064557600080fd5b5061035b600081565b34801561065a57600080fd5b50610339610669366004612507565b611217565b34801561067a57600080fd5b5061033961068936600461248a565b611222565b34801561069a57600080fd5b506102d46112b0565b3480156106af57600080fd5b506102d46106be366004612563565b61133e565b3480156106cf57600080fd5b5061035b600881565b3480156106e457600080fd5b506103396106f336600461257b565b611461565b34801561070457600080fd5b506102d4611487565b34801561071957600080fd5b506102aa610728366004612412565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076257600080fd5b5061035b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0881565b60006001600160e01b031982167f2a55205a0000000000000000000000000000000000000000000000000000000014806107c857506107c8826116c1565b92915050565b6060600080546107dd9061290f565b80601f01602080910402602001604051908101604052809291908181526020018280546108099061290f565b80156108565780601f1061082b57610100808354040283529160200191610856565b820191906000526020600020905b81548152906001019060200180831161083957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108de5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061090582610e46565b9050806001600160a01b0316836001600160a01b0316141561098f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016108d5565b336001600160a01b03821614806109ab57506109ab8133610728565b610a1d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108d5565b610a2783836116ff565b505050565b60007f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610a59813361177a565b600b84610a6560085490565b610a6f919061286a565b10610abc5760405162461bcd60e51b815260206004820152601360248201527f4578636565646564206d61782070726f6f66730000000000000000000000000060448201526064016108d5565b61014e84610ac960085490565b610ad3919061286a565b10610b0b5760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b60448201526064016108d5565b60005b84811015610b4857610b24600880546001019055565b610b3684610b3160085490565b6117fa565b80610b408161294a565b915050610b0e565b506008545b949350505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610b80813361177a565b8151610a279060099060208501906122e7565b610b9d3382611949565b610c0f5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108d5565b610a27838383611a3c565b60008281526002602052604081205481906001600160a01b0316610c805760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e00000000000000000000000000000060448201526064016108d5565b30610c96610c8f85600a611c16565b6064611c22565b915091509250929050565b600082815260076020526040902060010154610cbd813361177a565b610a278383611c2e565b6001600160a01b0381163314610d455760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016108d5565b610d4f8282611cd0565b5050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610d7e813361177a565b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d4f573d6000803e3d6000fd5b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610de2813361177a565b610dea611d53565b50565b610a2783838360405180602001604052806000815250611222565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610e33813361177a565b8151610a2790600a9060208501906122e7565b6000818152600260205260408120546001600160a01b0316806107c85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016108d5565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610efc813361177a565b8151610a2790600b9060208501906122e7565b60006001600160a01b038216610f8d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016108d5565b506001600160a01b031660009081526003602052604090205490565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610fd4813361177a565b50600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600061100f60085490565b905090565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0861103f813361177a565b610dea611def565b6060600180546107dd9061290f565b600061106460065460ff1690565b156110b15760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016108d5565b346110c48367030d98d59a960000612896565b146111115760405162461bcd60e51b815260206004820181905260248201527f496e636f7272656374204554482073656e743b20636865636b2070726963652160448201526064016108d5565b600882106111875760405162461bcd60e51b815260206004820152602360248201527f547269656420746f206d696e7420746f6f206d616e79204e465473206174206f60448201527f6e6365000000000000000000000000000000000000000000000000000000000060648201526084016108d5565b61014e8261119460085490565b61119e919061286a565b106111d65760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b60448201526064016108d5565b60005b8281101561120e576111ef600880546001019055565b6111fc33610b3160085490565b806112068161294a565b9150506111d9565b506008546107c8565b610d4f338383611e77565b61122c3383611949565b61129e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108d5565b6112aa84848484611f46565b50505050565b600980546112bd9061290f565b80601f01602080910402602001604051908101604052809291908181526020018280546112e99061290f565b80156113365780601f1061130b57610100808354040283529160200191611336565b820191906000526020600020905b81548152906001019060200180831161131957829003601f168201915b505050505081565b606061134960085490565b8211156113985760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e00000000000000000000000000000060448201526064016108d5565b8161142f57600b80546113aa9061290f565b80601f01602080910402602001604051908101604052809291908181526020018280546113d69061290f565b80156114235780601f106113f857610100808354040283529160200191611423565b820191906000526020600020905b81548152906001019060200180831161140657829003601f168201915b50505050509050919050565b600a61143a83611fcf565b60405160200161144b929190612714565b6040516020818303038152906040529050919050565b60008281526007602052604090206001015461147d813361177a565b610a278383611cd0565b6060600a60405160200161149b9190612761565b604051602081830303815290604052905090565b606060006114be836002612896565b6114c990600261286a565b67ffffffffffffffff8111156114ef57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611519576020820181803683370190505b509050600360fc1b8160008151811061154257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061159b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006115bf846002612896565b6115ca90600161286a565b90505b600181111561166b577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061161957634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061163d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611664816128f8565b90506115cd565b5083156116ba5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016108d5565b9392505050565b60006001600160e01b031982167f7965db0b0000000000000000000000000000000000000000000000000000000014806107c857506107c8826120e9565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061174182610e46565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff16610d4f576117b8816001600160a01b031660146114af565b6117c38360206114af565b6040516020016117d492919061279a565b60408051601f198184030181529082905262461bcd60e51b82526108d591600401612857565b6001600160a01b0382166118505760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108d5565b6000818152600260205260409020546001600160a01b0316156118b55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108d5565b6001600160a01b03821660009081526003602052604081208054600192906118de90849061286a565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166119c25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d5565b60006119cd83610e46565b9050806001600160a01b0316846001600160a01b03161480611a085750836001600160a01b03166119fd84610860565b6001600160a01b0316145b80610b4d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610b4d565b826001600160a01b0316611a4f82610e46565b6001600160a01b031614611acb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016108d5565b6001600160a01b038216611b465760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108d5565b611b516000826116ff565b6001600160a01b0383166000908152600360205260408120805460019290611b7a9084906128b5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ba890849061286a565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006116ba8284612896565b60006116ba8284612882565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff16610d4f5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611c8c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff1615610d4f5760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60065460ff16611da55760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016108d5565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60065460ff1615611e425760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016108d5565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611dd23390565b816001600160a01b0316836001600160a01b03161415611ed95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108d5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f51848484611a3c565b611f5d84848484612184565b6112aa5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108d5565b606081611ff35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561201d57806120078161294a565b91506120169050600a83612882565b9150611ff7565b60008167ffffffffffffffff81111561204657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612070576020820181803683370190505b5090505b8415610b4d576120856001836128b5565b9150612092600a86612965565b61209d90603061286a565b60f81b8183815181106120c057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120e2600a86612882565b9450612074565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061214c57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107c857507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146107c8565b60006001600160a01b0384163b156122dc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121c890339089908890889060040161281b565b602060405180830381600087803b1580156121e257600080fd5b505af1925050508015612212575060408051601f3d908101601f1916820190925261220f918101906125bb565b60015b6122c2573d808015612240576040519150601f19603f3d011682016040523d82523d6000602084013e612245565b606091505b5080516122ba5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108d5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b4d565b506001949350505050565b8280546122f39061290f565b90600052602060002090601f016020900481019282612315576000855561235b565b82601f1061232e57805160ff191683800117855561235b565b8280016001018555821561235b579182015b8281111561235b578251825591602001919060010190612340565b5061236792915061236b565b5090565b5b80821115612367576000815560010161236c565b600067ffffffffffffffff8084111561239b5761239b6129a5565b604051601f8501601f19908116603f011681019082821181831017156123c3576123c36129a5565b816040528093508581528686860111156123dc57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612407578081fd5b81356116ba816129bb565b60008060408385031215612424578081fd5b823561242f816129bb565b9150602083013561243f816129bb565b809150509250929050565b60008060006060848603121561245e578081fd5b8335612469816129bb565b92506020840135612479816129bb565b929592945050506040919091013590565b6000806000806080858703121561249f578081fd5b84356124aa816129bb565b935060208501356124ba816129bb565b925060408501359150606085013567ffffffffffffffff8111156124dc578182fd5b8501601f810187136124ec578182fd5b6124fb87823560208401612380565b91505092959194509250565b60008060408385031215612519578182fd5b8235612524816129bb565b91506020830135801515811461243f578182fd5b6000806040838503121561254a578182fd5b8235612555816129bb565b946020939093013593505050565b600060208284031215612574578081fd5b5035919050565b6000806040838503121561258d578182fd5b82359150602083013561243f816129bb565b6000602082840312156125b0578081fd5b81356116ba816129d0565b6000602082840312156125cc578081fd5b81516116ba816129d0565b6000602082840312156125e8578081fd5b813567ffffffffffffffff8111156125fe578182fd5b8201601f8101841361260e578182fd5b610b4d84823560208401612380565b6000806040838503121561258d578081fd5b60008060408385031215612641578182fd5b50508035926020909101359150565b600081518084526126688160208601602086016128cc565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061269657607f831692505b60208084108214156126b657634e487b7160e01b86526022600452602486fd5b8180156126ca57600181146126db57612708565b60ff19861689528489019650612708565b60008881526020902060005b868110156127005781548b8201529085019083016126e7565b505084890196505b50505050505092915050565b6000612720828561267c565b83516127308183602088016128cc565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600061276d828461267c565b7f6d657461646174612e6a736f6e000000000000000000000000000000000000008152600d019392505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516127d28160178501602088016128cc565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161280f8160288401602088016128cc565b01602801949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261284d6080830184612650565b9695505050505050565b6020815260006116ba6020830184612650565b6000821982111561287d5761287d612979565b500190565b6000826128915761289161298f565b500490565b60008160001904831182151516156128b0576128b0612979565b500290565b6000828210156128c7576128c7612979565b500390565b60005b838110156128e75781810151838201526020016128cf565b838111156112aa5750506000910152565b60008161290757612907612979565b506000190190565b600181811c9082168061292357607f821691505b6020821081141561294457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561295e5761295e612979565b5060010190565b6000826129745761297461298f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610dea57600080fd5b6001600160e01b031981168114610dea57600080fdfea2646970667358221220bbe01374af2ecfb9c7cf9973fcb291b2b1706085abfa26ed13cda5206577936564736f6c6343000804003338643038663962643931366162666139636263393635636162623866643762646263633334646562353939633438666166653462346532383363356261323466241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0868747470733a2f2f746f6d62736572692e65732f6d657461646174612f32302e6a736f6e
Deployed Bytecode
0x6080604052600436106102855760003560e01c806370a0823111610153578063a217fddf116100cb578063cdf653061161007f578063e8a3d48511610064578063e8a3d485146106f8578063e985e9c51461070d578063ec87621c1461075657600080fd5b8063cdf65306146106c3578063d547741f146106d857600080fd5b8063b88d4fde116100b0578063b88d4fde1461066e578063c6ab67a31461068e578063c87b56dd146106a357600080fd5b8063a217fddf14610639578063a22cb4651461064e57600080fd5b806387033ce91161012257806391d148541161010757806391d14854146105cb57806395d89b4114610611578063a0712d681461062657600080fd5b806387033ce91461059a5780638832bc29146105af57600080fd5b806370a082311461053057806375796f761461055057806383c4c00d146105705780638456cb591461058557600080fd5b80632f2ff15d1161020157806342842e0e116101b55780635c975abb1161019a5780635c975abb146104d85780636352211e146104f05780636fcc0d9e1461051057600080fd5b806342842e0e1461049857806355f804b3146104b857600080fd5b806336568abe116101e657806336568abe1461044e5780633ccfd60b1461046e5780633f4ba83a1461048357600080fd5b80632f2ff15d1461041857806332cb6b0c1461043857600080fd5b80630edc96291161025857806323b872dd1161023d57806323b872dd14610389578063248a9ca3146103a95780632a55205a146103d957600080fd5b80630edc96291461033b578063109695231461036957600080fd5b806301ffc9a71461028a57806306fdde03146102bf578063081812fc146102e1578063095ea7b314610319575b600080fd5b34801561029657600080fd5b506102aa6102a536600461259f565b61078a565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d46107ce565b6040516102b69190612857565b3480156102ed57600080fd5b506103016102fc366004612563565b610860565b6040516001600160a01b0390911681526020016102b6565b34801561032557600080fd5b50610339610334366004612538565b6108fa565b005b34801561034757600080fd5b5061035b61035636600461261d565b610a2c565b6040519081526020016102b6565b34801561037557600080fd5b506103396103843660046125d7565b610b55565b34801561039557600080fd5b506103396103a436600461244a565b610b93565b3480156103b557600080fd5b5061035b6103c4366004612563565b60009081526007602052604090206001015490565b3480156103e557600080fd5b506103f96103f436600461262f565b610c1a565b604080516001600160a01b0390931683526020830191909152016102b6565b34801561042457600080fd5b5061033961043336600461257b565b610ca1565b34801561044457600080fd5b5061035b61014e81565b34801561045a57600080fd5b5061033961046936600461257b565b610cc7565b34801561047a57600080fd5b50610339610d53565b34801561048f57600080fd5b50610339610db7565b3480156104a457600080fd5b506103396104b336600461244a565b610ded565b3480156104c457600080fd5b506103396104d33660046125d7565b610e08565b3480156104e457600080fd5b5060065460ff166102aa565b3480156104fc57600080fd5b5061030161050b366004612563565b610e46565b34801561051c57600080fd5b5061033961052b3660046125d7565b610ed1565b34801561053c57600080fd5b5061035b61054b3660046123f6565b610f0f565b34801561055c57600080fd5b5061033961056b3660046123f6565b610fa9565b34801561057c57600080fd5b5061035b611004565b34801561059157600080fd5b50610339611014565b3480156105a657600080fd5b5061035b600b81565b3480156105bb57600080fd5b5061035b67030d98d59a96000081565b3480156105d757600080fd5b506102aa6105e636600461257b565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561061d57600080fd5b506102d4611047565b61035b610634366004612563565b611056565b34801561064557600080fd5b5061035b600081565b34801561065a57600080fd5b50610339610669366004612507565b611217565b34801561067a57600080fd5b5061033961068936600461248a565b611222565b34801561069a57600080fd5b506102d46112b0565b3480156106af57600080fd5b506102d46106be366004612563565b61133e565b3480156106cf57600080fd5b5061035b600881565b3480156106e457600080fd5b506103396106f336600461257b565b611461565b34801561070457600080fd5b506102d4611487565b34801561071957600080fd5b506102aa610728366004612412565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076257600080fd5b5061035b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0881565b60006001600160e01b031982167f2a55205a0000000000000000000000000000000000000000000000000000000014806107c857506107c8826116c1565b92915050565b6060600080546107dd9061290f565b80601f01602080910402602001604051908101604052809291908181526020018280546108099061290f565b80156108565780601f1061082b57610100808354040283529160200191610856565b820191906000526020600020905b81548152906001019060200180831161083957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108de5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061090582610e46565b9050806001600160a01b0316836001600160a01b0316141561098f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016108d5565b336001600160a01b03821614806109ab57506109ab8133610728565b610a1d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108d5565b610a2783836116ff565b505050565b60007f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610a59813361177a565b600b84610a6560085490565b610a6f919061286a565b10610abc5760405162461bcd60e51b815260206004820152601360248201527f4578636565646564206d61782070726f6f66730000000000000000000000000060448201526064016108d5565b61014e84610ac960085490565b610ad3919061286a565b10610b0b5760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b60448201526064016108d5565b60005b84811015610b4857610b24600880546001019055565b610b3684610b3160085490565b6117fa565b80610b408161294a565b915050610b0e565b506008545b949350505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610b80813361177a565b8151610a279060099060208501906122e7565b610b9d3382611949565b610c0f5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108d5565b610a27838383611a3c565b60008281526002602052604081205481906001600160a01b0316610c805760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e00000000000000000000000000000060448201526064016108d5565b30610c96610c8f85600a611c16565b6064611c22565b915091509250929050565b600082815260076020526040902060010154610cbd813361177a565b610a278383611c2e565b6001600160a01b0381163314610d455760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016108d5565b610d4f8282611cd0565b5050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610d7e813361177a565b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d4f573d6000803e3d6000fd5b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610de2813361177a565b610dea611d53565b50565b610a2783838360405180602001604052806000815250611222565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610e33813361177a565b8151610a2790600a9060208501906122e7565b6000818152600260205260408120546001600160a01b0316806107c85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016108d5565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610efc813361177a565b8151610a2790600b9060208501906122e7565b60006001600160a01b038216610f8d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016108d5565b506001600160a01b031660009081526003602052604090205490565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610fd4813361177a565b50600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600061100f60085490565b905090565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0861103f813361177a565b610dea611def565b6060600180546107dd9061290f565b600061106460065460ff1690565b156110b15760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016108d5565b346110c48367030d98d59a960000612896565b146111115760405162461bcd60e51b815260206004820181905260248201527f496e636f7272656374204554482073656e743b20636865636b2070726963652160448201526064016108d5565b600882106111875760405162461bcd60e51b815260206004820152602360248201527f547269656420746f206d696e7420746f6f206d616e79204e465473206174206f60448201527f6e6365000000000000000000000000000000000000000000000000000000000060648201526084016108d5565b61014e8261119460085490565b61119e919061286a565b106111d65760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b60448201526064016108d5565b60005b8281101561120e576111ef600880546001019055565b6111fc33610b3160085490565b806112068161294a565b9150506111d9565b506008546107c8565b610d4f338383611e77565b61122c3383611949565b61129e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108d5565b6112aa84848484611f46565b50505050565b600980546112bd9061290f565b80601f01602080910402602001604051908101604052809291908181526020018280546112e99061290f565b80156113365780601f1061130b57610100808354040283529160200191611336565b820191906000526020600020905b81548152906001019060200180831161131957829003601f168201915b505050505081565b606061134960085490565b8211156113985760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e00000000000000000000000000000060448201526064016108d5565b8161142f57600b80546113aa9061290f565b80601f01602080910402602001604051908101604052809291908181526020018280546113d69061290f565b80156114235780601f106113f857610100808354040283529160200191611423565b820191906000526020600020905b81548152906001019060200180831161140657829003601f168201915b50505050509050919050565b600a61143a83611fcf565b60405160200161144b929190612714565b6040516020818303038152906040529050919050565b60008281526007602052604090206001015461147d813361177a565b610a278383611cd0565b6060600a60405160200161149b9190612761565b604051602081830303815290604052905090565b606060006114be836002612896565b6114c990600261286a565b67ffffffffffffffff8111156114ef57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611519576020820181803683370190505b509050600360fc1b8160008151811061154257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061159b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006115bf846002612896565b6115ca90600161286a565b90505b600181111561166b577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061161957634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061163d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611664816128f8565b90506115cd565b5083156116ba5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016108d5565b9392505050565b60006001600160e01b031982167f7965db0b0000000000000000000000000000000000000000000000000000000014806107c857506107c8826120e9565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061174182610e46565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff16610d4f576117b8816001600160a01b031660146114af565b6117c38360206114af565b6040516020016117d492919061279a565b60408051601f198184030181529082905262461bcd60e51b82526108d591600401612857565b6001600160a01b0382166118505760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108d5565b6000818152600260205260409020546001600160a01b0316156118b55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108d5565b6001600160a01b03821660009081526003602052604081208054600192906118de90849061286a565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166119c25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d5565b60006119cd83610e46565b9050806001600160a01b0316846001600160a01b03161480611a085750836001600160a01b03166119fd84610860565b6001600160a01b0316145b80610b4d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610b4d565b826001600160a01b0316611a4f82610e46565b6001600160a01b031614611acb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016108d5565b6001600160a01b038216611b465760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108d5565b611b516000826116ff565b6001600160a01b0383166000908152600360205260408120805460019290611b7a9084906128b5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ba890849061286a565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006116ba8284612896565b60006116ba8284612882565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff16610d4f5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611c8c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff1615610d4f5760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60065460ff16611da55760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016108d5565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60065460ff1615611e425760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016108d5565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611dd23390565b816001600160a01b0316836001600160a01b03161415611ed95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108d5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f51848484611a3c565b611f5d84848484612184565b6112aa5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108d5565b606081611ff35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561201d57806120078161294a565b91506120169050600a83612882565b9150611ff7565b60008167ffffffffffffffff81111561204657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612070576020820181803683370190505b5090505b8415610b4d576120856001836128b5565b9150612092600a86612965565b61209d90603061286a565b60f81b8183815181106120c057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120e2600a86612882565b9450612074565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061214c57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107c857507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146107c8565b60006001600160a01b0384163b156122dc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121c890339089908890889060040161281b565b602060405180830381600087803b1580156121e257600080fd5b505af1925050508015612212575060408051601f3d908101601f1916820190925261220f918101906125bb565b60015b6122c2573d808015612240576040519150601f19603f3d011682016040523d82523d6000602084013e612245565b606091505b5080516122ba5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108d5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b4d565b506001949350505050565b8280546122f39061290f565b90600052602060002090601f016020900481019282612315576000855561235b565b82601f1061232e57805160ff191683800117855561235b565b8280016001018555821561235b579182015b8281111561235b578251825591602001919060010190612340565b5061236792915061236b565b5090565b5b80821115612367576000815560010161236c565b600067ffffffffffffffff8084111561239b5761239b6129a5565b604051601f8501601f19908116603f011681019082821181831017156123c3576123c36129a5565b816040528093508581528686860111156123dc57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612407578081fd5b81356116ba816129bb565b60008060408385031215612424578081fd5b823561242f816129bb565b9150602083013561243f816129bb565b809150509250929050565b60008060006060848603121561245e578081fd5b8335612469816129bb565b92506020840135612479816129bb565b929592945050506040919091013590565b6000806000806080858703121561249f578081fd5b84356124aa816129bb565b935060208501356124ba816129bb565b925060408501359150606085013567ffffffffffffffff8111156124dc578182fd5b8501601f810187136124ec578182fd5b6124fb87823560208401612380565b91505092959194509250565b60008060408385031215612519578182fd5b8235612524816129bb565b91506020830135801515811461243f578182fd5b6000806040838503121561254a578182fd5b8235612555816129bb565b946020939093013593505050565b600060208284031215612574578081fd5b5035919050565b6000806040838503121561258d578182fd5b82359150602083013561243f816129bb565b6000602082840312156125b0578081fd5b81356116ba816129d0565b6000602082840312156125cc578081fd5b81516116ba816129d0565b6000602082840312156125e8578081fd5b813567ffffffffffffffff8111156125fe578182fd5b8201601f8101841361260e578182fd5b610b4d84823560208401612380565b6000806040838503121561258d578081fd5b60008060408385031215612641578182fd5b50508035926020909101359150565b600081518084526126688160208601602086016128cc565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061269657607f831692505b60208084108214156126b657634e487b7160e01b86526022600452602486fd5b8180156126ca57600181146126db57612708565b60ff19861689528489019650612708565b60008881526020902060005b868110156127005781548b8201529085019083016126e7565b505084890196505b50505050505092915050565b6000612720828561267c565b83516127308183602088016128cc565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600061276d828461267c565b7f6d657461646174612e6a736f6e000000000000000000000000000000000000008152600d019392505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516127d28160178501602088016128cc565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161280f8160288401602088016128cc565b01602801949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261284d6080830184612650565b9695505050505050565b6020815260006116ba6020830184612650565b6000821982111561287d5761287d612979565b500190565b6000826128915761289161298f565b500490565b60008160001904831182151516156128b0576128b0612979565b500290565b6000828210156128c7576128c7612979565b500390565b60005b838110156128e75781810151838201526020016128cf565b838111156112aa5750506000910152565b60008161290757612907612979565b506000190190565b600181811c9082168061292357607f821691505b6020821081141561294457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561295e5761295e612979565b5060010190565b6000826129745761297461298f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610dea57600080fd5b6001600160e01b031981168114610dea57600080fdfea2646970667358221220bbe01374af2ecfb9c7cf9973fcb291b2b1706085abfa26ed13cda5206577936564736f6c63430008040033
Loading...
Loading
Loading...
Loading
OVERVIEW
Nuxui is a series of 333 unique generative and hand-finished digital artworks by Nic HamiltonNet Worth in USD
$446.56
Net Worth in ETH
0.219744
Token Allocations
ETH
100.00%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ARB | 100.00% | $2,029.82 | 0.22 | $446.56 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.