Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 6,237 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 24130137 | 53 days ago | IN | 0 ETH | 0.00009363 | ||||
| Set Approval For... | 21900100 | 365 days ago | IN | 0 ETH | 0.000027 | ||||
| Set Approval For... | 18903815 | 784 days ago | IN | 0 ETH | 0.00047351 | ||||
| Set Approval For... | 18469167 | 845 days ago | IN | 0 ETH | 0.00068043 | ||||
| Set Approval For... | 17051071 | 1044 days ago | IN | 0 ETH | 0.00051859 | ||||
| Set Approval For... | 16994097 | 1052 days ago | IN | 0 ETH | 0.0005301 | ||||
| Set Approval For... | 16759352 | 1085 days ago | IN | 0 ETH | 0.00094774 | ||||
| Set Approval For... | 16675363 | 1097 days ago | IN | 0 ETH | 0.00117911 | ||||
| Set Approval For... | 16642687 | 1101 days ago | IN | 0 ETH | 0.00225372 | ||||
| Set Approval For... | 16608857 | 1106 days ago | IN | 0 ETH | 0.0007509 | ||||
| Set Approval For... | 16388233 | 1137 days ago | IN | 0 ETH | 0.00093156 | ||||
| Set Approval For... | 16325623 | 1146 days ago | IN | 0 ETH | 0.00063672 | ||||
| Set Approval For... | 16308695 | 1148 days ago | IN | 0 ETH | 0.00073171 | ||||
| Set Approval For... | 16308477 | 1148 days ago | IN | 0 ETH | 0.00069985 | ||||
| Set Approval For... | 16308348 | 1148 days ago | IN | 0 ETH | 0.00067499 | ||||
| Safe Transfer Fr... | 16308309 | 1148 days ago | IN | 0 ETH | 0.00076692 | ||||
| Set Approval For... | 16308249 | 1148 days ago | IN | 0 ETH | 0.0006719 | ||||
| Set Approval For... | 16307346 | 1148 days ago | IN | 0 ETH | 0.000698 | ||||
| Set Approval For... | 16273146 | 1153 days ago | IN | 0 ETH | 0.00074232 | ||||
| Set Approval For... | 16250596 | 1156 days ago | IN | 0 ETH | 0.0006082 | ||||
| Set Approval For... | 16250189 | 1156 days ago | IN | 0 ETH | 0.0005665 | ||||
| Set Approval For... | 16215920 | 1161 days ago | IN | 0 ETH | 0.00053372 | ||||
| Set Approval For... | 16150440 | 1170 days ago | IN | 0 ETH | 0.00073647 | ||||
| Set Approval For... | 16150437 | 1170 days ago | IN | 0 ETH | 0.00068443 | ||||
| Set Approval For... | 16134003 | 1172 days ago | IN | 0 ETH | 0.00078048 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 15867503 | 1210 days ago | 6.444 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
JUSTUS
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-10-29
*/
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
// 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.3
// 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();
/**
* 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 payable;
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external payable;
/**
* @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 payable;
/**
* @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 payable;
/**
* @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.3
// 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 {
// Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
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 payable 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 {
_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].value`.
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 payable 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 payable 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 payable 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.
// The duplicated `log4` removes an extra check and reduces stack juggling.
// The assembly, together with the surrounding Solidity code, have been
// delicately arranged to nudge the compiler into producing optimized opcodes.
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`.
)
// The `iszero(eq(,))` check ensures that large values of `quantity`
// that overflows uint256 will make the loop run out of gas.
// The compiler will optimize the `iszero` away for performance.
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 str) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit), but
// we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
// We will need 1 word for the trailing zeros padding, 1 word for the length,
// and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
let m := add(mload(0x40), 0xa0)
// Update the free memory pointer to allocate.
mstore(0x40, m)
// Assign the `str` to the end.
str := sub(m, 0x20)
// Zeroize the slot after the string.
mstore(str, 0)
// Cache the end of the memory to calculate the length later.
let end := str
// We write the string from rightmost digit to leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// prettier-ignore
for { let temp := value } 1 {} {
str := sub(str, 1)
// Write the character to the pointer.
// The ASCII index of the '0' character is 48.
mstore8(str, add(48, mod(temp, 10)))
// Keep dividing `temp` until zero.
temp := div(temp, 10)
// prettier-ignore
if iszero(temp) { break }
}
let length := sub(end, str)
// Move the pointer 32 bytes leftwards to make room for the length.
str := sub(str, 0x20)
// Store the length.
mstore(str, length)
}
}
}
// File: contracts/JustusGoerliMarco.sol
pragma solidity ^0.8.9;
contract JUSTUS is ERC721A, Ownable {
using Strings for uint256;
uint256 public constant maxSupply = 7777;
uint256 public constant intSupply = 277;
uint256 public publicPrice = 0.003 ether;
uint256 public maxPublicTx = 5;
uint256 public intMinted = 0;
string private baseTokenURI = 'ipfs://bafybeihyp4s2akslh5a6phfdgub7fqli2pth5zwzo6oagtyqwjm6zp6fku/';
bool private _paused = true;
address public intAddress;
mapping(address => uint256) private tokenMintedByAddress;
modifier whenNotPaused {
require(!_paused, "Contract is paused");
_;
}
constructor(string memory _name, string memory _symbol)
ERC721A(_name, _symbol)
{
}
function pause() external onlyOwner {
_paused = true;
}
function unpause() external onlyOwner {
_paused = false;
}
function isPaused() external view returns(bool) {
return _paused;
}
function setPublicPrice(uint256 priceInWei) external onlyOwner {
publicPrice = priceInWei; //input the value in wei
}
function setMaxPublicTx(uint256 maxTx) external onlyOwner {
maxPublicTx = maxTx;
}
function setIntAddress(address _address) external onlyOwner {
intAddress = _address;
}
function _startTokenId()
internal
view
virtual
override(ERC721A)
returns(uint256)
{
return 1;
}
function totalMintedByAddress(address _address) external view returns(uint256) {
return tokenMintedByAddress[_address];
}
function publicMint(uint256 _qty)
external
payable
whenNotPaused
{
require(_totalMinted() + _qty <= maxSupply, "Out of stock");
require(tokenMintedByAddress[msg.sender] + _qty <= maxPublicTx, "Cannot exceed maximum mint limit");
if (tokenMintedByAddress[msg.sender] < 1) {
require(msg.value == publicPrice * (_qty - 1), "Not enough ETH send");
} else {
require(msg.value == publicPrice * _qty, "Not enough ETH send");
}
tokenMintedByAddress[msg.sender] += _qty;
_safeMint(msg.sender, _qty);
}
function intMint(uint256 _qty) external {
require(intMinted + _qty <= intSupply, "out of stock");
require(msg.sender == intAddress, "you are not free minter");
intMinted += _qty;
_safeMint(msg.sender, _qty);
}
function airdropMint(address[] calldata _addresses) external onlyOwner {
for (uint256 i = 0; i < _addresses.length; i++) {
require(_addresses[i] != address(0), "Can't set the null address");
_safeMint(_addresses[i], 2);
}
}
function _baseURI() internal view virtual override returns (string memory) {
return baseTokenURI;
}
function setBaseURI(string calldata baseURI) external onlyOwner {
baseTokenURI = baseURI;
}
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), ".json"))
: '';
}
function withdraw() external onlyOwner {
uint256 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":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airdropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"intAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"intMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"intMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"intSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setIntAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"setMaxPublicTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"priceInWei","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"totalMintedByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
660aa87bee5380006009556005600a556000600b55610100604052604360808181529062001e1160a039600c90620000389082620001a7565b50600d805460ff191660011790553480156200005357600080fd5b5060405162001e5438038062001e54833981016040819052620000769162000322565b81816002620000868382620001a7565b506003620000958282620001a7565b5050600160005550620000a833620000b0565b50506200038c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200012d57607f821691505b6020821081036200014e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a257600081815260208120601f850160051c810160208610156200017d5750805b601f850160051c820191505b818110156200019e5782815560010162000189565b5050505b505050565b81516001600160401b03811115620001c357620001c362000102565b620001db81620001d4845462000118565b8462000154565b602080601f831160018114620002135760008415620001fa5750858301515b600019600386901b1c1916600185901b1785556200019e565b600085815260208120601f198616915b82811015620002445788860151825594840194600190910190840162000223565b5085821015620002635787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200028557600080fd5b81516001600160401b0380821115620002a257620002a262000102565b604051601f8301601f19908116603f01168101908282118183101715620002cd57620002cd62000102565b81604052838152602092508683858801011115620002ea57600080fd5b600091505b838210156200030e5785820183015181830184015290820190620002ef565b600093810190920192909252949350505050565b600080604083850312156200033657600080fd5b82516001600160401b03808211156200034e57600080fd5b6200035c8683870162000273565b935060208501519150808211156200037357600080fd5b50620003828582860162000273565b9150509250929050565b611a75806200039c6000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063b187bd26116100a0578063d1eeeedd1161006f578063d1eeeedd14610576578063d5abeb0114610596578063e985e9c5146105ac578063f2fde38b146105cc578063f39fd430146105ec57600080fd5b8063b187bd261461050b578063b88d4fde14610523578063c627525514610536578063c87b56dd1461055657600080fd5b806396ae80eb116100e757806396ae80eb1461047357806397cf84fc14610489578063a22cb465146104bf578063a51a8506146104df578063a945bf80146104f557600080fd5b8063715018a6146104165780638456cb591461042b5780638da5cb5b1461044057806395d89b411461045e57600080fd5b80632db115441161019b57806345578ffe1161016a57806345578ffe1461037657806346d362111461039657806355f804b3146103b65780636352211e146103d657806370a08231146103f657600080fd5b80632db11544146103265780633ccfd60b146103395780633f4ba83a1461034e57806342842e0e1461036357600080fd5b8063095ea7b3116101d7578063095ea7b3146102bc57806318160ddd146102d157806320075491146102ee57806323b872dd1461031357600080fd5b806301ffc9a714610209578063043d67441461023e57806306fdde0314610262578063081812fc14610284575b600080fd5b34801561021557600080fd5b50610229610224366004611478565b61060c565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025461011581565b604051908152602001610235565b34801561026e57600080fd5b5061027761065e565b60405161023591906114e5565b34801561029057600080fd5b506102a461029f3660046114f8565b6106f0565b6040516001600160a01b039091168152602001610235565b6102cf6102ca36600461152d565b610734565b005b3480156102dd57600080fd5b506001546000540360001901610254565b3480156102fa57600080fd5b50600d546102a49061010090046001600160a01b031681565b6102cf610321366004611557565b6107d4565b6102cf6103343660046114f8565b61096d565b34801561034557600080fd5b506102cf610b7b565b34801561035a57600080fd5b506102cf610bb6565b6102cf610371366004611557565b610bca565b34801561038257600080fd5b506102cf6103913660046114f8565b610bea565b3480156103a257600080fd5b506102cf6103b1366004611593565b610bf7565b3480156103c257600080fd5b506102cf6103d1366004611608565b610ccc565b3480156103e257600080fd5b506102a46103f13660046114f8565b610ce1565b34801561040257600080fd5b50610254610411366004611668565b610cec565b34801561042257600080fd5b506102cf610d3b565b34801561043757600080fd5b506102cf610d4f565b34801561044c57600080fd5b506008546001600160a01b03166102a4565b34801561046a57600080fd5b50610277610d66565b34801561047f57600080fd5b50610254600a5481565b34801561049557600080fd5b506102546104a4366004611668565b6001600160a01b03166000908152600e602052604090205490565b3480156104cb57600080fd5b506102cf6104da366004611683565b610d75565b3480156104eb57600080fd5b50610254600b5481565b34801561050157600080fd5b5061025460095481565b34801561051757600080fd5b50600d5460ff16610229565b6102cf6105313660046116d5565b610de1565b34801561054257600080fd5b506102cf6105513660046114f8565b610e2b565b34801561056257600080fd5b506102776105713660046114f8565b610e38565b34801561058257600080fd5b506102cf610591366004611668565b610ebc565b3480156105a257600080fd5b50610254611e6181565b3480156105b857600080fd5b506102296105c73660046117b1565b610eec565b3480156105d857600080fd5b506102cf6105e7366004611668565b610f1a565b3480156105f857600080fd5b506102cf6106073660046114f8565b610f90565b60006301ffc9a760e01b6001600160e01b03198316148061063d57506380ac58cd60e01b6001600160e01b03198316145b806106585750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461066d906117e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610699906117e4565b80156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b5050505050905090565b60006106fb8261104f565b610718576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073f82610ce1565b9050336001600160a01b038216146107785761075b8133610eec565b610778576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006107df82611084565b9050836001600160a01b0316816001600160a01b0316146108125760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761085f576108428633610eec565b61085f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661088657604051633a954ecd60e21b815260040160405180910390fd5b801561089157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610923576001840160008181526004602052604081205490036109215760005481146109215760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600d5460ff16156109ba5760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064015b60405180910390fd5b611e61816109cb6000546000190190565b6109d59190611834565b1115610a125760405162461bcd60e51b815260206004820152600c60248201526b4f7574206f662073746f636b60a01b60448201526064016109b1565b600a54336000908152600e6020526040902054610a30908390611834565b1115610a7e5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420657863656564206d6178696d756d206d696e74206c696d697460448201526064016109b1565b336000908152600e602052604090205460011115610af757610aa1600182611847565b600954610aae919061185a565b3414610af25760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b99606a1b60448201526064016109b1565b610b49565b80600954610b05919061185a565b3414610b495760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b99606a1b60448201526064016109b1565b336000908152600e602052604081208054839290610b68908490611834565b90915550610b78905033826110f3565b50565b610b8361110d565b6040514790339082156108fc029083906000818181858888f19350505050158015610bb2573d6000803e3d6000fd5b5050565b610bbe61110d565b600d805460ff19169055565b610be583838360405180602001604052806000815250610de1565b505050565b610bf261110d565b600a55565b610bff61110d565b60005b81811015610be5576000838383818110610c1e57610c1e611871565b9050602002016020810190610c339190611668565b6001600160a01b031603610c895760405162461bcd60e51b815260206004820152601a60248201527f43616e27742073657420746865206e756c6c206164647265737300000000000060448201526064016109b1565b610cba838383818110610c9e57610c9e611871565b9050602002016020810190610cb39190611668565b60026110f3565b80610cc481611887565b915050610c02565b610cd461110d565b600c610be58284836118e6565b600061065882611084565b60006001600160a01b038216610d15576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610d4361110d565b610d4d6000611167565b565b610d5761110d565b600d805460ff19166001179055565b60606003805461066d906117e4565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dec8484846107d4565b6001600160a01b0383163b15610e2557610e08848484846111b9565b610e25576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610e3361110d565b600955565b6060610e438261104f565b610e6057604051630a14c4b560e41b815260040160405180910390fd5b6000610e6a6112a4565b90508051600003610e8a5760405180602001604052806000815250610eb5565b80610e94846112b3565b604051602001610ea59291906119a6565b6040516020818303038152906040525b9392505050565b610ec461110d565b600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610f2261110d565b6001600160a01b038116610f875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b1565b610b7881611167565b61011581600b54610fa19190611834565b1115610fde5760405162461bcd60e51b815260206004820152600c60248201526b6f7574206f662073746f636b60a01b60448201526064016109b1565b600d5461010090046001600160a01b0316331461103d5760405162461bcd60e51b815260206004820152601760248201527f796f7520617265206e6f742066726565206d696e74657200000000000000000060448201526064016109b1565b80600b6000828254610b689190611834565b600081600111158015611063575060005482105b8015610658575050600090815260046020526040902054600160e01b161590565b600081806001116110da576000548110156110da5760008181526004602052604081205490600160e01b821690036110d8575b80600003610eb55750600019016000818152600460205260409020546110b7565b505b604051636f96cda160e11b815260040160405180910390fd5b610bb28282604051806020016040528060008152506112f7565b6008546001600160a01b03163314610d4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111ee9033908990889088906004016119e5565b6020604051808303816000875af1925050508015611229575060408051601f3d908101601f1916820190925261122691810190611a22565b60015b611287573d808015611257576040519150601f19603f3d011682016040523d82523d6000602084013e61125c565b606091505b50805160000361127f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600c805461066d906117e4565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806112cd5750819003601f19909101908152919050565b6113018383611364565b6001600160a01b0383163b15610be5576000548281035b61132b60008683806001019450866111b9565b611348576040516368d2bf6b60e11b815260040160405180910390fd5b81811061131857816000541461135d57600080fd5b5050505050565b60008054908290036113895760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461143857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611400565b508160000361145957604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b031981168114610b7857600080fd5b60006020828403121561148a57600080fd5b8135610eb581611462565b60005b838110156114b0578181015183820152602001611498565b50506000910152565b600081518084526114d1816020860160208601611495565b601f01601f19169290920160200192915050565b602081526000610eb560208301846114b9565b60006020828403121561150a57600080fd5b5035919050565b80356001600160a01b038116811461152857600080fd5b919050565b6000806040838503121561154057600080fd5b61154983611511565b946020939093013593505050565b60008060006060848603121561156c57600080fd5b61157584611511565b925061158360208501611511565b9150604084013590509250925092565b600080602083850312156115a657600080fd5b823567ffffffffffffffff808211156115be57600080fd5b818501915085601f8301126115d257600080fd5b8135818111156115e157600080fd5b8660208260051b85010111156115f657600080fd5b60209290920196919550909350505050565b6000806020838503121561161b57600080fd5b823567ffffffffffffffff8082111561163357600080fd5b818501915085601f83011261164757600080fd5b81358181111561165657600080fd5b8660208285010111156115f657600080fd5b60006020828403121561167a57600080fd5b610eb582611511565b6000806040838503121561169657600080fd5b61169f83611511565b9150602083013580151581146116b457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156116eb57600080fd5b6116f485611511565b935061170260208601611511565b925060408501359150606085013567ffffffffffffffff8082111561172657600080fd5b818701915087601f83011261173a57600080fd5b81358181111561174c5761174c6116bf565b604051601f8201601f19908116603f01168101908382118183101715611774576117746116bf565b816040528281528a602084870101111561178d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117c457600080fd5b6117cd83611511565b91506117db60208401611511565b90509250929050565b600181811c908216806117f857607f821691505b60208210810361181857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106585761065861181e565b818103818111156106585761065861181e565b80820281158282048414176106585761065861181e565b634e487b7160e01b600052603260045260246000fd5b6000600182016118995761189961181e565b5060010190565b601f821115610be557600081815260208120601f850160051c810160208610156118c75750805b601f850160051c820191505b81811015610965578281556001016118d3565b67ffffffffffffffff8311156118fe576118fe6116bf565b6119128361190c83546117e4565b836118a0565b6000601f841160018114611946576000851561192e5750838201355b600019600387901b1c1916600186901b17835561135d565b600083815260209020601f19861690835b828110156119775786850135825560209485019460019092019101611957565b50868210156119945760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600083516119b8818460208801611495565b8351908301906119cc818360208801611495565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a18908301846114b9565b9695505050505050565b600060208284031215611a3457600080fd5b8151610eb58161146256fea26469706673582212200575bc117b8f9377c0e799984110e55b09e64eaff18df8031961c1c1dcd8b94864736f6c63430008110033697066733a2f2f62616679626569687970347332616b736c68356136706866646775623766716c6932707468357a777a6f366f6167747971776a6d367a7036666b752f0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000074a5553542055530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024a55000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c8063715018a611610118578063b187bd26116100a0578063d1eeeedd1161006f578063d1eeeedd14610576578063d5abeb0114610596578063e985e9c5146105ac578063f2fde38b146105cc578063f39fd430146105ec57600080fd5b8063b187bd261461050b578063b88d4fde14610523578063c627525514610536578063c87b56dd1461055657600080fd5b806396ae80eb116100e757806396ae80eb1461047357806397cf84fc14610489578063a22cb465146104bf578063a51a8506146104df578063a945bf80146104f557600080fd5b8063715018a6146104165780638456cb591461042b5780638da5cb5b1461044057806395d89b411461045e57600080fd5b80632db115441161019b57806345578ffe1161016a57806345578ffe1461037657806346d362111461039657806355f804b3146103b65780636352211e146103d657806370a08231146103f657600080fd5b80632db11544146103265780633ccfd60b146103395780633f4ba83a1461034e57806342842e0e1461036357600080fd5b8063095ea7b3116101d7578063095ea7b3146102bc57806318160ddd146102d157806320075491146102ee57806323b872dd1461031357600080fd5b806301ffc9a714610209578063043d67441461023e57806306fdde0314610262578063081812fc14610284575b600080fd5b34801561021557600080fd5b50610229610224366004611478565b61060c565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025461011581565b604051908152602001610235565b34801561026e57600080fd5b5061027761065e565b60405161023591906114e5565b34801561029057600080fd5b506102a461029f3660046114f8565b6106f0565b6040516001600160a01b039091168152602001610235565b6102cf6102ca36600461152d565b610734565b005b3480156102dd57600080fd5b506001546000540360001901610254565b3480156102fa57600080fd5b50600d546102a49061010090046001600160a01b031681565b6102cf610321366004611557565b6107d4565b6102cf6103343660046114f8565b61096d565b34801561034557600080fd5b506102cf610b7b565b34801561035a57600080fd5b506102cf610bb6565b6102cf610371366004611557565b610bca565b34801561038257600080fd5b506102cf6103913660046114f8565b610bea565b3480156103a257600080fd5b506102cf6103b1366004611593565b610bf7565b3480156103c257600080fd5b506102cf6103d1366004611608565b610ccc565b3480156103e257600080fd5b506102a46103f13660046114f8565b610ce1565b34801561040257600080fd5b50610254610411366004611668565b610cec565b34801561042257600080fd5b506102cf610d3b565b34801561043757600080fd5b506102cf610d4f565b34801561044c57600080fd5b506008546001600160a01b03166102a4565b34801561046a57600080fd5b50610277610d66565b34801561047f57600080fd5b50610254600a5481565b34801561049557600080fd5b506102546104a4366004611668565b6001600160a01b03166000908152600e602052604090205490565b3480156104cb57600080fd5b506102cf6104da366004611683565b610d75565b3480156104eb57600080fd5b50610254600b5481565b34801561050157600080fd5b5061025460095481565b34801561051757600080fd5b50600d5460ff16610229565b6102cf6105313660046116d5565b610de1565b34801561054257600080fd5b506102cf6105513660046114f8565b610e2b565b34801561056257600080fd5b506102776105713660046114f8565b610e38565b34801561058257600080fd5b506102cf610591366004611668565b610ebc565b3480156105a257600080fd5b50610254611e6181565b3480156105b857600080fd5b506102296105c73660046117b1565b610eec565b3480156105d857600080fd5b506102cf6105e7366004611668565b610f1a565b3480156105f857600080fd5b506102cf6106073660046114f8565b610f90565b60006301ffc9a760e01b6001600160e01b03198316148061063d57506380ac58cd60e01b6001600160e01b03198316145b806106585750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461066d906117e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610699906117e4565b80156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b5050505050905090565b60006106fb8261104f565b610718576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073f82610ce1565b9050336001600160a01b038216146107785761075b8133610eec565b610778576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006107df82611084565b9050836001600160a01b0316816001600160a01b0316146108125760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761085f576108428633610eec565b61085f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661088657604051633a954ecd60e21b815260040160405180910390fd5b801561089157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610923576001840160008181526004602052604081205490036109215760005481146109215760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600d5460ff16156109ba5760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064015b60405180910390fd5b611e61816109cb6000546000190190565b6109d59190611834565b1115610a125760405162461bcd60e51b815260206004820152600c60248201526b4f7574206f662073746f636b60a01b60448201526064016109b1565b600a54336000908152600e6020526040902054610a30908390611834565b1115610a7e5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420657863656564206d6178696d756d206d696e74206c696d697460448201526064016109b1565b336000908152600e602052604090205460011115610af757610aa1600182611847565b600954610aae919061185a565b3414610af25760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b99606a1b60448201526064016109b1565b610b49565b80600954610b05919061185a565b3414610b495760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b99606a1b60448201526064016109b1565b336000908152600e602052604081208054839290610b68908490611834565b90915550610b78905033826110f3565b50565b610b8361110d565b6040514790339082156108fc029083906000818181858888f19350505050158015610bb2573d6000803e3d6000fd5b5050565b610bbe61110d565b600d805460ff19169055565b610be583838360405180602001604052806000815250610de1565b505050565b610bf261110d565b600a55565b610bff61110d565b60005b81811015610be5576000838383818110610c1e57610c1e611871565b9050602002016020810190610c339190611668565b6001600160a01b031603610c895760405162461bcd60e51b815260206004820152601a60248201527f43616e27742073657420746865206e756c6c206164647265737300000000000060448201526064016109b1565b610cba838383818110610c9e57610c9e611871565b9050602002016020810190610cb39190611668565b60026110f3565b80610cc481611887565b915050610c02565b610cd461110d565b600c610be58284836118e6565b600061065882611084565b60006001600160a01b038216610d15576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610d4361110d565b610d4d6000611167565b565b610d5761110d565b600d805460ff19166001179055565b60606003805461066d906117e4565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dec8484846107d4565b6001600160a01b0383163b15610e2557610e08848484846111b9565b610e25576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610e3361110d565b600955565b6060610e438261104f565b610e6057604051630a14c4b560e41b815260040160405180910390fd5b6000610e6a6112a4565b90508051600003610e8a5760405180602001604052806000815250610eb5565b80610e94846112b3565b604051602001610ea59291906119a6565b6040516020818303038152906040525b9392505050565b610ec461110d565b600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610f2261110d565b6001600160a01b038116610f875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b1565b610b7881611167565b61011581600b54610fa19190611834565b1115610fde5760405162461bcd60e51b815260206004820152600c60248201526b6f7574206f662073746f636b60a01b60448201526064016109b1565b600d5461010090046001600160a01b0316331461103d5760405162461bcd60e51b815260206004820152601760248201527f796f7520617265206e6f742066726565206d696e74657200000000000000000060448201526064016109b1565b80600b6000828254610b689190611834565b600081600111158015611063575060005482105b8015610658575050600090815260046020526040902054600160e01b161590565b600081806001116110da576000548110156110da5760008181526004602052604081205490600160e01b821690036110d8575b80600003610eb55750600019016000818152600460205260409020546110b7565b505b604051636f96cda160e11b815260040160405180910390fd5b610bb28282604051806020016040528060008152506112f7565b6008546001600160a01b03163314610d4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111ee9033908990889088906004016119e5565b6020604051808303816000875af1925050508015611229575060408051601f3d908101601f1916820190925261122691810190611a22565b60015b611287573d808015611257576040519150601f19603f3d011682016040523d82523d6000602084013e61125c565b606091505b50805160000361127f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600c805461066d906117e4565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806112cd5750819003601f19909101908152919050565b6113018383611364565b6001600160a01b0383163b15610be5576000548281035b61132b60008683806001019450866111b9565b611348576040516368d2bf6b60e11b815260040160405180910390fd5b81811061131857816000541461135d57600080fd5b5050505050565b60008054908290036113895760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461143857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611400565b508160000361145957604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b031981168114610b7857600080fd5b60006020828403121561148a57600080fd5b8135610eb581611462565b60005b838110156114b0578181015183820152602001611498565b50506000910152565b600081518084526114d1816020860160208601611495565b601f01601f19169290920160200192915050565b602081526000610eb560208301846114b9565b60006020828403121561150a57600080fd5b5035919050565b80356001600160a01b038116811461152857600080fd5b919050565b6000806040838503121561154057600080fd5b61154983611511565b946020939093013593505050565b60008060006060848603121561156c57600080fd5b61157584611511565b925061158360208501611511565b9150604084013590509250925092565b600080602083850312156115a657600080fd5b823567ffffffffffffffff808211156115be57600080fd5b818501915085601f8301126115d257600080fd5b8135818111156115e157600080fd5b8660208260051b85010111156115f657600080fd5b60209290920196919550909350505050565b6000806020838503121561161b57600080fd5b823567ffffffffffffffff8082111561163357600080fd5b818501915085601f83011261164757600080fd5b81358181111561165657600080fd5b8660208285010111156115f657600080fd5b60006020828403121561167a57600080fd5b610eb582611511565b6000806040838503121561169657600080fd5b61169f83611511565b9150602083013580151581146116b457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156116eb57600080fd5b6116f485611511565b935061170260208601611511565b925060408501359150606085013567ffffffffffffffff8082111561172657600080fd5b818701915087601f83011261173a57600080fd5b81358181111561174c5761174c6116bf565b604051601f8201601f19908116603f01168101908382118183101715611774576117746116bf565b816040528281528a602084870101111561178d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117c457600080fd5b6117cd83611511565b91506117db60208401611511565b90509250929050565b600181811c908216806117f857607f821691505b60208210810361181857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106585761065861181e565b818103818111156106585761065861181e565b80820281158282048414176106585761065861181e565b634e487b7160e01b600052603260045260246000fd5b6000600182016118995761189961181e565b5060010190565b601f821115610be557600081815260208120601f850160051c810160208610156118c75750805b601f850160051c820191505b81811015610965578281556001016118d3565b67ffffffffffffffff8311156118fe576118fe6116bf565b6119128361190c83546117e4565b836118a0565b6000601f841160018114611946576000851561192e5750838201355b600019600387901b1c1916600186901b17835561135d565b600083815260209020601f19861690835b828110156119775786850135825560209485019460019092019101611957565b50868210156119945760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600083516119b8818460208801611495565b8351908301906119cc818360208801611495565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a18908301846114b9565b9695505050505050565b600060208284031215611a3457600080fd5b8151610eb58161146256fea26469706673582212200575bc117b8f9377c0e799984110e55b09e64eaff18df8031961c1c1dcd8b94864736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000074a5553542055530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024a55000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): JUST US
Arg [1] : _symbol (string): JU
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 4a55535420555300000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4a55000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
57604:3292:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24494:639;;;;;;;;;;-1:-1:-1;24494:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24494:639:0;;;;;;;;57722:39;;;;;;;;;;;;57758:3;57722:39;;;;;738:25:1;;;726:2;711:18;57722:39:0;592:177:1;25396:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31887:218::-;;;;;;;;;;-1:-1:-1;31887:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;31887:218:0;1715:203:1;31320:408:0;;;;;;:::i;:::-;;:::i;:::-;;21147:323;;;;;;;;;;-1:-1:-1;58975:1:0;21421:12;21208:7;21405:13;:28;-1:-1:-1;;21405:46:0;21147:323;;58016:25;;;;;;;;;;-1:-1:-1;58016:25:0;;;;;;;-1:-1:-1;;;;;58016:25:0;;;35526:2825;;;;;;:::i;:::-;;:::i;59125:566::-;;;;;;:::i;:::-;;:::i;60758:135::-;;;;;;;;;;;;;:::i;58371:66::-;;;;;;;;;;;;;:::i;38447:193::-;;;;;;:::i;:::-;;:::i;58655:90::-;;;;;;;;;;-1:-1:-1;58655:90:0;;;;;:::i;:::-;;:::i;59935:266::-;;;;;;;;;;-1:-1:-1;59935:266:0;;;;;:::i;:::-;;:::i;60322:99::-;;;;;;;;;;-1:-1:-1;60322:99:0;;;;;:::i;:::-;;:::i;26789:152::-;;;;;;;;;;-1:-1:-1;26789:152:0;;;;;:::i;:::-;;:::i;22331:233::-;;;;;;;;;;-1:-1:-1;22331:233:0;;;;;:::i;:::-;;:::i;5273:103::-;;;;;;;;;;;;;:::i;58302:63::-;;;;;;;;;;;;;:::i;4625:87::-;;;;;;;;;;-1:-1:-1;4698:6:0;;-1:-1:-1;;;;;4698:6:0;4625:87;;25572:104;;;;;;;;;;;;;:::i;57812:30::-;;;;;;;;;;;;;;;;58988:131;;;;;;;;;;-1:-1:-1;58988:131:0;;;;;:::i;:::-;-1:-1:-1;;;;;59083:30:0;59058:7;59083:30;;;:20;:30;;;;;;;58988:131;32445:234;;;;;;;;;;-1:-1:-1;32445:234:0;;;;;:::i;:::-;;:::i;57847:28::-;;;;;;;;;;;;;;;;57767:40;;;;;;;;;;;;;;;;58443:75;;;;;;;;;;-1:-1:-1;58505:7:0;;;;58443:75;;39238:407;;;;;;:::i;:::-;;:::i;58524:125::-;;;;;;;;;;-1:-1:-1;58524:125:0;;;;;:::i;:::-;;:::i;60427:325::-;;;;;;;;;;-1:-1:-1;60427:325:0;;;;;:::i;:::-;;:::i;58751:94::-;;;;;;;;;;-1:-1:-1;58751:94:0;;;;;:::i;:::-;;:::i;57677:40::-;;;;;;;;;;;;57713:4;57677:40;;32836:164;;;;;;;;;;-1:-1:-1;32836:164:0;;;;;:::i;:::-;;:::i;5531:201::-;;;;;;;;;;-1:-1:-1;5531:201:0;;;;;:::i;:::-;;:::i;59697:232::-;;;;;;;;;;-1:-1:-1;59697:232:0;;;;;:::i;:::-;;:::i;24494:639::-;24579:4;-1:-1:-1;;;;;;;;;24903:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;24980:25:0;;;24903:102;:179;;;-1:-1:-1;;;;;;;;;;25057:25:0;;;24903:179;24883:199;24494:639;-1:-1:-1;;24494:639:0:o;25396:100::-;25450:13;25483:5;25476:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25396:100;:::o;31887:218::-;31963:7;31988:16;31996:7;31988;:16::i;:::-;31983:64;;32013:34;;-1:-1:-1;;;32013:34:0;;;;;;;;;;;31983:64;-1:-1:-1;32067:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;32067:30:0;;31887:218::o;31320:408::-;31409:13;31425:16;31433:7;31425;:16::i;:::-;31409:32;-1:-1:-1;55653:10:0;-1:-1:-1;;;;;31458:28:0;;;31454:175;;31506:44;31523:5;55653:10;32836:164;:::i;31506:44::-;31501:128;;31578:35;;-1:-1:-1;;;31578:35:0;;;;;;;;;;;31501:128;31641:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;31641:35:0;-1:-1:-1;;;;;31641:35:0;;;;;;;;;31692:28;;31641:24;;31692:28;;;;;;;31398:330;31320:408;;:::o;35526:2825::-;35668:27;35698;35717:7;35698:18;:27::i;:::-;35668:57;;35783:4;-1:-1:-1;;;;;35742:45:0;35758:19;-1:-1:-1;;;;;35742:45:0;;35738:86;;35796:28;;-1:-1:-1;;;35796:28:0;;;;;;;;;;;35738:86;35838:27;34634:24;;;:15;:24;;;;;34862:26;;55653:10;34259:30;;;-1:-1:-1;;;;;33952:28:0;;34237:20;;;34234:56;36024:180;;36117:43;36134:4;55653:10;32836:164;:::i;36117:43::-;36112:92;;36169:35;;-1:-1:-1;;;36169:35:0;;;;;;;;;;;36112:92;-1:-1:-1;;;;;36221:16:0;;36217:52;;36246:23;;-1:-1:-1;;;36246:23:0;;;;;;;;;;;36217:52;36418:15;36415:160;;;36558:1;36537:19;36530:30;36415:160;-1:-1:-1;;;;;36955:24:0;;;;;;;:18;:24;;;;;;36953:26;;-1:-1:-1;;36953:26:0;;;37024:22;;;;;;;;;37022:24;;-1:-1:-1;37022:24:0;;;30178:11;30153:23;30149:41;30136:63;-1:-1:-1;;;30136:63:0;37317:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;37612:47:0;;:52;;37608:627;;37717:1;37707:11;;37685:19;37840:30;;;:17;:30;;;;;;:35;;37836:384;;37978:13;;37963:11;:28;37959:242;;38125:30;;;;:17;:30;;;;;:52;;;37959:242;37666:569;37608:627;38282:7;38278:2;-1:-1:-1;;;;;38263:27:0;38272:4;-1:-1:-1;;;;;38263:27:0;;;;;;;;;;;38301:42;35657:2694;;;35526:2825;;;:::o;59125:566::-;58152:7;;;;58151:8;58143:39;;;;-1:-1:-1;;;58143:39:0;;6580:2:1;58143:39:0;;;6562:21:1;6619:2;6599:18;;;6592:30;-1:-1:-1;;;6638:18:1;;;6631:48;6696:18;;58143:39:0;;;;;;;;;57713:4:::1;59240;59223:14;21623:7:::0;21814:13;-1:-1:-1;;21814:31:0;;21568:296;59223:14:::1;:21;;;;:::i;:::-;:34;;59215:59;;;::::0;-1:-1:-1;;;59215:59:0;;7189:2:1;59215:59:0::1;::::0;::::1;7171:21:1::0;7228:2;7208:18;;;7201:30;-1:-1:-1;;;7247:18:1;;;7240:42;7299:18;;59215:59:0::1;6987:336:1::0;59215:59:0::1;59332:11;::::0;59310:10:::1;59289:32;::::0;;;:20:::1;:32;::::0;;;;;:39:::1;::::0;59324:4;;59289:39:::1;:::i;:::-;:54;;59281:99;;;::::0;-1:-1:-1;;;59281:99:0;;7530:2:1;59281:99:0::1;::::0;::::1;7512:21:1::0;;;7549:18;;;7542:30;7608:34;7588:18;;;7581:62;7660:18;;59281:99:0::1;7328:356:1::0;59281:99:0::1;59412:10;59391:32;::::0;;;:20:::1;:32;::::0;;;;;59426:1:::1;-1:-1:-1::0;59387:218:0::1;;;59476:8;59483:1;59476:4:::0;:8:::1;:::i;:::-;59461:11;;:24;;;;:::i;:::-;59448:9;:37;59440:69;;;::::0;-1:-1:-1;;;59440:69:0;;8197:2:1;59440:69:0::1;::::0;::::1;8179:21:1::0;8236:2;8216:18;;;8209:30;-1:-1:-1;;;8255:18:1;;;8248:49;8314:18;;59440:69:0::1;7995:343:1::0;59440:69:0::1;59387:218;;;59569:4;59555:11;;:18;;;;:::i;:::-;59542:9;:31;59534:63;;;::::0;-1:-1:-1;;;59534:63:0;;8197:2:1;59534:63:0::1;::::0;::::1;8179:21:1::0;8236:2;8216:18;;;8209:30;-1:-1:-1;;;8255:18:1;;;8248:49;8314:18;;59534:63:0::1;7995:343:1::0;59534:63:0::1;59632:10;59611:32;::::0;;;:20:::1;:32;::::0;;;;:40;;59647:4;;59611:32;:40:::1;::::0;59647:4;;59611:40:::1;:::i;:::-;::::0;;;-1:-1:-1;59658:27:0::1;::::0;-1:-1:-1;59668:10:0::1;59680:4:::0;59658:9:::1;:27::i;:::-;59125:566:::0;:::o;60758:135::-;4511:13;:11;:13::i;:::-;60850:37:::1;::::0;60822:21:::1;::::0;60858:10:::1;::::0;60850:37;::::1;;;::::0;60822:21;;60804:15:::1;60850:37:::0;60804:15;60850:37;60822:21;60858:10;60850:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;60797:96;60758:135::o:0;58371:66::-;4511:13;:11;:13::i;:::-;58416:7:::1;:15:::0;;-1:-1:-1;;58416:15:0::1;::::0;;58371:66::o;38447:193::-;38593:39;38610:4;38616:2;38620:7;38593:39;;;;;;;;;;;;:16;:39::i;:::-;38447:193;;;:::o;58655:90::-;4511:13;:11;:13::i;:::-;58720:11:::1;:19:::0;58655:90::o;59935:266::-;4511:13;:11;:13::i;:::-;60021:9:::1;60016:180;60036:21:::0;;::::1;60016:180;;;60111:1;60086:10:::0;;60097:1;60086:13;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;60086:27:0::1;::::0;60078:66:::1;;;::::0;-1:-1:-1;;;60078:66:0;;8677:2:1;60078:66:0::1;::::0;::::1;8659:21:1::0;8716:2;8696:18;;;8689:30;8755:28;8735:18;;;8728:56;8801:18;;60078:66:0::1;8475:350:1::0;60078:66:0::1;60158:27;60168:10;;60179:1;60168:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;60183:1;60158:9;:27::i;:::-;60059:3:::0;::::1;::::0;::::1;:::i;:::-;;;;60016:180;;60322:99:::0;4511:13;:11;:13::i;:::-;60393:12:::1;:22;60408:7:::0;;60393:12;:22:::1;:::i;26789:152::-:0;26861:7;26904:27;26923:7;26904:18;:27::i;22331:233::-;22403:7;-1:-1:-1;;;;;22427:19:0;;22423:60;;22455:28;;-1:-1:-1;;;22455:28:0;;;;;;;;;;;22423:60;-1:-1:-1;;;;;;22501:25:0;;;;;:18;:25;;;;;;16490:13;22501:55;;22331:233::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;58302:63::-;4511:13;:11;:13::i;:::-;58345:7:::1;:14:::0;;-1:-1:-1;;58345:14:0::1;58355:4;58345:14;::::0;;58302:63::o;25572:104::-;25628:13;25661:7;25654:14;;;;;:::i;32445:234::-;55653:10;32540:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;32540:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;32540:60:0;;;;;;;;;;32616:55;;540:41:1;;;32540:49:0;;55653:10;32616:55;;513:18:1;32616:55:0;;;;;;;32445:234;;:::o;39238:407::-;39413:31;39426:4;39432:2;39436:7;39413:12;:31::i;:::-;-1:-1:-1;;;;;39459:14:0;;;:19;39455:183;;39498:56;39529:4;39535:2;39539:7;39548:5;39498:30;:56::i;:::-;39493:145;;39582:40;;-1:-1:-1;;;39582:40:0;;;;;;;;;;;39493:145;39238:407;;;;:::o;58524:125::-;4511:13;:11;:13::i;:::-;58594:11:::1;:24:::0;58524:125::o;60427:325::-;60500:13;60527:16;60535:7;60527;:16::i;:::-;60522:59;;60552:29;;-1:-1:-1;;;60552:29:0;;;;;;;;;;;60522:59;60588:21;60612:10;:8;:10::i;:::-;60588:34;;60642:7;60636:21;60661:1;60636:26;:110;;;;;;;;;;;;;;;;;60696:7;60705:18;60715:7;60705:9;:18::i;:::-;60679:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60636:110;60629:117;60427:325;-1:-1:-1;;;60427:325:0:o;58751:94::-;4511:13;:11;:13::i;:::-;58818:10:::1;:21:::0;;-1:-1:-1;;;;;58818:21:0;;::::1;;;-1:-1:-1::0;;;;;;58818:21:0;;::::1;::::0;;;::::1;::::0;;58751:94::o;32836:164::-;-1:-1:-1;;;;;32957:25:0;;;32933:4;32957:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32836:164::o;5531:201::-;4511:13;:11;:13::i;:::-;-1:-1:-1;;;;;5620:22:0;::::1;5612:73;;;::::0;-1:-1:-1;;;5612:73:0;;11898:2:1;5612:73:0::1;::::0;::::1;11880:21:1::0;11937:2;11917:18;;;11910:30;11976:34;11956:18;;;11949:62;-1:-1:-1;;;12027:18:1;;;12020:36;12073:19;;5612:73:0::1;11696:402:1::0;5612:73:0::1;5696:28;5715:8;5696:18;:28::i;59697:232::-:0;57758:3;59764:4;59752:9;;:16;;;;:::i;:::-;:29;;59744:54;;;;-1:-1:-1;;;59744:54:0;;12305:2:1;59744:54:0;;;12287:21:1;12344:2;12324:18;;;12317:30;-1:-1:-1;;;12363:18:1;;;12356:42;12415:18;;59744:54:0;12103:336:1;59744:54:0;59827:10;;;;;-1:-1:-1;;;;;59827:10:0;59813;:24;59805:60;;;;-1:-1:-1;;;59805:60:0;;12646:2:1;59805:60:0;;;12628:21:1;12685:2;12665:18;;;12658:30;12724:25;12704:18;;;12697:53;12767:18;;59805:60:0;12444:347:1;59805:60:0;59885:4;59872:9;;:17;;;;;;;:::i;33258:282::-;33323:4;33379:7;58975:1;33360:26;;:66;;;;;33413:13;;33403:7;:23;33360:66;:153;;;;-1:-1:-1;;33464:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33464:44:0;:49;;33258:282::o;27944:1275::-;28011:7;28046;;58975:1;28095:23;28091:1061;;28148:13;;28141:4;:20;28137:1015;;;28186:14;28203:23;;;:17;:23;;;;;;;-1:-1:-1;;;28292:24:0;;:29;;28288:845;;28957:113;28964:6;28974:1;28964:11;28957:113;;-1:-1:-1;;;29035:6:0;29017:25;;;;:17;:25;;;;;;28957:113;;28288:845;28163:989;28137:1015;29180:31;;-1:-1:-1;;;29180:31:0;;;;;;;;;;;49398:112;49475:27;49485:2;49489:8;49475:27;;;;;;;;;;;;:9;:27::i;4790:132::-;4698:6;;-1:-1:-1;;;;;4698:6:0;55653:10;4854:23;4846:68;;;;-1:-1:-1;;;4846:68:0;;12998:2:1;4846:68:0;;;12980:21:1;;;13017:18;;;13010:30;13076:34;13056:18;;;13049:62;13128:18;;4846:68:0;12796:356:1;5892:191:0;5985:6;;;-1:-1:-1;;;;;6002:17:0;;;-1:-1:-1;;;;;;6002:17:0;;;;;;;6035:40;;5985:6;;;6002:17;5985:6;;6035:40;;5966:16;;6035:40;5955:128;5892:191;:::o;41729:716::-;41913:88;;-1:-1:-1;;;41913:88:0;;41892:4;;-1:-1:-1;;;;;41913:45:0;;;;;:88;;55653:10;;41980:4;;41986:7;;41995:5;;41913:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41913:88:0;;;;;;;;-1:-1:-1;;41913:88:0;;;;;;;;;;;;:::i;:::-;;;41909:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42196:6;:13;42213:1;42196:18;42192:235;;42242:40;;-1:-1:-1;;;42242:40:0;;;;;;;;;;;42192:235;42385:6;42379:13;42370:6;42366:2;42362:15;42355:38;41909:529;-1:-1:-1;;;;;;42072:64:0;-1:-1:-1;;;42072:64:0;;-1:-1:-1;41729:716:0;;;;;;:::o;60209:107::-;60269:13;60298:12;60291:19;;;;;:::i;55773:1745::-;55838:17;56272:4;56265;56259:11;56255:22;56364:1;56358:4;56351:15;56439:4;56436:1;56432:12;56425:19;;;56521:1;56516:3;56509:14;56625:3;56864:5;56846:428;56912:1;56907:3;56903:11;56896:18;;57083:2;57077:4;57073:13;57069:2;57065:22;57060:3;57052:36;57177:2;57167:13;;57234:25;56846:428;57234:25;-1:-1:-1;57304:13:0;;;-1:-1:-1;;57419:14:0;;;57481:19;;;57419:14;55773:1745;-1:-1:-1;55773:1745:0:o;48625:689::-;48756:19;48762:2;48766:8;48756:5;:19::i;:::-;-1:-1:-1;;;;;48817:14:0;;;:19;48813:483;;48857:11;48871:13;48919:14;;;48952:233;48983:62;49022:1;49026:2;49030:7;;;;;;49039:5;48983:30;:62::i;:::-;48978:167;;49081:40;;-1:-1:-1;;;49081:40:0;;;;;;;;;;;48978:167;49180:3;49172:5;:11;48952:233;;49267:3;49250:13;;:20;49246:34;;49272:8;;;49246:34;48838:458;;48625:689;;;:::o;42907:2966::-;42980:20;43003:13;;;43031;;;43027:44;;43053:18;;-1:-1:-1;;;43053:18:0;;;;;;;;;;;43027:44;-1:-1:-1;;;;;43559:22:0;;;;;;:18;:22;;;;16628:2;43559:22;;;:71;;43597:32;43585:45;;43559:71;;;43873:31;;;:17;:31;;;;;-1:-1:-1;30609:15:0;;30583:24;30579:46;30178:11;30153:23;30149:41;30146:52;30136:63;;43873:173;;44108:23;;;;43873:31;;43559:22;;44873:25;43559:22;;44726:335;45387:1;45373:12;45369:20;45327:346;45428:3;45419:7;45416:16;45327:346;;45646:7;45636:8;45633:1;45606:25;45603:1;45600;45595:59;45481:1;45468:15;45327:346;;;45331:77;45706:8;45718:1;45706:13;45702:45;;45728:19;;-1:-1:-1;;;45728:19:0;;;;;;;;;;;45702:45;45764:13;:19;-1:-1:-1;38447:193:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:250::-;859:1;869:113;883:6;880:1;877:13;869:113;;;959:11;;;953:18;940:11;;;933:39;905:2;898:10;869:113;;;-1:-1:-1;;1016:1:1;998:16;;991:27;774:250::o;1029:271::-;1071:3;1109:5;1103:12;1136:6;1131:3;1124:19;1152:76;1221:6;1214:4;1209:3;1205:14;1198:4;1191:5;1187:16;1152:76;:::i;:::-;1282:2;1261:15;-1:-1:-1;;1257:29:1;1248:39;;;;1289:4;1244:50;;1029:271;-1:-1:-1;;1029:271:1:o;1305:220::-;1454:2;1443:9;1436:21;1417:4;1474:45;1515:2;1504:9;1500:18;1492:6;1474:45;:::i;1530:180::-;1589:6;1642:2;1630:9;1621:7;1617:23;1613:32;1610:52;;;1658:1;1655;1648:12;1610:52;-1:-1:-1;1681:23:1;;1530:180;-1:-1:-1;1530:180:1:o;1923:173::-;1991:20;;-1:-1:-1;;;;;2040:31:1;;2030:42;;2020:70;;2086:1;2083;2076:12;2020:70;1923:173;;;:::o;2101:254::-;2169:6;2177;2230:2;2218:9;2209:7;2205:23;2201:32;2198:52;;;2246:1;2243;2236:12;2198:52;2269:29;2288:9;2269:29;:::i;:::-;2259:39;2345:2;2330:18;;;;2317:32;;-1:-1:-1;;;2101:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:615::-;2779:6;2787;2840:2;2828:9;2819:7;2815:23;2811:32;2808:52;;;2856:1;2853;2846:12;2808:52;2896:9;2883:23;2925:18;2966:2;2958:6;2955:14;2952:34;;;2982:1;2979;2972:12;2952:34;3020:6;3009:9;3005:22;2995:32;;3065:7;3058:4;3054:2;3050:13;3046:27;3036:55;;3087:1;3084;3077:12;3036:55;3127:2;3114:16;3153:2;3145:6;3142:14;3139:34;;;3169:1;3166;3159:12;3139:34;3222:7;3217:2;3207:6;3204:1;3200:14;3196:2;3192:23;3188:32;3185:45;3182:65;;;3243:1;3240;3233:12;3182:65;3274:2;3266:11;;;;;3296:6;;-1:-1:-1;2693:615:1;;-1:-1:-1;;;;2693:615:1:o;3313:592::-;3384:6;3392;3445:2;3433:9;3424:7;3420:23;3416:32;3413:52;;;3461:1;3458;3451:12;3413:52;3501:9;3488:23;3530:18;3571:2;3563:6;3560:14;3557:34;;;3587:1;3584;3577:12;3557:34;3625:6;3614:9;3610:22;3600:32;;3670:7;3663:4;3659:2;3655:13;3651:27;3641:55;;3692:1;3689;3682:12;3641:55;3732:2;3719:16;3758:2;3750:6;3747:14;3744:34;;;3774:1;3771;3764:12;3744:34;3819:7;3814:2;3805:6;3801:2;3797:15;3793:24;3790:37;3787:57;;;3840:1;3837;3830:12;3910:186;3969:6;4022:2;4010:9;4001:7;3997:23;3993:32;3990:52;;;4038:1;4035;4028:12;3990:52;4061:29;4080:9;4061:29;:::i;4101:347::-;4166:6;4174;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;4266:29;4285:9;4266:29;:::i;:::-;4256:39;;4345:2;4334:9;4330:18;4317:32;4392:5;4385:13;4378:21;4371:5;4368:32;4358:60;;4414:1;4411;4404:12;4358:60;4437:5;4427:15;;;4101:347;;;;;:::o;4453:127::-;4514:10;4509:3;4505:20;4502:1;4495:31;4545:4;4542:1;4535:15;4569:4;4566:1;4559:15;4585:1138;4680:6;4688;4696;4704;4757:3;4745:9;4736:7;4732:23;4728:33;4725:53;;;4774:1;4771;4764:12;4725:53;4797:29;4816:9;4797:29;:::i;:::-;4787:39;;4845:38;4879:2;4868:9;4864:18;4845:38;:::i;:::-;4835:48;;4930:2;4919:9;4915:18;4902:32;4892:42;;4985:2;4974:9;4970:18;4957:32;5008:18;5049:2;5041:6;5038:14;5035:34;;;5065:1;5062;5055:12;5035:34;5103:6;5092:9;5088:22;5078:32;;5148:7;5141:4;5137:2;5133:13;5129:27;5119:55;;5170:1;5167;5160:12;5119:55;5206:2;5193:16;5228:2;5224;5221:10;5218:36;;;5234:18;;:::i;:::-;5309:2;5303:9;5277:2;5363:13;;-1:-1:-1;;5359:22:1;;;5383:2;5355:31;5351:40;5339:53;;;5407:18;;;5427:22;;;5404:46;5401:72;;;5453:18;;:::i;:::-;5493:10;5489:2;5482:22;5528:2;5520:6;5513:18;5568:7;5563:2;5558;5554;5550:11;5546:20;5543:33;5540:53;;;5589:1;5586;5579:12;5540:53;5645:2;5640;5636;5632:11;5627:2;5619:6;5615:15;5602:46;5690:1;5685:2;5680;5672:6;5668:15;5664:24;5657:35;5711:6;5701:16;;;;;;;4585:1138;;;;;;;:::o;5728:260::-;5796:6;5804;5857:2;5845:9;5836:7;5832:23;5828:32;5825:52;;;5873:1;5870;5863:12;5825:52;5896:29;5915:9;5896:29;:::i;:::-;5886:39;;5944:38;5978:2;5967:9;5963:18;5944:38;:::i;:::-;5934:48;;5728:260;;;;;:::o;5993:380::-;6072:1;6068:12;;;;6115;;;6136:61;;6190:4;6182:6;6178:17;6168:27;;6136:61;6243:2;6235:6;6232:14;6212:18;6209:38;6206:161;;6289:10;6284:3;6280:20;6277:1;6270:31;6324:4;6321:1;6314:15;6352:4;6349:1;6342:15;6206:161;;5993:380;;;:::o;6725:127::-;6786:10;6781:3;6777:20;6774:1;6767:31;6817:4;6814:1;6807:15;6841:4;6838:1;6831:15;6857:125;6922:9;;;6943:10;;;6940:36;;;6956:18;;:::i;7689:128::-;7756:9;;;7777:11;;;7774:37;;;7791:18;;:::i;7822:168::-;7895:9;;;7926;;7943:15;;;7937:22;;7923:37;7913:71;;7964:18;;:::i;8343:127::-;8404:10;8399:3;8395:20;8392:1;8385:31;8435:4;8432:1;8425:15;8459:4;8456:1;8449:15;8830:135;8869:3;8890:17;;;8887:43;;8910:18;;:::i;:::-;-1:-1:-1;8957:1:1;8946:13;;8830:135::o;9096:545::-;9198:2;9193:3;9190:11;9187:448;;;9234:1;9259:5;9255:2;9248:17;9304:4;9300:2;9290:19;9374:2;9362:10;9358:19;9355:1;9351:27;9345:4;9341:38;9410:4;9398:10;9395:20;9392:47;;;-1:-1:-1;9433:4:1;9392:47;9488:2;9483:3;9479:12;9476:1;9472:20;9466:4;9462:31;9452:41;;9543:82;9561:2;9554:5;9551:13;9543:82;;;9606:17;;;9587:1;9576:13;9543:82;;9817:1206;9941:18;9936:3;9933:27;9930:53;;;9963:18;;:::i;:::-;9992:94;10082:3;10042:38;10074:4;10068:11;10042:38;:::i;:::-;10036:4;9992:94;:::i;:::-;10112:1;10137:2;10132:3;10129:11;10154:1;10149:616;;;;10809:1;10826:3;10823:93;;;-1:-1:-1;10882:19:1;;;10869:33;10823:93;-1:-1:-1;;9774:1:1;9770:11;;;9766:24;9762:29;9752:40;9798:1;9794:11;;;9749:57;10929:78;;10122:895;;10149:616;9043:1;9036:14;;;9080:4;9067:18;;-1:-1:-1;;10185:17:1;;;10286:9;10308:229;10322:7;10319:1;10316:14;10308:229;;;10411:19;;;10398:33;10383:49;;10518:4;10503:20;;;;10471:1;10459:14;;;;10338:12;10308:229;;;10312:3;10565;10556:7;10553:16;10550:159;;;10689:1;10685:6;10679:3;10673;10670:1;10666:11;10662:21;10658:34;10654:39;10641:9;10636:3;10632:19;10619:33;10615:79;10607:6;10600:95;10550:159;;;10752:1;10746:3;10743:1;10739:11;10735:19;10729:4;10722:33;10122:895;;9817:1206;;;:::o;11028:663::-;11308:3;11346:6;11340:13;11362:66;11421:6;11416:3;11409:4;11401:6;11397:17;11362:66;:::i;:::-;11491:13;;11450:16;;;;11513:70;11491:13;11450:16;11560:4;11548:17;;11513:70;:::i;:::-;-1:-1:-1;;;11605:20:1;;11634:22;;;11683:1;11672:13;;11028:663;-1:-1:-1;;;;11028:663:1:o;13157:489::-;-1:-1:-1;;;;;13426:15:1;;;13408:34;;13478:15;;13473:2;13458:18;;13451:43;13525:2;13510:18;;13503:34;;;13573:3;13568:2;13553:18;;13546:31;;;13351:4;;13594:46;;13620:19;;13612:6;13594:46;:::i;:::-;13586:54;13157:489;-1:-1:-1;;;;;;13157:489:1:o;13651:249::-;13720:6;13773:2;13761:9;13752:7;13748:23;13744:32;13741:52;;;13789:1;13786;13779:12;13741:52;13821:9;13815:16;13840:30;13864:5;13840:30;:::i
Swarm Source
ipfs://0575bc117b8f9377c0e799984110e55b09e64eaff18df8031961c1c1dcd8b948
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.