Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 457 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 24190357 | 29 days ago | IN | 0 ETH | 0.00000238 | ||||
| Set Approval For... | 24033927 | 50 days ago | IN | 0 ETH | 0.00000251 | ||||
| Set Approval For... | 23890167 | 71 days ago | IN | 0 ETH | 0.00000258 | ||||
| Transfer From | 23097316 | 182 days ago | IN | 0 ETH | 0.00024347 | ||||
| Mint | 22741977 | 231 days ago | IN | 0 ETH | 0.00015312 | ||||
| Set Approval For... | 21839608 | 357 days ago | IN | 0 ETH | 0.00008537 | ||||
| Mint | 21435053 | 414 days ago | IN | 0 ETH | 0.0009009 | ||||
| Mint | 21201411 | 447 days ago | IN | 0 ETH | 0.00134662 | ||||
| Mint | 21129786 | 457 days ago | IN | 0 ETH | 0.00124967 | ||||
| Safe Transfer Fr... | 21124113 | 457 days ago | IN | 0 ETH | 0.00049101 | ||||
| Mint | 21079176 | 464 days ago | IN | 0 ETH | 0.00283874 | ||||
| Safe Transfer Fr... | 20631219 | 526 days ago | IN | 0 ETH | 0.00011504 | ||||
| Transfer From | 20516650 | 542 days ago | IN | 0 ETH | 0.00008487 | ||||
| Transfer From | 20516634 | 542 days ago | IN | 0 ETH | 0.0001559 | ||||
| Mint | 20342139 | 566 days ago | IN | 0 ETH | 0.00068477 | ||||
| Safe Transfer Fr... | 20239821 | 581 days ago | IN | 0 ETH | 0.00032649 | ||||
| Mint | 19728131 | 652 days ago | IN | 0 ETH | 0.00083989 | ||||
| Safe Transfer Fr... | 19517723 | 682 days ago | IN | 0 ETH | 0.00134691 | ||||
| Mint | 19499941 | 684 days ago | IN | 0 ETH | 0.00141335 | ||||
| Mint | 19483579 | 687 days ago | IN | 0 ETH | 0.00276433 | ||||
| Mint | 18590609 | 812 days ago | IN | 0 ETH | 0.00177359 | ||||
| Mint | 17815468 | 920 days ago | IN | 0 ETH | 0.00350863 | ||||
| Transfer From | 17714674 | 934 days ago | IN | 0 ETH | 0.00220065 | ||||
| Safe Transfer Fr... | 17597913 | 951 days ago | IN | 0 ETH | 0.00116948 | ||||
| Mint | 17487830 | 966 days ago | IN | 0 ETH | 0.0020495 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AlicjaKwadeKoenigDNA
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';
contract AlicjaKwadeKoenigDNA is ERC721A, Ownable {
uint256 private immutable collectionSize;
/**
* @dev the optimal number for balancing mint to transfer is 8
* https://github.com/chiru-labs/ERC721A/issues/145
*/
uint256 private immutable maxBatchSize;
string private baseURIextended;
address payable private immutable royaltyReceiver;
uint256 private immutable royaltyBPS;
constructor(
string memory contractName,
string memory tokenSymbol,
uint256 maxBatchSize_,
uint256 collectionSize_,
string memory baseURI_,
address payable royaltyReceiver_,
uint256 royaltyBPS_
) ERC721A(contractName, tokenSymbol) {
require(
collectionSize_ > 0,
"ERC721A: collection must have a nonzero supply"
);
require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
require(maxBatchSize_ < collectionSize_, "ERC721A: max batch size must be lower than collection size");
require(royaltyBPS_ >= 0, "ERC721A: Royalties cannot be lower than 0");
baseURIextended = baseURI_;
maxBatchSize = maxBatchSize_;
collectionSize = collectionSize_;
royaltyReceiver = royaltyReceiver_;
royaltyBPS = royaltyBPS_;
}
function _startTokenId() internal pure override returns (uint256) {
return 1;
}
function mint(uint256 quantity, address buyer) external onlyOwner {
require(
totalSupply() + quantity <= collectionSize,
"Mint quantity exceeds collection size"
);
require(
quantity <= maxBatchSize,
"Mint quantity exceeds max batch size"
);
_safeMint(buyer, quantity);
}
function burn(uint256 tokenId) external {
_burn(tokenId, true);
}
function _baseURI() internal view override returns (string memory) {
return baseURIextended;
}
// ROYALTIES
/**
* @dev Rarible: RoyaltiesV1
*
* bytes4(keccak256('getFeeRecipients(uint256)')) == 0xb9c4d9fb
* bytes4(keccak256('getFeeBps(uint256)')) == 0x0ebd4c7f
*
* => 0xb9c4d9fb ^ 0x0ebd4c7f = 0xb7799584
*/
bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584;
/**
* @dev Foundation
*
* bytes4(keccak256('getFees(uint256)')) == 0xd5a06d4c
*
* => 0xd5a06d4c = 0xd5a06d4c
*/
bytes4 private constant _INTERFACE_ID_ROYALTIES_FOUNDATION = 0xd5a06d4c;
/**
* @dev EIP-2981
*
* bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
*
* => 0x2a55205a = 0x2a55205a
*/
bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a;
/**
* @dev 3rd party Marketplace Royalty Support
*/
/**
* @dev IFoundation
*/
function getFees(uint256 tokenId)
external
view
virtual
returns (address payable[] memory, uint256[] memory)
{
require(_exists(tokenId), "Nonexistent token");
address payable[] memory receivers = new address payable[](1);
uint256[] memory bps = new uint256[](1);
receivers[0] = _getReceiver();
bps[0] = _getBps();
return (receivers, bps);
}
/**
* @dev IRaribleV1
*/
function getFeeRecipients(uint256 tokenId)
external
view
virtual
returns (address payable[] memory)
{
require(_exists(tokenId), "Nonexistent token");
address payable[] memory receivers = new address payable[](1);
receivers[0] = _getReceiver();
return receivers;
}
function getFeeBps(uint256 tokenId)
external
view
virtual
returns (uint256[] memory)
{
require(_exists(tokenId), "Nonexistent token");
uint256[] memory bps = new uint256[](1);
bps[0] = _getBps();
return bps;
}
/**
* @dev EIP-2981
* Returns primary receiver i.e. receivers[0]
*/
function royaltyInfo(uint256 tokenId, uint256 value)
external
view
virtual
returns (address, uint256)
{
require(_exists(tokenId), "Nonexistent token");
return _getRoyaltyInfo(value);
}
function _getRoyaltyInfo(uint256 value)
internal
view
returns (address receiver, uint256 amount)
{
address _receiver = _getReceiver();
uint256 _bps = _getBps();
return (_receiver, (_bps * value) / 10000);
}
function _getBps() internal view returns (uint256) {
return royaltyBPS;
}
function _getReceiver()
internal
view
returns (address payable)
{
return royaltyReceiver;
}
function supportsInterface(bytes4 interfaceId)
public
view
override(ERC721A)
returns (bool)
{
return
super.supportsInterface(interfaceId) ||
_supportsRoyaltyInterfaces(interfaceId);
}
function _supportsRoyaltyInterfaces(bytes4 interfaceId)
public
pure
returns (bool)
{
return
interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE ||
interfaceId == _INTERFACE_ID_ROYALTIES_FOUNDATION ||
interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981;
}
}// SPDX-License-Identifier: MIT
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
*
* Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
*
* Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Compiler will pack this into a single 256bit word.
struct TokenOwnership {
// The address of the owner.
address addr;
// Keeps track of the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
}
// Compiler will pack this into a single 256bit word.
struct AddressData {
// Realistically, 2**64-1 is more than enough.
uint64 balance;
// Keeps track of mint count with minimal overhead for tokenomics.
uint64 numberMinted;
// Keeps track of burn count with minimal overhead for tokenomics.
uint64 numberBurned;
// For miscellaneous variable(s) pertaining to the address
// (e.g. number of whitelist mint slots used).
// If there are multiple variables, please pack them into a uint64.
uint64 aux;
}
// The tokenId of the next token to be minted.
uint256 internal _currentIndex;
// The number of tokens burned.
uint256 internal _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) internal _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// 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;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
/**
* To change the starting tokenId, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
*/
function totalSupply() public view returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than _currentIndex - _startTokenId() times
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
// Counter underflow is impossible as _currentIndex does not decrement,
// and it is initialized to _startTokenId()
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @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 override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return uint256(_addressData[owner].balance);
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberMinted);
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberBurned);
}
/**
* Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return _addressData[owner].aux;
}
/**
* Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal {
_addressData[owner].aux = aux;
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr && curr < _currentIndex) {
TokenOwnership memory ownership = _ownerships[curr];
if (!ownership.burned) {
if (ownership.addr != address(0)) {
return ownership;
}
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
while (true) {
curr--;
ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return _ownershipOf(tokenId).addr;
}
/**
* @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) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
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 override {
address owner = ERC721A.ownerOf(tokenId);
if (to == owner) revert ApprovalToCurrentOwner();
if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
if (operator == _msgSender()) revert ApproveToCaller();
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_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 {
_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 {
_transfer(from, to, tokenId);
if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @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`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return _startTokenId() <= tokenId && tokenId < _currentIndex &&
!_ownerships[tokenId].burned;
}
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, '');
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
_mint(to, quantity, _data, true);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(
address to,
uint256 quantity,
bytes memory _data,
bool safe
) internal {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint64(quantity);
_addressData[to].numberMinted += uint64(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
if (safe && to.isContract()) {
do {
emit Transfer(address(0), to, updatedIndex);
if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (updatedIndex != end);
// Reentrancy protection
if (_currentIndex != startTokenId) revert();
} else {
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex != end);
}
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* 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
) private {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = to;
currSlot.startTimestamp = uint64(block.timestamp);
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev This is equivalent to _burn(tokenId, false)
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
address from = prevOwnership.addr;
if (approvalCheck) {
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
AddressData storage addressData = _addressData[from];
addressData.balance -= 1;
addressData.numberBurned += 1;
// Keep track of who burned the token, and the timestamp of burning.
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = from;
currSlot.startTimestamp = uint64(block.timestamp);
currSlot.burned = true;
// If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
* And also called before burning one token.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* 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, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
* And also called after one token has been burned.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_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 {
_setOwner(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");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @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
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
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
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
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
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
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;
}
}{
"metadata": {
"useLiteralContent": true
},
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"contractName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address payable","name":"royaltyReceiver_","type":"address"},{"internalType":"uint256","name":"royaltyBPS_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"_supportsRoyaltyInterfaces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","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":"tokenId","type":"uint256"}],"name":"burn","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFees","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"quantity","type":"uint256"},{"internalType":"address","name":"buyer","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"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":[],"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"}]Contract Creation Code
6101006040523480156200001257600080fd5b506040516200217f3803806200217f83398101604081905262000035916200039b565b8651879087906200004e90600290602085019062000228565b5080516200006490600390602084019062000228565b50506001600055506200007733620001d6565b60008411620000e45760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008511620001355760405162461bcd60e51b815260206004820152602760248201526000805160206200215f8339815191526044820152666e6f6e7a65726f60c81b6064820152608401620000db565b8385106200019b5760405162461bcd60e51b815260206004820152603a60248201526000805160206200215f83398151915260448201527f6c6f776572207468616e20636f6c6c656374696f6e2073697a650000000000006064820152608401620000db565b8251620001b090600990602086019062000228565b5060a094909452608092909252506001600160a01b031660c05260e05250620004aa9050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000236906200046d565b90600052602060002090601f0160209004810192826200025a5760008555620002a5565b82601f106200027557805160ff1916838001178555620002a5565b82800160010185558215620002a5579182015b82811115620002a557825182559160200191906001019062000288565b50620002b3929150620002b7565b5090565b5b80821115620002b35760008155600101620002b8565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002f657600080fd5b81516001600160401b0380821115620003135762000313620002ce565b604051601f8301601f19908116603f011681019082821181831017156200033e576200033e620002ce565b816040528381526020925086838588010111156200035b57600080fd5b600091505b838210156200037f578582018301518183018401529082019062000360565b83821115620003915760008385830101525b9695505050505050565b600080600080600080600060e0888a031215620003b757600080fd5b87516001600160401b0380821115620003cf57600080fd5b620003dd8b838c01620002e4565b985060208a0151915080821115620003f457600080fd5b620004028b838c01620002e4565b975060408a0151965060608a0151955060808a01519150808211156200042757600080fd5b50620004368a828b01620002e4565b60a08a015190945090506001600160a01b03811681146200045657600080fd5b8092505060c0880151905092959891949750929550565b600181811c908216806200048257607f821691505b60208210811415620004a457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051611c5f620005006000396000818161058d01528181610b420152610f0a0152600081816109b201528181610af60152610ee9015260006107e90152600061075a0152611c5f6000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde146102ff578063b9c4d9fb14610312578063c87b56dd14610332578063d5a06d4c14610345578063e985e9c514610366578063f2fde38b146103a257600080fd5b806370a08231146102a5578063715018a6146102b85780638da5cb5b146102c057806394bf804d146102d157806395d89b41146102e4578063a22cb465146102ec57600080fd5b806318160ddd1161011557806318160ddd1461020d57806323b872dd146102275780632a55205a1461023a57806342842e0e1461026c57806342966c681461027f5780636352211e1461029257600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c55780630ebd4c7f146101da578063152fcb2e146101fa575b600080fd5b61017061016b366004611666565b6103b5565b60405190151581526020015b60405180910390f35b61018d6103d5565b60405161017c91906116db565b6101ad6101a83660046116ee565b610467565b6040516001600160a01b03909116815260200161017c565b6101d86101d3366004611723565b6104ab565b005b6101ed6101e83660046116ee565b610539565b60405161017c9190611788565b610170610208366004611666565b6105d0565b60015460005403600019015b60405190815260200161017c565b6101d861023536600461179b565b610621565b61024d6102483660046117d7565b61062c565b604080516001600160a01b03909316835260208301919091520161017c565b6101d861027a36600461179b565b610668565b6101d861028d3660046116ee565b610683565b6101ad6102a03660046116ee565b610691565b6102196102b33660046117f9565b6106a3565b6101d86106f2565b6008546001600160a01b03166101ad565b6101d86102df366004611814565b610728565b61018d610871565b6101d86102fa366004611840565b610880565b6101d861030d366004611892565b610916565b6103256103203660046116ee565b610967565b60405161017c91906119a7565b61018d6103403660046116ee565b610a02565b6103586103533660046116ee565b610a87565b60405161017c9291906119ba565b6101706103743660046119e8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101d86103b03660046117f9565b610b89565b60006103c082610c21565b806103cf57506103cf826105d0565b92915050565b6060600280546103e490611a12565b80601f016020809104026020016040519081016040528092919081815260200182805461041090611a12565b801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b5050505050905090565b600061047282610c71565b61048f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104b682610691565b9050806001600160a01b0316836001600160a01b031614156104eb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061050b57506105098133610374565b155b15610529576040516367d9dca160e11b815260040160405180910390fd5b610534838383610caa565b505050565b606061054482610c71565b6105695760405162461bcd60e51b815260040161056090611a4d565b60405180910390fd5b604080516001808252818301909252600091602080830190803683370190505090507f0000000000000000000000000000000000000000000000000000000000000000816000815181106105bf576105bf611a78565b602090810291909101015292915050565b60006001600160e01b03198216632dde656160e21b148061060157506001600160e01b031982166335681b5360e21b145b806103cf57506001600160e01b0319821663152a902d60e11b1492915050565b610534838383610d06565b60008061063884610c71565b6106545760405162461bcd60e51b815260040161056090611a4d565b61065d83610ee4565b915091509250929050565b61053483838360405180602001604052806000815250610916565b61068e816001610f4c565b50565b600061069c82611101565b5192915050565b60006001600160a01b0382166106cc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461071c5760405162461bcd60e51b815260040161056090611a8e565b610726600061122a565b565b6008546001600160a01b031633146107525760405162461bcd60e51b815260040161056090611a8e565b6001546000547f0000000000000000000000000000000000000000000000000000000000000000918491036000190161078b9190611ad9565b11156107e75760405162461bcd60e51b815260206004820152602560248201527f4d696e74207175616e74697479206578636565647320636f6c6c656374696f6e6044820152642073697a6560d81b6064820152608401610560565b7f00000000000000000000000000000000000000000000000000000000000000008211156108635760405162461bcd60e51b8152602060048201526024808201527f4d696e74207175616e746974792065786365656473206d61782062617463682060448201526373697a6560e01b6064820152608401610560565b61086d818361127c565b5050565b6060600380546103e490611a12565b6001600160a01b0382163314156108aa5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610921848484610d06565b6001600160a01b0383163b15158015610943575061094184848484611296565b155b15610961576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061097282610c71565b61098e5760405162461bcd60e51b815260040161056090611a4d565b604080516001808252818301909252600091602080830190803683370190505090507f0000000000000000000000000000000000000000000000000000000000000000816000815181106109e4576109e4611a78565b6001600160a01b039092166020928302919091019091015292915050565b6060610a0d82610c71565b610a2a57604051630a14c4b560e41b815260040160405180910390fd5b6000610a3461138e565b9050805160001415610a555760405180602001604052806000815250610a80565b80610a5f8461139d565b604051602001610a70929190611af1565b6040516020818303038152906040525b9392505050565b606080610a9383610c71565b610aaf5760405162461bcd60e51b815260040161056090611a4d565b6040805160018082528183019092526000916020808301908036833750506040805160018082528183019092529293506000929150602080830190803683370190505090507f000000000000000000000000000000000000000000000000000000000000000082600081518110610b2857610b28611a78565b6001600160a01b03909216602092830291909101909101527f000000000000000000000000000000000000000000000000000000000000000081600081518110610b7457610b74611a78565b60209081029190910101529094909350915050565b6008546001600160a01b03163314610bb35760405162461bcd60e51b815260040161056090611a8e565b6001600160a01b038116610c185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610560565b61068e8161122a565b60006001600160e01b031982166380ac58cd60e01b1480610c5257506001600160e01b03198216635b5e139f60e01b145b806103cf57506301ffc9a760e01b6001600160e01b03198316146103cf565b600081600111158015610c85575060005482105b80156103cf575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d1182611101565b9050836001600160a01b031681600001516001600160a01b031614610d485760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610d665750610d668533610374565b80610d81575033610d7684610467565b6001600160a01b0316145b905080610da157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610dc857604051633a954ecd60e21b815260040160405180910390fd5b610dd460008487610caa565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610eaa576000548214610eaa578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020611c0a83398151915260405160405180910390a45b5050505050565b6000807f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000081612710610f378784611b20565b610f419190611b55565b935093505050915091565b6000610f5783611101565b80519091508215610fbd576000336001600160a01b0383161480610f805750610f808233610374565b80610f9b575033610f9086610467565b6001600160a01b0316145b905080610fbb57604051632ce44b5f60e11b815260040160405180910390fd5b505b610fc960008583610caa565b6001600160a01b0380821660008181526005602090815260408083208054600160801b60001967ffffffffffffffff80841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166110c95760005482146110c9578054602087015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020611c0a833981519152908390a4505060018054810190555050565b60408051606081018252600080825260208201819052918101919091528180600111158015611131575060005481105b1561121157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061120f5780516001600160a01b0316156111a5579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561120a579392505050565b6111a5565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61086d82826040518060200160405280600081525061149b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112cb903390899088908890600401611b69565b602060405180830381600087803b1580156112e557600080fd5b505af1925050508015611315575060408051601f3d908101601f1916820190925261131291810190611ba6565b60015b611370573d808015611343576040519150601f19603f3d011682016040523d82523d6000602084013e611348565b606091505b508051611368576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546103e490611a12565b6060816113c15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113eb57806113d581611bc3565b91506113e49050600a83611b55565b91506113c5565b60008167ffffffffffffffff8111156114065761140661187c565b6040519080825280601f01601f191660200182016040528015611430576020820181803683370190505b5090505b841561138657611445600183611bde565b9150611452600a86611bf5565b61145d906030611ad9565b60f81b81838151811061147257611472611a78565b60200101906001600160f81b031916908160001a905350611494600a86611b55565b9450611434565b61053483838360016000546001600160a01b0385166114cc57604051622e076360e81b815260040160405180910390fd5b836114ea5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561159c57506001600160a01b0387163b15155b15611613575b60405182906001600160a01b03891690600090600080516020611c0a833981519152908290a46115db6000888480600101955088611296565b6115f8576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115a257826000541461160e57600080fd5b611647565b5b6040516001830192906001600160a01b03891690600090600080516020611c0a833981519152908290a480821415611614575b50600055610edd565b6001600160e01b03198116811461068e57600080fd5b60006020828403121561167857600080fd5b8135610a8081611650565b60005b8381101561169e578181015183820152602001611686565b838111156109615750506000910152565b600081518084526116c7816020860160208601611683565b601f01601f19169290920160200192915050565b602081526000610a8060208301846116af565b60006020828403121561170057600080fd5b5035919050565b80356001600160a01b038116811461171e57600080fd5b919050565b6000806040838503121561173657600080fd5b61173f83611707565b946020939093013593505050565b600081518084526020808501945080840160005b8381101561177d57815187529582019590820190600101611761565b509495945050505050565b602081526000610a80602083018461174d565b6000806000606084860312156117b057600080fd5b6117b984611707565b92506117c760208501611707565b9150604084013590509250925092565b600080604083850312156117ea57600080fd5b50508035926020909101359150565b60006020828403121561180b57600080fd5b610a8082611707565b6000806040838503121561182757600080fd5b8235915061183760208401611707565b90509250929050565b6000806040838503121561185357600080fd5b61185c83611707565b91506020830135801515811461187157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156118a857600080fd5b6118b185611707565b93506118bf60208601611707565b925060408501359150606085013567ffffffffffffffff808211156118e357600080fd5b818701915087601f8301126118f757600080fd5b8135818111156119095761190961187c565b604051601f8201601f19908116603f011681019083821181831017156119315761193161187c565b816040528281528a602084870101111561194a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600081518084526020808501945080840160005b8381101561177d5781516001600160a01b031687529582019590820190600101611982565b602081526000610a80602083018461196e565b6040815260006119cd604083018561196e565b82810360208401526119df818561174d565b95945050505050565b600080604083850312156119fb57600080fd5b611a0483611707565b915061183760208401611707565b600181811c90821680611a2657607f821691505b60208210811415611a4757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611aec57611aec611ac3565b500190565b60008351611b03818460208801611683565b835190830190611b17818360208801611683565b01949350505050565b6000816000190483118215151615611b3a57611b3a611ac3565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611b6457611b64611b3f565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b9c908301846116af565b9695505050505050565b600060208284031215611bb857600080fd5b8151610a8081611650565b6000600019821415611bd757611bd7611ac3565b5060010190565b600082821015611bf057611bf0611ac3565b500390565b600082611c0457611c04611b3f565b50069056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201901ebd5987d183605b4950415d5310a8b7928aed08a0cb707d6850abe9bfbc064736f6c63430008090033455243373231413a206d61782062617463682073697a65206d7573742062652000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000028790000000000000000000000000000000000000000000000000000000000000160000000000000000000000000dae77f7304fc95cf209577d930f7a7376b9e7a9100000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000017416c69636a61204b77616465204b6f656e696720444e410000000000000000000000000000000000000000000000000000000000000000000000000000000005414b444e410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6476677a33536a697a397936714c48656676716a62484c34724365716d414c69764e547443486e3153744a342f00000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde146102ff578063b9c4d9fb14610312578063c87b56dd14610332578063d5a06d4c14610345578063e985e9c514610366578063f2fde38b146103a257600080fd5b806370a08231146102a5578063715018a6146102b85780638da5cb5b146102c057806394bf804d146102d157806395d89b41146102e4578063a22cb465146102ec57600080fd5b806318160ddd1161011557806318160ddd1461020d57806323b872dd146102275780632a55205a1461023a57806342842e0e1461026c57806342966c681461027f5780636352211e1461029257600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c55780630ebd4c7f146101da578063152fcb2e146101fa575b600080fd5b61017061016b366004611666565b6103b5565b60405190151581526020015b60405180910390f35b61018d6103d5565b60405161017c91906116db565b6101ad6101a83660046116ee565b610467565b6040516001600160a01b03909116815260200161017c565b6101d86101d3366004611723565b6104ab565b005b6101ed6101e83660046116ee565b610539565b60405161017c9190611788565b610170610208366004611666565b6105d0565b60015460005403600019015b60405190815260200161017c565b6101d861023536600461179b565b610621565b61024d6102483660046117d7565b61062c565b604080516001600160a01b03909316835260208301919091520161017c565b6101d861027a36600461179b565b610668565b6101d861028d3660046116ee565b610683565b6101ad6102a03660046116ee565b610691565b6102196102b33660046117f9565b6106a3565b6101d86106f2565b6008546001600160a01b03166101ad565b6101d86102df366004611814565b610728565b61018d610871565b6101d86102fa366004611840565b610880565b6101d861030d366004611892565b610916565b6103256103203660046116ee565b610967565b60405161017c91906119a7565b61018d6103403660046116ee565b610a02565b6103586103533660046116ee565b610a87565b60405161017c9291906119ba565b6101706103743660046119e8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101d86103b03660046117f9565b610b89565b60006103c082610c21565b806103cf57506103cf826105d0565b92915050565b6060600280546103e490611a12565b80601f016020809104026020016040519081016040528092919081815260200182805461041090611a12565b801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b5050505050905090565b600061047282610c71565b61048f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104b682610691565b9050806001600160a01b0316836001600160a01b031614156104eb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061050b57506105098133610374565b155b15610529576040516367d9dca160e11b815260040160405180910390fd5b610534838383610caa565b505050565b606061054482610c71565b6105695760405162461bcd60e51b815260040161056090611a4d565b60405180910390fd5b604080516001808252818301909252600091602080830190803683370190505090507f0000000000000000000000000000000000000000000000000000000000000320816000815181106105bf576105bf611a78565b602090810291909101015292915050565b60006001600160e01b03198216632dde656160e21b148061060157506001600160e01b031982166335681b5360e21b145b806103cf57506001600160e01b0319821663152a902d60e11b1492915050565b610534838383610d06565b60008061063884610c71565b6106545760405162461bcd60e51b815260040161056090611a4d565b61065d83610ee4565b915091509250929050565b61053483838360405180602001604052806000815250610916565b61068e816001610f4c565b50565b600061069c82611101565b5192915050565b60006001600160a01b0382166106cc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461071c5760405162461bcd60e51b815260040161056090611a8e565b610726600061122a565b565b6008546001600160a01b031633146107525760405162461bcd60e51b815260040161056090611a8e565b6001546000547f0000000000000000000000000000000000000000000000000000000000002879918491036000190161078b9190611ad9565b11156107e75760405162461bcd60e51b815260206004820152602560248201527f4d696e74207175616e74697479206578636565647320636f6c6c656374696f6e6044820152642073697a6560d81b6064820152608401610560565b7f000000000000000000000000000000000000000000000000000000000000000a8211156108635760405162461bcd60e51b8152602060048201526024808201527f4d696e74207175616e746974792065786365656473206d61782062617463682060448201526373697a6560e01b6064820152608401610560565b61086d818361127c565b5050565b6060600380546103e490611a12565b6001600160a01b0382163314156108aa5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610921848484610d06565b6001600160a01b0383163b15158015610943575061094184848484611296565b155b15610961576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061097282610c71565b61098e5760405162461bcd60e51b815260040161056090611a4d565b604080516001808252818301909252600091602080830190803683370190505090507f000000000000000000000000dae77f7304fc95cf209577d930f7a7376b9e7a91816000815181106109e4576109e4611a78565b6001600160a01b039092166020928302919091019091015292915050565b6060610a0d82610c71565b610a2a57604051630a14c4b560e41b815260040160405180910390fd5b6000610a3461138e565b9050805160001415610a555760405180602001604052806000815250610a80565b80610a5f8461139d565b604051602001610a70929190611af1565b6040516020818303038152906040525b9392505050565b606080610a9383610c71565b610aaf5760405162461bcd60e51b815260040161056090611a4d565b6040805160018082528183019092526000916020808301908036833750506040805160018082528183019092529293506000929150602080830190803683370190505090507f000000000000000000000000dae77f7304fc95cf209577d930f7a7376b9e7a9182600081518110610b2857610b28611a78565b6001600160a01b03909216602092830291909101909101527f000000000000000000000000000000000000000000000000000000000000032081600081518110610b7457610b74611a78565b60209081029190910101529094909350915050565b6008546001600160a01b03163314610bb35760405162461bcd60e51b815260040161056090611a8e565b6001600160a01b038116610c185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610560565b61068e8161122a565b60006001600160e01b031982166380ac58cd60e01b1480610c5257506001600160e01b03198216635b5e139f60e01b145b806103cf57506301ffc9a760e01b6001600160e01b03198316146103cf565b600081600111158015610c85575060005482105b80156103cf575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d1182611101565b9050836001600160a01b031681600001516001600160a01b031614610d485760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610d665750610d668533610374565b80610d81575033610d7684610467565b6001600160a01b0316145b905080610da157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610dc857604051633a954ecd60e21b815260040160405180910390fd5b610dd460008487610caa565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610eaa576000548214610eaa578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020611c0a83398151915260405160405180910390a45b5050505050565b6000807f000000000000000000000000dae77f7304fc95cf209577d930f7a7376b9e7a917f000000000000000000000000000000000000000000000000000000000000032081612710610f378784611b20565b610f419190611b55565b935093505050915091565b6000610f5783611101565b80519091508215610fbd576000336001600160a01b0383161480610f805750610f808233610374565b80610f9b575033610f9086610467565b6001600160a01b0316145b905080610fbb57604051632ce44b5f60e11b815260040160405180910390fd5b505b610fc960008583610caa565b6001600160a01b0380821660008181526005602090815260408083208054600160801b60001967ffffffffffffffff80841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166110c95760005482146110c9578054602087015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020611c0a833981519152908390a4505060018054810190555050565b60408051606081018252600080825260208201819052918101919091528180600111158015611131575060005481105b1561121157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061120f5780516001600160a01b0316156111a5579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561120a579392505050565b6111a5565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61086d82826040518060200160405280600081525061149b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112cb903390899088908890600401611b69565b602060405180830381600087803b1580156112e557600080fd5b505af1925050508015611315575060408051601f3d908101601f1916820190925261131291810190611ba6565b60015b611370573d808015611343576040519150601f19603f3d011682016040523d82523d6000602084013e611348565b606091505b508051611368576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546103e490611a12565b6060816113c15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113eb57806113d581611bc3565b91506113e49050600a83611b55565b91506113c5565b60008167ffffffffffffffff8111156114065761140661187c565b6040519080825280601f01601f191660200182016040528015611430576020820181803683370190505b5090505b841561138657611445600183611bde565b9150611452600a86611bf5565b61145d906030611ad9565b60f81b81838151811061147257611472611a78565b60200101906001600160f81b031916908160001a905350611494600a86611b55565b9450611434565b61053483838360016000546001600160a01b0385166114cc57604051622e076360e81b815260040160405180910390fd5b836114ea5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561159c57506001600160a01b0387163b15155b15611613575b60405182906001600160a01b03891690600090600080516020611c0a833981519152908290a46115db6000888480600101955088611296565b6115f8576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115a257826000541461160e57600080fd5b611647565b5b6040516001830192906001600160a01b03891690600090600080516020611c0a833981519152908290a480821415611614575b50600055610edd565b6001600160e01b03198116811461068e57600080fd5b60006020828403121561167857600080fd5b8135610a8081611650565b60005b8381101561169e578181015183820152602001611686565b838111156109615750506000910152565b600081518084526116c7816020860160208601611683565b601f01601f19169290920160200192915050565b602081526000610a8060208301846116af565b60006020828403121561170057600080fd5b5035919050565b80356001600160a01b038116811461171e57600080fd5b919050565b6000806040838503121561173657600080fd5b61173f83611707565b946020939093013593505050565b600081518084526020808501945080840160005b8381101561177d57815187529582019590820190600101611761565b509495945050505050565b602081526000610a80602083018461174d565b6000806000606084860312156117b057600080fd5b6117b984611707565b92506117c760208501611707565b9150604084013590509250925092565b600080604083850312156117ea57600080fd5b50508035926020909101359150565b60006020828403121561180b57600080fd5b610a8082611707565b6000806040838503121561182757600080fd5b8235915061183760208401611707565b90509250929050565b6000806040838503121561185357600080fd5b61185c83611707565b91506020830135801515811461187157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156118a857600080fd5b6118b185611707565b93506118bf60208601611707565b925060408501359150606085013567ffffffffffffffff808211156118e357600080fd5b818701915087601f8301126118f757600080fd5b8135818111156119095761190961187c565b604051601f8201601f19908116603f011681019083821181831017156119315761193161187c565b816040528281528a602084870101111561194a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600081518084526020808501945080840160005b8381101561177d5781516001600160a01b031687529582019590820190600101611982565b602081526000610a80602083018461196e565b6040815260006119cd604083018561196e565b82810360208401526119df818561174d565b95945050505050565b600080604083850312156119fb57600080fd5b611a0483611707565b915061183760208401611707565b600181811c90821680611a2657607f821691505b60208210811415611a4757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611aec57611aec611ac3565b500190565b60008351611b03818460208801611683565b835190830190611b17818360208801611683565b01949350505050565b6000816000190483118215151615611b3a57611b3a611ac3565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611b6457611b64611b3f565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b9c908301846116af565b9695505050505050565b600060208284031215611bb857600080fd5b8151610a8081611650565b6000600019821415611bd757611bd7611ac3565b5060010190565b600082821015611bf057611bf0611ac3565b500390565b600082611c0457611c04611b3f565b50069056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201901ebd5987d183605b4950415d5310a8b7928aed08a0cb707d6850abe9bfbc064736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000028790000000000000000000000000000000000000000000000000000000000000160000000000000000000000000dae77f7304fc95cf209577d930f7a7376b9e7a9100000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000017416c69636a61204b77616465204b6f656e696720444e410000000000000000000000000000000000000000000000000000000000000000000000000000000005414b444e410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6476677a33536a697a397936714c48656676716a62484c34724365716d414c69764e547443486e3153744a342f00000000000000000000
-----Decoded View---------------
Arg [0] : contractName (string): Alicja Kwade Koenig DNA
Arg [1] : tokenSymbol (string): AKDNA
Arg [2] : maxBatchSize_ (uint256): 10
Arg [3] : collectionSize_ (uint256): 10361
Arg [4] : baseURI_ (string): ipfs://Qmdvgz3Sjiz9y6qLHefvqjbHL4rCeqmALivNTtCHn1StJ4/
Arg [5] : royaltyReceiver_ (address): 0xdae77F7304Fc95Cf209577D930F7a7376b9E7A91
Arg [6] : royaltyBPS_ (uint256): 800
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002879
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [5] : 000000000000000000000000dae77f7304fc95cf209577d930f7a7376b9e7a91
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000320
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [8] : 416c69636a61204b77616465204b6f656e696720444e41000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 414b444e41000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d6476677a33536a697a397936714c48656676716a62484c
Arg [13] : 34724365716d414c69764e547443486e3153744a342f00000000000000000000
Deployed Bytecode Sourcemap
577:5238:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5232:255;;;;;;:::i;:::-;;:::i;:::-;;;565:14:11;;558:22;540:41;;528:2;513:18;5232:255:0;;;;;;;;7579:98:10;;;:::i;:::-;;;;;;;:::i;9035:200::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:11;;;1674:51;;1662:2;1647:18;9035:200:10;1528:203:11;8612:362:10;;;;;;:::i;:::-;;:::i;:::-;;4115:282:0;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5493:320::-;;;;;;:::i;:::-;;:::i;3822:297:10:-;1875:1:0;4072:12:10;3866:7;4056:13;:28;-1:-1:-1;;4056:46:10;3822:297;;;3025:25:11;;;3013:2;2998:18;3822:297:10;2879:177:11;9874:164:10;;;;;;:::i;:::-;;:::i;4490:240:0:-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3839:32:11;;;3821:51;;3903:2;3888:18;;3881:34;;;;3794:18;4490:240:0;3647:274:11;10104:179:10;;;;;;:::i;:::-;;:::i;2220:71:0:-;;;;;;:::i;:::-;;:::i;7394:123:10:-;;;;;;:::i;:::-;;:::i;4910:203::-;;;;;;:::i;:::-;;:::i;1605:92:1:-;;;:::i;973:85::-;1045:6;;-1:-1:-1;;;;;1045:6:1;973:85;;1887:329:0;;;;;;:::i;:::-;;:::i;7741:102:10:-;;;:::i;9302:282::-;;;;;;:::i;:::-;;:::i;10349:359::-;;;;;;:::i;:::-;;:::i;3773:336:0:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7909:313:10:-;;;;;;:::i;:::-;;:::i;3299:429:0:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;9650:162:10:-;;;;;;:::i;:::-;-1:-1:-1;;;;;9770:25:10;;;9747:4;9770:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9650:162;1846:189:1;;;;;;:::i;:::-;;:::i;5232:255:0:-;5350:4;5389:36;5413:11;5389:23;:36::i;:::-;:91;;;;5441:39;5468:11;5441:26;:39::i;:::-;5370:110;5232:255;-1:-1:-1;;5232:255:0:o;7579:98:10:-;7633:13;7665:5;7658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7579:98;:::o;9035:200::-;9103:7;9127:16;9135:7;9127;:16::i;:::-;9122:64;;9152:34;;-1:-1:-1;;;9152:34:10;;;;;;;;;;;9122:64;-1:-1:-1;9204:24:10;;;;:15;:24;;;;;;-1:-1:-1;;;;;9204:24:10;;9035:200::o;8612:362::-;8684:13;8700:24;8716:7;8700:15;:24::i;:::-;8684:40;;8744:5;-1:-1:-1;;;;;8738:11:10;:2;-1:-1:-1;;;;;8738:11:10;;8734:48;;;8758:24;;-1:-1:-1;;;8758:24:10;;;;;;;;;;;8734:48;666:10:6;-1:-1:-1;;;;;8797:21:10;;;;;;:63;;-1:-1:-1;8823:37:10;8840:5;666:10:6;9650:162:10;:::i;8823:37::-;8822:38;8797:63;8793:136;;;8883:35;;-1:-1:-1;;;8883:35:10;;;;;;;;;;;8793:136;8939:28;8948:2;8952:7;8961:5;8939:8;:28::i;:::-;8674:300;8612:362;;:::o;4115:282:0:-;4214:16;4254;4262:7;4254;:16::i;:::-;4246:46;;;;-1:-1:-1;;;4246:46:0;;;;;;;:::i;:::-;;;;;;;;;4326:16;;;4340:1;4326:16;;;;;;;;;4303:20;;4326:16;;;;;;;;;;;-1:-1:-1;;4303:39:0;-1:-1:-1;5072:10:0;4352:3;4356:1;4352:6;;;;;;;;:::i;:::-;;;;;;;;;;:18;4387:3;4115:282;-1:-1:-1;;4115:282:0:o;5493:320::-;5594:4;-1:-1:-1;;;;;;5633:46:0;;-1:-1:-1;;;5633:46:0;;:111;;-1:-1:-1;;;;;;;5695:49:0;;-1:-1:-1;;;5695:49:0;5633:111;:173;;;-1:-1:-1;;;;;;;5760:46:0;;-1:-1:-1;;;5760:46:0;5614:192;5493:320;-1:-1:-1;;5493:320:0:o;9874:164:10:-;10003:28;10013:4;10019:2;10023:7;10003:9;:28::i;4490:240:0:-;4606:7;4615;4646:16;4654:7;4646;:16::i;:::-;4638:46;;;;-1:-1:-1;;;4638:46:0;;;;;;;:::i;:::-;4701:22;4717:5;4701:15;:22::i;:::-;4694:29;;;;4490:240;;;;;:::o;10104:179:10:-;10237:39;10254:4;10260:2;10264:7;10237:39;;;;;;;;;;;;:16;:39::i;2220:71:0:-;2266:20;2272:7;2281:4;2266:5;:20::i;:::-;2220:71;:::o;7394:123:10:-;7458:7;7484:21;7497:7;7484:12;:21::i;:::-;:26;;7394:123;-1:-1:-1;;7394:123:10:o;4910:203::-;4974:7;-1:-1:-1;;;;;4997:19:10;;4993:60;;5025:28;;-1:-1:-1;;;5025:28:10;;;;;;;;;;;4993:60;-1:-1:-1;;;;;;5078:19:10;;;;;:12;:19;;;;;:27;;;;4910:203::o;1605:92:1:-;1045:6;;-1:-1:-1;;;;;1045:6:1;666:10:6;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;1887:329:0:-;1045:6:1;;-1:-1:-1;;;;;1045:6:1;666:10:6;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;1875:1:0;4072:12:10;3866:7;4056:13;2002:14:0::1;::::0;1990:8;;4056:28:10;-1:-1:-1;;4056:46:10;1974:24:0::1;;;;:::i;:::-;:42;;1959:110;;;::::0;-1:-1:-1;;;1959:110:0;;9217:2:11;1959:110:0::1;::::0;::::1;9199:21:11::0;9256:2;9236:18;;;9229:30;9295:34;9275:18;;;9268:62;-1:-1:-1;;;9346:18:11;;;9339:35;9391:19;;1959:110:0::1;9015:401:11::0;1959:110:0::1;2106:12;2094:8;:24;;2076:102;;;::::0;-1:-1:-1;;;2076:102:0;;9623:2:11;2076:102:0::1;::::0;::::1;9605:21:11::0;9662:2;9642:18;;;9635:30;9701:34;9681:18;;;9674:62;-1:-1:-1;;;9752:18:11;;;9745:34;9796:19;;2076:102:0::1;9421:400:11::0;2076:102:0::1;2185:26;2195:5;2202:8;2185:9;:26::i;:::-;1887:329:::0;;:::o;7741:102:10:-;7797:13;7829:7;7822:14;;;;;:::i;9302:282::-;-1:-1:-1;;;;;9400:24:10;;666:10:6;9400:24:10;9396:54;;;9433:17;;-1:-1:-1;;;9433:17:10;;;;;;;;;;;9396:54;666:10:6;9461:32:10;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;9461:42:10;;;;;;;;;;;;:53;;-1:-1:-1;;9461:53:10;;;;;;;;;;9529:48;;540:41:11;;;9461:42:10;;666:10:6;9529:48:10;;513:18:11;9529:48:10;;;;;;;9302:282;;:::o;10349:359::-;10510:28;10520:4;10526:2;10530:7;10510:9;:28::i;:::-;-1:-1:-1;;;;;10552:13:10;;1034:20:5;1080:8;;10552:76:10;;;;;10572:56;10603:4;10609:2;10613:7;10622:5;10572:30;:56::i;:::-;10571:57;10552:76;10548:154;;;10651:40;;-1:-1:-1;;;10651:40:10;;;;;;;;;;;10548:154;10349:359;;;;:::o;3773:336:0:-;3879:24;3927:16;3935:7;3927;:16::i;:::-;3919:46;;;;-1:-1:-1;;;3919:46:0;;;;;;;:::i;:::-;4013:24;;;4035:1;4013:24;;;;;;;;;3976:34;;4013:24;;;;;;;;;;;-1:-1:-1;;3976:61:0;-1:-1:-1;5204:15:0;4047:9;4057:1;4047:12;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4047:29:0;;;:12;;;;;;;;;;;:29;4093:9;3773:336;-1:-1:-1;;3773:336:0:o;7909:313:10:-;7982:13;8012:16;8020:7;8012;:16::i;:::-;8007:59;;8037:29;;-1:-1:-1;;;8037:29:10;;;;;;;;;;;8007:59;8077:21;8101:10;:8;:10::i;:::-;8077:34;;8134:7;8128:21;8153:1;8128:26;;:87;;;;;;;;;;;;;;;;;8181:7;8190:18;:7;:16;:18::i;:::-;8164:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8128:87;8121:94;7909:313;-1:-1:-1;;;7909:313:10:o;3299:429:0:-;3396:24;3422:16;3462;3470:7;3462;:16::i;:::-;3454:46;;;;-1:-1:-1;;;3454:46:0;;;;;;;:::i;:::-;3548:24;;;3570:1;3548:24;;;;;;;;;3511:34;;3548:24;;;;;;;;;-1:-1:-1;;3605:16:0;;;3619:1;3605:16;;;;;;;;;3511:61;;-1:-1:-1;3582:20:0;;3605:16;-1:-1:-1;3605:16:0;;;;;;;;;;;-1:-1:-1;;3582:39:0;-1:-1:-1;5204:15:0;3631:9;3641:1;3631:12;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3631:29:0;;;:12;;;;;;;;;;;:29;5072:10;3670:3;3674:1;3670:6;;;;;;;;:::i;:::-;;;;;;;;;;:18;3706:9;;3717:3;;-1:-1:-1;3299:429:0;-1:-1:-1;;3299:429:0:o;1846:189:1:-;1045:6;;-1:-1:-1;;;;;1045:6:1;666:10:6;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;1934:22:1;::::1;1926:73;;;::::0;-1:-1:-1;;;1926:73:1;;10503:2:11;1926:73:1::1;::::0;::::1;10485:21:11::0;10542:2;10522:18;;;10515:30;10581:34;10561:18;;;10554:62;-1:-1:-1;;;10632:18:11;;;10625:36;10678:19;;1926:73:1::1;10301:402:11::0;1926:73:1::1;2009:19;2019:8;2009:9;:19::i;4551:300:10:-:0;4653:4;-1:-1:-1;;;;;;4688:40:10;;-1:-1:-1;;;4688:40:10;;:104;;-1:-1:-1;;;;;;;4744:48:10;;-1:-1:-1;;;4744:48:10;4688:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:8;;;4808:36:10;763:155:8;10954:184:10;11011:4;11053:7;1875:1:0;11034:26:10;;:53;;;;;11074:13;;11064:7;:23;11034:53;:97;;;;-1:-1:-1;;11104:20:10;;;;:11;:20;;;;;:27;-1:-1:-1;;;11104:27:10;;;;11103:28;;10954:184::o;18906:189::-;19016:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19016:29:10;-1:-1:-1;;;;;19016:29:10;;;;;;;;;19060:28;;19016:24;;19060:28;;;;;;;18906:189;;;:::o;13976:2082::-;14086:35;14124:21;14137:7;14124:12;:21::i;:::-;14086:59;;14182:4;-1:-1:-1;;;;;14160:26:10;:13;:18;;;-1:-1:-1;;;;;14160:26:10;;14156:67;;14195:28;;-1:-1:-1;;;14195:28:10;;;;;;;;;;;14156:67;14234:22;666:10:6;-1:-1:-1;;;;;14260:20:10;;;;:72;;-1:-1:-1;14296:36:10;14313:4;666:10:6;9650:162:10;:::i;14296:36::-;14260:124;;;-1:-1:-1;666:10:6;14348:20:10;14360:7;14348:11;:20::i;:::-;-1:-1:-1;;;;;14348:36:10;;14260:124;14234:151;;14401:17;14396:66;;14427:35;;-1:-1:-1;;;14427:35:10;;;;;;;;;;;14396:66;-1:-1:-1;;;;;14476:16:10;;14472:52;;14501:23;;-1:-1:-1;;;14501:23:10;;;;;;;;;;;14472:52;14640:35;14657:1;14661:7;14670:4;14640:8;:35::i;:::-;-1:-1:-1;;;;;14965:18:10;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;14965:31:10;;;;;;;-1:-1:-1;;14965:31:10;;;;;;;15010:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15010:29:10;;;;;;;;;;;15088:20;;;:11;:20;;;;;;15122:18;;-1:-1:-1;;;;;;15154:49:10;;;;-1:-1:-1;;;15187:15:10;15154:49;;;;;;;;;;15473:11;;15532:24;;;;;15574:13;;15088:20;;15532:24;;15574:13;15570:377;;15781:13;;15766:11;:28;15762:171;;15818:20;;15886:28;;;;15860:54;;-1:-1:-1;;;15860:54:10;-1:-1:-1;;;;;;15860:54:10;;;-1:-1:-1;;;;;15818:20:10;;15860:54;;;;15762:171;14941:1016;;;15991:7;15987:2;-1:-1:-1;;;;;15972:27:10;15981:4;-1:-1:-1;;;;;15972:27:10;-1:-1:-1;;;;;;;;;;;15972:27:10;;;;;;;;;16009:42;14076:1982;;13976:2082;;;:::o;4736:262:0:-;4823:16;;5204:15;5072:10;5204:15;4985:5;4969:12;4976:5;5072:10;4969:12;:::i;:::-;4968:22;;;;:::i;:::-;4949:42;;;;;;4736:262;;;:::o;16440:2355:10:-;16519:35;16557:21;16570:7;16557:12;:21::i;:::-;16604:18;;16519:59;;-1:-1:-1;16633:284:10;;;;16666:22;666:10:6;-1:-1:-1;;;;;16692:20:10;;;;:76;;-1:-1:-1;16732:36:10;16749:4;666:10:6;9650:162:10;:::i;16732:36::-;16692:132;;;-1:-1:-1;666:10:6;16788:20:10;16800:7;16788:11;:20::i;:::-;-1:-1:-1;;;;;16788:36:10;;16692:132;16666:159;;16845:17;16840:66;;16871:35;;-1:-1:-1;;;16871:35:10;;;;;;;;;;;16840:66;16652:265;16633:284;17040:35;17057:1;17061:7;17070:4;17040:8;:35::i;:::-;-1:-1:-1;;;;;17399:18:10;;;17365:31;17399:18;;;:12;:18;;;;;;;;17431:24;;-1:-1:-1;;;;;17431:24:10;;;;;;;;;;-1:-1:-1;;17431:24:10;;;;17469:29;;;;;17454:1;17469:29;;;;;;;;-1:-1:-1;;17469:29:10;;;;;;;;;;17628:20;;;:11;:20;;;;;;17662;;-1:-1:-1;;;;17729:15:10;17696:49;;;-1:-1:-1;;;17696:49:10;-1:-1:-1;;;;;;17696:49:10;;;;;;;;;;17759:22;-1:-1:-1;;;17759:22:10;;;18047:11;;;18106:24;;;;;18148:13;;17399:18;;18106:24;;18148:13;18144:377;;18355:13;;18340:11;:28;18336:171;;18392:20;;18460:28;;;;18434:54;;-1:-1:-1;;;18434:54:10;-1:-1:-1;;;;;;18434:54:10;;;-1:-1:-1;;;;;18392:20:10;;18434:54;;;;18336:171;-1:-1:-1;;18546:35:10;;18573:7;;-1:-1:-1;18569:1:10;;-1:-1:-1;;;;;;18546:35:10;;;-1:-1:-1;;;;;;;;;;;18546:35:10;18569:1;;18546:35;-1:-1:-1;;18764:12:10;:14;;;;;;-1:-1:-1;;16440:2355:10:o;6253:1084::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6363:7:10;;1875:1:0;6409:23:10;;:47;;;;;6443:13;;6436:4;:20;6409:47;6405:868;;;6476:31;6510:17;;;:11;:17;;;;;;;;;6476:51;;;;;;;;;-1:-1:-1;;;;;6476:51:10;;;;-1:-1:-1;;;6476:51:10;;;;;;;;;;;-1:-1:-1;;;6476:51:10;;;;;;;;;;;;;;6545:714;;6594:14;;-1:-1:-1;;;;;6594:28:10;;6590:99;;6657:9;6253:1084;-1:-1:-1;;;6253:1084:10:o;6590:99::-;-1:-1:-1;;;7025:6:10;7069:17;;;;:11;:17;;;;;;;;;7057:29;;;;;;;;;-1:-1:-1;;;;;7057:29:10;;;;;-1:-1:-1;;;7057:29:10;;;;;;;;;;;-1:-1:-1;;;7057:29:10;;;;;;;;;;;;;7116:28;7112:107;;7183:9;6253:1084;-1:-1:-1;;;6253:1084:10:o;7112:107::-;6986:255;;;6458:815;6405:868;7299:31;;-1:-1:-1;;;7299:31:10;;;;;;;;;;;2041:169:1;2115:6;;;-1:-1:-1;;;;;2131:17:1;;;-1:-1:-1;;;;;;2131:17:1;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2086:124;2041:169;:::o;11144:102:10:-;11212:27;11222:2;11226:8;11212:27;;;;;;;;;;;;:9;:27::i;19576:650::-;19754:72;;-1:-1:-1;;;19754:72:10;;19734:4;;-1:-1:-1;;;;;19754:36:10;;;;;:72;;666:10:6;;19805:4:10;;19811:7;;19820:5;;19754:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19754:72:10;;;;;;;;-1:-1:-1;;19754:72:10;;;;;;;;;;;;:::i;:::-;;;19750:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19985:13:10;;19981:229;;20030:40;;-1:-1:-1;;;20030:40:10;;;;;;;;;;;19981:229;20170:6;20164:13;20155:6;20151:2;20147:15;20140:38;19750:470;-1:-1:-1;;;;;;19872:55:10;-1:-1:-1;;;19872:55:10;;-1:-1:-1;19750:470:10;19576:650;;;;;;:::o;2295:100:0:-;2347:13;2375:15;2368:22;;;;;:::i;275:703:7:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:7;;;;;;;;;;;;-1:-1:-1;;;574:10:7;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:7;;-1:-1:-1;720:2:7;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:7;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:7;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:7;;;;;;;;-1:-1:-1;919:11:7;928:2;919:11;;:::i;:::-;;;791:150;;11597:157:10;11715:32;11721:2;11725:8;11735:5;11742:4;12134:20;12157:13;-1:-1:-1;;;;;12184:16:10;;12180:48;;12209:19;;-1:-1:-1;;;12209:19:10;;;;;;;;;;;12180:48;12242:13;12238:44;;12264:18;;-1:-1:-1;;;12264:18:10;;;;;;;;;;;12238:44;-1:-1:-1;;;;;12625:16:10;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;12683:49:10;;12625:44;;;;;;;;12683:49;;;;-1:-1:-1;;12625:44:10;;;;;;12683:49;;;;;;;;;;;;;;;;12747:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;12796:66:10;;;;-1:-1:-1;;;12846:15:10;12796:66;;;;;;;;;;12747:25;12940:23;;;12982:4;:23;;;;-1:-1:-1;;;;;;12990:13:10;;1034:20:5;1080:8;;12990:15:10;12978:628;;;13025:309;13055:38;;13080:12;;-1:-1:-1;;;;;13055:38:10;;;13072:1;;-1:-1:-1;;;;;;;;;;;13055:38:10;13072:1;;13055:38;13120:69;13159:1;13163:2;13167:14;;;;;;13183:5;13120:30;:69::i;:::-;13115:172;;13224:40;;-1:-1:-1;;;13224:40:10;;;;;;;;;;;13115:172;13329:3;13313:12;:19;;13025:309;;13413:12;13396:13;;:29;13392:43;;13427:8;;;13392:43;12978:628;;;13474:118;13504:40;;13529:14;;;;;-1:-1:-1;;;;;13504:40:10;;;13521:1;;-1:-1:-1;;;;;;;;;;;13504:40:10;13521:1;;13504:40;13587:3;13571:12;:19;;13474:118;;12978:628;-1:-1:-1;13619:13:10;:28;13667:60;10349:359;14:131:11;-1:-1:-1;;;;;;88:32:11;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:11;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:11;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:11:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:11;;1343:180;-1:-1:-1;1343:180:11:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:11;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:11:o;2173:435::-;2226:3;2264:5;2258:12;2291:6;2286:3;2279:19;2317:4;2346:2;2341:3;2337:12;2330:19;;2383:2;2376:5;2372:14;2404:1;2414:169;2428:6;2425:1;2422:13;2414:169;;;2489:13;;2477:26;;2523:12;;;;2558:15;;;;2450:1;2443:9;2414:169;;;-1:-1:-1;2599:3:11;;2173:435;-1:-1:-1;;;;;2173:435:11:o;2613:261::-;2792:2;2781:9;2774:21;2755:4;2812:56;2864:2;2853:9;2849:18;2841:6;2812:56;:::i;3061:328::-;3138:6;3146;3154;3207:2;3195:9;3186:7;3182:23;3178:32;3175:52;;;3223:1;3220;3213:12;3175:52;3246:29;3265:9;3246:29;:::i;:::-;3236:39;;3294:38;3328:2;3317:9;3313:18;3294:38;:::i;:::-;3284:48;;3379:2;3368:9;3364:18;3351:32;3341:42;;3061:328;;;;;:::o;3394:248::-;3462:6;3470;3523:2;3511:9;3502:7;3498:23;3494:32;3491:52;;;3539:1;3536;3529:12;3491:52;-1:-1:-1;;3562:23:11;;;3632:2;3617:18;;;3604:32;;-1:-1:-1;3394:248:11:o;3926:186::-;3985:6;4038:2;4026:9;4017:7;4013:23;4009:32;4006:52;;;4054:1;4051;4044:12;4006:52;4077:29;4096:9;4077:29;:::i;4117:254::-;4185:6;4193;4246:2;4234:9;4225:7;4221:23;4217:32;4214:52;;;4262:1;4259;4252:12;4214:52;4298:9;4285:23;4275:33;;4327:38;4361:2;4350:9;4346:18;4327:38;:::i;:::-;4317:48;;4117:254;;;;;:::o;4376:347::-;4441:6;4449;4502:2;4490:9;4481:7;4477:23;4473:32;4470:52;;;4518:1;4515;4508:12;4470:52;4541:29;4560:9;4541:29;:::i;:::-;4531:39;;4620:2;4609:9;4605:18;4592:32;4667:5;4660:13;4653:21;4646:5;4643:32;4633:60;;4689:1;4686;4679:12;4633:60;4712:5;4702:15;;;4376:347;;;;;:::o;4728:127::-;4789:10;4784:3;4780:20;4777:1;4770:31;4820:4;4817:1;4810:15;4844:4;4841:1;4834:15;4860:1138;4955:6;4963;4971;4979;5032:3;5020:9;5011:7;5007:23;5003:33;5000:53;;;5049:1;5046;5039:12;5000:53;5072:29;5091:9;5072:29;:::i;:::-;5062:39;;5120:38;5154:2;5143:9;5139:18;5120:38;:::i;:::-;5110:48;;5205:2;5194:9;5190:18;5177:32;5167:42;;5260:2;5249:9;5245:18;5232:32;5283:18;5324:2;5316:6;5313:14;5310:34;;;5340:1;5337;5330:12;5310:34;5378:6;5367:9;5363:22;5353:32;;5423:7;5416:4;5412:2;5408:13;5404:27;5394:55;;5445:1;5442;5435:12;5394:55;5481:2;5468:16;5503:2;5499;5496:10;5493:36;;;5509:18;;:::i;:::-;5584:2;5578:9;5552:2;5638:13;;-1:-1:-1;;5634:22:11;;;5658:2;5630:31;5626:40;5614:53;;;5682:18;;;5702:22;;;5679:46;5676:72;;;5728:18;;:::i;:::-;5768:10;5764:2;5757:22;5803:2;5795:6;5788:18;5843:7;5838:2;5833;5829;5825:11;5821:20;5818:33;5815:53;;;5864:1;5861;5854:12;5815:53;5920:2;5915;5911;5907:11;5902:2;5894:6;5890:15;5877:46;5965:1;5960:2;5955;5947:6;5943:15;5939:24;5932:35;5986:6;5976:16;;;;;;;4860:1138;;;;;;;:::o;6003:469::-;6064:3;6102:5;6096:12;6129:6;6124:3;6117:19;6155:4;6184:2;6179:3;6175:12;6168:19;;6221:2;6214:5;6210:14;6242:1;6252:195;6266:6;6263:1;6260:13;6252:195;;;6331:13;;-1:-1:-1;;;;;6327:39:11;6315:52;;6387:12;;;;6422:15;;;;6363:1;6281:9;6252:195;;6477:285;6672:2;6661:9;6654:21;6635:4;6692:64;6752:2;6741:9;6737:18;6729:6;6692:64;:::i;6767:489::-;7040:2;7029:9;7022:21;7003:4;7066:64;7126:2;7115:9;7111:18;7103:6;7066:64;:::i;:::-;7178:9;7170:6;7166:22;7161:2;7150:9;7146:18;7139:50;7206:44;7243:6;7235;7206:44;:::i;:::-;7198:52;6767:489;-1:-1:-1;;;;;6767:489:11:o;7261:260::-;7329:6;7337;7390:2;7378:9;7369:7;7365:23;7361:32;7358:52;;;7406:1;7403;7396:12;7358:52;7429:29;7448:9;7429:29;:::i;:::-;7419:39;;7477:38;7511:2;7500:9;7496:18;7477:38;:::i;7526:380::-;7605:1;7601:12;;;;7648;;;7669:61;;7723:4;7715:6;7711:17;7701:27;;7669:61;7776:2;7768:6;7765:14;7745:18;7742:38;7739:161;;;7822:10;7817:3;7813:20;7810:1;7803:31;7857:4;7854:1;7847:15;7885:4;7882:1;7875:15;7739:161;;7526:380;;;:::o;7911:341::-;8113:2;8095:21;;;8152:2;8132:18;;;8125:30;-1:-1:-1;;;8186:2:11;8171:18;;8164:47;8243:2;8228:18;;7911:341::o;8257:127::-;8318:10;8313:3;8309:20;8306:1;8299:31;8349:4;8346:1;8339:15;8373:4;8370:1;8363:15;8389:356;8591:2;8573:21;;;8610:18;;;8603:30;8669:34;8664:2;8649:18;;8642:62;8736:2;8721:18;;8389:356::o;8750:127::-;8811:10;8806:3;8802:20;8799:1;8792:31;8842:4;8839:1;8832:15;8866:4;8863:1;8856:15;8882:128;8922:3;8953:1;8949:6;8946:1;8943:13;8940:39;;;8959:18;;:::i;:::-;-1:-1:-1;8995:9:11;;8882:128::o;9826:470::-;10005:3;10043:6;10037:13;10059:53;10105:6;10100:3;10093:4;10085:6;10081:17;10059:53;:::i;:::-;10175:13;;10134:16;;;;10197:57;10175:13;10134:16;10231:4;10219:17;;10197:57;:::i;:::-;10270:20;;9826:470;-1:-1:-1;;;;9826:470:11:o;10708:168::-;10748:7;10814:1;10810;10806:6;10802:14;10799:1;10796:21;10791:1;10784:9;10777:17;10773:45;10770:71;;;10821:18;;:::i;:::-;-1:-1:-1;10861:9:11;;10708:168::o;10881:127::-;10942:10;10937:3;10933:20;10930:1;10923:31;10973:4;10970:1;10963:15;10997:4;10994:1;10987:15;11013:120;11053:1;11079;11069:35;;11084:18;;:::i;:::-;-1:-1:-1;11118:9:11;;11013:120::o;11138:489::-;-1:-1:-1;;;;;11407:15:11;;;11389:34;;11459:15;;11454:2;11439:18;;11432:43;11506:2;11491:18;;11484:34;;;11554:3;11549:2;11534:18;;11527:31;;;11332:4;;11575:46;;11601:19;;11593:6;11575:46;:::i;:::-;11567:54;11138:489;-1:-1:-1;;;;;;11138:489:11:o;11632:249::-;11701:6;11754:2;11742:9;11733:7;11729:23;11725:32;11722:52;;;11770:1;11767;11760:12;11722:52;11802:9;11796:16;11821:30;11845:5;11821:30;:::i;11886:135::-;11925:3;-1:-1:-1;;11946:17:11;;11943:43;;;11966:18;;:::i;:::-;-1:-1:-1;12013:1:11;12002:13;;11886:135::o;12026:125::-;12066:4;12094:1;12091;12088:8;12085:34;;;12099:18;;:::i;:::-;-1:-1:-1;12136:9:11;;12026:125::o;12156:112::-;12188:1;12214;12204:35;;12219:18;;:::i;:::-;-1:-1:-1;12253:9:11;;12156:112::o
Swarm Source
ipfs://1901ebd5987d183605b4950415d5310a8b7928aed08a0cb707d6850abe9bfbc0
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.