Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 6 from a total of 6 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Free Mint | 15244290 | 1335 days ago | IN | 0 ETH | 0.0014718 | ||||
| Free Mint | 15244030 | 1335 days ago | IN | 0 ETH | 0.00076174 | ||||
| Free Mint | 15244016 | 1335 days ago | IN | 0 ETH | 0.00083335 | ||||
| Free Mint | 15243996 | 1335 days ago | IN | 0 ETH | 0.00113661 | ||||
| Free Mint | 15243994 | 1335 days ago | IN | 0 ETH | 0.00104431 | ||||
| Free Mint | 15243757 | 1335 days ago | IN | 0 ETH | 0.00067867 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
wkwkwkwkwk_land
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-07-30
*/
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: erc721a/contracts/IERC721A.sol
// ERC721A Contracts v4.2.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721A.
*/
interface IERC721A {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* The caller cannot approve to their own address.
*/
error ApproveToCaller();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
* Cannot mint to the zero address.
*/
error MintToZeroAddress();
/**
* The quantity of tokens minted must be more than zero.
*/
error MintZeroQuantity();
/**
* The token does not exist.
*/
error OwnerQueryForNonexistentToken();
/**
* The caller must own the token or be an approved operator.
*/
error TransferCallerNotOwnerNorApproved();
/**
* The token must be owned by `from`.
*/
error TransferFromIncorrectOwner();
/**
* Cannot safely transfer to a contract that does not implement the
* ERC721Receiver interface.
*/
error TransferToNonERC721ReceiverImplementer();
/**
* Cannot transfer to the zero address.
*/
error TransferToZeroAddress();
/**
* The token does not exist.
*/
error URIQueryForNonexistentToken();
/**
* The `quantity` minted with ERC2309 exceeds the safety limit.
*/
error MintERC2309QuantityExceedsLimit();
/**
* The `extraData` cannot be set on an unintialized ownership slot.
*/
error OwnershipNotInitializedForExtraData();
// =============================================================
// STRUCTS
// =============================================================
struct TokenOwnership {
// The address of the owner.
address addr;
// Stores the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
// Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
uint24 extraData;
}
// =============================================================
// TOKEN COUNTERS
// =============================================================
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() external view returns (uint256);
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
// =============================================================
// IERC721
// =============================================================
/**
* @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,
bytes calldata data
) external;
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` 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 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 the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @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);
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @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);
// =============================================================
// IERC2309
// =============================================================
/**
* @dev Emitted when tokens in `fromTokenId` to `toTokenId`
* (inclusive) is transferred from `from` to `to`, as defined in the
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
*
* See {_mintERC2309} for more details.
*/
event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}
// File: erc721a/contracts/ERC721A.sol
// ERC721A Contracts v4.2.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721 token receiver.
*/
interface ERC721A__IERC721Receiver {
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
/**
* @title ERC721A
*
* @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
* Non-Fungible Token Standard, including the Metadata extension.
* Optimized for lower gas during batch mints.
*
* Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
* starting from `_startTokenId()`.
*
* Assumptions:
*
* - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
* - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is IERC721A {
// Reference type for token approval.
struct TokenApprovalRef {
address value;
}
// =============================================================
// CONSTANTS
// =============================================================
// Mask of an entry in packed address data.
uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
// The bit position of `numberMinted` in packed address data.
uint256 private constant _BITPOS_NUMBER_MINTED = 64;
// The bit position of `numberBurned` in packed address data.
uint256 private constant _BITPOS_NUMBER_BURNED = 128;
// The bit position of `aux` in packed address data.
uint256 private constant _BITPOS_AUX = 192;
// Mask of all 256 bits in packed address data except the 64 bits for `aux`.
uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
// The bit position of `startTimestamp` in packed ownership.
uint256 private constant _BITPOS_START_TIMESTAMP = 160;
// The bit mask of the `burned` bit in packed ownership.
uint256 private constant _BITMASK_BURNED = 1 << 224;
// The bit position of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;
// The bit mask of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;
// The bit position of `extraData` in packed ownership.
uint256 private constant _BITPOS_EXTRA_DATA = 232;
// Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;
// The mask of the lower 160 bits for addresses.
uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;
// The maximum `quantity` that can be minted with {_mintERC2309}.
// This limit is to prevent overflows on the address data entries.
// For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
// is required to cause an overflow, which is unrealistic.
uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;
// The `Transfer` event signature is given by:
// `keccak256(bytes("Transfer(address,address,uint256)"))`.
bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;
// =============================================================
// STORAGE
// =============================================================
// The next token ID to be minted.
uint256 private _currentIndex;
// The number of tokens burned.
uint256 private _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 {_packedOwnershipOf} implementation for details.
//
// Bits Layout:
// - [0..159] `addr`
// - [160..223] `startTimestamp`
// - [224] `burned`
// - [225] `nextInitialized`
// - [232..255] `extraData`
mapping(uint256 => uint256) private _packedOwnerships;
// Mapping owner address to address data.
//
// Bits Layout:
// - [0..63] `balance`
// - [64..127] `numberMinted`
// - [128..191] `numberBurned`
// - [192..255] `aux`
mapping(address => uint256) private _packedAddressData;
// Mapping from token ID to approved address.
mapping(uint256 => TokenApprovalRef) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
// =============================================================
// CONSTRUCTOR
// =============================================================
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
// =============================================================
// TOKEN COUNTING OPERATIONS
// =============================================================
/**
* @dev Returns the starting token ID.
* To change the starting token ID, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Returns the next token ID to be minted.
*/
function _nextTokenId() internal view virtual returns (uint256) {
return _currentIndex;
}
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() public view virtual override returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than `_currentIndex - _startTokenId()` times.
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* @dev Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view virtual returns (uint256) {
// Counter underflow is impossible as `_currentIndex` does not decrement,
// and it is initialized to `_startTokenId()`.
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev Returns the total number of tokens burned.
*/
function _totalBurned() internal view virtual returns (uint256) {
return _burnCounter;
}
// =============================================================
// ADDRESS DATA OPERATIONS
// =============================================================
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
}
/**
* Sets the auxiliary 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 virtual {
uint256 packed = _packedAddressData[owner];
uint256 auxCasted;
// Cast `aux` with assembly to avoid redundant masking.
assembly {
auxCasted := aux
}
packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
_packedAddressData[owner] = packed;
}
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
// The interface IDs are constants representing the first 4 bytes
// of the XOR of all function selectors in the interface.
// See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
// (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
return
interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
}
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the token collection symbol.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
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, _toString(tokenId))) : '';
}
/**
* @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, it can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
// =============================================================
// OWNERSHIPS OPERATIONS
// =============================================================
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
return address(uint160(_packedOwnershipOf(tokenId)));
}
/**
* @dev Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around over time.
*/
function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnershipOf(tokenId));
}
/**
* @dev Returns the unpacked `TokenOwnership` struct at `index`.
*/
function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnerships[index]);
}
/**
* @dev Initializes the ownership slot minted at `index` for efficiency purposes.
*/
function _initializeOwnershipAt(uint256 index) internal virtual {
if (_packedOwnerships[index] == 0) {
_packedOwnerships[index] = _packedOwnershipOf(index);
}
}
/**
* Returns the packed ownership data of `tokenId`.
*/
function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr)
if (curr < _currentIndex) {
uint256 packed = _packedOwnerships[curr];
// If not burned.
if (packed & _BITMASK_BURNED == 0) {
// Invariant:
// There will always be an initialized ownership slot
// (i.e. `ownership.addr != address(0) && ownership.burned == false`)
// before an unintialized ownership slot
// (i.e. `ownership.addr == address(0) && ownership.burned == false`)
// Hence, `curr` will not underflow.
//
// We can directly compare the packed value.
// If the address is zero, packed will be zero.
while (packed == 0) {
packed = _packedOwnerships[--curr];
}
return packed;
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev Returns the unpacked `TokenOwnership` struct from `packed`.
*/
function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
ownership.addr = address(uint160(packed));
ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
ownership.burned = packed & _BITMASK_BURNED != 0;
ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
}
/**
* @dev Packs ownership data into a single uint256.
*/
function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
}
}
/**
* @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
*/
function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
// For branchless setting of the `nextInitialized` flag.
assembly {
// `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
}
}
// =============================================================
// APPROVAL OPERATIONS
// =============================================================
/**
* @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) public virtual override {
address owner = ownerOf(tokenId);
if (_msgSenderERC721A() != owner)
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_tokenApprovals[tokenId].value = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId].value;
}
/**
* @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) public virtual override {
if (operator == _msgSenderERC721A()) revert ApproveToCaller();
_operatorApprovals[_msgSenderERC721A()][operator] = approved;
emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
}
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @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. See {_mint}.
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return
_startTokenId() <= tokenId &&
tokenId < _currentIndex && // If within bounds,
_packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
}
/**
* @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
*/
function _isSenderApprovedOrOwner(
address approvedAddress,
address owner,
address msgSender
) private pure returns (bool result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
msgSender := and(msgSender, _BITMASK_ADDRESS)
// `msgSender == owner || msgSender == approvedAddress`.
result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
}
}
/**
* @dev Returns the storage slot and value for the approved address of `tokenId`.
*/
function _getApprovedSlotAndAddress(uint256 tokenId)
private
view
returns (uint256 approvedAddressSlot, address approvedAddress)
{
TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
// The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
assembly {
approvedAddressSlot := tokenApproval.slot
approvedAddress := sload(approvedAddressSlot)
}
}
// =============================================================
// TRANSFER OPERATIONS
// =============================================================
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* 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
) public virtual override {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// 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 {
// We can directly increment and decrement the balances.
--_packedAddressData[from]; // Updates: `balance -= 1`.
++_packedAddressData[to]; // Updates: `balance += 1`.
// Updates:
// - `address` to the next owner.
// - `startTimestamp` to the timestamp of transfering.
// - `burned` to `false`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
to,
_BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @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 memory _data
) public virtual override {
transferFrom(from, to, tokenId);
if (to.code.length != 0)
if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @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 {}
/**
* @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
*
* `from` - Previous owner of the given token ID.
* `to` - Target address that will receive the token.
* `tokenId` - Token ID to be transferred.
* `_data` - Optional data to send along with the call.
*
* Returns whether the call correctly returned the expected magic value.
*/
function _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
bytes4 retval
) {
return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
// =============================================================
// MINT OPERATIONS
// =============================================================
/**
* @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 for each mint.
*/
function _mint(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// `balance` and `numberMinted` have a maximum limit of 2**64.
// `tokenId` has a maximum limit of 2**256.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
uint256 toMasked;
uint256 end = startTokenId + quantity;
// Use assembly to loop and emit the `Transfer` event for gas savings.
assembly {
// Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
toMasked := and(to, _BITMASK_ADDRESS)
// Emit the `Transfer` event.
log4(
0, // Start of data (0, since no data).
0, // End of data (0, since no data).
_TRANSFER_EVENT_SIGNATURE, // Signature.
0, // `address(0)`.
toMasked, // `to`.
startTokenId // `tokenId`.
)
for {
let tokenId := add(startTokenId, 1)
} iszero(eq(tokenId, end)) {
tokenId := add(tokenId, 1)
} {
// Emit the `Transfer` event. Similar to above.
log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
}
}
if (toMasked == 0) revert MintToZeroAddress();
_currentIndex = end;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* This function is intended for efficient minting only during contract creation.
*
* It emits only one {ConsecutiveTransfer} as defined in
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
* instead of a sequence of {Transfer} event(s).
*
* Calling this function outside of contract creation WILL make your contract
* non-compliant with the ERC721 standard.
* For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
* {ConsecutiveTransfer} event is only permissible during contract creation.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {ConsecutiveTransfer} event.
*/
function _mintERC2309(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are unrealistic due to the above check for `quantity` to be below the limit.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);
_currentIndex = startTokenId + quantity;
}
_afterTokenTransfers(address(0), to, startTokenId, 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.
*
* See {_mint}.
*
* Emits a {Transfer} event for each mint.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal virtual {
_mint(to, quantity);
unchecked {
if (to.code.length != 0) {
uint256 end = _currentIndex;
uint256 index = end - quantity;
do {
if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (index < end);
// Reentrancy protection.
if (_currentIndex != end) revert();
}
}
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
function _safeMint(address to, uint256 quantity) internal virtual {
_safeMint(to, quantity, '');
}
// =============================================================
// BURN OPERATIONS
// =============================================================
/**
* @dev 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 {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
address from = address(uint160(prevOwnershipPacked));
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
if (approvalCheck) {
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// 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 {
// Updates:
// - `balance -= 1`.
// - `numberBurned += 1`.
//
// We can directly decrement the balance, and increment the number burned.
// This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
_packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;
// Updates:
// - `address` to the last owner.
// - `startTimestamp` to the timestamp of burning.
// - `burned` to `true`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
from,
(_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
// =============================================================
// EXTRA DATA OPERATIONS
// =============================================================
/**
* @dev Directly sets the extra data for the ownership data `index`.
*/
function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
uint256 packed = _packedOwnerships[index];
if (packed == 0) revert OwnershipNotInitializedForExtraData();
uint256 extraDataCasted;
// Cast `extraData` with assembly to avoid redundant masking.
assembly {
extraDataCasted := extraData
}
packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
_packedOwnerships[index] = packed;
}
/**
* @dev Called during each token transfer to set the 24bit `extraData` field.
* Intended to be overridden by the cosumer contract.
*
* `previousExtraData` - the value of `extraData` before transfer.
*
* 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 _extraData(
address from,
address to,
uint24 previousExtraData
) internal view virtual returns (uint24) {}
/**
* @dev Returns the next extra data for the packed ownership data.
* The returned result is shifted into position.
*/
function _nextExtraData(
address from,
address to,
uint256 prevOwnershipPacked
) private view returns (uint256) {
uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
}
// =============================================================
// OTHER OPERATIONS
// =============================================================
/**
* @dev Returns the message sender (defaults to `msg.sender`).
*
* If you are writing GSN compatible contracts, you need to override this function.
*/
function _msgSenderERC721A() internal view virtual returns (address) {
return msg.sender;
}
/**
* @dev Converts a uint256 to its ASCII string decimal representation.
*/
function _toString(uint256 value) internal pure virtual returns (string memory ptr) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit),
// but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
// We will need 1 32-byte word to store the length,
// and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
ptr := add(mload(0x40), 128)
// Update the free memory pointer to allocate.
mstore(0x40, ptr)
// Cache the end of the memory to calculate the length later.
let end := ptr
// We write the string from the rightmost digit to the leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// Costs a bit more than early returning for the zero case,
// but cheaper in terms of deployment and overall runtime costs.
for {
// Initialize and perform the first pass without check.
let temp := value
// Move the pointer 1 byte leftwards to point to an empty character slot.
ptr := sub(ptr, 1)
// Write the character to the pointer.
// The ASCII index of the '0' character is 48.
mstore8(ptr, add(48, mod(temp, 10)))
temp := div(temp, 10)
} temp {
// Keep dividing `temp` until zero.
temp := div(temp, 10)
} {
// Body of the for loop.
ptr := sub(ptr, 1)
mstore8(ptr, add(48, mod(temp, 10)))
}
let length := sub(end, ptr)
// Move the pointer 32 bytes leftwards to make room for the length.
ptr := sub(ptr, 32)
// Store the length.
mstore(ptr, length)
}
}
}
// File: contracts/wkwkwkwkwk_land.sol
pragma solidity ^0.8.4;
contract wkwkwkwkwk_land is ERC721A, Ownable {
string public BASE_URI;
uint256 public MAX_SUPPLY = 3000;
uint256 public MAX_FREE_SUPPLY = 1500;
uint256 public MAX_QTY = 5;
uint256 public COST = 0.003 ether;
bool public PAUSED = true;
constructor(string memory _BASE_URI) ERC721A("wkwkwkwkwk land", "WKWK") {
SET_BASE_URI(_BASE_URI);
}
function _baseURI() internal view virtual override returns (string memory) {
return BASE_URI;
}
function mint(uint256 qty) public payable {
require(PAUSED == false, "paused");
require(totalSupply() + qty <= MAX_SUPPLY, "sold out");
require(qty > 0, "must be more than zero");
require(qty <= MAX_QTY, "max qty exceeded");
require(msg.value >= COST * qty, "insufficient ether");
_mint(msg.sender, qty);
}
function freeMint(uint256 qty) external {
require(PAUSED == true, "paused");
require(totalSupply() + qty <= MAX_FREE_SUPPLY, "sold out");
require(qty > 0, "must be more than zero");
require(qty <= MAX_QTY, "max qty exceeded");
_mint(msg.sender, qty);
}
function SET_BASE_URI(string memory _BASE_URI) public onlyOwner {
BASE_URI = _BASE_URI;
}
function SET_MAX_QTY(uint256 _MAX_QTY) public onlyOwner {
MAX_QTY = _MAX_QTY;
}
function SET_COST(uint256 _COST) public onlyOwner {
COST = _COST;
}
function PAUSE() public onlyOwner {
PAUSED = !PAUSED;
}
function withdraw() public onlyOwner {
uint balance = address(this).balance;
payable(msg.sender).transfer(balance);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_BASE_URI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"PAUSED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_BASE_URI","type":"string"}],"name":"SET_BASE_URI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_COST","type":"uint256"}],"name":"SET_COST","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_QTY","type":"uint256"}],"name":"SET_MAX_QTY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052610bb8600a556105dc600b556005600c55660aa87bee538000600d556001600e60006101000a81548160ff0219169083151502179055503480156200004857600080fd5b50604051620032083803806200320883398181016040528101906200006e919062000444565b6040518060400160405280600f81526020017f776b776b776b776b776b206c616e6400000000000000000000000000000000008152506040518060400160405280600481526020017f574b574b000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f292919062000316565b5080600390805190602001906200010b92919062000316565b506200011c6200015c60201b60201c565b600081905550505062000144620001386200016160201b60201c565b6200016960201b60201c565b62000155816200022f60201b60201c565b506200069c565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200023f6200025b60201b60201c565b80600990805190602001906200025792919062000316565b5050565b6200026b6200016160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000291620002ec60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e190620004bc565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003249062000584565b90600052602060002090601f01602090048101928262000348576000855562000394565b82601f106200036357805160ff191683800117855562000394565b8280016001018555821562000394579182015b828111156200039357825182559160200191906001019062000376565b5b509050620003a39190620003a7565b5090565b5b80821115620003c2576000816000905550600101620003a8565b5090565b6000620003dd620003d78462000507565b620004de565b905082815260208101848484011115620003fc57620003fb62000653565b5b620004098482856200054e565b509392505050565b600082601f8301126200042957620004286200064e565b5b81516200043b848260208601620003c6565b91505092915050565b6000602082840312156200045d576200045c6200065d565b5b600082015167ffffffffffffffff8111156200047e576200047d62000658565b5b6200048c8482850162000411565b91505092915050565b6000620004a46020836200053d565b9150620004b18262000673565b602082019050919050565b60006020820190508181036000830152620004d78162000495565b9050919050565b6000620004ea620004fd565b9050620004f88282620005ba565b919050565b6000604051905090565b600067ffffffffffffffff8211156200052557620005246200061f565b5b620005308262000662565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200056e57808201518184015260208101905062000551565b838111156200057e576000848401525b50505050565b600060028204905060018216806200059d57607f821691505b60208210811415620005b457620005b3620005f0565b5b50919050565b620005c58262000662565b810181811067ffffffffffffffff82111715620005e757620005e66200061f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612b5c80620006ac6000396000f3fe6080604052600436106101cd5760003560e01c80637c928fe9116100f7578063ba77886511610095578063dbddb26a11610064578063dbddb26a14610641578063e65fad971461066c578063e985e9c514610683578063f2fde38b146106c0576101cd565b8063ba77886514610587578063bf8fbbd2146105b0578063c87b56dd146105db578063dbac88b214610618576101cd565b8063a0712d68116100d1578063a0712d68146104ee578063a22cb4651461050a578063a9aad58c14610533578063b88d4fde1461055e576101cd565b80637c928fe91461046f5780638da5cb5b1461049857806395d89b41146104c3576101cd565b806323b872dd1161016f5780636352211e1161013e5780636352211e146103b557806370a08231146103f2578063715018a61461042f578063750969f114610446576101cd565b806323b872dd1461032157806332cb6b0c1461034a5780633ccfd60b1461037557806342842e0e1461038c576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a257806318160ddd146102cb5780631c96cae9146102f6576101cd565b806301ffc9a7146101d257806302ddb65b1461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906121e8565b6106e9565b6040516102069190612508565b60405180910390f35b34801561021b57600080fd5b5061022461077b565b6040516102319190612625565b60405180910390f35b34801561024657600080fd5b5061024f610781565b60405161025c9190612523565b60405180910390f35b34801561027157600080fd5b5061028c6004803603810190610287919061228b565b610813565b60405161029991906124a1565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c491906121a8565b610892565b005b3480156102d757600080fd5b506102e06109d6565b6040516102ed9190612625565b60405180910390f35b34801561030257600080fd5b5061030b6109ed565b6040516103189190612625565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612092565b6109f3565b005b34801561035657600080fd5b5061035f610d18565b60405161036c9190612625565b60405180910390f35b34801561038157600080fd5b5061038a610d1e565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612092565b610d75565b005b3480156103c157600080fd5b506103dc60048036038101906103d7919061228b565b610d95565b6040516103e991906124a1565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612025565b610da7565b6040516104269190612625565b60405180910390f35b34801561043b57600080fd5b50610444610e60565b005b34801561045257600080fd5b5061046d6004803603810190610468919061228b565b610e74565b005b34801561047b57600080fd5b506104966004803603810190610491919061228b565b610e86565b005b3480156104a457600080fd5b506104ad610fc8565b6040516104ba91906124a1565b60405180910390f35b3480156104cf57600080fd5b506104d8610ff2565b6040516104e59190612523565b60405180910390f35b6105086004803603810190610503919061228b565b611084565b005b34801561051657600080fd5b50610531600480360381019061052c9190612168565b611216565b005b34801561053f57600080fd5b5061054861138e565b6040516105559190612508565b60405180910390f35b34801561056a57600080fd5b50610585600480360381019061058091906120e5565b6113a1565b005b34801561059357600080fd5b506105ae60048036038101906105a9919061228b565b611414565b005b3480156105bc57600080fd5b506105c5611426565b6040516105d29190612625565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd919061228b565b61142c565b60405161060f9190612523565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612242565b6114cb565b005b34801561064d57600080fd5b506106566114ed565b6040516106639190612523565b60405180910390f35b34801561067857600080fd5b5061068161157b565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190612052565b6115af565b6040516106b79190612508565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190612025565b611643565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107745750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b60606002805461079090612870565b80601f01602080910402602001604051908101604052809291908181526020018280546107bc90612870565b80156108095780601f106107de57610100808354040283529160200191610809565b820191906000526020600020905b8154815290600101906020018083116107ec57829003601f168201915b5050505050905090565b600061081e826116c7565b610854576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089d82610d95565b90508073ffffffffffffffffffffffffffffffffffffffff166108be611726565b73ffffffffffffffffffffffffffffffffffffffff1614610921576108ea816108e5611726565b6115af565b610920576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109e061172e565b6001546000540303905090565b600c5481565b60006109fe82611733565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a65576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a7184611801565b91509150610a878187610a82611726565b611828565b610ad357610a9c86610a97611726565b6115af565b610ad2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b3a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b47868686600161186c565b8015610b5257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2085610bfc888887611872565b7c02000000000000000000000000000000000000000000000000000000001761189a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ca8576000600185019050600060046000838152602001908152602001600020541415610ca6576000548114610ca5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d1086868660016118c5565b505050505050565b600a5481565b610d266118cb565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d71573d6000803e3d6000fd5b5050565b610d90838383604051806020016040528060008152506113a1565b505050565b6000610da082611733565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e686118cb565b610e726000611949565b565b610e7c6118cb565b80600d8190555050565b60011515600e60009054906101000a900460ff16151514610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390612605565b60405180910390fd5b600b5481610ee86109d6565b610ef2919061270a565b1115610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90612585565b60405180910390fd5b60008111610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d906125e5565b60405180910390fd5b600c54811115610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290612565565b60405180910390fd5b610fc53382611a0f565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461100190612870565b80601f016020809104026020016040519081016040528092919081815260200182805461102d90612870565b801561107a5780601f1061104f5761010080835404028352916020019161107a565b820191906000526020600020905b81548152906001019060200180831161105d57829003601f168201915b5050505050905090565b60001515600e60009054906101000a900460ff161515146110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190612605565b60405180910390fd5b600a54816110e66109d6565b6110f0919061270a565b1115611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890612585565b60405180910390fd5b60008111611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b906125e5565b60405180910390fd5b600c548111156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090612565565b60405180910390fd5b80600d546111c79190612760565b341015611209576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611200906125a5565b60405180910390fd5b6112133382611a0f565b50565b61121e611726565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611283576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611290611726565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133d611726565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113829190612508565b60405180910390a35050565b600e60009054906101000a900460ff1681565b6113ac8484846109f3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461140e576113d784848484611bcc565b61140d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61141c6118cb565b80600c8190555050565b600d5481565b6060611437826116c7565b61146d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611477611d2c565b905060008151141561149857604051806020016040528060008152506114c3565b806114a284611dbe565b6040516020016114b392919061247d565b6040516020818303038152906040525b915050919050565b6114d36118cb565b80600990805190602001906114e9929190611e39565b5050565b600980546114fa90612870565b80601f016020809104026020016040519081016040528092919081815260200182805461152690612870565b80156115735780601f1061154857610100808354040283529160200191611573565b820191906000526020600020905b81548152906001019060200180831161155657829003601f168201915b505050505081565b6115836118cb565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61164b6118cb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b290612545565b60405180910390fd5b6116c481611949565b50565b6000816116d261172e565b111580156116e1575060005482105b801561171f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061174261172e565b116117ca576000548110156117c95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117c7575b60008114156117bd576004600083600190039350838152602001908152602001600020549050611792565b80925050506117fc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611889868684611e18565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6118d3611e21565b73ffffffffffffffffffffffffffffffffffffffff166118f1610fc8565b73ffffffffffffffffffffffffffffffffffffffff1614611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e906125c5565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000821415611a50576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a5d600084838561186c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ad483611ac56000866000611872565b611ace85611e29565b1761189a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611b7557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611b3a565b506000821415611bb1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611bc760008483856118c5565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bf2611726565b8786866040518563ffffffff1660e01b8152600401611c1494939291906124bc565b602060405180830381600087803b158015611c2e57600080fd5b505af1925050508015611c5f57506040513d601f19601f82011682018060405250810190611c5c9190612215565b60015b611cd9573d8060008114611c8f576040519150601f19603f3d011682016040523d82523d6000602084013e611c94565b606091505b50600081511415611cd1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611d3b90612870565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6790612870565b8015611db45780601f10611d8957610100808354040283529160200191611db4565b820191906000526020600020905b815481529060010190602001808311611d9757829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611e0457600183039250600a81066030018353600a81049050611de4565b508181036020830392508083525050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b828054611e4590612870565b90600052602060002090601f016020900481019282611e675760008555611eae565b82601f10611e8057805160ff1916838001178555611eae565b82800160010185558215611eae579182015b82811115611ead578251825591602001919060010190611e92565b5b509050611ebb9190611ebf565b5090565b5b80821115611ed8576000816000905550600101611ec0565b5090565b6000611eef611eea84612665565b612640565b905082815260208101848484011115611f0b57611f0a612965565b5b611f1684828561282e565b509392505050565b6000611f31611f2c84612696565b612640565b905082815260208101848484011115611f4d57611f4c612965565b5b611f5884828561282e565b509392505050565b600081359050611f6f81612aca565b92915050565b600081359050611f8481612ae1565b92915050565b600081359050611f9981612af8565b92915050565b600081519050611fae81612af8565b92915050565b600082601f830112611fc957611fc8612960565b5b8135611fd9848260208601611edc565b91505092915050565b600082601f830112611ff757611ff6612960565b5b8135612007848260208601611f1e565b91505092915050565b60008135905061201f81612b0f565b92915050565b60006020828403121561203b5761203a61296f565b5b600061204984828501611f60565b91505092915050565b600080604083850312156120695761206861296f565b5b600061207785828601611f60565b925050602061208885828601611f60565b9150509250929050565b6000806000606084860312156120ab576120aa61296f565b5b60006120b986828701611f60565b93505060206120ca86828701611f60565b92505060406120db86828701612010565b9150509250925092565b600080600080608085870312156120ff576120fe61296f565b5b600061210d87828801611f60565b945050602061211e87828801611f60565b935050604061212f87828801612010565b925050606085013567ffffffffffffffff8111156121505761214f61296a565b5b61215c87828801611fb4565b91505092959194509250565b6000806040838503121561217f5761217e61296f565b5b600061218d85828601611f60565b925050602061219e85828601611f75565b9150509250929050565b600080604083850312156121bf576121be61296f565b5b60006121cd85828601611f60565b92505060206121de85828601612010565b9150509250929050565b6000602082840312156121fe576121fd61296f565b5b600061220c84828501611f8a565b91505092915050565b60006020828403121561222b5761222a61296f565b5b600061223984828501611f9f565b91505092915050565b6000602082840312156122585761225761296f565b5b600082013567ffffffffffffffff8111156122765761227561296a565b5b61228284828501611fe2565b91505092915050565b6000602082840312156122a1576122a061296f565b5b60006122af84828501612010565b91505092915050565b6122c1816127ba565b82525050565b6122d0816127cc565b82525050565b60006122e1826126c7565b6122eb81856126dd565b93506122fb81856020860161283d565b61230481612974565b840191505092915050565b600061231a826126d2565b61232481856126ee565b935061233481856020860161283d565b61233d81612974565b840191505092915050565b6000612353826126d2565b61235d81856126ff565b935061236d81856020860161283d565b80840191505092915050565b60006123866026836126ee565b915061239182612985565b604082019050919050565b60006123a96010836126ee565b91506123b4826129d4565b602082019050919050565b60006123cc6008836126ee565b91506123d7826129fd565b602082019050919050565b60006123ef6012836126ee565b91506123fa82612a26565b602082019050919050565b60006124126020836126ee565b915061241d82612a4f565b602082019050919050565b60006124356016836126ee565b915061244082612a78565b602082019050919050565b60006124586006836126ee565b915061246382612aa1565b602082019050919050565b61247781612824565b82525050565b60006124898285612348565b91506124958284612348565b91508190509392505050565b60006020820190506124b660008301846122b8565b92915050565b60006080820190506124d160008301876122b8565b6124de60208301866122b8565b6124eb604083018561246e565b81810360608301526124fd81846122d6565b905095945050505050565b600060208201905061251d60008301846122c7565b92915050565b6000602082019050818103600083015261253d818461230f565b905092915050565b6000602082019050818103600083015261255e81612379565b9050919050565b6000602082019050818103600083015261257e8161239c565b9050919050565b6000602082019050818103600083015261259e816123bf565b9050919050565b600060208201905081810360008301526125be816123e2565b9050919050565b600060208201905081810360008301526125de81612405565b9050919050565b600060208201905081810360008301526125fe81612428565b9050919050565b6000602082019050818103600083015261261e8161244b565b9050919050565b600060208201905061263a600083018461246e565b92915050565b600061264a61265b565b905061265682826128a2565b919050565b6000604051905090565b600067ffffffffffffffff8211156126805761267f612931565b5b61268982612974565b9050602081019050919050565b600067ffffffffffffffff8211156126b1576126b0612931565b5b6126ba82612974565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061271582612824565b915061272083612824565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612755576127546128d3565b5b828201905092915050565b600061276b82612824565b915061277683612824565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127af576127ae6128d3565b5b828202905092915050565b60006127c582612804565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561285b578082015181840152602081019050612840565b8381111561286a576000848401525b50505050565b6000600282049050600182168061288857607f821691505b6020821081141561289c5761289b612902565b5b50919050565b6128ab82612974565b810181811067ffffffffffffffff821117156128ca576128c9612931565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d61782071747920657863656564656400000000000000000000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f696e73756666696369656e742065746865720000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6d757374206265206d6f7265207468616e207a65726f00000000000000000000600082015250565b7f7061757365640000000000000000000000000000000000000000000000000000600082015250565b612ad3816127ba565b8114612ade57600080fd5b50565b612aea816127cc565b8114612af557600080fd5b50565b612b01816127d8565b8114612b0c57600080fd5b50565b612b1881612824565b8114612b2357600080fd5b5056fea26469706673582212208c06b088ad9d8cf3326c636c8082e531545670de1b4c3e66b782e527558b121664736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569626536706b796165657a7264357267616f71747677356a6c6373637669637272757a6778717933796a6a656f6577627168766a752f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80637c928fe9116100f7578063ba77886511610095578063dbddb26a11610064578063dbddb26a14610641578063e65fad971461066c578063e985e9c514610683578063f2fde38b146106c0576101cd565b8063ba77886514610587578063bf8fbbd2146105b0578063c87b56dd146105db578063dbac88b214610618576101cd565b8063a0712d68116100d1578063a0712d68146104ee578063a22cb4651461050a578063a9aad58c14610533578063b88d4fde1461055e576101cd565b80637c928fe91461046f5780638da5cb5b1461049857806395d89b41146104c3576101cd565b806323b872dd1161016f5780636352211e1161013e5780636352211e146103b557806370a08231146103f2578063715018a61461042f578063750969f114610446576101cd565b806323b872dd1461032157806332cb6b0c1461034a5780633ccfd60b1461037557806342842e0e1461038c576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a257806318160ddd146102cb5780631c96cae9146102f6576101cd565b806301ffc9a7146101d257806302ddb65b1461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906121e8565b6106e9565b6040516102069190612508565b60405180910390f35b34801561021b57600080fd5b5061022461077b565b6040516102319190612625565b60405180910390f35b34801561024657600080fd5b5061024f610781565b60405161025c9190612523565b60405180910390f35b34801561027157600080fd5b5061028c6004803603810190610287919061228b565b610813565b60405161029991906124a1565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c491906121a8565b610892565b005b3480156102d757600080fd5b506102e06109d6565b6040516102ed9190612625565b60405180910390f35b34801561030257600080fd5b5061030b6109ed565b6040516103189190612625565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612092565b6109f3565b005b34801561035657600080fd5b5061035f610d18565b60405161036c9190612625565b60405180910390f35b34801561038157600080fd5b5061038a610d1e565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612092565b610d75565b005b3480156103c157600080fd5b506103dc60048036038101906103d7919061228b565b610d95565b6040516103e991906124a1565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612025565b610da7565b6040516104269190612625565b60405180910390f35b34801561043b57600080fd5b50610444610e60565b005b34801561045257600080fd5b5061046d6004803603810190610468919061228b565b610e74565b005b34801561047b57600080fd5b506104966004803603810190610491919061228b565b610e86565b005b3480156104a457600080fd5b506104ad610fc8565b6040516104ba91906124a1565b60405180910390f35b3480156104cf57600080fd5b506104d8610ff2565b6040516104e59190612523565b60405180910390f35b6105086004803603810190610503919061228b565b611084565b005b34801561051657600080fd5b50610531600480360381019061052c9190612168565b611216565b005b34801561053f57600080fd5b5061054861138e565b6040516105559190612508565b60405180910390f35b34801561056a57600080fd5b50610585600480360381019061058091906120e5565b6113a1565b005b34801561059357600080fd5b506105ae60048036038101906105a9919061228b565b611414565b005b3480156105bc57600080fd5b506105c5611426565b6040516105d29190612625565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd919061228b565b61142c565b60405161060f9190612523565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612242565b6114cb565b005b34801561064d57600080fd5b506106566114ed565b6040516106639190612523565b60405180910390f35b34801561067857600080fd5b5061068161157b565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190612052565b6115af565b6040516106b79190612508565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190612025565b611643565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107745750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b60606002805461079090612870565b80601f01602080910402602001604051908101604052809291908181526020018280546107bc90612870565b80156108095780601f106107de57610100808354040283529160200191610809565b820191906000526020600020905b8154815290600101906020018083116107ec57829003601f168201915b5050505050905090565b600061081e826116c7565b610854576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089d82610d95565b90508073ffffffffffffffffffffffffffffffffffffffff166108be611726565b73ffffffffffffffffffffffffffffffffffffffff1614610921576108ea816108e5611726565b6115af565b610920576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109e061172e565b6001546000540303905090565b600c5481565b60006109fe82611733565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a65576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a7184611801565b91509150610a878187610a82611726565b611828565b610ad357610a9c86610a97611726565b6115af565b610ad2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b3a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b47868686600161186c565b8015610b5257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2085610bfc888887611872565b7c02000000000000000000000000000000000000000000000000000000001761189a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ca8576000600185019050600060046000838152602001908152602001600020541415610ca6576000548114610ca5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d1086868660016118c5565b505050505050565b600a5481565b610d266118cb565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d71573d6000803e3d6000fd5b5050565b610d90838383604051806020016040528060008152506113a1565b505050565b6000610da082611733565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e686118cb565b610e726000611949565b565b610e7c6118cb565b80600d8190555050565b60011515600e60009054906101000a900460ff16151514610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390612605565b60405180910390fd5b600b5481610ee86109d6565b610ef2919061270a565b1115610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90612585565b60405180910390fd5b60008111610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d906125e5565b60405180910390fd5b600c54811115610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290612565565b60405180910390fd5b610fc53382611a0f565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461100190612870565b80601f016020809104026020016040519081016040528092919081815260200182805461102d90612870565b801561107a5780601f1061104f5761010080835404028352916020019161107a565b820191906000526020600020905b81548152906001019060200180831161105d57829003601f168201915b5050505050905090565b60001515600e60009054906101000a900460ff161515146110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190612605565b60405180910390fd5b600a54816110e66109d6565b6110f0919061270a565b1115611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890612585565b60405180910390fd5b60008111611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b906125e5565b60405180910390fd5b600c548111156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090612565565b60405180910390fd5b80600d546111c79190612760565b341015611209576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611200906125a5565b60405180910390fd5b6112133382611a0f565b50565b61121e611726565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611283576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611290611726565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133d611726565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113829190612508565b60405180910390a35050565b600e60009054906101000a900460ff1681565b6113ac8484846109f3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461140e576113d784848484611bcc565b61140d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61141c6118cb565b80600c8190555050565b600d5481565b6060611437826116c7565b61146d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611477611d2c565b905060008151141561149857604051806020016040528060008152506114c3565b806114a284611dbe565b6040516020016114b392919061247d565b6040516020818303038152906040525b915050919050565b6114d36118cb565b80600990805190602001906114e9929190611e39565b5050565b600980546114fa90612870565b80601f016020809104026020016040519081016040528092919081815260200182805461152690612870565b80156115735780601f1061154857610100808354040283529160200191611573565b820191906000526020600020905b81548152906001019060200180831161155657829003601f168201915b505050505081565b6115836118cb565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61164b6118cb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b290612545565b60405180910390fd5b6116c481611949565b50565b6000816116d261172e565b111580156116e1575060005482105b801561171f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061174261172e565b116117ca576000548110156117c95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117c7575b60008114156117bd576004600083600190039350838152602001908152602001600020549050611792565b80925050506117fc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611889868684611e18565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6118d3611e21565b73ffffffffffffffffffffffffffffffffffffffff166118f1610fc8565b73ffffffffffffffffffffffffffffffffffffffff1614611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e906125c5565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000821415611a50576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a5d600084838561186c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ad483611ac56000866000611872565b611ace85611e29565b1761189a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611b7557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611b3a565b506000821415611bb1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611bc760008483856118c5565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bf2611726565b8786866040518563ffffffff1660e01b8152600401611c1494939291906124bc565b602060405180830381600087803b158015611c2e57600080fd5b505af1925050508015611c5f57506040513d601f19601f82011682018060405250810190611c5c9190612215565b60015b611cd9573d8060008114611c8f576040519150601f19603f3d011682016040523d82523d6000602084013e611c94565b606091505b50600081511415611cd1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611d3b90612870565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6790612870565b8015611db45780601f10611d8957610100808354040283529160200191611db4565b820191906000526020600020905b815481529060010190602001808311611d9757829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611e0457600183039250600a81066030018353600a81049050611de4565b508181036020830392508083525050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b828054611e4590612870565b90600052602060002090601f016020900481019282611e675760008555611eae565b82601f10611e8057805160ff1916838001178555611eae565b82800160010185558215611eae579182015b82811115611ead578251825591602001919060010190611e92565b5b509050611ebb9190611ebf565b5090565b5b80821115611ed8576000816000905550600101611ec0565b5090565b6000611eef611eea84612665565b612640565b905082815260208101848484011115611f0b57611f0a612965565b5b611f1684828561282e565b509392505050565b6000611f31611f2c84612696565b612640565b905082815260208101848484011115611f4d57611f4c612965565b5b611f5884828561282e565b509392505050565b600081359050611f6f81612aca565b92915050565b600081359050611f8481612ae1565b92915050565b600081359050611f9981612af8565b92915050565b600081519050611fae81612af8565b92915050565b600082601f830112611fc957611fc8612960565b5b8135611fd9848260208601611edc565b91505092915050565b600082601f830112611ff757611ff6612960565b5b8135612007848260208601611f1e565b91505092915050565b60008135905061201f81612b0f565b92915050565b60006020828403121561203b5761203a61296f565b5b600061204984828501611f60565b91505092915050565b600080604083850312156120695761206861296f565b5b600061207785828601611f60565b925050602061208885828601611f60565b9150509250929050565b6000806000606084860312156120ab576120aa61296f565b5b60006120b986828701611f60565b93505060206120ca86828701611f60565b92505060406120db86828701612010565b9150509250925092565b600080600080608085870312156120ff576120fe61296f565b5b600061210d87828801611f60565b945050602061211e87828801611f60565b935050604061212f87828801612010565b925050606085013567ffffffffffffffff8111156121505761214f61296a565b5b61215c87828801611fb4565b91505092959194509250565b6000806040838503121561217f5761217e61296f565b5b600061218d85828601611f60565b925050602061219e85828601611f75565b9150509250929050565b600080604083850312156121bf576121be61296f565b5b60006121cd85828601611f60565b92505060206121de85828601612010565b9150509250929050565b6000602082840312156121fe576121fd61296f565b5b600061220c84828501611f8a565b91505092915050565b60006020828403121561222b5761222a61296f565b5b600061223984828501611f9f565b91505092915050565b6000602082840312156122585761225761296f565b5b600082013567ffffffffffffffff8111156122765761227561296a565b5b61228284828501611fe2565b91505092915050565b6000602082840312156122a1576122a061296f565b5b60006122af84828501612010565b91505092915050565b6122c1816127ba565b82525050565b6122d0816127cc565b82525050565b60006122e1826126c7565b6122eb81856126dd565b93506122fb81856020860161283d565b61230481612974565b840191505092915050565b600061231a826126d2565b61232481856126ee565b935061233481856020860161283d565b61233d81612974565b840191505092915050565b6000612353826126d2565b61235d81856126ff565b935061236d81856020860161283d565b80840191505092915050565b60006123866026836126ee565b915061239182612985565b604082019050919050565b60006123a96010836126ee565b91506123b4826129d4565b602082019050919050565b60006123cc6008836126ee565b91506123d7826129fd565b602082019050919050565b60006123ef6012836126ee565b91506123fa82612a26565b602082019050919050565b60006124126020836126ee565b915061241d82612a4f565b602082019050919050565b60006124356016836126ee565b915061244082612a78565b602082019050919050565b60006124586006836126ee565b915061246382612aa1565b602082019050919050565b61247781612824565b82525050565b60006124898285612348565b91506124958284612348565b91508190509392505050565b60006020820190506124b660008301846122b8565b92915050565b60006080820190506124d160008301876122b8565b6124de60208301866122b8565b6124eb604083018561246e565b81810360608301526124fd81846122d6565b905095945050505050565b600060208201905061251d60008301846122c7565b92915050565b6000602082019050818103600083015261253d818461230f565b905092915050565b6000602082019050818103600083015261255e81612379565b9050919050565b6000602082019050818103600083015261257e8161239c565b9050919050565b6000602082019050818103600083015261259e816123bf565b9050919050565b600060208201905081810360008301526125be816123e2565b9050919050565b600060208201905081810360008301526125de81612405565b9050919050565b600060208201905081810360008301526125fe81612428565b9050919050565b6000602082019050818103600083015261261e8161244b565b9050919050565b600060208201905061263a600083018461246e565b92915050565b600061264a61265b565b905061265682826128a2565b919050565b6000604051905090565b600067ffffffffffffffff8211156126805761267f612931565b5b61268982612974565b9050602081019050919050565b600067ffffffffffffffff8211156126b1576126b0612931565b5b6126ba82612974565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061271582612824565b915061272083612824565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612755576127546128d3565b5b828201905092915050565b600061276b82612824565b915061277683612824565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127af576127ae6128d3565b5b828202905092915050565b60006127c582612804565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561285b578082015181840152602081019050612840565b8381111561286a576000848401525b50505050565b6000600282049050600182168061288857607f821691505b6020821081141561289c5761289b612902565b5b50919050565b6128ab82612974565b810181811067ffffffffffffffff821117156128ca576128c9612931565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d61782071747920657863656564656400000000000000000000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f696e73756666696369656e742065746865720000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6d757374206265206d6f7265207468616e207a65726f00000000000000000000600082015250565b7f7061757365640000000000000000000000000000000000000000000000000000600082015250565b612ad3816127ba565b8114612ade57600080fd5b50565b612aea816127cc565b8114612af557600080fd5b50565b612b01816127d8565b8114612b0c57600080fd5b50565b612b1881612824565b8114612b2357600080fd5b5056fea26469706673582212208c06b088ad9d8cf3326c636c8082e531545670de1b4c3e66b782e527558b121664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569626536706b796165657a7264357267616f71747677356a6c6373637669637272757a6778717933796a6a656f6577627168766a752f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _BASE_URI (string): ipfs://bafybeibe6pkyaeezrd5rgaoqtvw5jlcscvicrruzgxqy3yjjeoewbqhvju/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f62616679626569626536706b796165657a7264357267616f71
Arg [3] : 747677356a6c6373637669637272757a6778717933796a6a656f657762716876
Arg [4] : 6a752f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
54915:1714:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22028:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55035:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22930:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29413:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28854:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18681:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55079:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33120:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54996:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56486:140;;;;;;;;;;;;;:::i;:::-;;36033:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24323:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19865:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;56320:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55798:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23106:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55425:365;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29971:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55152:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36816:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56219:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55112:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23316:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56108:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54967:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56409:69;;;;;;;;;;;;;:::i;:::-;;30436:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22028:639;22113:4;22452:10;22437:25;;:11;:25;;;;:102;;;;22529:10;22514:25;;:11;:25;;;;22437:102;:179;;;;22606:10;22591:25;;:11;:25;;;;22437:179;22417:199;;22028:639;;;:::o;55035:37::-;;;;:::o;22930:100::-;22984:13;23017:5;23010:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22930:100;:::o;29413:218::-;29489:7;29514:16;29522:7;29514;:16::i;:::-;29509:64;;29539:34;;;;;;;;;;;;;;29509:64;29593:15;:24;29609:7;29593:24;;;;;;;;;;;:30;;;;;;;;;;;;29586:37;;29413:218;;;:::o;28854:400::-;28935:13;28951:16;28959:7;28951;:16::i;:::-;28935:32;;29007:5;28984:28;;:19;:17;:19::i;:::-;:28;;;28980:175;;29032:44;29049:5;29056:19;:17;:19::i;:::-;29032:16;:44::i;:::-;29027:128;;29104:35;;;;;;;;;;;;;;29027:128;28980:175;29200:2;29167:15;:24;29183:7;29167:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29238:7;29234:2;29218:28;;29227:5;29218:28;;;;;;;;;;;;28924:330;28854:400;;:::o;18681:323::-;18742:7;18970:15;:13;:15::i;:::-;18955:12;;18939:13;;:28;:46;18932:53;;18681:323;:::o;55079:26::-;;;;:::o;33120:2817::-;33254:27;33284;33303:7;33284:18;:27::i;:::-;33254:57;;33369:4;33328:45;;33344:19;33328:45;;;33324:86;;33382:28;;;;;;;;;;;;;;33324:86;33424:27;33453:23;33480:35;33507:7;33480:26;:35::i;:::-;33423:92;;;;33615:68;33640:15;33657:4;33663:19;:17;:19::i;:::-;33615:24;:68::i;:::-;33610:180;;33703:43;33720:4;33726:19;:17;:19::i;:::-;33703:16;:43::i;:::-;33698:92;;33755:35;;;;;;;;;;;;;;33698:92;33610:180;33821:1;33807:16;;:2;:16;;;33803:52;;;33832:23;;;;;;;;;;;;;;33803:52;33868:43;33890:4;33896:2;33900:7;33909:1;33868:21;:43::i;:::-;34004:15;34001:160;;;34144:1;34123:19;34116:30;34001:160;34541:18;:24;34560:4;34541:24;;;;;;;;;;;;;;;;34539:26;;;;;;;;;;;;34610:18;:22;34629:2;34610:22;;;;;;;;;;;;;;;;34608:24;;;;;;;;;;;34932:146;34969:2;35018:45;35033:4;35039:2;35043:19;35018:14;:45::i;:::-;15080:8;34990:73;34932:18;:146::i;:::-;34903:17;:26;34921:7;34903:26;;;;;;;;;;;:175;;;;35249:1;15080:8;35198:19;:47;:52;35194:627;;;35271:19;35303:1;35293:7;:11;35271:33;;35460:1;35426:17;:30;35444:11;35426:30;;;;;;;;;;;;:35;35422:384;;;35564:13;;35549:11;:28;35545:242;;35744:19;35711:17;:30;35729:11;35711:30;;;;;;;;;;;:52;;;;35545:242;35422:384;35252:569;35194:627;35868:7;35864:2;35849:27;;35858:4;35849:27;;;;;;;;;;;;35887:42;35908:4;35914:2;35918:7;35927:1;35887:20;:42::i;:::-;33243:2694;;;33120:2817;;;:::o;54996:32::-;;;;:::o;56486:140::-;2014:13;:11;:13::i;:::-;56534:12:::1;56549:21;56534:36;;56589:10;56581:28;;:37;56610:7;56581:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;56523:103;56486:140::o:0;36033:185::-;36171:39;36188:4;36194:2;36198:7;36171:39;;;;;;;;;;;;:16;:39::i;:::-;36033:185;;;:::o;24323:152::-;24395:7;24438:27;24457:7;24438:18;:27::i;:::-;24415:52;;24323:152;;;:::o;19865:233::-;19937:7;19978:1;19961:19;;:5;:19;;;19957:60;;;19989:28;;;;;;;;;;;;;;19957:60;14024:13;20035:18;:25;20054:5;20035:25;;;;;;;;;;;;;;;;:55;20028:62;;19865:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;56320:81::-;2014:13;:11;:13::i;:::-;56388:5:::1;56381:4;:12;;;;56320:81:::0;:::o;55798:302::-;55867:4;55857:14;;:6;;;;;;;;;;;:14;;;55849:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;55924:15;;55917:3;55901:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:38;;55893:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;55977:1;55971:3;:7;55963:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;56031:7;;56024:3;:14;;56016:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;56070:22;56076:10;56088:3;56070:5;:22::i;:::-;55798:302;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;23106:104::-;23162:13;23195:7;23188:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23106:104;:::o;55425:365::-;55496:5;55486:15;;:6;;;;;;;;;;;:15;;;55478:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;55554:10;;55547:3;55531:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:33;;55523:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;55602:1;55596:3;:7;55588:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;55656:7;;55649:3;:14;;55641:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;55723:3;55716:4;;:10;;;;:::i;:::-;55703:9;:23;;55695:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;55760:22;55766:10;55778:3;55760:5;:22::i;:::-;55425:365;:::o;29971:308::-;30082:19;:17;:19::i;:::-;30070:31;;:8;:31;;;30066:61;;;30110:17;;;;;;;;;;;;;;30066:61;30192:8;30140:18;:39;30159:19;:17;:19::i;:::-;30140:39;;;;;;;;;;;;;;;:49;30180:8;30140:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30252:8;30216:55;;30231:19;:17;:19::i;:::-;30216:55;;;30262:8;30216:55;;;;;;:::i;:::-;;;;;;;;29971:308;;:::o;55152:25::-;;;;;;;;;;;;;:::o;36816:399::-;36983:31;36996:4;37002:2;37006:7;36983:12;:31::i;:::-;37047:1;37029:2;:14;;;:19;37025:183;;37068:56;37099:4;37105:2;37109:7;37118:5;37068:30;:56::i;:::-;37063:145;;37152:40;;;;;;;;;;;;;;37063:145;37025:183;36816:399;;;;:::o;56219:93::-;2014:13;:11;:13::i;:::-;56296:8:::1;56286:7;:18;;;;56219:93:::0;:::o;55112:33::-;;;;:::o;23316:318::-;23389:13;23420:16;23428:7;23420;:16::i;:::-;23415:59;;23445:29;;;;;;;;;;;;;;23415:59;23487:21;23511:10;:8;:10::i;:::-;23487:34;;23564:1;23545:7;23539:21;:26;;:87;;;;;;;;;;;;;;;;;23592:7;23601:18;23611:7;23601:9;:18::i;:::-;23575:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23539:87;23532:94;;;23316:318;;;:::o;56108:103::-;2014:13;:11;:13::i;:::-;56194:9:::1;56183:8;:20;;;;;;;;;;;;:::i;:::-;;56108:103:::0;:::o;54967:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56409:69::-;2014:13;:11;:13::i;:::-;56464:6:::1;;;;;;;;;;;56463:7;56454:6;;:16;;;;;;;;;;;;;;;;;;56409:69::o:0;30436:164::-;30533:4;30557:18;:25;30576:5;30557:25;;;;;;;;;;;;;;;:35;30583:8;30557:35;;;;;;;;;;;;;;;;;;;;;;;;;30550:42;;30436:164;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;30858:282::-;30923:4;30979:7;30960:15;:13;:15::i;:::-;:26;;:66;;;;;31013:13;;31003:7;:23;30960:66;:153;;;;;31112:1;14800:8;31064:17;:26;31082:7;31064:26;;;;;;;;;;;;:44;:49;30960:153;30940:173;;30858:282;;;:::o;52624:105::-;52684:7;52711:10;52704:17;;52624:105;:::o;18197:92::-;18253:7;18197:92;:::o;25478:1275::-;25545:7;25565:12;25580:7;25565:22;;25648:4;25629:15;:13;:15::i;:::-;:23;25625:1061;;25682:13;;25675:4;:20;25671:1015;;;25720:14;25737:17;:23;25755:4;25737:23;;;;;;;;;;;;25720:40;;25854:1;14800:8;25826:6;:24;:29;25822:845;;;26491:113;26508:1;26498:6;:11;26491:113;;;26551:17;:25;26569:6;;;;;;;26551:25;;;;;;;;;;;;26542:34;;26491:113;;;26637:6;26630:13;;;;;;25822:845;25697:989;25671:1015;25625:1061;26714:31;;;;;;;;;;;;;;25478:1275;;;;:::o;32021:479::-;32123:27;32152:23;32193:38;32234:15;:24;32250:7;32234:24;;;;;;;;;;;32193:65;;32405:18;32382:41;;32462:19;32456:26;32437:45;;32367:126;32021:479;;;:::o;31249:659::-;31398:11;31563:16;31556:5;31552:28;31543:37;;31723:16;31712:9;31708:32;31695:45;;31873:15;31862:9;31859:30;31851:5;31840:9;31837:20;31834:56;31824:66;;31249:659;;;;;:::o;37877:159::-;;;;;:::o;51933:311::-;52068:7;52088:16;15204:3;52114:19;:41;;52088:68;;15204:3;52182:31;52193:4;52199:2;52203:9;52182:10;:31::i;:::-;52174:40;;:62;;52167:69;;;51933:311;;;;;:::o;27301:450::-;27381:14;27549:16;27542:5;27538:28;27529:37;;27726:5;27712:11;27687:23;27683:41;27680:52;27673:5;27670:63;27660:73;;27301:450;;;;:::o;38701:158::-;;;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;40477:2454::-;40550:20;40573:13;;40550:36;;40613:1;40601:8;:13;40597:44;;;40623:18;;;;;;;;;;;;;;40597:44;40654:61;40684:1;40688:2;40692:12;40706:8;40654:21;:61::i;:::-;41198:1;14162:2;41168:1;:26;;41167:32;41155:8;:45;41129:18;:22;41148:2;41129:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41477:139;41514:2;41568:33;41591:1;41595:2;41599:1;41568:14;:33::i;:::-;41535:30;41556:8;41535:20;:30::i;:::-;:66;41477:18;:139::i;:::-;41443:17;:31;41461:12;41443:31;;;;;;;;;;;:173;;;;41633:16;41664:11;41693:8;41678:12;:23;41664:37;;41948:16;41944:2;41940:25;41928:37;;42320:12;42280:8;42239:1;42177:25;42118:1;42057;42030:335;42445:1;42431:12;42427:20;42385:346;42486:3;42477:7;42474:16;42385:346;;42704:7;42694:8;42691:1;42664:25;42661:1;42658;42653:59;42539:1;42530:7;42526:15;42515:26;;42385:346;;;42389:77;42776:1;42764:8;:13;42760:45;;;42786:19;;;;;;;;;;;;;;42760:45;42838:3;42822:13;:19;;;;40903:1950;;42863:60;42892:1;42896:2;42900:12;42914:8;42863:20;:60::i;:::-;40539:2392;40477:2454;;:::o;39299:716::-;39462:4;39508:2;39483:45;;;39529:19;:17;:19::i;:::-;39550:4;39556:7;39565:5;39483:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39479:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39783:1;39766:6;:13;:18;39762:235;;;39812:40;;;;;;;;;;;;;;39762:235;39955:6;39949:13;39940:6;39936:2;39932:15;39925:38;39479:529;39652:54;;;39642:64;;;:6;:64;;;;39635:71;;;39299:716;;;;;;:::o;55308:109::-;55368:13;55401:8;55394:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55308:109;:::o;52831:2002::-;52896:17;53315:3;53308:4;53302:11;53298:21;53291:28;;53406:3;53400:4;53393:17;53512:3;53968:5;54098:1;54093:3;54089:11;54082:18;;54269:2;54263:4;54259:13;54255:2;54251:22;54246:3;54238:36;54310:2;54304:4;54300:13;54292:21;;53860:731;54329:4;53860:731;;;54520:1;54515:3;54511:11;54504:18;;54571:2;54565:4;54561:13;54557:2;54553:22;54548:3;54540:36;54424:2;54418:4;54414:13;54406:21;;53860:731;;;53864:464;54630:3;54625;54621:13;54745:2;54740:3;54736:12;54729:19;;54808:6;54803:3;54796:19;52935:1891;;52831:2002;;;:::o;51634:147::-;51771:6;51634:147;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;27853:324::-;27923:14;28156:1;28146:8;28143:15;28117:24;28113:46;28103:56;;27853:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:365::-;9402:3;9423:66;9487:1;9482:3;9423:66;:::i;:::-;9416:73;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9260:365;;;:::o;9631:366::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:::-;10517:3;10538:67;10602:2;10597:3;10538:67;:::i;:::-;10531:74;;10614:93;10703:3;10614:93;:::i;:::-;10732:2;10727:3;10723:12;10716:19;;10375:366;;;:::o;10747:365::-;10889:3;10910:66;10974:1;10969:3;10910:66;:::i;:::-;10903:73;;10985:93;11074:3;10985:93;:::i;:::-;11103:2;11098:3;11094:12;11087:19;;10747:365;;;:::o;11118:118::-;11205:24;11223:5;11205:24;:::i;:::-;11200:3;11193:37;11118:118;;:::o;11242:435::-;11422:3;11444:95;11535:3;11526:6;11444:95;:::i;:::-;11437:102;;11556:95;11647:3;11638:6;11556:95;:::i;:::-;11549:102;;11668:3;11661:10;;11242:435;;;;;:::o;11683:222::-;11776:4;11814:2;11803:9;11799:18;11791:26;;11827:71;11895:1;11884:9;11880:17;11871:6;11827:71;:::i;:::-;11683:222;;;;:::o;11911:640::-;12106:4;12144:3;12133:9;12129:19;12121:27;;12158:71;12226:1;12215:9;12211:17;12202:6;12158:71;:::i;:::-;12239:72;12307:2;12296:9;12292:18;12283:6;12239:72;:::i;:::-;12321;12389:2;12378:9;12374:18;12365:6;12321:72;:::i;:::-;12440:9;12434:4;12430:20;12425:2;12414:9;12410:18;12403:48;12468:76;12539:4;12530:6;12468:76;:::i;:::-;12460:84;;11911:640;;;;;;;:::o;12557:210::-;12644:4;12682:2;12671:9;12667:18;12659:26;;12695:65;12757:1;12746:9;12742:17;12733:6;12695:65;:::i;:::-;12557:210;;;;:::o;12773:313::-;12886:4;12924:2;12913:9;12909:18;12901:26;;12973:9;12967:4;12963:20;12959:1;12948:9;12944:17;12937:47;13001:78;13074:4;13065:6;13001:78;:::i;:::-;12993:86;;12773:313;;;;:::o;13092:419::-;13258:4;13296:2;13285:9;13281:18;13273:26;;13345:9;13339:4;13335:20;13331:1;13320:9;13316:17;13309:47;13373:131;13499:4;13373:131;:::i;:::-;13365:139;;13092:419;;;:::o;13517:::-;13683:4;13721:2;13710:9;13706:18;13698:26;;13770:9;13764:4;13760:20;13756:1;13745:9;13741:17;13734:47;13798:131;13924:4;13798:131;:::i;:::-;13790:139;;13517:419;;;:::o;13942:::-;14108:4;14146:2;14135:9;14131:18;14123:26;;14195:9;14189:4;14185:20;14181:1;14170:9;14166:17;14159:47;14223:131;14349:4;14223:131;:::i;:::-;14215:139;;13942:419;;;:::o;14367:::-;14533:4;14571:2;14560:9;14556:18;14548:26;;14620:9;14614:4;14610:20;14606:1;14595:9;14591:17;14584:47;14648:131;14774:4;14648:131;:::i;:::-;14640:139;;14367:419;;;:::o;14792:::-;14958:4;14996:2;14985:9;14981:18;14973:26;;15045:9;15039:4;15035:20;15031:1;15020:9;15016:17;15009:47;15073:131;15199:4;15073:131;:::i;:::-;15065:139;;14792:419;;;:::o;15217:::-;15383:4;15421:2;15410:9;15406:18;15398:26;;15470:9;15464:4;15460:20;15456:1;15445:9;15441:17;15434:47;15498:131;15624:4;15498:131;:::i;:::-;15490:139;;15217:419;;;:::o;15642:::-;15808:4;15846:2;15835:9;15831:18;15823:26;;15895:9;15889:4;15885:20;15881:1;15870:9;15866:17;15859:47;15923:131;16049:4;15923:131;:::i;:::-;15915:139;;15642:419;;;:::o;16067:222::-;16160:4;16198:2;16187:9;16183:18;16175:26;;16211:71;16279:1;16268:9;16264:17;16255:6;16211:71;:::i;:::-;16067:222;;;;:::o;16295:129::-;16329:6;16356:20;;:::i;:::-;16346:30;;16385:33;16413:4;16405:6;16385:33;:::i;:::-;16295:129;;;:::o;16430:75::-;16463:6;16496:2;16490:9;16480:19;;16430:75;:::o;16511:307::-;16572:4;16662:18;16654:6;16651:30;16648:56;;;16684:18;;:::i;:::-;16648:56;16722:29;16744:6;16722:29;:::i;:::-;16714:37;;16806:4;16800;16796:15;16788:23;;16511:307;;;:::o;16824:308::-;16886:4;16976:18;16968:6;16965:30;16962:56;;;16998:18;;:::i;:::-;16962:56;17036:29;17058:6;17036:29;:::i;:::-;17028:37;;17120:4;17114;17110:15;17102:23;;16824:308;;;:::o;17138:98::-;17189:6;17223:5;17217:12;17207:22;;17138:98;;;:::o;17242:99::-;17294:6;17328:5;17322:12;17312:22;;17242:99;;;:::o;17347:168::-;17430:11;17464:6;17459:3;17452:19;17504:4;17499:3;17495:14;17480:29;;17347:168;;;;:::o;17521:169::-;17605:11;17639:6;17634:3;17627:19;17679:4;17674:3;17670:14;17655:29;;17521:169;;;;:::o;17696:148::-;17798:11;17835:3;17820:18;;17696:148;;;;:::o;17850:305::-;17890:3;17909:20;17927:1;17909:20;:::i;:::-;17904:25;;17943:20;17961:1;17943:20;:::i;:::-;17938:25;;18097:1;18029:66;18025:74;18022:1;18019:81;18016:107;;;18103:18;;:::i;:::-;18016:107;18147:1;18144;18140:9;18133:16;;17850:305;;;;:::o;18161:348::-;18201:7;18224:20;18242:1;18224:20;:::i;:::-;18219:25;;18258:20;18276:1;18258:20;:::i;:::-;18253:25;;18446:1;18378:66;18374:74;18371:1;18368:81;18363:1;18356:9;18349:17;18345:105;18342:131;;;18453:18;;:::i;:::-;18342:131;18501:1;18498;18494:9;18483:20;;18161:348;;;;:::o;18515:96::-;18552:7;18581:24;18599:5;18581:24;:::i;:::-;18570:35;;18515:96;;;:::o;18617:90::-;18651:7;18694:5;18687:13;18680:21;18669:32;;18617:90;;;:::o;18713:149::-;18749:7;18789:66;18782:5;18778:78;18767:89;;18713:149;;;:::o;18868:126::-;18905:7;18945:42;18938:5;18934:54;18923:65;;18868:126;;;:::o;19000:77::-;19037:7;19066:5;19055:16;;19000:77;;;:::o;19083:154::-;19167:6;19162:3;19157;19144:30;19229:1;19220:6;19215:3;19211:16;19204:27;19083:154;;;:::o;19243:307::-;19311:1;19321:113;19335:6;19332:1;19329:13;19321:113;;;19420:1;19415:3;19411:11;19405:18;19401:1;19396:3;19392:11;19385:39;19357:2;19354:1;19350:10;19345:15;;19321:113;;;19452:6;19449:1;19446:13;19443:101;;;19532:1;19523:6;19518:3;19514:16;19507:27;19443:101;19292:258;19243:307;;;:::o;19556:320::-;19600:6;19637:1;19631:4;19627:12;19617:22;;19684:1;19678:4;19674:12;19705:18;19695:81;;19761:4;19753:6;19749:17;19739:27;;19695:81;19823:2;19815:6;19812:14;19792:18;19789:38;19786:84;;;19842:18;;:::i;:::-;19786:84;19607:269;19556:320;;;:::o;19882:281::-;19965:27;19987:4;19965:27;:::i;:::-;19957:6;19953:40;20095:6;20083:10;20080:22;20059:18;20047:10;20044:34;20041:62;20038:88;;;20106:18;;:::i;:::-;20038:88;20146:10;20142:2;20135:22;19925:238;19882:281;;:::o;20169:180::-;20217:77;20214:1;20207:88;20314:4;20311:1;20304:15;20338:4;20335:1;20328:15;20355:180;20403:77;20400:1;20393:88;20500:4;20497:1;20490:15;20524:4;20521:1;20514:15;20541:180;20589:77;20586:1;20579:88;20686:4;20683:1;20676:15;20710:4;20707:1;20700:15;20727:117;20836:1;20833;20826:12;20850:117;20959:1;20956;20949:12;20973:117;21082:1;21079;21072:12;21096:117;21205:1;21202;21195:12;21219:102;21260:6;21311:2;21307:7;21302:2;21295:5;21291:14;21287:28;21277:38;;21219:102;;;:::o;21327:225::-;21467:34;21463:1;21455:6;21451:14;21444:58;21536:8;21531:2;21523:6;21519:15;21512:33;21327:225;:::o;21558:166::-;21698:18;21694:1;21686:6;21682:14;21675:42;21558:166;:::o;21730:158::-;21870:10;21866:1;21858:6;21854:14;21847:34;21730:158;:::o;21894:168::-;22034:20;22030:1;22022:6;22018:14;22011:44;21894:168;:::o;22068:182::-;22208:34;22204:1;22196:6;22192:14;22185:58;22068:182;:::o;22256:172::-;22396:24;22392:1;22384:6;22380:14;22373:48;22256:172;:::o;22434:156::-;22574:8;22570:1;22562:6;22558:14;22551:32;22434:156;:::o;22596:122::-;22669:24;22687:5;22669:24;:::i;:::-;22662:5;22659:35;22649:63;;22708:1;22705;22698:12;22649:63;22596:122;:::o;22724:116::-;22794:21;22809:5;22794:21;:::i;:::-;22787:5;22784:32;22774:60;;22830:1;22827;22820:12;22774:60;22724:116;:::o;22846:120::-;22918:23;22935:5;22918:23;:::i;:::-;22911:5;22908:34;22898:62;;22956:1;22953;22946:12;22898:62;22846:120;:::o;22972:122::-;23045:24;23063:5;23045:24;:::i;:::-;23038:5;23035:35;23025:63;;23084:1;23081;23074:12;23025:63;22972:122;:::o
Swarm Source
ipfs://8c06b088ad9d8cf3326c636c8082e531545670de1b4c3e66b782e527558b1216
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 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.