ERC-721
Source Code
NFT
Overview
Max Total Supply
1,856 MBATZ
Holders
1,252
Transfers
-
1
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
MutantBatz
Compiler Version
v0.8.8+commit.dddeac2f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: None
pragma solidity 0.8.8;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./ERC2981.sol";
import "./SutterTreasury.sol";
contract MutantBatz is Ownable, ERC721, ERC2981, SutterTreasury {
using ECDSA for bytes32;
// EVENTS *****************************************************
event MintSignerUpdated(address signer);
event TokenUriUpdated(uint256 indexed tokenId, string newTokenUri);
event MutantBatCreated(uint256 indexed tokenId, uint256 cryptoBatId, address victimContract, uint256 victimId);
event MutantBatIncubating(uint256 indexed tokenId, uint256 cryptoBatId, address victimContract, uint256 victimId);
// MEMBERS ****************************************************
uint256 public constant ANCIENT_BATZ_BITE_LIMIT = 99;
uint256 public constant ANCIENT_BATZ_START_ID = 9667;
IERC721 public immutable CryptoBatz;
uint256 public totalSupply = 0;
// Valid victim NFT contracts
mapping(address => bool) private _isValidVictim;
// Keep track of whether each tokenId in each victim contract has been bitten
mapping(address => mapping(uint256 => bool)) private _victimWasBitten;
// Keep track of whether each cryptoBat has bitten a victim
mapping(uint256 => bool) private _cryptoBatHasBitten;
// Keep track of how many times each ancientBat has bitten a victim
mapping(uint256 => uint256) private _ancientBatBites;
// TokenURI for each individual mutant bat metadata
mapping(uint256 => string) private _mutantBatTokenURI;
// Controls the range of tokenIds for which metadata has been permanently locked
uint256 private _metadataLockedTo;
// If an individual tokenURI was not set during mint, this default tokenURI is used
string public defaultTokenURI;
// Bite transactions must come from authorized source, this is because we are dynamically generating
// each mutantbat and creating a tokenURI in real time as the Bite transaction is being prepared
address public mintSigner;
bytes32 private DOMAIN_SEPARATOR;
bytes32 private constant TYPEHASH =
keccak256("bite(address buyer,uint256 batId,address victimContract,uint256 victimId,string tokenURI)");
address[] private royaltyPayees = [
0xaDC6A7985036531c394B6dF054666C51dE29b9a9,
0x76bf7b1e22C773754EBC608d92f71cc0B5D99d4B,
0xE9E9206B598F6Fc95E006684Fe432f100E876110
];
uint256[] private royaltyShares = [70, 25, 5];
// CONSTRUCTOR **************************************************
constructor(
string memory defaultTokenUri_,
address cryptoBatzAddress
)
ERC721("MutantBatz by Ozzy Osbourne", "MBATZ")
SutterTreasury(royaltyPayees, royaltyShares)
{
defaultTokenURI = defaultTokenUri_;
CryptoBatz = IERC721(cryptoBatzAddress);
_setRoyalties(address(this), 750); // 7.5% royalties
uint256 chainId;
assembly {
chainId := chainid()
}
DOMAIN_SEPARATOR = keccak256(
abi.encode(
keccak256(
"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
),
keccak256(bytes("MutantBatz")),
keccak256(bytes("1")),
chainId,
address(this)
)
);
}
// PUBLIC METHODS ****************************************************
/// @notice create a new MutantBat from a CryptoBat and a victim NFT
/// @param batId tokenId of the CryptoBat used for biting
/// @param victimContract contract address of the victim NFT collection
/// @param victimId tokenId of the victim NFT that will be bitten
/// @param newTokenURI contract address of the victim NFT collection
/// @param signature signed data authenticating the validity of this transaction
function bite(
uint256 batId,
address victimContract,
uint256 victimId,
string calldata newTokenURI,
bytes calldata signature
) external {
require(CryptoBatz.ownerOf(batId) == msg.sender, "You're not the owner of this bat");
if (batId >= ANCIENT_BATZ_START_ID) {
require(_ancientBatBites[batId] < ANCIENT_BATZ_BITE_LIMIT, "AncientBat has no more bites left");
_ancientBatBites[batId]++;
} else {
require(!_cryptoBatHasBitten[batId], "CryptoBat has already bitten");
_cryptoBatHasBitten[batId] = true;
}
require(_isValidVictim[victimContract], "This NFT cannot be bitten");
require(IERC721(victimContract).ownerOf(victimId) == msg.sender, "You're not the owner of this victim");
require(!_victimWasBitten[victimContract][victimId], "This victim has already been bitten");
_victimWasBitten[victimContract][victimId] = true;
require(mintSigner != address(0), "Mint signer has not been set");
bytes32 digest = keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR,
keccak256(abi.encode(TYPEHASH, msg.sender, batId, victimContract, victimId, keccak256(bytes(newTokenURI))))
)
);
address signer = digest.recover(signature);
require(signer != address(0) && signer == mintSigner, "Invalid signature");
uint256 newTokenId = ++totalSupply;
if (bytes(newTokenURI).length > 0) {
_mutantBatTokenURI[newTokenId] = newTokenURI;
emit MutantBatCreated(newTokenId, batId, victimContract, victimId);
} else {
emit MutantBatIncubating(newTokenId, batId, victimContract, victimId);
}
_safeMint(msg.sender, newTokenId);
}
function isTokenMetadataLocked(uint256 tokenId)
public
view
returns (bool)
{
require(_exists(tokenId), "URI query for nonexistent token");
return tokenId <= _metadataLockedTo;
}
/// @notice Check if the list of CryptoBatz can bite to create MutantBatz
/// @dev This works for both CryptoBat and AncientBat tokenIds
/// @param tokenIds an array of tokenIds to check
/// @return an array of bool, true = bat can still bite
function canBatsBite(uint256[] calldata tokenIds)
external
view
returns (bool[] memory)
{
require(tokenIds.length > 0, "Empty array");
bool[] memory canBite = new bool[](tokenIds.length);
for(uint i = 0; i < tokenIds.length; i++) {
if (tokenIds[i] >= ANCIENT_BATZ_START_ID) {
canBite[i] = (_ancientBatBites[tokenIds[i]] < ANCIENT_BATZ_BITE_LIMIT);
} else {
canBite[i] = !_cryptoBatHasBitten[tokenIds[i]];
}
}
return canBite;
}
/// @notice Check if the list of victim NFTs can be still bitten
/// @param victimContract contract address of the victim NFT
/// @param tokenIds an array of tokenIds to check
/// @return an array of bool, true = victim can still be bitten
function canVictimBeBitten(address victimContract, uint256[] calldata tokenIds)
external
view
returns (bool[] memory)
{
require(tokenIds.length > 0, "Empty array");
require(_isValidVictim[victimContract], "This NFT collection cannot be bitten");
bool[] memory canBeBitten = new bool[](tokenIds.length);
for(uint i = 0; i < tokenIds.length; i++) {
canBeBitten[i] = !_victimWasBitten[victimContract][tokenIds[i]];
}
return canBeBitten;
}
/// @inheritdoc ERC165
function supportsInterface(bytes4 interfaceId)
public
view
override(ERC721, ERC2981)
returns (bool)
{
return super.supportsInterface(interfaceId);
}
/// @inheritdoc ERC721
function tokenURI(uint256 tokenId) public view override returns (string memory) {
require(_exists(tokenId), "URI query for nonexistent token");
string memory _tokenURI = _mutantBatTokenURI[tokenId];
// If there is no individual URI set, return the default token URI.
if (bytes(_tokenURI).length == 0) {
return defaultTokenURI;
}
return _tokenURI;
}
// OWNER METHODS ********************************************************
/// @notice Allows the contract owner to update the defaultTokenURI
/// @param newTokenURI the new value for defaultTokenURI
function setDefaultTokenURI(string calldata newTokenURI) external onlyOwner {
require(bytes(newTokenURI).length > 0, "TokenURI cannot be empty");
defaultTokenURI = newTokenURI;
}
/// @notice Allows the contract owner to enable a victim NFT collection for biting
/// @param contractAddress the contract address of the victim NFT collection
function enableVictim(address contractAddress) external onlyOwner {
require(contractAddress != address(0), "0 address not accepted");
require(_isValidVictim[contractAddress] == false, "Victim already enabled");
_isValidVictim[contractAddress] = true;
}
/// @notice Allows the contract owner to disable a victim NFT collection for biting
/// @param contractAddress The contract address of the victim NFT collection
function disableVictim(address contractAddress) external onlyOwner {
require(_isValidVictim[contractAddress] == true, "Victim not enabled");
delete _isValidVictim[contractAddress];
}
/// @notice Allows the contract owner to update the metadata URI for a MutantBat, if it's not locked
/// @param tokenId MutantBat to update
/// @param newTokenURI New metadata URI
function updateTokenURI(uint256 tokenId, string calldata newTokenURI) external onlyOwner {
require(_exists(tokenId), "URI query for nonexistent token");
require(!isTokenMetadataLocked(tokenId), "Token metadata URI has been locked");
require(bytes(newTokenURI).length > 0, "TokenURI cannot be empty");
emit TokenUriUpdated(tokenId, newTokenURI);
_mutantBatTokenURI[tokenId] = newTokenURI;
}
/// @notice Allows the contract owner lock all metadata URIs up to a certain tokenId
/// @param tokenId All metadata will be locked from token #1 up to this tokenId
function lockTokenMetadataTo(uint256 tokenId) external onlyOwner {
require(tokenId <= totalSupply, "Locking beyond current supply");
require(tokenId > _metadataLockedTo, "Must increase beyond current lock");
_metadataLockedTo = tokenId;
}
/// @notice Allows the contract owner to update the mint signer
/// @param newMintSigner The new authorised mint signer address
function setMintSigner(address newMintSigner) external onlyOwner {
emit MintSignerUpdated(newMintSigner);
mintSigner = newMintSigner;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.0;
import "../Strings.sol";
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
} else if (error == RecoverError.InvalidSignatureV) {
revert("ECDSA: invalid signature 'v' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
// Check the signature length
// - case 65: r,s,v signature (standard)
// - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else if (signature.length == 64) {
bytes32 r;
bytes32 vs;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
assembly {
r := mload(add(signature, 0x20))
vs := mload(add(signature, 0x40))
}
return tryRecover(hash, r, vs);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address, RecoverError) {
bytes32 s;
uint8 v;
assembly {
s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
v := add(shr(255, vs), 27)
}
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/
function recover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
if (v != 27 && v != 28) {
return (address(0), RecoverError.InvalidSignatureV);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
}
/**
* @dev Returns an Ethereum Signed Message, created from `s`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
}
}// 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
pragma solidity ^0.8.8;
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "./IERC2981.sol";
/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
contract ERC2981 is ERC165, IERC2981 {
struct RoyaltyInfo {
address recipient;
uint24 amount;
}
RoyaltyInfo private _royalties;
/// @dev Sets token royalties
/// @param recipient recipient of the royalties
/// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)
function _setRoyalties(address recipient, uint256 value) internal {
require(value <= 10000, "ERC2981Royalties: Too high");
_royalties = RoyaltyInfo(recipient, uint24(value));
}
/// @inheritdoc IERC2981
function royaltyInfo(uint256, uint256 value)
external
view
override
returns (address receiver, uint256 royaltyAmount)
{
RoyaltyInfo memory royalties = _royalties;
receiver = royalties.recipient;
royaltyAmount = (value * royalties.amount) / 10000;
}
/// @inheritdoc ERC165
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override
returns (bool)
{
return
interfaceId == type(IERC2981).interfaceId ||
super.supportsInterface(interfaceId);
}
}// SPDX-License-Identifier: None
pragma solidity ^0.8.8;
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
contract SutterTreasury is PaymentSplitter {
uint256 private _numberOfPayees;
constructor(address[] memory payees, uint256[] memory shares_)
payable
PaymentSplitter(payees, shares_)
{
_numberOfPayees = payees.length;
}
function withdrawAll() external {
require(address(this).balance > 0, "No balance to withdraw");
for (uint256 i = 0; i < _numberOfPayees; i++) {
release(payable(payee(i)));
}
}
}// 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 (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/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: None
pragma solidity ^0.8.8;
///
/// @dev Interface for the NFT Royalty Standard
///
interface IERC2981 {
/// @notice 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 (finance/PaymentSplitter.sol)
pragma solidity ^0.8.0;
import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";
/**
* @title PaymentSplitter
* @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
* that the Ether will be split in this way, since it is handled transparently by the contract.
*
* The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
* account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
* an amount proportional to the percentage of total shares they were assigned.
*
* `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
* accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
* function.
*
* NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
* tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
* to run tests before sending real value to this contract.
*/
contract PaymentSplitter is Context {
event PayeeAdded(address account, uint256 shares);
event PaymentReleased(address to, uint256 amount);
event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
event PaymentReceived(address from, uint256 amount);
uint256 private _totalShares;
uint256 private _totalReleased;
mapping(address => uint256) private _shares;
mapping(address => uint256) private _released;
address[] private _payees;
mapping(IERC20 => uint256) private _erc20TotalReleased;
mapping(IERC20 => mapping(address => uint256)) private _erc20Released;
/**
* @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
* the matching position in the `shares` array.
*
* All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
* duplicates in `payees`.
*/
constructor(address[] memory payees, uint256[] memory shares_) payable {
require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
require(payees.length > 0, "PaymentSplitter: no payees");
for (uint256 i = 0; i < payees.length; i++) {
_addPayee(payees[i], shares_[i]);
}
}
/**
* @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
* reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
* reliability of the events, and not the actual splitting of Ether.
*
* To learn more about this see the Solidity documentation for
* https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
* functions].
*/
receive() external payable virtual {
emit PaymentReceived(_msgSender(), msg.value);
}
/**
* @dev Getter for the total shares held by payees.
*/
function totalShares() public view returns (uint256) {
return _totalShares;
}
/**
* @dev Getter for the total amount of Ether already released.
*/
function totalReleased() public view returns (uint256) {
return _totalReleased;
}
/**
* @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
* contract.
*/
function totalReleased(IERC20 token) public view returns (uint256) {
return _erc20TotalReleased[token];
}
/**
* @dev Getter for the amount of shares held by an account.
*/
function shares(address account) public view returns (uint256) {
return _shares[account];
}
/**
* @dev Getter for the amount of Ether already released to a payee.
*/
function released(address account) public view returns (uint256) {
return _released[account];
}
/**
* @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
* IERC20 contract.
*/
function released(IERC20 token, address account) public view returns (uint256) {
return _erc20Released[token][account];
}
/**
* @dev Getter for the address of the payee number `index`.
*/
function payee(uint256 index) public view returns (address) {
return _payees[index];
}
/**
* @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
* total shares and their previous withdrawals.
*/
function release(address payable account) public virtual {
require(_shares[account] > 0, "PaymentSplitter: account has no shares");
uint256 totalReceived = address(this).balance + totalReleased();
uint256 payment = _pendingPayment(account, totalReceived, released(account));
require(payment != 0, "PaymentSplitter: account is not due payment");
_released[account] += payment;
_totalReleased += payment;
Address.sendValue(account, payment);
emit PaymentReleased(account, payment);
}
/**
* @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
* percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
* contract.
*/
function release(IERC20 token, address account) public virtual {
require(_shares[account] > 0, "PaymentSplitter: account has no shares");
uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
uint256 payment = _pendingPayment(account, totalReceived, released(token, account));
require(payment != 0, "PaymentSplitter: account is not due payment");
_erc20Released[token][account] += payment;
_erc20TotalReleased[token] += payment;
SafeERC20.safeTransfer(token, account, payment);
emit ERC20PaymentReleased(token, account, payment);
}
/**
* @dev internal logic for computing the pending payment of an `account` given the token historical balances and
* already released amounts.
*/
function _pendingPayment(
address account,
uint256 totalReceived,
uint256 alreadyReleased
) private view returns (uint256) {
return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
}
/**
* @dev Add a new payee to the contract.
* @param account The address of the payee to add.
* @param shares_ The number of shares owned by the payee.
*/
function _addPayee(address account, uint256 shares_) private {
require(account != address(0), "PaymentSplitter: account is the zero address");
require(shares_ > 0, "PaymentSplitter: shares are 0");
require(_shares[account] == 0, "PaymentSplitter: account already has shares");
_payees.push(account);
_shares[account] = shares_;
_totalShares = _totalShares + shares_;
emit PayeeAdded(account, shares_);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"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":[{"internalType":"string","name":"defaultTokenUri_","type":"string"},{"internalType":"address","name":"cryptoBatzAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"MintSignerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"cryptoBatId","type":"uint256"},{"indexed":false,"internalType":"address","name":"victimContract","type":"address"},{"indexed":false,"internalType":"uint256","name":"victimId","type":"uint256"}],"name":"MutantBatCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"cryptoBatId","type":"uint256"},{"indexed":false,"internalType":"address","name":"victimContract","type":"address"},{"indexed":false,"internalType":"uint256","name":"victimId","type":"uint256"}],"name":"MutantBatIncubating","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"newTokenUri","type":"string"}],"name":"TokenUriUpdated","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"},{"inputs":[],"name":"ANCIENT_BATZ_BITE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ANCIENT_BATZ_START_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CryptoBatz","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"batId","type":"uint256"},{"internalType":"address","name":"victimContract","type":"address"},{"internalType":"uint256","name":"victimId","type":"uint256"},{"internalType":"string","name":"newTokenURI","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"bite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"canBatsBite","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"victimContract","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"canVictimBeBitten","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"disableVictim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"enableVictim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isTokenMetadataLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"lockTokenMetadataTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","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":"newTokenURI","type":"string"}],"name":"setDefaultTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMintSigner","type":"address"}],"name":"setMintSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newTokenURI","type":"string"}],"name":"updateTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
600060105561010060405273adc6a7985036531c394b6df054666c51de29b9a960a09081527376bf7b1e22c773754ebc608d92f71cc0b5d99d4b60c05273e9e9206b598f6fc95e006684fe432f100e87611060e0526200006490601a9060036200073b565b506040805160608101825260468152601960208201526005918101919091526200009390601b906003620007a5565b50348015620000a157600080fd5b506040516200451f3803806200451f833981016040819052620000c491620008af565b601a8054806020026020016040519081016040528092919081815260200182805480156200011c57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620000fd575b5050505050601b8054806020026020016040519081016040528092919081815260200182805480156200016f57602002820191906000526020600020905b8154815260200190600101908083116200015a575b505050505081816040518060400160405280601b81526020017f4d7574616e744261747a206279204f7a7a79204f73626f75726e6500000000008152506040518060400160405280600581526020016426a120aa2d60d91b815250620001e4620001de6200045b60201b60201c565b6200045f565b8151620001f9906001906020850190620007e8565b5080516200020f906002906020840190620007e8565b5050508051825114620002845760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002d75760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200027b565b60005b825181101562000343576200032e838281518110620002fd57620002fd620009a0565b60200260200101518383815181106200031a576200031a620009a0565b6020026020010151620004af60201b60201c565b806200033a81620009cc565b915050620002da565b50509151600f555050815162000361906017906020850190620007e8565b506001600160601b0319606082901b1660805262000382306102ee6200069d565b5050604080518082018252600a81526926baba30b73a2130ba3d60b11b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527f5d2787cca331b311db0ed8a60af6826e852f5f0abc730bd14d0e630f2a32ee68818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a0808301919091528351808303909101815260c0909101909252815191012060195562000a42565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200051c5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200027b565b600081116200056e5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200027b565b6001600160a01b0382166000908152600a602052604090205415620005ea5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200027b565b600c8054600181019091557fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0384169081179091556000908152600a6020526040902081905560085462000654908290620009ea565b600855604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b612710811115620006f15760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f206869676800000000000060448201526064016200027b565b604080518082019091526001600160a01b0390921680835262ffffff909116602090920182905260078054600160a01b9093026001600160b81b0319909316909117919091179055565b82805482825590600052602060002090810192821562000793579160200282015b828111156200079357825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200075c565b50620007a192915062000865565b5090565b82805482825590600052602060002090810192821562000793579160200282015b8281111562000793578251829060ff16905591602001919060010190620007c6565b828054620007f69062000a05565b90600052602060002090601f0160209004810192826200081a576000855562000793565b82601f106200083557805160ff191683800117855562000793565b8280016001018555821562000793579182015b828111156200079357825182559160200191906001019062000848565b5b80821115620007a1576000815560010162000866565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b0381168114620008aa57600080fd5b919050565b60008060408385031215620008c357600080fd5b82516001600160401b0380821115620008db57600080fd5b818501915085601f830112620008f057600080fd5b8151818111156200090557620009056200087c565b604051601f8201601f19908116603f011681019083821181831017156200093057620009306200087c565b816040528281526020935088848487010111156200094d57600080fd5b600091505b8282101562000971578482018401518183018501529083019062000952565b82821115620009835760008484830101525b95506200099591505085820162000892565b925050509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415620009e357620009e3620009b6565b5060010190565b6000821982111562000a005762000a00620009b6565b500190565b600181811c9082168062000a1a57607f821691505b6020821081141562000a3c57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c613ab762000a6860003960008181610699015261169b0152613ab76000f3fe6080604052600436106102605760003560e01c80638b83209b11610144578063c87b56dd116100b6578063d79779b21161007a578063d79779b2146107c7578063e33b7de3146107fd578063e84a972814610812578063e985e9c514610832578063f17af48d1461087b578063f2fde38b1461089b57600080fd5b8063c87b56dd1461071b578063ce7c2ac21461073b578063d02f5d4514610771578063d1846ff814610791578063d6b6b00f146107a757600080fd5b80639852595c116101085780639852595c14610631578063a125c82414610667578063a197d16b14610687578063a22cb465146106bb578063accce9d6146106db578063b88d4fde146106fb57600080fd5b80638b83209b1461059c5780638da5cb5b146105bc5780639342013c146105da57806395d89b4114610607578063963bfe121461061c57600080fd5b8063348ae6f4116101dd57806348b75044116101a157806348b75044146104fd5780634f72f60d1461051d5780636352211e1461053257806370a0823114610552578063715018a614610572578063853828b61461058757600080fd5b8063348ae6f4146104425780633a98ef39146104625780633c67282714610477578063406072a91461049757806342842e0e146104dd57600080fd5b806318160ddd1161022457806318160ddd1461037f57806318e97fd1146103a357806319165587146103c357806323b872dd146103e35780632a55205a1461040357600080fd5b806301ffc9a7146102ae57806306fdde03146102e3578063081812fc14610305578063095ea7b31461033d5780631505ea951461035f57600080fd5b366102a9577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102ba57600080fd5b506102ce6102c9366004613195565b6108bb565b60405190151581526020015b60405180910390f35b3480156102ef57600080fd5b506102f86108cc565b6040516102da919061320a565b34801561031157600080fd5b5061032561032036600461321d565b61095e565b6040516001600160a01b0390911681526020016102da565b34801561034957600080fd5b5061035d61035836600461324b565b6109eb565b005b34801561036b57600080fd5b506102ce61037a36600461321d565b610b01565b34801561038b57600080fd5b5061039560105481565b6040519081526020016102da565b3480156103af57600080fd5b5061035d6103be3660046132b9565b610b31565b3480156103cf57600080fd5b5061035d6103de366004613305565b610c82565b3480156103ef57600080fd5b5061035d6103fe366004613322565b610db0565b34801561040f57600080fd5b5061042361041e366004613363565b610de1565b604080516001600160a01b0390931683526020830191909152016102da565b34801561044e57600080fd5b5061035d61045d366004613305565b610e36565b34801561046e57600080fd5b50600854610395565b34801561048357600080fd5b5061035d610492366004613305565b610ee3565b3480156104a357600080fd5b506103956104b2366004613385565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b3480156104e957600080fd5b5061035d6104f8366004613322565b610fe2565b34801561050957600080fd5b5061035d610518366004613385565b610ffd565b34801561052957600080fd5b50610395606381565b34801561053e57600080fd5b5061032561054d36600461321d565b6111e5565b34801561055e57600080fd5b5061039561056d366004613305565b61125c565b34801561057e57600080fd5b5061035d6112e3565b34801561059357600080fd5b5061035d611319565b3480156105a857600080fd5b506103256105b736600461321d565b611390565b3480156105c857600080fd5b506000546001600160a01b0316610325565b3480156105e657600080fd5b506105fa6105f5366004613403565b6113c0565b6040516102da919061344b565b34801561061357600080fd5b506102f8611551565b34801561062857600080fd5b506102f8611560565b34801561063d57600080fd5b5061039561064c366004613305565b6001600160a01b03166000908152600b602052604090205490565b34801561067357600080fd5b5061035d610682366004613491565b6115ee565b34801561069357600080fd5b506103257f000000000000000000000000000000000000000000000000000000000000000081565b3480156106c757600080fd5b5061035d6106d63660046134e1565b61166c565b3480156106e757600080fd5b5061035d6106f636600461350f565b61167b565b34801561070757600080fd5b5061035d6107163660046135bb565b611d23565b34801561072757600080fd5b506102f861073636600461321d565b611d55565b34801561074757600080fd5b50610395610756366004613305565b6001600160a01b03166000908152600a602052604090205490565b34801561077d57600080fd5b5061035d61078c36600461321d565b611eb2565b34801561079d57600080fd5b506103956125c381565b3480156107b357600080fd5b506105fa6107c236600461369b565b611f8e565b3480156107d357600080fd5b506103956107e2366004613305565b6001600160a01b03166000908152600d602052604090205490565b34801561080957600080fd5b50600954610395565b34801561081e57600080fd5b5061035d61082d366004613305565b61210b565b34801561083e57600080fd5b506102ce61084d366004613385565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561088757600080fd5b50601854610325906001600160a01b031681565b3480156108a757600080fd5b5061035d6108b6366004613305565b612193565b60006108c68261222b565b92915050565b6060600180546108db906136d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610907906136d1565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b5050505050905090565b600061096982612250565b6109cf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109f6826111e5565b9050806001600160a01b0316836001600160a01b03161415610a645760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109c6565b336001600160a01b0382161480610a805750610a80813361084d565b610af25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109c6565b610afc838361226d565b505050565b6000610b0c82612250565b610b285760405162461bcd60e51b81526004016109c69061370c565b50601654101590565b6000546001600160a01b03163314610b5b5760405162461bcd60e51b81526004016109c690613743565b610b6483612250565b610b805760405162461bcd60e51b81526004016109c69061370c565b610b8983610b01565b15610be15760405162461bcd60e51b815260206004820152602260248201527f546f6b656e206d657461646174612055524920686173206265656e206c6f636b604482015261195960f21b60648201526084016109c6565b80610c295760405162461bcd60e51b8152602060048201526018602482015277546f6b656e5552492063616e6e6f7420626520656d70747960401b60448201526064016109c6565b827f652c9498726ae446882619d79306dfe2594d5d5a008eaad0a720ee55ebf8e8b88383604051610c5b929190613778565b60405180910390a26000838152601560205260409020610c7c9083836130e6565b50505050565b6001600160a01b0381166000908152600a6020526040902054610cb75760405162461bcd60e51b81526004016109c6906137a7565b6000610cc260095490565b610ccc9047613803565b90506000610cf98383610cf4866001600160a01b03166000908152600b602052604090205490565b6122db565b905080610d185760405162461bcd60e51b81526004016109c69061381b565b6001600160a01b0383166000908152600b602052604081208054839290610d40908490613803565b925050819055508060096000828254610d599190613803565b90915550610d6990508382612321565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610dba338261243a565b610dd65760405162461bcd60e51b81526004016109c690613866565b610afc838383612520565b604080518082019091526007546001600160a01b038116808352600160a01b90910462ffffff1660208301819052909160009161271090610e2290866138b7565b610e2c91906138d6565b9150509250929050565b6000546001600160a01b03163314610e605760405162461bcd60e51b81526004016109c690613743565b6001600160a01b03811660009081526011602052604090205460ff161515600114610ec25760405162461bcd60e51b8152602060048201526012602482015271159a58dd1a5b481b9bdd08195b98589b195960721b60448201526064016109c6565b6001600160a01b03166000908152601160205260409020805460ff19169055565b6000546001600160a01b03163314610f0d5760405162461bcd60e51b81526004016109c690613743565b6001600160a01b038116610f5c5760405162461bcd60e51b81526020600482015260166024820152750c081859191c995cdcc81b9bdd081858d8d95c1d195960521b60448201526064016109c6565b6001600160a01b03811660009081526011602052604090205460ff1615610fbe5760405162461bcd60e51b8152602060048201526016602482015275159a58dd1a5b48185b1c9958591e48195b98589b195960521b60448201526064016109c6565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b610afc83838360405180602001604052806000815250611d23565b6001600160a01b0381166000908152600a60205260409020546110325760405162461bcd60e51b81526004016109c6906137a7565b6001600160a01b0382166000908152600d60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561108a57600080fd5b505afa15801561109e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c291906138f8565b6110cc9190613803565b905060006111058383610cf487876001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b9050806111245760405162461bcd60e51b81526004016109c69061381b565b6001600160a01b038085166000908152600e602090815260408083209387168352929052908120805483929061115b908490613803565b90915550506001600160a01b0384166000908152600d602052604081208054839290611188908490613803565b9091555061119990508484836126c0565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000818152600360205260408120546001600160a01b0316806108c65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109c6565b60006001600160a01b0382166112c75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109c6565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461130d5760405162461bcd60e51b81526004016109c690613743565b6113176000612712565b565b600047116113625760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b60448201526064016109c6565b60005b600f5481101561138d5761137b6103de82611390565b8061138581613911565b915050611365565b50565b6000600c82815481106113a5576113a561392c565b6000918252602090912001546001600160a01b031692915050565b6060816113fd5760405162461bcd60e51b815260206004820152600b60248201526a456d70747920617272617960a81b60448201526064016109c6565b6001600160a01b03841660009081526011602052604090205460ff166114715760405162461bcd60e51b8152602060048201526024808201527f54686973204e465420636f6c6c656374696f6e2063616e6e6f742062652062696044820152633a3a32b760e11b60648201526084016109c6565b60008267ffffffffffffffff81111561148c5761148c6135a5565b6040519080825280602002602001820160405280156114b5578160200160208202803683370190505b50905060005b83811015611546576001600160a01b0386166000908152601260205260408120908686848181106114ee576114ee61392c565b90506020020135815260200190815260200160002060009054906101000a900460ff16158282815181106115245761152461392c565b911515602092830291909101909101528061153e81613911565b9150506114bb565b5090505b9392505050565b6060600280546108db906136d1565b6017805461156d906136d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611599906136d1565b80156115e65780601f106115bb576101008083540402835291602001916115e6565b820191906000526020600020905b8154815290600101906020018083116115c957829003601f168201915b505050505081565b6000546001600160a01b031633146116185760405162461bcd60e51b81526004016109c690613743565b806116605760405162461bcd60e51b8152602060048201526018602482015277546f6b656e5552492063616e6e6f7420626520656d70747960401b60448201526064016109c6565b610afc601783836130e6565b611677338383612762565b5050565b6040516331a9108f60e11b81526004810188905233906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e9060240160206040518083038186803b1580156116dd57600080fd5b505afa1580156116f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117159190613942565b6001600160a01b03161461176b5760405162461bcd60e51b815260206004820181905260248201527f596f75277265206e6f7420746865206f776e6572206f6620746869732062617460448201526064016109c6565b6125c38710611800576000878152601460205260409020546063116117dc5760405162461bcd60e51b815260206004820152602160248201527f416e6369656e7442617420686173206e6f206d6f7265206269746573206c65666044820152601d60fa1b60648201526084016109c6565b60008781526014602052604081208054916117f683613911565b9190505550611879565b60008781526013602052604090205460ff161561185f5760405162461bcd60e51b815260206004820152601c60248201527f43727970746f4261742068617320616c72656164792062697474656e0000000060448201526064016109c6565b6000878152601360205260409020805460ff191660011790555b6001600160a01b03861660009081526011602052604090205460ff166118e15760405162461bcd60e51b815260206004820152601960248201527f54686973204e46542063616e6e6f742062652062697474656e0000000000000060448201526064016109c6565b6040516331a9108f60e11b81526004810186905233906001600160a01b03881690636352211e9060240160206040518083038186803b15801561192357600080fd5b505afa158015611937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195b9190613942565b6001600160a01b0316146119bd5760405162461bcd60e51b815260206004820152602360248201527f596f75277265206e6f7420746865206f776e6572206f6620746869732076696360448201526274696d60e81b60648201526084016109c6565b6001600160a01b038616600090815260126020908152604080832088845290915290205460ff1615611a3d5760405162461bcd60e51b815260206004820152602360248201527f546869732076696374696d2068617320616c7265616479206265656e206269746044820152623a32b760e91b60648201526084016109c6565b6001600160a01b0380871660009081526012602090815260408083208984529091529020805460ff1916600117905560185416611abc5760405162461bcd60e51b815260206004820152601c60248201527f4d696e74207369676e657220686173206e6f74206265656e207365740000000060448201526064016109c6565b60006019547f46eece1f0527b0620ee30fe92e87c4baa922f66983960ee9ab48f633a6271f0e338a8a8a8a8a604051611af692919061395f565b6040805191829003822060208301979097526001600160a01b039586169082015260608101939093529216608082015260a081019190915260c081019190915260e00160405160208183030381529060405280519060200120604051602001611b7692919061190160f01b81526002810192909252602282015260420190565b6040516020818303038152906040528051906020012090506000611bd284848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525086939250506128319050565b90506001600160a01b03811615801590611bf957506018546001600160a01b038281169116145b611c395760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b60448201526064016109c6565b6000601060008154611c4a90613911565b918290555090508515611cc1576000818152601560205260409020611c709088886130e6565b50604080518b81526001600160a01b038b16602082015290810189905281907f45e49d3012a43b47a1d62c14acdd5afaee070a1baf158d5c58d6aeae5168ba619060600160405180910390a2611d0d565b604080518b81526001600160a01b038b16602082015290810189905281907f6059c71249d339dab187476588df6d3f72505c89d1035f7b038eeb18a0fe82ca9060600160405180910390a25b611d17338261284d565b50505050505050505050565b611d2d338361243a565b611d495760405162461bcd60e51b81526004016109c690613866565b610c7c84848484612867565b6060611d6082612250565b611d7c5760405162461bcd60e51b81526004016109c69061370c565b60008281526015602052604081208054611d95906136d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc1906136d1565b8015611e0e5780601f10611de357610100808354040283529160200191611e0e565b820191906000526020600020905b815481529060010190602001808311611df157829003601f168201915b505050505090508051600014156108c65760178054611e2c906136d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611e58906136d1565b8015611ea55780601f10611e7a57610100808354040283529160200191611ea5565b820191906000526020600020905b815481529060010190602001808311611e8857829003601f168201915b5050505050915050919050565b6000546001600160a01b03163314611edc5760405162461bcd60e51b81526004016109c690613743565b601054811115611f2e5760405162461bcd60e51b815260206004820152601d60248201527f4c6f636b696e67206265796f6e642063757272656e7420737570706c7900000060448201526064016109c6565b6016548111611f895760405162461bcd60e51b815260206004820152602160248201527f4d75737420696e637265617365206265796f6e642063757272656e74206c6f636044820152606b60f81b60648201526084016109c6565b601655565b606081611fcb5760405162461bcd60e51b815260206004820152600b60248201526a456d70747920617272617960a81b60448201526064016109c6565b60008267ffffffffffffffff811115611fe657611fe66135a5565b60405190808252806020026020018201604052801561200f578160200160208202803683370190505b50905060005b83811015612103576125c38585838181106120325761203261392c565b9050602002013510612094576063601460008787858181106120565761205661392c565b905060200201358152602001908152602001600020541082828151811061207f5761207f61392c565b911515602092830291909101909101526120f1565b601360008686848181106120aa576120aa61392c565b90506020020135815260200190815260200160002060009054906101000a900460ff16158282815181106120e0576120e061392c565b911515602092830291909101909101525b806120fb81613911565b915050612015565b509392505050565b6000546001600160a01b031633146121355760405162461bcd60e51b81526004016109c690613743565b6040516001600160a01b03821681527f81c142d9a4b33dfaba82444370b6b077fc2cb507c30c41a7c967f695ed72651f9060200160405180910390a1601880546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146121bd5760405162461bcd60e51b81526004016109c690613743565b6001600160a01b0381166122225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c6565b61138d81612712565b60006001600160e01b0319821663152a902d60e11b14806108c657506108c68261289a565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122a2826111e5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6008546001600160a01b0384166000908152600a60205260408120549091839161230590866138b7565b61230f91906138d6565b612319919061396f565b949350505050565b804710156123715760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109c6565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146123be576040519150601f19603f3d011682016040523d82523d6000602084013e6123c3565b606091505b5050905080610afc5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109c6565b600061244582612250565b6124a65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109c6565b60006124b1836111e5565b9050806001600160a01b0316846001600160a01b031614806124ec5750836001600160a01b03166124e18461095e565b6001600160a01b0316145b8061231957506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16612319565b826001600160a01b0316612533826111e5565b6001600160a01b03161461259b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109c6565b6001600160a01b0382166125fd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109c6565b61260860008261226d565b6001600160a01b038316600090815260046020526040812080546001929061263190849061396f565b90915550506001600160a01b038216600090815260046020526040812080546001929061265f908490613803565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610afc9084906128ea565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156127c45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109c6565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600080600061284085856129bc565b9150915061210381612a2c565b611677828260405180602001604052806000815250612be7565b612872848484612520565b61287e84848484612c1a565b610c7c5760405162461bcd60e51b81526004016109c690613986565b60006001600160e01b031982166380ac58cd60e01b14806128cb57506001600160e01b03198216635b5e139f60e01b145b806108c657506301ffc9a760e01b6001600160e01b03198316146108c6565b600061293f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d279092919063ffffffff16565b805190915015610afc578080602001905181019061295d91906139d8565b610afc5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016109c6565b6000808251604114156129f35760208301516040840151606085015160001a6129e787828585612d36565b94509450505050612a25565b825160401415612a1d5760208301516040840151612a12868383612e23565b935093505050612a25565b506000905060025b9250929050565b6000816004811115612a4057612a406139f5565b1415612a495750565b6001816004811115612a5d57612a5d6139f5565b1415612aab5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109c6565b6002816004811115612abf57612abf6139f5565b1415612b0d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109c6565b6003816004811115612b2157612b216139f5565b1415612b7a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109c6565b6004816004811115612b8e57612b8e6139f5565b141561138d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109c6565b612bf18383612e52565b612bfe6000848484612c1a565b610afc5760405162461bcd60e51b81526004016109c690613986565b60006001600160a01b0384163b15612d1c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612c5e903390899088908890600401613a0b565b602060405180830381600087803b158015612c7857600080fd5b505af1925050508015612ca8575060408051601f3d908101601f19168201909252612ca591810190613a48565b60015b612d02573d808015612cd6576040519150601f19603f3d011682016040523d82523d6000602084013e612cdb565b606091505b508051612cfa5760405162461bcd60e51b81526004016109c690613986565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612319565b506001949350505050565b60606123198484600085612f85565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612d6d5750600090506003612e1a565b8460ff16601b14158015612d8557508460ff16601c14155b15612d965750600090506004612e1a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612dea573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612e1357600060019250925050612e1a565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01612e4487828885612d36565b935093505050935093915050565b6001600160a01b038216612ea85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109c6565b612eb181612250565b15612efe5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109c6565b6001600160a01b0382166000908152600460205260408120805460019290612f27908490613803565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606082471015612fe65760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016109c6565b843b6130345760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016109c6565b600080866001600160a01b031685876040516130509190613a65565b60006040518083038185875af1925050503d806000811461308d576040519150601f19603f3d011682016040523d82523d6000602084013e613092565b606091505b50915091506130a28282866130ad565b979650505050505050565b606083156130bc57508161154a565b8251156130cc5782518084602001fd5b8160405162461bcd60e51b81526004016109c6919061320a565b8280546130f2906136d1565b90600052602060002090601f016020900481019282613114576000855561315a565b82601f1061312d5782800160ff1982351617855561315a565b8280016001018555821561315a579182015b8281111561315a57823582559160200191906001019061313f565b5061316692915061316a565b5090565b5b80821115613166576000815560010161316b565b6001600160e01b03198116811461138d57600080fd5b6000602082840312156131a757600080fd5b813561154a8161317f565b60005b838110156131cd5781810151838201526020016131b5565b83811115610c7c5750506000910152565b600081518084526131f68160208601602086016131b2565b601f01601f19169290920160200192915050565b60208152600061154a60208301846131de565b60006020828403121561322f57600080fd5b5035919050565b6001600160a01b038116811461138d57600080fd5b6000806040838503121561325e57600080fd5b823561326981613236565b946020939093013593505050565b60008083601f84011261328957600080fd5b50813567ffffffffffffffff8111156132a157600080fd5b602083019150836020828501011115612a2557600080fd5b6000806000604084860312156132ce57600080fd5b83359250602084013567ffffffffffffffff8111156132ec57600080fd5b6132f886828701613277565b9497909650939450505050565b60006020828403121561331757600080fd5b813561154a81613236565b60008060006060848603121561333757600080fd5b833561334281613236565b9250602084013561335281613236565b929592945050506040919091013590565b6000806040838503121561337657600080fd5b50508035926020909101359150565b6000806040838503121561339857600080fd5b82356133a381613236565b915060208301356133b381613236565b809150509250929050565b60008083601f8401126133d057600080fd5b50813567ffffffffffffffff8111156133e857600080fd5b6020830191508360208260051b8501011115612a2557600080fd5b60008060006040848603121561341857600080fd5b833561342381613236565b9250602084013567ffffffffffffffff81111561343f57600080fd5b6132f8868287016133be565b6020808252825182820181905260009190848201906040850190845b81811015613485578351151583529284019291840191600101613467565b50909695505050505050565b600080602083850312156134a457600080fd5b823567ffffffffffffffff8111156134bb57600080fd5b6134c785828601613277565b90969095509350505050565b801515811461138d57600080fd5b600080604083850312156134f457600080fd5b82356134ff81613236565b915060208301356133b3816134d3565b600080600080600080600060a0888a03121561352a57600080fd5b87359650602088013561353c81613236565b955060408801359450606088013567ffffffffffffffff8082111561356057600080fd5b61356c8b838c01613277565b909650945060808a013591508082111561358557600080fd5b506135928a828b01613277565b989b979a50959850939692959293505050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156135d157600080fd5b84356135dc81613236565b935060208501356135ec81613236565b925060408501359150606085013567ffffffffffffffff8082111561361057600080fd5b818701915087601f83011261362457600080fd5b813581811115613636576136366135a5565b604051601f8201601f19908116603f0116810190838211818310171561365e5761365e6135a5565b816040528281528a602084870101111561367757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080602083850312156136ae57600080fd5b823567ffffffffffffffff8111156136c557600080fd5b6134c7858286016133be565b600181811c908216806136e557607f821691505b6020821081141561370657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115613816576138166137ed565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008160001904831182151516156138d1576138d16137ed565b500290565b6000826138f357634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561390a57600080fd5b5051919050565b6000600019821415613925576139256137ed565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561395457600080fd5b815161154a81613236565b8183823760009101908152919050565b600082821015613981576139816137ed565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000602082840312156139ea57600080fd5b815161154a816134d3565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a3e908301846131de565b9695505050505050565b600060208284031215613a5a57600080fd5b815161154a8161317f565b60008251613a778184602087016131b2565b919091019291505056fea26469706673582212203b7f8a83fa9c4975151190b4d3ab02077a7e479714136d3f7afb02753b704fd364736f6c634300080800330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c8adfb4d437357d0a656d4e62fd9a6d22e401aa00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a7466417948513555547548746e646b6b624353515833356662715a70747554486f42717376487751416f750000000000000000000000
Deployed Bytecode
0x6080604052600436106102605760003560e01c80638b83209b11610144578063c87b56dd116100b6578063d79779b21161007a578063d79779b2146107c7578063e33b7de3146107fd578063e84a972814610812578063e985e9c514610832578063f17af48d1461087b578063f2fde38b1461089b57600080fd5b8063c87b56dd1461071b578063ce7c2ac21461073b578063d02f5d4514610771578063d1846ff814610791578063d6b6b00f146107a757600080fd5b80639852595c116101085780639852595c14610631578063a125c82414610667578063a197d16b14610687578063a22cb465146106bb578063accce9d6146106db578063b88d4fde146106fb57600080fd5b80638b83209b1461059c5780638da5cb5b146105bc5780639342013c146105da57806395d89b4114610607578063963bfe121461061c57600080fd5b8063348ae6f4116101dd57806348b75044116101a157806348b75044146104fd5780634f72f60d1461051d5780636352211e1461053257806370a0823114610552578063715018a614610572578063853828b61461058757600080fd5b8063348ae6f4146104425780633a98ef39146104625780633c67282714610477578063406072a91461049757806342842e0e146104dd57600080fd5b806318160ddd1161022457806318160ddd1461037f57806318e97fd1146103a357806319165587146103c357806323b872dd146103e35780632a55205a1461040357600080fd5b806301ffc9a7146102ae57806306fdde03146102e3578063081812fc14610305578063095ea7b31461033d5780631505ea951461035f57600080fd5b366102a9577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102ba57600080fd5b506102ce6102c9366004613195565b6108bb565b60405190151581526020015b60405180910390f35b3480156102ef57600080fd5b506102f86108cc565b6040516102da919061320a565b34801561031157600080fd5b5061032561032036600461321d565b61095e565b6040516001600160a01b0390911681526020016102da565b34801561034957600080fd5b5061035d61035836600461324b565b6109eb565b005b34801561036b57600080fd5b506102ce61037a36600461321d565b610b01565b34801561038b57600080fd5b5061039560105481565b6040519081526020016102da565b3480156103af57600080fd5b5061035d6103be3660046132b9565b610b31565b3480156103cf57600080fd5b5061035d6103de366004613305565b610c82565b3480156103ef57600080fd5b5061035d6103fe366004613322565b610db0565b34801561040f57600080fd5b5061042361041e366004613363565b610de1565b604080516001600160a01b0390931683526020830191909152016102da565b34801561044e57600080fd5b5061035d61045d366004613305565b610e36565b34801561046e57600080fd5b50600854610395565b34801561048357600080fd5b5061035d610492366004613305565b610ee3565b3480156104a357600080fd5b506103956104b2366004613385565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b3480156104e957600080fd5b5061035d6104f8366004613322565b610fe2565b34801561050957600080fd5b5061035d610518366004613385565b610ffd565b34801561052957600080fd5b50610395606381565b34801561053e57600080fd5b5061032561054d36600461321d565b6111e5565b34801561055e57600080fd5b5061039561056d366004613305565b61125c565b34801561057e57600080fd5b5061035d6112e3565b34801561059357600080fd5b5061035d611319565b3480156105a857600080fd5b506103256105b736600461321d565b611390565b3480156105c857600080fd5b506000546001600160a01b0316610325565b3480156105e657600080fd5b506105fa6105f5366004613403565b6113c0565b6040516102da919061344b565b34801561061357600080fd5b506102f8611551565b34801561062857600080fd5b506102f8611560565b34801561063d57600080fd5b5061039561064c366004613305565b6001600160a01b03166000908152600b602052604090205490565b34801561067357600080fd5b5061035d610682366004613491565b6115ee565b34801561069357600080fd5b506103257f000000000000000000000000c8adfb4d437357d0a656d4e62fd9a6d22e401aa081565b3480156106c757600080fd5b5061035d6106d63660046134e1565b61166c565b3480156106e757600080fd5b5061035d6106f636600461350f565b61167b565b34801561070757600080fd5b5061035d6107163660046135bb565b611d23565b34801561072757600080fd5b506102f861073636600461321d565b611d55565b34801561074757600080fd5b50610395610756366004613305565b6001600160a01b03166000908152600a602052604090205490565b34801561077d57600080fd5b5061035d61078c36600461321d565b611eb2565b34801561079d57600080fd5b506103956125c381565b3480156107b357600080fd5b506105fa6107c236600461369b565b611f8e565b3480156107d357600080fd5b506103956107e2366004613305565b6001600160a01b03166000908152600d602052604090205490565b34801561080957600080fd5b50600954610395565b34801561081e57600080fd5b5061035d61082d366004613305565b61210b565b34801561083e57600080fd5b506102ce61084d366004613385565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561088757600080fd5b50601854610325906001600160a01b031681565b3480156108a757600080fd5b5061035d6108b6366004613305565b612193565b60006108c68261222b565b92915050565b6060600180546108db906136d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610907906136d1565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b5050505050905090565b600061096982612250565b6109cf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109f6826111e5565b9050806001600160a01b0316836001600160a01b03161415610a645760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109c6565b336001600160a01b0382161480610a805750610a80813361084d565b610af25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109c6565b610afc838361226d565b505050565b6000610b0c82612250565b610b285760405162461bcd60e51b81526004016109c69061370c565b50601654101590565b6000546001600160a01b03163314610b5b5760405162461bcd60e51b81526004016109c690613743565b610b6483612250565b610b805760405162461bcd60e51b81526004016109c69061370c565b610b8983610b01565b15610be15760405162461bcd60e51b815260206004820152602260248201527f546f6b656e206d657461646174612055524920686173206265656e206c6f636b604482015261195960f21b60648201526084016109c6565b80610c295760405162461bcd60e51b8152602060048201526018602482015277546f6b656e5552492063616e6e6f7420626520656d70747960401b60448201526064016109c6565b827f652c9498726ae446882619d79306dfe2594d5d5a008eaad0a720ee55ebf8e8b88383604051610c5b929190613778565b60405180910390a26000838152601560205260409020610c7c9083836130e6565b50505050565b6001600160a01b0381166000908152600a6020526040902054610cb75760405162461bcd60e51b81526004016109c6906137a7565b6000610cc260095490565b610ccc9047613803565b90506000610cf98383610cf4866001600160a01b03166000908152600b602052604090205490565b6122db565b905080610d185760405162461bcd60e51b81526004016109c69061381b565b6001600160a01b0383166000908152600b602052604081208054839290610d40908490613803565b925050819055508060096000828254610d599190613803565b90915550610d6990508382612321565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610dba338261243a565b610dd65760405162461bcd60e51b81526004016109c690613866565b610afc838383612520565b604080518082019091526007546001600160a01b038116808352600160a01b90910462ffffff1660208301819052909160009161271090610e2290866138b7565b610e2c91906138d6565b9150509250929050565b6000546001600160a01b03163314610e605760405162461bcd60e51b81526004016109c690613743565b6001600160a01b03811660009081526011602052604090205460ff161515600114610ec25760405162461bcd60e51b8152602060048201526012602482015271159a58dd1a5b481b9bdd08195b98589b195960721b60448201526064016109c6565b6001600160a01b03166000908152601160205260409020805460ff19169055565b6000546001600160a01b03163314610f0d5760405162461bcd60e51b81526004016109c690613743565b6001600160a01b038116610f5c5760405162461bcd60e51b81526020600482015260166024820152750c081859191c995cdcc81b9bdd081858d8d95c1d195960521b60448201526064016109c6565b6001600160a01b03811660009081526011602052604090205460ff1615610fbe5760405162461bcd60e51b8152602060048201526016602482015275159a58dd1a5b48185b1c9958591e48195b98589b195960521b60448201526064016109c6565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b610afc83838360405180602001604052806000815250611d23565b6001600160a01b0381166000908152600a60205260409020546110325760405162461bcd60e51b81526004016109c6906137a7565b6001600160a01b0382166000908152600d60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561108a57600080fd5b505afa15801561109e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c291906138f8565b6110cc9190613803565b905060006111058383610cf487876001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b9050806111245760405162461bcd60e51b81526004016109c69061381b565b6001600160a01b038085166000908152600e602090815260408083209387168352929052908120805483929061115b908490613803565b90915550506001600160a01b0384166000908152600d602052604081208054839290611188908490613803565b9091555061119990508484836126c0565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000818152600360205260408120546001600160a01b0316806108c65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109c6565b60006001600160a01b0382166112c75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109c6565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461130d5760405162461bcd60e51b81526004016109c690613743565b6113176000612712565b565b600047116113625760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b60448201526064016109c6565b60005b600f5481101561138d5761137b6103de82611390565b8061138581613911565b915050611365565b50565b6000600c82815481106113a5576113a561392c565b6000918252602090912001546001600160a01b031692915050565b6060816113fd5760405162461bcd60e51b815260206004820152600b60248201526a456d70747920617272617960a81b60448201526064016109c6565b6001600160a01b03841660009081526011602052604090205460ff166114715760405162461bcd60e51b8152602060048201526024808201527f54686973204e465420636f6c6c656374696f6e2063616e6e6f742062652062696044820152633a3a32b760e11b60648201526084016109c6565b60008267ffffffffffffffff81111561148c5761148c6135a5565b6040519080825280602002602001820160405280156114b5578160200160208202803683370190505b50905060005b83811015611546576001600160a01b0386166000908152601260205260408120908686848181106114ee576114ee61392c565b90506020020135815260200190815260200160002060009054906101000a900460ff16158282815181106115245761152461392c565b911515602092830291909101909101528061153e81613911565b9150506114bb565b5090505b9392505050565b6060600280546108db906136d1565b6017805461156d906136d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611599906136d1565b80156115e65780601f106115bb576101008083540402835291602001916115e6565b820191906000526020600020905b8154815290600101906020018083116115c957829003601f168201915b505050505081565b6000546001600160a01b031633146116185760405162461bcd60e51b81526004016109c690613743565b806116605760405162461bcd60e51b8152602060048201526018602482015277546f6b656e5552492063616e6e6f7420626520656d70747960401b60448201526064016109c6565b610afc601783836130e6565b611677338383612762565b5050565b6040516331a9108f60e11b81526004810188905233906001600160a01b037f000000000000000000000000c8adfb4d437357d0a656d4e62fd9a6d22e401aa01690636352211e9060240160206040518083038186803b1580156116dd57600080fd5b505afa1580156116f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117159190613942565b6001600160a01b03161461176b5760405162461bcd60e51b815260206004820181905260248201527f596f75277265206e6f7420746865206f776e6572206f6620746869732062617460448201526064016109c6565b6125c38710611800576000878152601460205260409020546063116117dc5760405162461bcd60e51b815260206004820152602160248201527f416e6369656e7442617420686173206e6f206d6f7265206269746573206c65666044820152601d60fa1b60648201526084016109c6565b60008781526014602052604081208054916117f683613911565b9190505550611879565b60008781526013602052604090205460ff161561185f5760405162461bcd60e51b815260206004820152601c60248201527f43727970746f4261742068617320616c72656164792062697474656e0000000060448201526064016109c6565b6000878152601360205260409020805460ff191660011790555b6001600160a01b03861660009081526011602052604090205460ff166118e15760405162461bcd60e51b815260206004820152601960248201527f54686973204e46542063616e6e6f742062652062697474656e0000000000000060448201526064016109c6565b6040516331a9108f60e11b81526004810186905233906001600160a01b03881690636352211e9060240160206040518083038186803b15801561192357600080fd5b505afa158015611937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195b9190613942565b6001600160a01b0316146119bd5760405162461bcd60e51b815260206004820152602360248201527f596f75277265206e6f7420746865206f776e6572206f6620746869732076696360448201526274696d60e81b60648201526084016109c6565b6001600160a01b038616600090815260126020908152604080832088845290915290205460ff1615611a3d5760405162461bcd60e51b815260206004820152602360248201527f546869732076696374696d2068617320616c7265616479206265656e206269746044820152623a32b760e91b60648201526084016109c6565b6001600160a01b0380871660009081526012602090815260408083208984529091529020805460ff1916600117905560185416611abc5760405162461bcd60e51b815260206004820152601c60248201527f4d696e74207369676e657220686173206e6f74206265656e207365740000000060448201526064016109c6565b60006019547f46eece1f0527b0620ee30fe92e87c4baa922f66983960ee9ab48f633a6271f0e338a8a8a8a8a604051611af692919061395f565b6040805191829003822060208301979097526001600160a01b039586169082015260608101939093529216608082015260a081019190915260c081019190915260e00160405160208183030381529060405280519060200120604051602001611b7692919061190160f01b81526002810192909252602282015260420190565b6040516020818303038152906040528051906020012090506000611bd284848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525086939250506128319050565b90506001600160a01b03811615801590611bf957506018546001600160a01b038281169116145b611c395760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b60448201526064016109c6565b6000601060008154611c4a90613911565b918290555090508515611cc1576000818152601560205260409020611c709088886130e6565b50604080518b81526001600160a01b038b16602082015290810189905281907f45e49d3012a43b47a1d62c14acdd5afaee070a1baf158d5c58d6aeae5168ba619060600160405180910390a2611d0d565b604080518b81526001600160a01b038b16602082015290810189905281907f6059c71249d339dab187476588df6d3f72505c89d1035f7b038eeb18a0fe82ca9060600160405180910390a25b611d17338261284d565b50505050505050505050565b611d2d338361243a565b611d495760405162461bcd60e51b81526004016109c690613866565b610c7c84848484612867565b6060611d6082612250565b611d7c5760405162461bcd60e51b81526004016109c69061370c565b60008281526015602052604081208054611d95906136d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc1906136d1565b8015611e0e5780601f10611de357610100808354040283529160200191611e0e565b820191906000526020600020905b815481529060010190602001808311611df157829003601f168201915b505050505090508051600014156108c65760178054611e2c906136d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611e58906136d1565b8015611ea55780601f10611e7a57610100808354040283529160200191611ea5565b820191906000526020600020905b815481529060010190602001808311611e8857829003601f168201915b5050505050915050919050565b6000546001600160a01b03163314611edc5760405162461bcd60e51b81526004016109c690613743565b601054811115611f2e5760405162461bcd60e51b815260206004820152601d60248201527f4c6f636b696e67206265796f6e642063757272656e7420737570706c7900000060448201526064016109c6565b6016548111611f895760405162461bcd60e51b815260206004820152602160248201527f4d75737420696e637265617365206265796f6e642063757272656e74206c6f636044820152606b60f81b60648201526084016109c6565b601655565b606081611fcb5760405162461bcd60e51b815260206004820152600b60248201526a456d70747920617272617960a81b60448201526064016109c6565b60008267ffffffffffffffff811115611fe657611fe66135a5565b60405190808252806020026020018201604052801561200f578160200160208202803683370190505b50905060005b83811015612103576125c38585838181106120325761203261392c565b9050602002013510612094576063601460008787858181106120565761205661392c565b905060200201358152602001908152602001600020541082828151811061207f5761207f61392c565b911515602092830291909101909101526120f1565b601360008686848181106120aa576120aa61392c565b90506020020135815260200190815260200160002060009054906101000a900460ff16158282815181106120e0576120e061392c565b911515602092830291909101909101525b806120fb81613911565b915050612015565b509392505050565b6000546001600160a01b031633146121355760405162461bcd60e51b81526004016109c690613743565b6040516001600160a01b03821681527f81c142d9a4b33dfaba82444370b6b077fc2cb507c30c41a7c967f695ed72651f9060200160405180910390a1601880546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146121bd5760405162461bcd60e51b81526004016109c690613743565b6001600160a01b0381166122225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c6565b61138d81612712565b60006001600160e01b0319821663152a902d60e11b14806108c657506108c68261289a565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122a2826111e5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6008546001600160a01b0384166000908152600a60205260408120549091839161230590866138b7565b61230f91906138d6565b612319919061396f565b949350505050565b804710156123715760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109c6565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146123be576040519150601f19603f3d011682016040523d82523d6000602084013e6123c3565b606091505b5050905080610afc5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109c6565b600061244582612250565b6124a65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109c6565b60006124b1836111e5565b9050806001600160a01b0316846001600160a01b031614806124ec5750836001600160a01b03166124e18461095e565b6001600160a01b0316145b8061231957506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16612319565b826001600160a01b0316612533826111e5565b6001600160a01b03161461259b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109c6565b6001600160a01b0382166125fd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109c6565b61260860008261226d565b6001600160a01b038316600090815260046020526040812080546001929061263190849061396f565b90915550506001600160a01b038216600090815260046020526040812080546001929061265f908490613803565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610afc9084906128ea565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156127c45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109c6565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600080600061284085856129bc565b9150915061210381612a2c565b611677828260405180602001604052806000815250612be7565b612872848484612520565b61287e84848484612c1a565b610c7c5760405162461bcd60e51b81526004016109c690613986565b60006001600160e01b031982166380ac58cd60e01b14806128cb57506001600160e01b03198216635b5e139f60e01b145b806108c657506301ffc9a760e01b6001600160e01b03198316146108c6565b600061293f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d279092919063ffffffff16565b805190915015610afc578080602001905181019061295d91906139d8565b610afc5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016109c6565b6000808251604114156129f35760208301516040840151606085015160001a6129e787828585612d36565b94509450505050612a25565b825160401415612a1d5760208301516040840151612a12868383612e23565b935093505050612a25565b506000905060025b9250929050565b6000816004811115612a4057612a406139f5565b1415612a495750565b6001816004811115612a5d57612a5d6139f5565b1415612aab5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109c6565b6002816004811115612abf57612abf6139f5565b1415612b0d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109c6565b6003816004811115612b2157612b216139f5565b1415612b7a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109c6565b6004816004811115612b8e57612b8e6139f5565b141561138d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109c6565b612bf18383612e52565b612bfe6000848484612c1a565b610afc5760405162461bcd60e51b81526004016109c690613986565b60006001600160a01b0384163b15612d1c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612c5e903390899088908890600401613a0b565b602060405180830381600087803b158015612c7857600080fd5b505af1925050508015612ca8575060408051601f3d908101601f19168201909252612ca591810190613a48565b60015b612d02573d808015612cd6576040519150601f19603f3d011682016040523d82523d6000602084013e612cdb565b606091505b508051612cfa5760405162461bcd60e51b81526004016109c690613986565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612319565b506001949350505050565b60606123198484600085612f85565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612d6d5750600090506003612e1a565b8460ff16601b14158015612d8557508460ff16601c14155b15612d965750600090506004612e1a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612dea573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612e1357600060019250925050612e1a565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01612e4487828885612d36565b935093505050935093915050565b6001600160a01b038216612ea85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109c6565b612eb181612250565b15612efe5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109c6565b6001600160a01b0382166000908152600460205260408120805460019290612f27908490613803565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606082471015612fe65760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016109c6565b843b6130345760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016109c6565b600080866001600160a01b031685876040516130509190613a65565b60006040518083038185875af1925050503d806000811461308d576040519150601f19603f3d011682016040523d82523d6000602084013e613092565b606091505b50915091506130a28282866130ad565b979650505050505050565b606083156130bc57508161154a565b8251156130cc5782518084602001fd5b8160405162461bcd60e51b81526004016109c6919061320a565b8280546130f2906136d1565b90600052602060002090601f016020900481019282613114576000855561315a565b82601f1061312d5782800160ff1982351617855561315a565b8280016001018555821561315a579182015b8281111561315a57823582559160200191906001019061313f565b5061316692915061316a565b5090565b5b80821115613166576000815560010161316b565b6001600160e01b03198116811461138d57600080fd5b6000602082840312156131a757600080fd5b813561154a8161317f565b60005b838110156131cd5781810151838201526020016131b5565b83811115610c7c5750506000910152565b600081518084526131f68160208601602086016131b2565b601f01601f19169290920160200192915050565b60208152600061154a60208301846131de565b60006020828403121561322f57600080fd5b5035919050565b6001600160a01b038116811461138d57600080fd5b6000806040838503121561325e57600080fd5b823561326981613236565b946020939093013593505050565b60008083601f84011261328957600080fd5b50813567ffffffffffffffff8111156132a157600080fd5b602083019150836020828501011115612a2557600080fd5b6000806000604084860312156132ce57600080fd5b83359250602084013567ffffffffffffffff8111156132ec57600080fd5b6132f886828701613277565b9497909650939450505050565b60006020828403121561331757600080fd5b813561154a81613236565b60008060006060848603121561333757600080fd5b833561334281613236565b9250602084013561335281613236565b929592945050506040919091013590565b6000806040838503121561337657600080fd5b50508035926020909101359150565b6000806040838503121561339857600080fd5b82356133a381613236565b915060208301356133b381613236565b809150509250929050565b60008083601f8401126133d057600080fd5b50813567ffffffffffffffff8111156133e857600080fd5b6020830191508360208260051b8501011115612a2557600080fd5b60008060006040848603121561341857600080fd5b833561342381613236565b9250602084013567ffffffffffffffff81111561343f57600080fd5b6132f8868287016133be565b6020808252825182820181905260009190848201906040850190845b81811015613485578351151583529284019291840191600101613467565b50909695505050505050565b600080602083850312156134a457600080fd5b823567ffffffffffffffff8111156134bb57600080fd5b6134c785828601613277565b90969095509350505050565b801515811461138d57600080fd5b600080604083850312156134f457600080fd5b82356134ff81613236565b915060208301356133b3816134d3565b600080600080600080600060a0888a03121561352a57600080fd5b87359650602088013561353c81613236565b955060408801359450606088013567ffffffffffffffff8082111561356057600080fd5b61356c8b838c01613277565b909650945060808a013591508082111561358557600080fd5b506135928a828b01613277565b989b979a50959850939692959293505050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156135d157600080fd5b84356135dc81613236565b935060208501356135ec81613236565b925060408501359150606085013567ffffffffffffffff8082111561361057600080fd5b818701915087601f83011261362457600080fd5b813581811115613636576136366135a5565b604051601f8201601f19908116603f0116810190838211818310171561365e5761365e6135a5565b816040528281528a602084870101111561367757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080602083850312156136ae57600080fd5b823567ffffffffffffffff8111156136c557600080fd5b6134c7858286016133be565b600181811c908216806136e557607f821691505b6020821081141561370657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115613816576138166137ed565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008160001904831182151516156138d1576138d16137ed565b500290565b6000826138f357634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561390a57600080fd5b5051919050565b6000600019821415613925576139256137ed565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561395457600080fd5b815161154a81613236565b8183823760009101908152919050565b600082821015613981576139816137ed565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000602082840312156139ea57600080fd5b815161154a816134d3565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a3e908301846131de565b9695505050505050565b600060208284031215613a5a57600080fd5b815161154a8161317f565b60008251613a778184602087016131b2565b919091019291505056fea26469706673582212203b7f8a83fa9c4975151190b4d3ab02077a7e479714136d3f7afb02753b704fd364736f6c63430008080033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c8adfb4d437357d0a656d4e62fd9a6d22e401aa00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a7466417948513555547548746e646b6b624353515833356662715a70747554486f42717376487751416f750000000000000000000000
-----Decoded View---------------
Arg [0] : defaultTokenUri_ (string): ipfs://QmZtfAyHQ5UTuHtndkkbCSQX35fbqZptuTHoBqsvHwQAou
Arg [1] : cryptoBatzAddress (address): 0xc8adFb4D437357D0A656D4e62fd9a6D22e401aa0
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000c8adfb4d437357d0a656d4e62fd9a6d22e401aa0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d5a7466417948513555547548746e646b6b624353515833
Arg [4] : 356662715a70747554486f42717376487751416f750000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.