ERC-721
Overview
Max Total Supply
79 KPNDZ
Holders
71
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 KPNDZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KryptoPandaz
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-17 */ // 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: IERC721A.sol // ERC721A Contracts v4.2.2 // 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; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _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 virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // 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`. ) 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 0x80 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // 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: KryptoPandaz.sol pragma solidity ^0.8.6; contract KryptoPandaz is ERC721A, Ownable { using Strings for uint; uint256 public MAX_SUPPLY = 777; uint256 public MAX_PER_TX = 2; uint256 public MAX_PER_WALLET = 2; uint256 public MINT_PRICE = 0.0055 ether; string public baseURI = "ipfs://QmVjFnUY1bJPahVhaV3QmBwCar1pDmW6zwzpd8spGt47YB/"; string public baseExt = ".json"; constructor() ERC721A("KryptoPandaz", "KPNDZ") {} function mint(uint256 amount) public payable { require(totalSupply() + amount <= MAX_SUPPLY , "Public Mint Sold Out."); require(amount <= MAX_PER_TX, "Amount Exceeds Max Per Transaction."); require(balanceOf(msg.sender) + amount <= MAX_PER_WALLET, "Amount Exceeds Max Per Wallet."); require(msg.value == (MINT_PRICE * amount), "Incorrect ETH Amount Sent."); _safeMint(msg.sender, amount); } function tokenURI(uint256 _tokenId) public view virtual override(ERC721A) returns (string memory) { return string(abi.encodePacked(baseURI, Strings.toString(_tokenId), baseExt)); } function setBaseURI(string calldata _baseURI) external onlyOwner { baseURI = _baseURI; } function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExt","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526103096009556002600a556002600b5566138a388a43c000600c556040518060600160405280603681526020016200320660369139600d9081620000499190620004ba565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e9081620000909190620004ba565b503480156200009e57600080fd5b506040518060400160405280600c81526020017f4b727970746f50616e64617a00000000000000000000000000000000000000008152506040518060400160405280600581526020017f4b504e445a00000000000000000000000000000000000000000000000000000081525081600290816200011c9190620004ba565b5080600390816200012e9190620004ba565b506200013f6200016d60201b60201c565b6000819055505050620001676200015b6200017260201b60201c565b6200017a60201b60201c565b620005a1565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c257607f821691505b602082108103620002d857620002d76200027a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003427fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000303565b6200034e868362000303565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200039b620003956200038f8462000366565b62000370565b62000366565b9050919050565b6000819050919050565b620003b7836200037a565b620003cf620003c682620003a2565b84845462000310565b825550505050565b600090565b620003e6620003d7565b620003f3818484620003ac565b505050565b5b818110156200041b576200040f600082620003dc565b600181019050620003f9565b5050565b601f8211156200046a576200043481620002de565b6200043f84620002f3565b810160208510156200044f578190505b620004676200045e85620002f3565b830182620003f8565b50505b505050565b600082821c905092915050565b60006200048f600019846008026200046f565b1980831691505092915050565b6000620004aa83836200047c565b9150826002028217905092915050565b620004c58262000240565b67ffffffffffffffff811115620004e157620004e06200024b565b5b620004ed8254620002a9565b620004fa8282856200041f565b600060209050601f8311600181146200053257600084156200051d578287015190505b6200052985826200049c565b86555062000599565b601f1984166200054286620002de565b60005b828110156200056c5784890151825560018201915060208501945060208101905062000545565b868310156200058c578489015162000588601f8916826200047c565b8355505b6001600288020188555050505b505050505050565b612c5580620005b16000396000f3fe6080604052600436106101815760003560e01c80636c0360eb116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461053d578063e985e9c51461057a578063f2fde38b146105b7578063f43a22dc146105e057610181565b8063a22cb465146104c0578063b88d4fde146104e9578063c002d23d1461051257610181565b80636c0360eb146103cf57806370a08231146103fa578063715018a6146104375780638da5cb5b1461044e57806395d89b4114610479578063a0712d68146104a457610181565b806318160ddd1161013e5780633ccfd60b116101185780633ccfd60b1461032957806342842e0e1461034057806355f804b3146103695780636352211e1461039257610181565b806318160ddd146102aa57806323b872dd146102d557806332cb6b0c146102fe57610181565b806301ffc9a71461018657806306fdde03146101c3578063077fc040146101ee578063081812fc14610219578063095ea7b3146102565780630f2cdd6c1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190611c9d565b61060b565b6040516101ba9190611ce5565b60405180910390f35b3480156101cf57600080fd5b506101d861069d565b6040516101e59190611d90565b60405180910390f35b3480156101fa57600080fd5b5061020361072f565b6040516102109190611d90565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b9190611de8565b6107bd565b60405161024d9190611e56565b60405180910390f35b34801561026257600080fd5b5061027d60048036038101906102789190611e9d565b61083c565b005b34801561028b57600080fd5b50610294610980565b6040516102a19190611eec565b60405180910390f35b3480156102b657600080fd5b506102bf610986565b6040516102cc9190611eec565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190611f07565b61099d565b005b34801561030a57600080fd5b50610313610cbf565b6040516103209190611eec565b60405180910390f35b34801561033557600080fd5b5061033e610cc5565b005b34801561034c57600080fd5b5061036760048036038101906103629190611f07565b610d16565b005b34801561037557600080fd5b50610390600480360381019061038b9190611fbf565b610d36565b005b34801561039e57600080fd5b506103b960048036038101906103b49190611de8565b610d54565b6040516103c69190611e56565b60405180910390f35b3480156103db57600080fd5b506103e4610d66565b6040516103f19190611d90565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c919061200c565b610df4565b60405161042e9190611eec565b60405180910390f35b34801561044357600080fd5b5061044c610eac565b005b34801561045a57600080fd5b50610463610ec0565b6040516104709190611e56565b60405180910390f35b34801561048557600080fd5b5061048e610eea565b60405161049b9190611d90565b60405180910390f35b6104be60048036038101906104b99190611de8565b610f7c565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190612065565b6110cc565b005b3480156104f557600080fd5b50610510600480360381019061050b91906121d5565b6111d7565b005b34801561051e57600080fd5b5061052761124a565b6040516105349190611eec565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190611de8565b611250565b6040516105719190611d90565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190612258565b611287565b6040516105ae9190611ce5565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d9919061200c565b61131b565b005b3480156105ec57600080fd5b506105f561139e565b6040516106029190611eec565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106965750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106ac906122c7565b80601f01602080910402602001604051908101604052809291908181526020018280546106d8906122c7565b80156107255780601f106106fa57610100808354040283529160200191610725565b820191906000526020600020905b81548152906001019060200180831161070857829003601f168201915b5050505050905090565b600e805461073c906122c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610768906122c7565b80156107b55780601f1061078a576101008083540402835291602001916107b5565b820191906000526020600020905b81548152906001019060200180831161079857829003601f168201915b505050505081565b60006107c8826113a4565b6107fe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084782610d54565b90508073ffffffffffffffffffffffffffffffffffffffff16610868611403565b73ffffffffffffffffffffffffffffffffffffffff16146108cb576108948161088f611403565b611287565b6108ca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b600061099061140b565b6001546000540303905090565b60006109a882611410565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a0f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a1b846114dc565b91509150610a318187610a2c611403565b611503565b610a7d57610a4686610a41611403565b611287565b610a7c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ae3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af08686866001611547565b8015610afb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bc985610ba588888761154d565b7c020000000000000000000000000000000000000000000000000000000017611575565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c4f5760006001850190506000600460008381526020019081526020016000205403610c4d576000548114610c4c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cb786868660016115a0565b505050505050565b60095481565b610ccd6115a6565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d13573d6000803e3d6000fd5b50565b610d31838383604051806020016040528060008152506111d7565b505050565b610d3e6115a6565b8181600d9182610d4f9291906124af565b505050565b6000610d5f82611410565b9050919050565b600d8054610d73906122c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9f906122c7565b8015610dec5780601f10610dc157610100808354040283529160200191610dec565b820191906000526020600020905b815481529060010190602001808311610dcf57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e5b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eb46115a6565b610ebe6000611624565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ef9906122c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f25906122c7565b8015610f725780601f10610f4757610100808354040283529160200191610f72565b820191906000526020600020905b815481529060010190602001808311610f5557829003601f168201915b5050505050905090565b60095481610f88610986565b610f9291906125ae565b1115610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca9061262e565b60405180910390fd5b600a54811115611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f906126c0565b60405180910390fd5b600b548161102533610df4565b61102f91906125ae565b1115611070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110679061272c565b60405180910390fd5b80600c5461107e919061274c565b34146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b6906127f2565b60405180910390fd5b6110c933826116ea565b50565b80600760006110d9611403565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611186611403565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111cb9190611ce5565b60405180910390a35050565b6111e284848461099d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112445761120d84848484611708565b611243576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b6060600d61125d83611858565b600e604051602001611271939291906128d1565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113236115a6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138990612974565b60405180910390fd5b61139b81611624565b50565b600a5481565b6000816113af61140b565b111580156113be575060005482105b80156113fc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061141f61140b565b116114a5576000548110156114a45760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036114a2575b6000810361149857600460008360019003935083815260200190815260200160002054905061146e565b80925050506114d7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86115648686846119b8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6115ae6119c1565b73ffffffffffffffffffffffffffffffffffffffff166115cc610ec0565b73ffffffffffffffffffffffffffffffffffffffff1614611622576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611619906129e0565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6117048282604051806020016040528060008152506119c9565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261172e611403565b8786866040518563ffffffff1660e01b81526004016117509493929190612a55565b6020604051808303816000875af192505050801561178c57506040513d601f19601f820116820180604052508101906117899190612ab6565b60015b611805573d80600081146117bc576040519150601f19603f3d011682016040523d82523d6000602084013e6117c1565b606091505b5060008151036117fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361189f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506119b3565b600082905060005b600082146118d15780806118ba90612ae3565b915050600a826118ca9190612b5a565b91506118a7565b60008167ffffffffffffffff8111156118ed576118ec6120aa565b5b6040519080825280601f01601f19166020018201604052801561191f5781602001600182028036833780820191505090505b5090505b600085146119ac576001826119389190612b8b565b9150600a856119479190612bbf565b603061195391906125ae565b60f81b81838151811061196957611968612bf0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856119a59190612b5a565b9450611923565b8093505050505b919050565b60009392505050565b600033905090565b6119d38383611a66565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a6157600080549050600083820390505b611a136000868380600101945086611708565b611a49576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611a00578160005414611a5e57600080fd5b50505b505050565b60008054905060008203611aa6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ab36000848385611547565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b2a83611b1b600086600061154d565b611b2485611c21565b17611575565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611bcb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611b90565b5060008203611c06576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611c1c60008483856115a0565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611c7a81611c45565b8114611c8557600080fd5b50565b600081359050611c9781611c71565b92915050565b600060208284031215611cb357611cb2611c3b565b5b6000611cc184828501611c88565b91505092915050565b60008115159050919050565b611cdf81611cca565b82525050565b6000602082019050611cfa6000830184611cd6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d3a578082015181840152602081019050611d1f565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d6282611d00565b611d6c8185611d0b565b9350611d7c818560208601611d1c565b611d8581611d46565b840191505092915050565b60006020820190508181036000830152611daa8184611d57565b905092915050565b6000819050919050565b611dc581611db2565b8114611dd057600080fd5b50565b600081359050611de281611dbc565b92915050565b600060208284031215611dfe57611dfd611c3b565b5b6000611e0c84828501611dd3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e4082611e15565b9050919050565b611e5081611e35565b82525050565b6000602082019050611e6b6000830184611e47565b92915050565b611e7a81611e35565b8114611e8557600080fd5b50565b600081359050611e9781611e71565b92915050565b60008060408385031215611eb457611eb3611c3b565b5b6000611ec285828601611e88565b9250506020611ed385828601611dd3565b9150509250929050565b611ee681611db2565b82525050565b6000602082019050611f016000830184611edd565b92915050565b600080600060608486031215611f2057611f1f611c3b565b5b6000611f2e86828701611e88565b9350506020611f3f86828701611e88565b9250506040611f5086828701611dd3565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112611f7f57611f7e611f5a565b5b8235905067ffffffffffffffff811115611f9c57611f9b611f5f565b5b602083019150836001820283011115611fb857611fb7611f64565b5b9250929050565b60008060208385031215611fd657611fd5611c3b565b5b600083013567ffffffffffffffff811115611ff457611ff3611c40565b5b61200085828601611f69565b92509250509250929050565b60006020828403121561202257612021611c3b565b5b600061203084828501611e88565b91505092915050565b61204281611cca565b811461204d57600080fd5b50565b60008135905061205f81612039565b92915050565b6000806040838503121561207c5761207b611c3b565b5b600061208a85828601611e88565b925050602061209b85828601612050565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6120e282611d46565b810181811067ffffffffffffffff82111715612101576121006120aa565b5b80604052505050565b6000612114611c31565b905061212082826120d9565b919050565b600067ffffffffffffffff8211156121405761213f6120aa565b5b61214982611d46565b9050602081019050919050565b82818337600083830152505050565b600061217861217384612125565b61210a565b905082815260208101848484011115612194576121936120a5565b5b61219f848285612156565b509392505050565b600082601f8301126121bc576121bb611f5a565b5b81356121cc848260208601612165565b91505092915050565b600080600080608085870312156121ef576121ee611c3b565b5b60006121fd87828801611e88565b945050602061220e87828801611e88565b935050604061221f87828801611dd3565b925050606085013567ffffffffffffffff8111156122405761223f611c40565b5b61224c878288016121a7565b91505092959194509250565b6000806040838503121561226f5761226e611c3b565b5b600061227d85828601611e88565b925050602061228e85828601611e88565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806122df57607f821691505b6020821081036122f2576122f1612298565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026123657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612328565b61236f8683612328565b95508019841693508086168417925050509392505050565b6000819050919050565b60006123ac6123a76123a284611db2565b612387565b611db2565b9050919050565b6000819050919050565b6123c683612391565b6123da6123d2826123b3565b848454612335565b825550505050565b600090565b6123ef6123e2565b6123fa8184846123bd565b505050565b5b8181101561241e576124136000826123e7565b600181019050612400565b5050565b601f8211156124635761243481612303565b61243d84612318565b8101602085101561244c578190505b61246061245885612318565b8301826123ff565b50505b505050565b600082821c905092915050565b600061248660001984600802612468565b1980831691505092915050565b600061249f8383612475565b9150826002028217905092915050565b6124b983836122f8565b67ffffffffffffffff8111156124d2576124d16120aa565b5b6124dc82546122c7565b6124e7828285612422565b6000601f8311600181146125165760008415612504578287013590505b61250e8582612493565b865550612576565b601f19841661252486612303565b60005b8281101561254c57848901358255600182019150602085019450602081019050612527565b868310156125695784890135612565601f891682612475565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125b982611db2565b91506125c483611db2565b92508282019050808211156125dc576125db61257f565b5b92915050565b7f5075626c6963204d696e7420536f6c64204f75742e0000000000000000000000600082015250565b6000612618601583611d0b565b9150612623826125e2565b602082019050919050565b600060208201905081810360008301526126478161260b565b9050919050565b7f416d6f756e742045786365656473204d617820506572205472616e736163746960008201527f6f6e2e0000000000000000000000000000000000000000000000000000000000602082015250565b60006126aa602383611d0b565b91506126b58261264e565b604082019050919050565b600060208201905081810360008301526126d98161269d565b9050919050565b7f416d6f756e742045786365656473204d6178205065722057616c6c65742e0000600082015250565b6000612716601e83611d0b565b9150612721826126e0565b602082019050919050565b6000602082019050818103600083015261274581612709565b9050919050565b600061275782611db2565b915061276283611db2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561279b5761279a61257f565b5b828202905092915050565b7f496e636f72726563742045544820416d6f756e742053656e742e000000000000600082015250565b60006127dc601a83611d0b565b91506127e7826127a6565b602082019050919050565b6000602082019050818103600083015261280b816127cf565b9050919050565b600081905092915050565b6000815461282a816122c7565b6128348186612812565b9450600182166000811461284f576001811461286457612897565b60ff1983168652811515820286019350612897565b61286d85612303565b60005b8381101561288f57815481890152600182019150602081019050612870565b838801955050505b50505092915050565b60006128ab82611d00565b6128b58185612812565b93506128c5818560208601611d1c565b80840191505092915050565b60006128dd828661281d565b91506128e982856128a0565b91506128f5828461281d565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061295e602683611d0b565b915061296982612902565b604082019050919050565b6000602082019050818103600083015261298d81612951565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129ca602083611d0b565b91506129d582612994565b602082019050919050565b600060208201905081810360008301526129f9816129bd565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612a2782612a00565b612a318185612a0b565b9350612a41818560208601611d1c565b612a4a81611d46565b840191505092915050565b6000608082019050612a6a6000830187611e47565b612a776020830186611e47565b612a846040830185611edd565b8181036060830152612a968184612a1c565b905095945050505050565b600081519050612ab081611c71565b92915050565b600060208284031215612acc57612acb611c3b565b5b6000612ada84828501612aa1565b91505092915050565b6000612aee82611db2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b2057612b1f61257f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b6582611db2565b9150612b7083611db2565b925082612b8057612b7f612b2b565b5b828204905092915050565b6000612b9682611db2565b9150612ba183611db2565b9250828203905081811115612bb957612bb861257f565b5b92915050565b6000612bca82611db2565b9150612bd583611db2565b925082612be557612be4612b2b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220ec1f168c357c7848e8baf9422c7a4375ed1ef670e29dc2188b65f5a70c7e24ad64736f6c63430008100033697066733a2f2f516d566a466e555931624a5061685668615633516d42774361723170446d57367a777a70643873704774343759422f
Deployed Bytecode
0x6080604052600436106101815760003560e01c80636c0360eb116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461053d578063e985e9c51461057a578063f2fde38b146105b7578063f43a22dc146105e057610181565b8063a22cb465146104c0578063b88d4fde146104e9578063c002d23d1461051257610181565b80636c0360eb146103cf57806370a08231146103fa578063715018a6146104375780638da5cb5b1461044e57806395d89b4114610479578063a0712d68146104a457610181565b806318160ddd1161013e5780633ccfd60b116101185780633ccfd60b1461032957806342842e0e1461034057806355f804b3146103695780636352211e1461039257610181565b806318160ddd146102aa57806323b872dd146102d557806332cb6b0c146102fe57610181565b806301ffc9a71461018657806306fdde03146101c3578063077fc040146101ee578063081812fc14610219578063095ea7b3146102565780630f2cdd6c1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190611c9d565b61060b565b6040516101ba9190611ce5565b60405180910390f35b3480156101cf57600080fd5b506101d861069d565b6040516101e59190611d90565b60405180910390f35b3480156101fa57600080fd5b5061020361072f565b6040516102109190611d90565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b9190611de8565b6107bd565b60405161024d9190611e56565b60405180910390f35b34801561026257600080fd5b5061027d60048036038101906102789190611e9d565b61083c565b005b34801561028b57600080fd5b50610294610980565b6040516102a19190611eec565b60405180910390f35b3480156102b657600080fd5b506102bf610986565b6040516102cc9190611eec565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190611f07565b61099d565b005b34801561030a57600080fd5b50610313610cbf565b6040516103209190611eec565b60405180910390f35b34801561033557600080fd5b5061033e610cc5565b005b34801561034c57600080fd5b5061036760048036038101906103629190611f07565b610d16565b005b34801561037557600080fd5b50610390600480360381019061038b9190611fbf565b610d36565b005b34801561039e57600080fd5b506103b960048036038101906103b49190611de8565b610d54565b6040516103c69190611e56565b60405180910390f35b3480156103db57600080fd5b506103e4610d66565b6040516103f19190611d90565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c919061200c565b610df4565b60405161042e9190611eec565b60405180910390f35b34801561044357600080fd5b5061044c610eac565b005b34801561045a57600080fd5b50610463610ec0565b6040516104709190611e56565b60405180910390f35b34801561048557600080fd5b5061048e610eea565b60405161049b9190611d90565b60405180910390f35b6104be60048036038101906104b99190611de8565b610f7c565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190612065565b6110cc565b005b3480156104f557600080fd5b50610510600480360381019061050b91906121d5565b6111d7565b005b34801561051e57600080fd5b5061052761124a565b6040516105349190611eec565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190611de8565b611250565b6040516105719190611d90565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190612258565b611287565b6040516105ae9190611ce5565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d9919061200c565b61131b565b005b3480156105ec57600080fd5b506105f561139e565b6040516106029190611eec565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106965750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106ac906122c7565b80601f01602080910402602001604051908101604052809291908181526020018280546106d8906122c7565b80156107255780601f106106fa57610100808354040283529160200191610725565b820191906000526020600020905b81548152906001019060200180831161070857829003601f168201915b5050505050905090565b600e805461073c906122c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610768906122c7565b80156107b55780601f1061078a576101008083540402835291602001916107b5565b820191906000526020600020905b81548152906001019060200180831161079857829003601f168201915b505050505081565b60006107c8826113a4565b6107fe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084782610d54565b90508073ffffffffffffffffffffffffffffffffffffffff16610868611403565b73ffffffffffffffffffffffffffffffffffffffff16146108cb576108948161088f611403565b611287565b6108ca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b600061099061140b565b6001546000540303905090565b60006109a882611410565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a0f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a1b846114dc565b91509150610a318187610a2c611403565b611503565b610a7d57610a4686610a41611403565b611287565b610a7c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ae3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af08686866001611547565b8015610afb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bc985610ba588888761154d565b7c020000000000000000000000000000000000000000000000000000000017611575565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c4f5760006001850190506000600460008381526020019081526020016000205403610c4d576000548114610c4c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cb786868660016115a0565b505050505050565b60095481565b610ccd6115a6565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d13573d6000803e3d6000fd5b50565b610d31838383604051806020016040528060008152506111d7565b505050565b610d3e6115a6565b8181600d9182610d4f9291906124af565b505050565b6000610d5f82611410565b9050919050565b600d8054610d73906122c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9f906122c7565b8015610dec5780601f10610dc157610100808354040283529160200191610dec565b820191906000526020600020905b815481529060010190602001808311610dcf57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e5b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eb46115a6565b610ebe6000611624565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ef9906122c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f25906122c7565b8015610f725780601f10610f4757610100808354040283529160200191610f72565b820191906000526020600020905b815481529060010190602001808311610f5557829003601f168201915b5050505050905090565b60095481610f88610986565b610f9291906125ae565b1115610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca9061262e565b60405180910390fd5b600a54811115611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f906126c0565b60405180910390fd5b600b548161102533610df4565b61102f91906125ae565b1115611070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110679061272c565b60405180910390fd5b80600c5461107e919061274c565b34146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b6906127f2565b60405180910390fd5b6110c933826116ea565b50565b80600760006110d9611403565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611186611403565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111cb9190611ce5565b60405180910390a35050565b6111e284848461099d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112445761120d84848484611708565b611243576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b6060600d61125d83611858565b600e604051602001611271939291906128d1565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113236115a6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138990612974565b60405180910390fd5b61139b81611624565b50565b600a5481565b6000816113af61140b565b111580156113be575060005482105b80156113fc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061141f61140b565b116114a5576000548110156114a45760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036114a2575b6000810361149857600460008360019003935083815260200190815260200160002054905061146e565b80925050506114d7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86115648686846119b8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6115ae6119c1565b73ffffffffffffffffffffffffffffffffffffffff166115cc610ec0565b73ffffffffffffffffffffffffffffffffffffffff1614611622576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611619906129e0565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6117048282604051806020016040528060008152506119c9565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261172e611403565b8786866040518563ffffffff1660e01b81526004016117509493929190612a55565b6020604051808303816000875af192505050801561178c57506040513d601f19601f820116820180604052508101906117899190612ab6565b60015b611805573d80600081146117bc576040519150601f19603f3d011682016040523d82523d6000602084013e6117c1565b606091505b5060008151036117fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361189f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506119b3565b600082905060005b600082146118d15780806118ba90612ae3565b915050600a826118ca9190612b5a565b91506118a7565b60008167ffffffffffffffff8111156118ed576118ec6120aa565b5b6040519080825280601f01601f19166020018201604052801561191f5781602001600182028036833780820191505090505b5090505b600085146119ac576001826119389190612b8b565b9150600a856119479190612bbf565b603061195391906125ae565b60f81b81838151811061196957611968612bf0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856119a59190612b5a565b9450611923565b8093505050505b919050565b60009392505050565b600033905090565b6119d38383611a66565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a6157600080549050600083820390505b611a136000868380600101945086611708565b611a49576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611a00578160005414611a5e57600080fd5b50505b505050565b60008054905060008203611aa6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ab36000848385611547565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b2a83611b1b600086600061154d565b611b2485611c21565b17611575565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611bcb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611b90565b5060008203611c06576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611c1c60008483856115a0565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611c7a81611c45565b8114611c8557600080fd5b50565b600081359050611c9781611c71565b92915050565b600060208284031215611cb357611cb2611c3b565b5b6000611cc184828501611c88565b91505092915050565b60008115159050919050565b611cdf81611cca565b82525050565b6000602082019050611cfa6000830184611cd6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d3a578082015181840152602081019050611d1f565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d6282611d00565b611d6c8185611d0b565b9350611d7c818560208601611d1c565b611d8581611d46565b840191505092915050565b60006020820190508181036000830152611daa8184611d57565b905092915050565b6000819050919050565b611dc581611db2565b8114611dd057600080fd5b50565b600081359050611de281611dbc565b92915050565b600060208284031215611dfe57611dfd611c3b565b5b6000611e0c84828501611dd3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e4082611e15565b9050919050565b611e5081611e35565b82525050565b6000602082019050611e6b6000830184611e47565b92915050565b611e7a81611e35565b8114611e8557600080fd5b50565b600081359050611e9781611e71565b92915050565b60008060408385031215611eb457611eb3611c3b565b5b6000611ec285828601611e88565b9250506020611ed385828601611dd3565b9150509250929050565b611ee681611db2565b82525050565b6000602082019050611f016000830184611edd565b92915050565b600080600060608486031215611f2057611f1f611c3b565b5b6000611f2e86828701611e88565b9350506020611f3f86828701611e88565b9250506040611f5086828701611dd3565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112611f7f57611f7e611f5a565b5b8235905067ffffffffffffffff811115611f9c57611f9b611f5f565b5b602083019150836001820283011115611fb857611fb7611f64565b5b9250929050565b60008060208385031215611fd657611fd5611c3b565b5b600083013567ffffffffffffffff811115611ff457611ff3611c40565b5b61200085828601611f69565b92509250509250929050565b60006020828403121561202257612021611c3b565b5b600061203084828501611e88565b91505092915050565b61204281611cca565b811461204d57600080fd5b50565b60008135905061205f81612039565b92915050565b6000806040838503121561207c5761207b611c3b565b5b600061208a85828601611e88565b925050602061209b85828601612050565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6120e282611d46565b810181811067ffffffffffffffff82111715612101576121006120aa565b5b80604052505050565b6000612114611c31565b905061212082826120d9565b919050565b600067ffffffffffffffff8211156121405761213f6120aa565b5b61214982611d46565b9050602081019050919050565b82818337600083830152505050565b600061217861217384612125565b61210a565b905082815260208101848484011115612194576121936120a5565b5b61219f848285612156565b509392505050565b600082601f8301126121bc576121bb611f5a565b5b81356121cc848260208601612165565b91505092915050565b600080600080608085870312156121ef576121ee611c3b565b5b60006121fd87828801611e88565b945050602061220e87828801611e88565b935050604061221f87828801611dd3565b925050606085013567ffffffffffffffff8111156122405761223f611c40565b5b61224c878288016121a7565b91505092959194509250565b6000806040838503121561226f5761226e611c3b565b5b600061227d85828601611e88565b925050602061228e85828601611e88565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806122df57607f821691505b6020821081036122f2576122f1612298565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026123657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612328565b61236f8683612328565b95508019841693508086168417925050509392505050565b6000819050919050565b60006123ac6123a76123a284611db2565b612387565b611db2565b9050919050565b6000819050919050565b6123c683612391565b6123da6123d2826123b3565b848454612335565b825550505050565b600090565b6123ef6123e2565b6123fa8184846123bd565b505050565b5b8181101561241e576124136000826123e7565b600181019050612400565b5050565b601f8211156124635761243481612303565b61243d84612318565b8101602085101561244c578190505b61246061245885612318565b8301826123ff565b50505b505050565b600082821c905092915050565b600061248660001984600802612468565b1980831691505092915050565b600061249f8383612475565b9150826002028217905092915050565b6124b983836122f8565b67ffffffffffffffff8111156124d2576124d16120aa565b5b6124dc82546122c7565b6124e7828285612422565b6000601f8311600181146125165760008415612504578287013590505b61250e8582612493565b865550612576565b601f19841661252486612303565b60005b8281101561254c57848901358255600182019150602085019450602081019050612527565b868310156125695784890135612565601f891682612475565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125b982611db2565b91506125c483611db2565b92508282019050808211156125dc576125db61257f565b5b92915050565b7f5075626c6963204d696e7420536f6c64204f75742e0000000000000000000000600082015250565b6000612618601583611d0b565b9150612623826125e2565b602082019050919050565b600060208201905081810360008301526126478161260b565b9050919050565b7f416d6f756e742045786365656473204d617820506572205472616e736163746960008201527f6f6e2e0000000000000000000000000000000000000000000000000000000000602082015250565b60006126aa602383611d0b565b91506126b58261264e565b604082019050919050565b600060208201905081810360008301526126d98161269d565b9050919050565b7f416d6f756e742045786365656473204d6178205065722057616c6c65742e0000600082015250565b6000612716601e83611d0b565b9150612721826126e0565b602082019050919050565b6000602082019050818103600083015261274581612709565b9050919050565b600061275782611db2565b915061276283611db2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561279b5761279a61257f565b5b828202905092915050565b7f496e636f72726563742045544820416d6f756e742053656e742e000000000000600082015250565b60006127dc601a83611d0b565b91506127e7826127a6565b602082019050919050565b6000602082019050818103600083015261280b816127cf565b9050919050565b600081905092915050565b6000815461282a816122c7565b6128348186612812565b9450600182166000811461284f576001811461286457612897565b60ff1983168652811515820286019350612897565b61286d85612303565b60005b8381101561288f57815481890152600182019150602081019050612870565b838801955050505b50505092915050565b60006128ab82611d00565b6128b58185612812565b93506128c5818560208601611d1c565b80840191505092915050565b60006128dd828661281d565b91506128e982856128a0565b91506128f5828461281d565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061295e602683611d0b565b915061296982612902565b604082019050919050565b6000602082019050818103600083015261298d81612951565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129ca602083611d0b565b91506129d582612994565b602082019050919050565b600060208201905081810360008301526129f9816129bd565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612a2782612a00565b612a318185612a0b565b9350612a41818560208601611d1c565b612a4a81611d46565b840191505092915050565b6000608082019050612a6a6000830187611e47565b612a776020830186611e47565b612a846040830185611edd565b8181036060830152612a968184612a1c565b905095945050505050565b600081519050612ab081611c71565b92915050565b600060208284031215612acc57612acb611c3b565b5b6000612ada84828501612aa1565b91505092915050565b6000612aee82611db2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b2057612b1f61257f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b6582611db2565b9150612b7083611db2565b925082612b8057612b7f612b2b565b5b828204905092915050565b6000612b9682611db2565b9150612ba183611db2565b9250828203905081811115612bb957612bb861257f565b5b92915050565b6000612bca82611db2565b9150612bd583611db2565b925082612be557612be4612b2b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220ec1f168c357c7848e8baf9422c7a4375ed1ef670e29dc2188b65f5a70c7e24ad64736f6c63430008100033
Deployed Bytecode Sourcemap
57031:1355:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24381:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25283:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57365:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31766:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31207:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57189:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21034:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35405:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57115:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58274:109;;;;;;;;;;;;;:::i;:::-;;38318:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58164:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26676:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57278:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22218:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25459:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57462:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32324:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39101:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57229:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57912:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32715:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57153:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24381:639;24466:4;24805:10;24790:25;;:11;:25;;;;:102;;;;24882:10;24867:25;;:11;:25;;;;24790:102;:179;;;;24959:10;24944:25;;:11;:25;;;;24790:179;24770:199;;24381:639;;;:::o;25283:100::-;25337:13;25370:5;25363:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25283:100;:::o;57365:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31766:218::-;31842:7;31867:16;31875:7;31867;:16::i;:::-;31862:64;;31892:34;;;;;;;;;;;;;;31862:64;31946:15;:24;31962:7;31946:24;;;;;;;;;;;:30;;;;;;;;;;;;31939:37;;31766:218;;;:::o;31207:400::-;31288:13;31304:16;31312:7;31304;:16::i;:::-;31288:32;;31360:5;31337:28;;:19;:17;:19::i;:::-;:28;;;31333:175;;31385:44;31402:5;31409:19;:17;:19::i;:::-;31385:16;:44::i;:::-;31380:128;;31457:35;;;;;;;;;;;;;;31380:128;31333:175;31553:2;31520:15;:24;31536:7;31520:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31591:7;31587:2;31571:28;;31580:5;31571:28;;;;;;;;;;;;31277:330;31207:400;;:::o;57189:33::-;;;;:::o;21034:323::-;21095:7;21323:15;:13;:15::i;:::-;21308:12;;21292:13;;:28;:46;21285:53;;21034:323;:::o;35405:2817::-;35539:27;35569;35588:7;35569:18;:27::i;:::-;35539:57;;35654:4;35613:45;;35629:19;35613:45;;;35609:86;;35667:28;;;;;;;;;;;;;;35609:86;35709:27;35738:23;35765:35;35792:7;35765:26;:35::i;:::-;35708:92;;;;35900:68;35925:15;35942:4;35948:19;:17;:19::i;:::-;35900:24;:68::i;:::-;35895:180;;35988:43;36005:4;36011:19;:17;:19::i;:::-;35988:16;:43::i;:::-;35983:92;;36040:35;;;;;;;;;;;;;;35983:92;35895:180;36106:1;36092:16;;:2;:16;;;36088:52;;36117:23;;;;;;;;;;;;;;36088:52;36153:43;36175:4;36181:2;36185:7;36194:1;36153:21;:43::i;:::-;36289:15;36286:160;;;36429:1;36408:19;36401:30;36286:160;36826:18;:24;36845:4;36826:24;;;;;;;;;;;;;;;;36824:26;;;;;;;;;;;;36895:18;:22;36914:2;36895:22;;;;;;;;;;;;;;;;36893:24;;;;;;;;;;;37217:146;37254:2;37303:45;37318:4;37324:2;37328:19;37303:14;:45::i;:::-;17433:8;37275:73;37217:18;:146::i;:::-;37188:17;:26;37206:7;37188:26;;;;;;;;;;;:175;;;;37534:1;17433:8;37483:19;:47;:52;37479:627;;37556:19;37588:1;37578:7;:11;37556:33;;37745:1;37711:17;:30;37729:11;37711:30;;;;;;;;;;;;:35;37707:384;;37849:13;;37834:11;:28;37830:242;;38029:19;37996:17;:30;38014:11;37996:30;;;;;;;;;;;:52;;;;37830:242;37707:384;37537:569;37479:627;38153:7;38149:2;38134:27;;38143:4;38134:27;;;;;;;;;;;;38172:42;38193:4;38199:2;38203:7;38212:1;38172:20;:42::i;:::-;35528:2694;;;35405:2817;;;:::o;57115:31::-;;;;:::o;58274:109::-;4511:13;:11;:13::i;:::-;58332:10:::1;58324:28;;:51;58353:21;58324:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58274:109::o:0;38318:185::-;38456:39;38473:4;38479:2;38483:7;38456:39;;;;;;;;;;;;:16;:39::i;:::-;38318:185;;;:::o;58164:102::-;4511:13;:11;:13::i;:::-;58250:8:::1;;58240:7;:18;;;;;;;:::i;:::-;;58164:102:::0;;:::o;26676:152::-;26748:7;26791:27;26810:7;26791:18;:27::i;:::-;26768:52;;26676:152;;;:::o;57278:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22218:233::-;22290:7;22331:1;22314:19;;:5;:19;;;22310:60;;22342:28;;;;;;;;;;;;;;22310:60;16377:13;22388:18;:25;22407:5;22388:25;;;;;;;;;;;;;;;;:55;22381:62;;22218:233;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;25459:104::-;25515:13;25548:7;25541:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25459:104;:::o;57462:442::-;57552:10;;57542:6;57526:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;57518:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;57618:10;;57608:6;:20;;57600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57721:14;;57711:6;57687:21;57697:10;57687:9;:21::i;:::-;:30;;;;:::i;:::-;:48;;57679:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;57816:6;57803:10;;:19;;;;:::i;:::-;57789:9;:34;57781:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;57867:29;57877:10;57889:6;57867:9;:29::i;:::-;57462:442;:::o;32324:234::-;32471:8;32419:18;:39;32438:19;:17;:19::i;:::-;32419:39;;;;;;;;;;;;;;;:49;32459:8;32419:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32531:8;32495:55;;32510:19;:17;:19::i;:::-;32495:55;;;32541:8;32495:55;;;;;;:::i;:::-;;;;;;;;32324:234;;:::o;39101:399::-;39268:31;39281:4;39287:2;39291:7;39268:12;:31::i;:::-;39332:1;39314:2;:14;;;:19;39310:183;;39353:56;39384:4;39390:2;39394:7;39403:5;39353:30;:56::i;:::-;39348:145;;39437:40;;;;;;;;;;;;;;39348:145;39310:183;39101:399;;;;:::o;57229:40::-;;;;:::o;57912:244::-;58040:13;58102:7;58111:26;58128:8;58111:16;:26::i;:::-;58139:7;58085:62;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58071:77;;57912:244;;;:::o;32715:164::-;32812:4;32836:18;:25;32855:5;32836:25;;;;;;;;;;;;;;;:35;32862:8;32836:35;;;;;;;;;;;;;;;;;;;;;;;;;32829:42;;32715:164;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;::::0;5612:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;57153:29::-;;;;:::o;33137:282::-;33202:4;33258:7;33239:15;:13;:15::i;:::-;:26;;:66;;;;;33292:13;;33282:7;:23;33239:66;:153;;;;;33391:1;17153:8;33343:17;:26;33361:7;33343:26;;;;;;;;;;;;:44;:49;33239:153;33219:173;;33137:282;;;:::o;55175:105::-;55235:7;55262:10;55255:17;;55175:105;:::o;20550:92::-;20606:7;20550:92;:::o;27831:1275::-;27898:7;27918:12;27933:7;27918:22;;28001:4;27982:15;:13;:15::i;:::-;:23;27978:1061;;28035:13;;28028:4;:20;28024:1015;;;28073:14;28090:17;:23;28108:4;28090:23;;;;;;;;;;;;28073:40;;28207:1;17153:8;28179:6;:24;:29;28175:845;;28844:113;28861:1;28851:6;:11;28844:113;;28904:17;:25;28922:6;;;;;;;28904:25;;;;;;;;;;;;28895:34;;28844:113;;;28990:6;28983:13;;;;;;28175:845;28050:989;28024:1015;27978:1061;29067:31;;;;;;;;;;;;;;27831:1275;;;;:::o;34300:485::-;34402:27;34431:23;34472:38;34513:15;:24;34529:7;34513:24;;;;;;;;;;;34472:65;;34690:18;34667:41;;34747:19;34741:26;34722:45;;34652:126;34300:485;;;:::o;33528:659::-;33677:11;33842:16;33835:5;33831:28;33822:37;;34002:16;33991:9;33987:32;33974:45;;34152:15;34141:9;34138:30;34130:5;34119:9;34116:20;34113:56;34103:66;;33528:659;;;;;:::o;40162:159::-;;;;;:::o;54484:311::-;54619:7;54639:16;17557:3;54665:19;:41;;54639:68;;17557:3;54733:31;54744:4;54750:2;54754:9;54733:10;:31::i;:::-;54725:40;;:62;;54718:69;;;54484:311;;;;;:::o;29654:450::-;29734:14;29902:16;29895:5;29891:28;29882:37;;30079:5;30065:11;30040:23;30036:41;30033:52;30026:5;30023:63;30013:73;;29654:450;;;;:::o;40986:158::-;;;;;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;49007:112::-;49084:27;49094:2;49098:8;49084:27;;;;;;;;;;;;:9;:27::i;:::-;49007:112;;:::o;41584:716::-;41747:4;41793:2;41768:45;;;41814:19;:17;:19::i;:::-;41835:4;41841:7;41850:5;41768:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41764:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42068:1;42051:6;:13;:18;42047:235;;42097:40;;;;;;;;;;;;;;42047:235;42240:6;42234:13;42225:6;42221:2;42217:15;42210:38;41764:529;41937:54;;;41927:64;;;:6;:64;;;;41920:71;;;41584:716;;;;;;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;54185:147::-;54322:6;54185:147;;;;;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;48234:689::-;48365:19;48371:2;48375:8;48365:5;:19::i;:::-;48444:1;48426:2;:14;;;:19;48422:483;;48466:11;48480:13;;48466:27;;48512:13;48534:8;48528:3;:14;48512:30;;48561:233;48592:62;48631:1;48635:2;48639:7;;;;;;48648:5;48592:30;:62::i;:::-;48587:167;;48690:40;;;;;;;;;;;;;;48587:167;48789:3;48781:5;:11;48561:233;;48876:3;48859:13;;:20;48855:34;;48881:8;;;48855:34;48447:458;;48422:483;48234:689;;;:::o;42762:2720::-;42835:20;42858:13;;42835:36;;42898:1;42886:8;:13;42882:44;;42908:18;;;;;;;;;;;;;;42882:44;42939:61;42969:1;42973:2;42977:12;42991:8;42939:21;:61::i;:::-;43483:1;16515:2;43453:1;:26;;43452:32;43440:8;:45;43414:18;:22;43433:2;43414:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43762:139;43799:2;43853:33;43876:1;43880:2;43884:1;43853:14;:33::i;:::-;43820:30;43841:8;43820:20;:30::i;:::-;:66;43762:18;:139::i;:::-;43728:17;:31;43746:12;43728:31;;;;;;;;;;;:173;;;;43918:16;43949:11;43978:8;43963:12;:23;43949:37;;44499:16;44495:2;44491:25;44479:37;;44871:12;44831:8;44790:1;44728:25;44669:1;44608;44581:335;44996:1;44982:12;44978:20;44936:346;45037:3;45028:7;45025:16;44936:346;;45255:7;45245:8;45242:1;45215:25;45212:1;45209;45204:59;45090:1;45081:7;45077:15;45066:26;;44936:346;;;44940:77;45327:1;45315:8;:13;45311:45;;45337:19;;;;;;;;;;;;;;45311:45;45389:3;45373:13;:19;;;;43188:2216;;45414:60;45443:1;45447:2;45451:12;45465:8;45414:20;:60::i;:::-;42824:2658;42762:2720;;:::o;30206:324::-;30276:14;30509:1;30499:8;30496:15;30470:24;30466:46;30456:56;;30206:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:180::-;11873:77;11870:1;11863:88;11970:4;11967:1;11960:15;11994:4;11991:1;11984:15;12011:320;12055:6;12092:1;12086:4;12082:12;12072:22;;12139:1;12133:4;12129:12;12160:18;12150:81;;12216:4;12208:6;12204:17;12194:27;;12150:81;12278:2;12270:6;12267:14;12247:18;12244:38;12241:84;;12297:18;;:::i;:::-;12241:84;12062:269;12011:320;;;:::o;12337:97::-;12396:6;12424:3;12414:13;;12337:97;;;;:::o;12440:141::-;12489:4;12512:3;12504:11;;12535:3;12532:1;12525:14;12569:4;12566:1;12556:18;12548:26;;12440:141;;;:::o;12587:93::-;12624:6;12671:2;12666;12659:5;12655:14;12651:23;12641:33;;12587:93;;;:::o;12686:107::-;12730:8;12780:5;12774:4;12770:16;12749:37;;12686:107;;;;:::o;12799:393::-;12868:6;12918:1;12906:10;12902:18;12941:97;12971:66;12960:9;12941:97;:::i;:::-;13059:39;13089:8;13078:9;13059:39;:::i;:::-;13047:51;;13131:4;13127:9;13120:5;13116:21;13107:30;;13180:4;13170:8;13166:19;13159:5;13156:30;13146:40;;12875:317;;12799:393;;;;;:::o;13198:60::-;13226:3;13247:5;13240:12;;13198:60;;;:::o;13264:142::-;13314:9;13347:53;13365:34;13374:24;13392:5;13374:24;:::i;:::-;13365:34;:::i;:::-;13347:53;:::i;:::-;13334:66;;13264:142;;;:::o;13412:75::-;13455:3;13476:5;13469:12;;13412:75;;;:::o;13493:269::-;13603:39;13634:7;13603:39;:::i;:::-;13664:91;13713:41;13737:16;13713:41;:::i;:::-;13705:6;13698:4;13692:11;13664:91;:::i;:::-;13658:4;13651:105;13569:193;13493:269;;;:::o;13768:73::-;13813:3;13768:73;:::o;13847:189::-;13924:32;;:::i;:::-;13965:65;14023:6;14015;14009:4;13965:65;:::i;:::-;13900:136;13847:189;;:::o;14042:186::-;14102:120;14119:3;14112:5;14109:14;14102:120;;;14173:39;14210:1;14203:5;14173:39;:::i;:::-;14146:1;14139:5;14135:13;14126:22;;14102:120;;;14042:186;;:::o;14234:543::-;14335:2;14330:3;14327:11;14324:446;;;14369:38;14401:5;14369:38;:::i;:::-;14453:29;14471:10;14453:29;:::i;:::-;14443:8;14439:44;14636:2;14624:10;14621:18;14618:49;;;14657:8;14642:23;;14618:49;14680:80;14736:22;14754:3;14736:22;:::i;:::-;14726:8;14722:37;14709:11;14680:80;:::i;:::-;14339:431;;14324:446;14234:543;;;:::o;14783:117::-;14837:8;14887:5;14881:4;14877:16;14856:37;;14783:117;;;;:::o;14906:169::-;14950:6;14983:51;15031:1;15027:6;15019:5;15016:1;15012:13;14983:51;:::i;:::-;14979:56;15064:4;15058;15054:15;15044:25;;14957:118;14906:169;;;;:::o;15080:295::-;15156:4;15302:29;15327:3;15321:4;15302:29;:::i;:::-;15294:37;;15364:3;15361:1;15357:11;15351:4;15348:21;15340:29;;15080:295;;;;:::o;15380:1403::-;15504:44;15544:3;15539;15504:44;:::i;:::-;15613:18;15605:6;15602:30;15599:56;;;15635:18;;:::i;:::-;15599:56;15679:38;15711:4;15705:11;15679:38;:::i;:::-;15764:67;15824:6;15816;15810:4;15764:67;:::i;:::-;15858:1;15887:2;15879:6;15876:14;15904:1;15899:632;;;;16575:1;16592:6;16589:84;;;16648:9;16643:3;16639:19;16626:33;16617:42;;16589:84;16699:67;16759:6;16752:5;16699:67;:::i;:::-;16693:4;16686:81;16548:229;15869:908;;15899:632;15951:4;15947:9;15939:6;15935:22;15985:37;16017:4;15985:37;:::i;:::-;16044:1;16058:215;16072:7;16069:1;16066:14;16058:215;;;16158:9;16153:3;16149:19;16136:33;16128:6;16121:49;16209:1;16201:6;16197:14;16187:24;;16256:2;16245:9;16241:18;16228:31;;16095:4;16092:1;16088:12;16083:17;;16058:215;;;16301:6;16292:7;16289:19;16286:186;;;16366:9;16361:3;16357:19;16344:33;16409:48;16451:4;16443:6;16439:17;16428:9;16409:48;:::i;:::-;16401:6;16394:64;16309:163;16286:186;16518:1;16514;16506:6;16502:14;16498:22;16492:4;16485:36;15906:625;;;15869:908;;15479:1304;;;15380:1403;;;:::o;16789:180::-;16837:77;16834:1;16827:88;16934:4;16931:1;16924:15;16958:4;16955:1;16948:15;16975:191;17015:3;17034:20;17052:1;17034:20;:::i;:::-;17029:25;;17068:20;17086:1;17068:20;:::i;:::-;17063:25;;17111:1;17108;17104:9;17097:16;;17132:3;17129:1;17126:10;17123:36;;;17139:18;;:::i;:::-;17123:36;16975:191;;;;:::o;17172:171::-;17312:23;17308:1;17300:6;17296:14;17289:47;17172:171;:::o;17349:366::-;17491:3;17512:67;17576:2;17571:3;17512:67;:::i;:::-;17505:74;;17588:93;17677:3;17588:93;:::i;:::-;17706:2;17701:3;17697:12;17690:19;;17349:366;;;:::o;17721:419::-;17887:4;17925:2;17914:9;17910:18;17902:26;;17974:9;17968:4;17964:20;17960:1;17949:9;17945:17;17938:47;18002:131;18128:4;18002:131;:::i;:::-;17994:139;;17721:419;;;:::o;18146:222::-;18286:34;18282:1;18274:6;18270:14;18263:58;18355:5;18350:2;18342:6;18338:15;18331:30;18146:222;:::o;18374:366::-;18516:3;18537:67;18601:2;18596:3;18537:67;:::i;:::-;18530:74;;18613:93;18702:3;18613:93;:::i;:::-;18731:2;18726:3;18722:12;18715:19;;18374:366;;;:::o;18746:419::-;18912:4;18950:2;18939:9;18935:18;18927:26;;18999:9;18993:4;18989:20;18985:1;18974:9;18970:17;18963:47;19027:131;19153:4;19027:131;:::i;:::-;19019:139;;18746:419;;;:::o;19171:180::-;19311:32;19307:1;19299:6;19295:14;19288:56;19171:180;:::o;19357:366::-;19499:3;19520:67;19584:2;19579:3;19520:67;:::i;:::-;19513:74;;19596:93;19685:3;19596:93;:::i;:::-;19714:2;19709:3;19705:12;19698:19;;19357:366;;;:::o;19729:419::-;19895:4;19933:2;19922:9;19918:18;19910:26;;19982:9;19976:4;19972:20;19968:1;19957:9;19953:17;19946:47;20010:131;20136:4;20010:131;:::i;:::-;20002:139;;19729:419;;;:::o;20154:348::-;20194:7;20217:20;20235:1;20217:20;:::i;:::-;20212:25;;20251:20;20269:1;20251:20;:::i;:::-;20246:25;;20439:1;20371:66;20367:74;20364:1;20361:81;20356:1;20349:9;20342:17;20338:105;20335:131;;;20446:18;;:::i;:::-;20335:131;20494:1;20491;20487:9;20476:20;;20154:348;;;;:::o;20508:176::-;20648:28;20644:1;20636:6;20632:14;20625:52;20508:176;:::o;20690:366::-;20832:3;20853:67;20917:2;20912:3;20853:67;:::i;:::-;20846:74;;20929:93;21018:3;20929:93;:::i;:::-;21047:2;21042:3;21038:12;21031:19;;20690:366;;;:::o;21062:419::-;21228:4;21266:2;21255:9;21251:18;21243:26;;21315:9;21309:4;21305:20;21301:1;21290:9;21286:17;21279:47;21343:131;21469:4;21343:131;:::i;:::-;21335:139;;21062:419;;;:::o;21487:148::-;21589:11;21626:3;21611:18;;21487:148;;;;:::o;21665:874::-;21768:3;21805:5;21799:12;21834:36;21860:9;21834:36;:::i;:::-;21886:89;21968:6;21963:3;21886:89;:::i;:::-;21879:96;;22006:1;21995:9;21991:17;22022:1;22017:166;;;;22197:1;22192:341;;;;21984:549;;22017:166;22101:4;22097:9;22086;22082:25;22077:3;22070:38;22163:6;22156:14;22149:22;22141:6;22137:35;22132:3;22128:45;22121:52;;22017:166;;22192:341;22259:38;22291:5;22259:38;:::i;:::-;22319:1;22333:154;22347:6;22344:1;22341:13;22333:154;;;22421:7;22415:14;22411:1;22406:3;22402:11;22395:35;22471:1;22462:7;22458:15;22447:26;;22369:4;22366:1;22362:12;22357:17;;22333:154;;;22516:6;22511:3;22507:16;22500:23;;22199:334;;21984:549;;21772:767;;21665:874;;;;:::o;22545:390::-;22651:3;22679:39;22712:5;22679:39;:::i;:::-;22734:89;22816:6;22811:3;22734:89;:::i;:::-;22727:96;;22832:65;22890:6;22885:3;22878:4;22871:5;22867:16;22832:65;:::i;:::-;22922:6;22917:3;22913:16;22906:23;;22655:280;22545:390;;;;:::o;22941:583::-;23163:3;23185:92;23273:3;23264:6;23185:92;:::i;:::-;23178:99;;23294:95;23385:3;23376:6;23294:95;:::i;:::-;23287:102;;23406:92;23494:3;23485:6;23406:92;:::i;:::-;23399:99;;23515:3;23508:10;;22941:583;;;;;;:::o;23530:225::-;23670:34;23666:1;23658:6;23654:14;23647:58;23739:8;23734:2;23726:6;23722:15;23715:33;23530:225;:::o;23761:366::-;23903:3;23924:67;23988:2;23983:3;23924:67;:::i;:::-;23917:74;;24000:93;24089:3;24000:93;:::i;:::-;24118:2;24113:3;24109:12;24102:19;;23761:366;;;:::o;24133:419::-;24299:4;24337:2;24326:9;24322:18;24314:26;;24386:9;24380:4;24376:20;24372:1;24361:9;24357:17;24350:47;24414:131;24540:4;24414:131;:::i;:::-;24406:139;;24133:419;;;:::o;24558:182::-;24698:34;24694:1;24686:6;24682:14;24675:58;24558:182;:::o;24746:366::-;24888:3;24909:67;24973:2;24968:3;24909:67;:::i;:::-;24902:74;;24985:93;25074:3;24985:93;:::i;:::-;25103:2;25098:3;25094:12;25087:19;;24746:366;;;:::o;25118:419::-;25284:4;25322:2;25311:9;25307:18;25299:26;;25371:9;25365:4;25361:20;25357:1;25346:9;25342:17;25335:47;25399:131;25525:4;25399:131;:::i;:::-;25391:139;;25118:419;;;:::o;25543:98::-;25594:6;25628:5;25622:12;25612:22;;25543:98;;;:::o;25647:168::-;25730:11;25764:6;25759:3;25752:19;25804:4;25799:3;25795:14;25780:29;;25647:168;;;;:::o;25821:373::-;25907:3;25935:38;25967:5;25935:38;:::i;:::-;25989:70;26052:6;26047:3;25989:70;:::i;:::-;25982:77;;26068:65;26126:6;26121:3;26114:4;26107:5;26103:16;26068:65;:::i;:::-;26158:29;26180:6;26158:29;:::i;:::-;26153:3;26149:39;26142:46;;25911:283;25821:373;;;;:::o;26200:640::-;26395:4;26433:3;26422:9;26418:19;26410:27;;26447:71;26515:1;26504:9;26500:17;26491:6;26447:71;:::i;:::-;26528:72;26596:2;26585:9;26581:18;26572:6;26528:72;:::i;:::-;26610;26678:2;26667:9;26663:18;26654:6;26610:72;:::i;:::-;26729:9;26723:4;26719:20;26714:2;26703:9;26699:18;26692:48;26757:76;26828:4;26819:6;26757:76;:::i;:::-;26749:84;;26200:640;;;;;;;:::o;26846:141::-;26902:5;26933:6;26927:13;26918:22;;26949:32;26975:5;26949:32;:::i;:::-;26846:141;;;;:::o;26993:349::-;27062:6;27111:2;27099:9;27090:7;27086:23;27082:32;27079:119;;;27117:79;;:::i;:::-;27079:119;27237:1;27262:63;27317:7;27308:6;27297:9;27293:22;27262:63;:::i;:::-;27252:73;;27208:127;26993:349;;;;:::o;27348:233::-;27387:3;27410:24;27428:5;27410:24;:::i;:::-;27401:33;;27456:66;27449:5;27446:77;27443:103;;27526:18;;:::i;:::-;27443:103;27573:1;27566:5;27562:13;27555:20;;27348:233;;;:::o;27587:180::-;27635:77;27632:1;27625:88;27732:4;27729:1;27722:15;27756:4;27753:1;27746:15;27773:185;27813:1;27830:20;27848:1;27830:20;:::i;:::-;27825:25;;27864:20;27882:1;27864:20;:::i;:::-;27859:25;;27903:1;27893:35;;27908:18;;:::i;:::-;27893:35;27950:1;27947;27943:9;27938:14;;27773:185;;;;:::o;27964:194::-;28004:4;28024:20;28042:1;28024:20;:::i;:::-;28019:25;;28058:20;28076:1;28058:20;:::i;:::-;28053:25;;28102:1;28099;28095:9;28087:17;;28126:1;28120:4;28117:11;28114:37;;;28131:18;;:::i;:::-;28114:37;27964:194;;;;:::o;28164:176::-;28196:1;28213:20;28231:1;28213:20;:::i;:::-;28208:25;;28247:20;28265:1;28247:20;:::i;:::-;28242:25;;28286:1;28276:35;;28291:18;;:::i;:::-;28276:35;28332:1;28329;28325:9;28320:14;;28164:176;;;;:::o;28346:180::-;28394:77;28391:1;28384:88;28491:4;28488:1;28481:15;28515:4;28512:1;28505:15
Swarm Source
ipfs://ec1f168c357c7848e8baf9422c7a4375ed1ef670e29dc2188b65f5a70c7e24ad
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.