ERC-721
Overview
Max Total Supply
2,339 Hapu
Holders
151
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HapuLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HapuNft
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-12 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /* Hapu Inu NFT ($HAPU) Website = https://hapuinu.com Telegram = https://t.me/hapuinu Twitter = https://twitter.com/hapuinu */ pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.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(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.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 { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory 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 aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 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: contracts/hapunft.sol pragma solidity ^0.8.4; contract HapuNft is ERC721A, Ownable { uint256 MAX_MINTS = 30; uint256 MAX_SUPPLY = 11070; uint256 public mintRate = 0.00369 ether; bool public saleEnable = false; // Royalties address address public royaltyAddress = 0x505184CFBf416016e4EF0d2291C5097a48722fF0; // Royalties basis points (percentage using 2 decimals - 1000 = 100, 500 = 50, 0 = 0) 10% artist 90% flipper uint256 private royaltyBasisPoints = 100; // 10% event RoyaltyBasisPoints(uint256 indexed _royaltyBasisPoints); event MintedNft(uint256 indexed _quantity); string public baseURI ="ipfs://bafybeiafko3bin7mbzw5oa4zsx6zvneievqra6jkn424nmeaac5yukwwiq/"; constructor() ERC721A("Hapu NFT", "Hapu") {} // Token Id start from 1 function _startTokenId() internal pure override returns(uint256){ return 1; } function TotalBurned() public view returns(uint256) { return _totalBurned(); } function next() public view returns(uint256){ return _nextTokenId(); } function toggleSale(bool status) public onlyOwner { require(saleEnable !=status); saleEnable = status; } function mint(uint256 quantity) external payable { require( saleEnable, "Sale is not Enabled" ); // _safeMint's second argument now takes in a quantity, not a tokenId. require( quantity + _numberMinted(_msgSender()) <= MAX_MINTS, "Exceeded the limit" ); require( totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left" ); require(msg.value >= (mintRate * quantity), "Not enough ether sent"); _safeMint(_msgSender(), quantity); emit MintedNft(quantity); } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } // returns base uri function _baseURI() internal view override returns (string memory) { return baseURI; } function setMintRate(uint256 _mintRate) public onlyOwner { mintRate = _mintRate; } // Set royalty address function setRoyaltyAddress(address _address) external onlyOwner { royaltyAddress = _address; } // Set base URI function setBaseURI(string memory _uri) external onlyOwner { baseURI = _uri; } // Set royalty basis points function setRoyaltyBasisPoints(uint256 _basisPoints) external onlyOwner { royaltyBasisPoints = _basisPoints; emit RoyaltyBasisPoints(_basisPoints); } // TokenURI function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'Nonexistent token'); return string(abi.encodePacked(_baseURI(), _toString(tokenId), '.json')); } }
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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"MintedNft","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":"uint256","name":"_royaltyBasisPoints","type":"uint256"}],"name":"RoyaltyBasisPoints","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":"TotalBurned","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":"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":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"next","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"royaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_basisPoints","type":"uint256"}],"name":"setRoyaltyBasisPoints","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":"bool","name":"status","type":"bool"}],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"}]
Contract Creation Code
6080604052601e600955612b3e600a55660d1c091338a000600b556000600c60006101000a81548160ff02191690831515021790555073505184cfbf416016e4ef0d2291c5097a48722ff0600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506064600d556040518060800160405280604381526020016200300d60439139600e9080519060200190620000c092919062000282565b50348015620000ce57600080fd5b506040518060400160405280600881526020017f48617075204e46540000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f486170750000000000000000000000000000000000000000000000000000000081525081600290805190602001906200015392919062000282565b5080600390805190602001906200016c92919062000282565b506200017d620001ab60201b60201c565b6000819055505050620001a562000199620001b460201b60201c565b620001bc60201b60201c565b62000397565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002909062000332565b90600052602060002090601f016020900481019282620002b4576000855562000300565b82601f10620002cf57805160ff191683800117855562000300565b8280016001018555821562000300579182015b82811115620002ff578251825591602001919060010190620002e2565b5b5090506200030f919062000313565b5090565b5b808211156200032e57600081600090555060010162000314565b5090565b600060028204905060018216806200034b57607f821691505b6020821081141562000362576200036162000368565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612c6680620003a76000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b6b8194011610095578063dbe2193f11610064578063dbe2193f14610634578063e985e9c51461065d578063f2fde38b1461069a578063fe4ca847146106c3576101cd565b8063b6b819401461057a578063b88d4fde146105a3578063c87b56dd146105cc578063ca0dcf1614610609576101cd565b8063a0712d68116100d1578063a0712d68146104e1578063a22cb465146104fd578063aab402e514610526578063ad2f852a1461054f576101cd565b8063715018a6146104745780638da5cb5b1461048b57806395d89b41146104b6576101cd565b806323b872dd1161016f57806355f804b31161013e57806355f804b3146103a65780636352211e146103cf5780636c0360eb1461040c57806370a0823114610437576101cd565b806323b872dd1461031f5780633ccfd60b1461034857806342842e0e146103525780634c8fe5261461037b576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806315bfafcd146102c957806318160ddd146102f4576101cd565b806301ffc9a7146101d257806306d254da1461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061229b565b6106ee565b60405161020691906125e9565b60405180910390f35b34801561021b57600080fd5b50610236600480360381019061023191906120ab565b610780565b005b34801561024457600080fd5b5061024d6107cc565b60405161025a9190612604565b60405180910390f35b34801561026f57600080fd5b5061028a6004803603810190610285919061233e565b61085e565b6040516102979190612582565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c2919061222e565b6108dd565b005b3480156102d557600080fd5b506102de610a21565b6040516102eb9190612706565b60405180910390f35b34801561030057600080fd5b50610309610a30565b6040516103169190612706565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612118565b610a47565b005b610350610d6c565b005b34801561035e57600080fd5b5061037960048036038101906103749190612118565b610dc4565b005b34801561038757600080fd5b50610390610de4565b60405161039d9190612706565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c891906122f5565b610df3565b005b3480156103db57600080fd5b506103f660048036038101906103f1919061233e565b610e15565b6040516104039190612582565b60405180910390f35b34801561041857600080fd5b50610421610e27565b60405161042e9190612604565b60405180910390f35b34801561044357600080fd5b5061045e600480360381019061045991906120ab565b610eb5565b60405161046b9190612706565b60405180910390f35b34801561048057600080fd5b50610489610f6e565b005b34801561049757600080fd5b506104a0610f82565b6040516104ad9190612582565b60405180910390f35b3480156104c257600080fd5b506104cb610fac565b6040516104d89190612604565b60405180910390f35b6104fb60048036038101906104f6919061233e565b61103e565b005b34801561050957600080fd5b50610524600480360381019061051f91906121ee565b6111d4565b005b34801561053257600080fd5b5061054d6004803603810190610548919061226e565b61134c565b005b34801561055b57600080fd5b50610564611391565b6040516105719190612582565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061233e565b6113b7565b005b3480156105af57600080fd5b506105ca60048036038101906105c5919061216b565b6113f6565b005b3480156105d857600080fd5b506105f360048036038101906105ee919061233e565b611469565b6040516106009190612604565b60405180910390f35b34801561061557600080fd5b5061061e6114eb565b60405161062b9190612706565b60405180910390f35b34801561064057600080fd5b5061065b6004803603810190610656919061233e565b6114f1565b005b34801561066957600080fd5b50610684600480360381019061067f91906120d8565b611503565b60405161069191906125e9565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc91906120ab565b611597565b005b3480156106cf57600080fd5b506106d861161b565b6040516106e591906125e9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107795750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61078861162e565b80600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600280546107db90612951565b80601f016020809104026020016040519081016040528092919081815260200182805461080790612951565b80156108545780601f1061082957610100808354040283529160200191610854565b820191906000526020600020905b81548152906001019060200180831161083757829003601f168201915b5050505050905090565b6000610869826116ac565b61089f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e882610e15565b90508073ffffffffffffffffffffffffffffffffffffffff1661090961170b565b73ffffffffffffffffffffffffffffffffffffffff161461096c576109358161093061170b565b611503565b61096b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a2b611713565b905090565b6000610a3a61171d565b6001546000540303905090565b6000610a5282611726565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ab9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ac5846117f4565b91509150610adb8187610ad661170b565b61181b565b610b2757610af086610aeb61170b565b611503565b610b26576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b8e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b9b868686600161185f565b8015610ba657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c7485610c50888887611865565b7c02000000000000000000000000000000000000000000000000000000001761188d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cfc576000600185019050600060046000838152602001908152602001600020541415610cfa576000548114610cf9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d6486868660016118b8565b505050505050565b610d7461162e565b610d7c610f82565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610dc1573d6000803e3d6000fd5b50565b610ddf838383604051806020016040528060008152506113f6565b505050565b6000610dee6118be565b905090565b610dfb61162e565b80600e9080519060200190610e11929190611ebf565b5050565b6000610e2082611726565b9050919050565b600e8054610e3490612951565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6090612951565b8015610ead5780601f10610e8257610100808354040283529160200191610ead565b820191906000526020600020905b815481529060010190602001808311610e9057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f7661162e565b610f8060006118c7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fbb90612951565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe790612951565b80156110345780601f1061100957610100808354040283529160200191611034565b820191906000526020600020905b81548152906001019060200180831161101757829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1661108d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108490612646565b60405180910390fd5b6009546110a061109b61198d565b611995565b826110ab91906127eb565b11156110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390612666565b60405180910390fd5b600a54816110f8610a30565b61110291906127eb565b1115611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a906126a6565b60405180910390fd5b80600b546111519190612841565b341015611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a906126e6565b60405180910390fd5b6111a461119e61198d565b826119ec565b807fd4136d39a3898eaf9b7b4498f616ad832198c51b321cdf8be4fac22d68801f7e60405160405180910390a250565b6111dc61170b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611241576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061124e61170b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112fb61170b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161134091906125e9565b60405180910390a35050565b61135461162e565b801515600c60009054906101000a900460ff161515141561137457600080fd5b80600c60006101000a81548160ff02191690831515021790555050565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113bf61162e565b80600d81905550807fce3498f3236889c7e9256b3643e0f7fae5a1b912f2ac0daa1d89236c70b522c660405160405180910390a250565b611401848484610a47565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114635761142c84848484611a0a565b611462576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611474826116ac565b6114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90612686565b60405180910390fd5b6114bb611b6a565b6114c483611bfc565b6040516020016114d5929190612553565b6040516020818303038152906040529050919050565b600b5481565b6114f961162e565b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61159f61162e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690612626565b60405180910390fd5b611618816118c7565b50565b600c60009054906101000a900460ff1681565b61163661198d565b73ffffffffffffffffffffffffffffffffffffffff16611654610f82565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a1906126c6565b60405180910390fd5b565b6000816116b761171d565b111580156116c6575060005482105b8015611704575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000600154905090565b60006001905090565b6000808290508061173561171d565b116117bd576000548110156117bc5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117ba575b60008114156117b0576004600083600190039350838152602001908152602001600020549050611785565b80925050506117ef565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861187c868684611c4c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008054905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611a06828260405180602001604052806000815250611c55565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a3061170b565b8786866040518563ffffffff1660e01b8152600401611a52949392919061259d565b602060405180830381600087803b158015611a6c57600080fd5b505af1925050508015611a9d57506040513d601f19601f82011682018060405250810190611a9a91906122c8565b60015b611b17573d8060008114611acd576040519150601f19603f3d011682016040523d82523d6000602084013e611ad2565b606091505b50600081511415611b0f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611b7990612951565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba590612951565b8015611bf25780601f10611bc757610100808354040283529160200191611bf2565b820191906000526020600020905b815481529060010190602001808311611bd557829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611c3857600183039250600a81066030018353600a8104905080611c3357611c38565b611c0d565b508181036020830392508083525050919050565b60009392505050565b611c5f8383611cf2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ced57600080549050600083820390505b611c9f6000868380600101945086611a0a565b611cd5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c8c578160005414611cea57600080fd5b50505b505050565b6000805490506000821415611d33576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d40600084838561185f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611db783611da86000866000611865565b611db185611eaf565b1761188d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e5857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e1d565b506000821415611e94576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611eaa60008483856118b8565b505050565b60006001821460e11b9050919050565b828054611ecb90612951565b90600052602060002090601f016020900481019282611eed5760008555611f34565b82601f10611f0657805160ff1916838001178555611f34565b82800160010185558215611f34579182015b82811115611f33578251825591602001919060010190611f18565b5b509050611f419190611f45565b5090565b5b80821115611f5e576000816000905550600101611f46565b5090565b6000611f75611f7084612746565b612721565b905082815260208101848484011115611f9157611f90612a46565b5b611f9c84828561290f565b509392505050565b6000611fb7611fb284612777565b612721565b905082815260208101848484011115611fd357611fd2612a46565b5b611fde84828561290f565b509392505050565b600081359050611ff581612bd4565b92915050565b60008135905061200a81612beb565b92915050565b60008135905061201f81612c02565b92915050565b60008151905061203481612c02565b92915050565b600082601f83011261204f5761204e612a41565b5b813561205f848260208601611f62565b91505092915050565b600082601f83011261207d5761207c612a41565b5b813561208d848260208601611fa4565b91505092915050565b6000813590506120a581612c19565b92915050565b6000602082840312156120c1576120c0612a50565b5b60006120cf84828501611fe6565b91505092915050565b600080604083850312156120ef576120ee612a50565b5b60006120fd85828601611fe6565b925050602061210e85828601611fe6565b9150509250929050565b60008060006060848603121561213157612130612a50565b5b600061213f86828701611fe6565b935050602061215086828701611fe6565b925050604061216186828701612096565b9150509250925092565b6000806000806080858703121561218557612184612a50565b5b600061219387828801611fe6565b94505060206121a487828801611fe6565b93505060406121b587828801612096565b925050606085013567ffffffffffffffff8111156121d6576121d5612a4b565b5b6121e28782880161203a565b91505092959194509250565b6000806040838503121561220557612204612a50565b5b600061221385828601611fe6565b925050602061222485828601611ffb565b9150509250929050565b6000806040838503121561224557612244612a50565b5b600061225385828601611fe6565b925050602061226485828601612096565b9150509250929050565b60006020828403121561228457612283612a50565b5b600061229284828501611ffb565b91505092915050565b6000602082840312156122b1576122b0612a50565b5b60006122bf84828501612010565b91505092915050565b6000602082840312156122de576122dd612a50565b5b60006122ec84828501612025565b91505092915050565b60006020828403121561230b5761230a612a50565b5b600082013567ffffffffffffffff81111561232957612328612a4b565b5b61233584828501612068565b91505092915050565b60006020828403121561235457612353612a50565b5b600061236284828501612096565b91505092915050565b6123748161289b565b82525050565b612383816128ad565b82525050565b6000612394826127a8565b61239e81856127be565b93506123ae81856020860161291e565b6123b781612a55565b840191505092915050565b60006123cd826127b3565b6123d781856127cf565b93506123e781856020860161291e565b6123f081612a55565b840191505092915050565b6000612406826127b3565b61241081856127e0565b935061242081856020860161291e565b80840191505092915050565b60006124396026836127cf565b915061244482612a66565b604082019050919050565b600061245c6013836127cf565b915061246782612ab5565b602082019050919050565b600061247f6012836127cf565b915061248a82612ade565b602082019050919050565b60006124a26011836127cf565b91506124ad82612b07565b602082019050919050565b60006124c56016836127cf565b91506124d082612b30565b602082019050919050565b60006124e86005836127e0565b91506124f382612b59565b600582019050919050565b600061250b6020836127cf565b915061251682612b82565b602082019050919050565b600061252e6015836127cf565b915061253982612bab565b602082019050919050565b61254d81612905565b82525050565b600061255f82856123fb565b915061256b82846123fb565b9150612576826124db565b91508190509392505050565b6000602082019050612597600083018461236b565b92915050565b60006080820190506125b2600083018761236b565b6125bf602083018661236b565b6125cc6040830185612544565b81810360608301526125de8184612389565b905095945050505050565b60006020820190506125fe600083018461237a565b92915050565b6000602082019050818103600083015261261e81846123c2565b905092915050565b6000602082019050818103600083015261263f8161242c565b9050919050565b6000602082019050818103600083015261265f8161244f565b9050919050565b6000602082019050818103600083015261267f81612472565b9050919050565b6000602082019050818103600083015261269f81612495565b9050919050565b600060208201905081810360008301526126bf816124b8565b9050919050565b600060208201905081810360008301526126df816124fe565b9050919050565b600060208201905081810360008301526126ff81612521565b9050919050565b600060208201905061271b6000830184612544565b92915050565b600061272b61273c565b90506127378282612983565b919050565b6000604051905090565b600067ffffffffffffffff82111561276157612760612a12565b5b61276a82612a55565b9050602081019050919050565b600067ffffffffffffffff82111561279257612791612a12565b5b61279b82612a55565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006127f682612905565b915061280183612905565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612836576128356129b4565b5b828201905092915050565b600061284c82612905565b915061285783612905565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128905761288f6129b4565b5b828202905092915050565b60006128a6826128e5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561293c578082015181840152602081019050612921565b8381111561294b576000848401525b50505050565b6000600282049050600182168061296957607f821691505b6020821081141561297d5761297c6129e3565b5b50919050565b61298c82612a55565b810181811067ffffffffffffffff821117156129ab576129aa612a12565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f7420456e61626c656400000000000000000000000000600082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b612bdd8161289b565b8114612be857600080fd5b50565b612bf4816128ad565b8114612bff57600080fd5b50565b612c0b816128b9565b8114612c1657600080fd5b50565b612c2281612905565b8114612c2d57600080fd5b5056fea2646970667358221220f5f35edc83ccead29b996b38a8ed03acab41a988008176538a2beac6937d7bee64736f6c63430008070033697066733a2f2f6261667962656961666b6f3362696e376d627a77356f61347a7378367a766e65696576717261366a6b6e3432346e6d656161633579756b777769712f
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b6b8194011610095578063dbe2193f11610064578063dbe2193f14610634578063e985e9c51461065d578063f2fde38b1461069a578063fe4ca847146106c3576101cd565b8063b6b819401461057a578063b88d4fde146105a3578063c87b56dd146105cc578063ca0dcf1614610609576101cd565b8063a0712d68116100d1578063a0712d68146104e1578063a22cb465146104fd578063aab402e514610526578063ad2f852a1461054f576101cd565b8063715018a6146104745780638da5cb5b1461048b57806395d89b41146104b6576101cd565b806323b872dd1161016f57806355f804b31161013e57806355f804b3146103a65780636352211e146103cf5780636c0360eb1461040c57806370a0823114610437576101cd565b806323b872dd1461031f5780633ccfd60b1461034857806342842e0e146103525780634c8fe5261461037b576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806315bfafcd146102c957806318160ddd146102f4576101cd565b806301ffc9a7146101d257806306d254da1461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061229b565b6106ee565b60405161020691906125e9565b60405180910390f35b34801561021b57600080fd5b50610236600480360381019061023191906120ab565b610780565b005b34801561024457600080fd5b5061024d6107cc565b60405161025a9190612604565b60405180910390f35b34801561026f57600080fd5b5061028a6004803603810190610285919061233e565b61085e565b6040516102979190612582565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c2919061222e565b6108dd565b005b3480156102d557600080fd5b506102de610a21565b6040516102eb9190612706565b60405180910390f35b34801561030057600080fd5b50610309610a30565b6040516103169190612706565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612118565b610a47565b005b610350610d6c565b005b34801561035e57600080fd5b5061037960048036038101906103749190612118565b610dc4565b005b34801561038757600080fd5b50610390610de4565b60405161039d9190612706565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c891906122f5565b610df3565b005b3480156103db57600080fd5b506103f660048036038101906103f1919061233e565b610e15565b6040516104039190612582565b60405180910390f35b34801561041857600080fd5b50610421610e27565b60405161042e9190612604565b60405180910390f35b34801561044357600080fd5b5061045e600480360381019061045991906120ab565b610eb5565b60405161046b9190612706565b60405180910390f35b34801561048057600080fd5b50610489610f6e565b005b34801561049757600080fd5b506104a0610f82565b6040516104ad9190612582565b60405180910390f35b3480156104c257600080fd5b506104cb610fac565b6040516104d89190612604565b60405180910390f35b6104fb60048036038101906104f6919061233e565b61103e565b005b34801561050957600080fd5b50610524600480360381019061051f91906121ee565b6111d4565b005b34801561053257600080fd5b5061054d6004803603810190610548919061226e565b61134c565b005b34801561055b57600080fd5b50610564611391565b6040516105719190612582565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061233e565b6113b7565b005b3480156105af57600080fd5b506105ca60048036038101906105c5919061216b565b6113f6565b005b3480156105d857600080fd5b506105f360048036038101906105ee919061233e565b611469565b6040516106009190612604565b60405180910390f35b34801561061557600080fd5b5061061e6114eb565b60405161062b9190612706565b60405180910390f35b34801561064057600080fd5b5061065b6004803603810190610656919061233e565b6114f1565b005b34801561066957600080fd5b50610684600480360381019061067f91906120d8565b611503565b60405161069191906125e9565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc91906120ab565b611597565b005b3480156106cf57600080fd5b506106d861161b565b6040516106e591906125e9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107795750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61078861162e565b80600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600280546107db90612951565b80601f016020809104026020016040519081016040528092919081815260200182805461080790612951565b80156108545780601f1061082957610100808354040283529160200191610854565b820191906000526020600020905b81548152906001019060200180831161083757829003601f168201915b5050505050905090565b6000610869826116ac565b61089f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e882610e15565b90508073ffffffffffffffffffffffffffffffffffffffff1661090961170b565b73ffffffffffffffffffffffffffffffffffffffff161461096c576109358161093061170b565b611503565b61096b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a2b611713565b905090565b6000610a3a61171d565b6001546000540303905090565b6000610a5282611726565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ab9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ac5846117f4565b91509150610adb8187610ad661170b565b61181b565b610b2757610af086610aeb61170b565b611503565b610b26576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b8e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b9b868686600161185f565b8015610ba657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c7485610c50888887611865565b7c02000000000000000000000000000000000000000000000000000000001761188d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cfc576000600185019050600060046000838152602001908152602001600020541415610cfa576000548114610cf9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d6486868660016118b8565b505050505050565b610d7461162e565b610d7c610f82565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610dc1573d6000803e3d6000fd5b50565b610ddf838383604051806020016040528060008152506113f6565b505050565b6000610dee6118be565b905090565b610dfb61162e565b80600e9080519060200190610e11929190611ebf565b5050565b6000610e2082611726565b9050919050565b600e8054610e3490612951565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6090612951565b8015610ead5780601f10610e8257610100808354040283529160200191610ead565b820191906000526020600020905b815481529060010190602001808311610e9057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f7661162e565b610f8060006118c7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fbb90612951565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe790612951565b80156110345780601f1061100957610100808354040283529160200191611034565b820191906000526020600020905b81548152906001019060200180831161101757829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1661108d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108490612646565b60405180910390fd5b6009546110a061109b61198d565b611995565b826110ab91906127eb565b11156110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390612666565b60405180910390fd5b600a54816110f8610a30565b61110291906127eb565b1115611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a906126a6565b60405180910390fd5b80600b546111519190612841565b341015611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a906126e6565b60405180910390fd5b6111a461119e61198d565b826119ec565b807fd4136d39a3898eaf9b7b4498f616ad832198c51b321cdf8be4fac22d68801f7e60405160405180910390a250565b6111dc61170b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611241576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061124e61170b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112fb61170b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161134091906125e9565b60405180910390a35050565b61135461162e565b801515600c60009054906101000a900460ff161515141561137457600080fd5b80600c60006101000a81548160ff02191690831515021790555050565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113bf61162e565b80600d81905550807fce3498f3236889c7e9256b3643e0f7fae5a1b912f2ac0daa1d89236c70b522c660405160405180910390a250565b611401848484610a47565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114635761142c84848484611a0a565b611462576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611474826116ac565b6114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90612686565b60405180910390fd5b6114bb611b6a565b6114c483611bfc565b6040516020016114d5929190612553565b6040516020818303038152906040529050919050565b600b5481565b6114f961162e565b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61159f61162e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690612626565b60405180910390fd5b611618816118c7565b50565b600c60009054906101000a900460ff1681565b61163661198d565b73ffffffffffffffffffffffffffffffffffffffff16611654610f82565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a1906126c6565b60405180910390fd5b565b6000816116b761171d565b111580156116c6575060005482105b8015611704575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000600154905090565b60006001905090565b6000808290508061173561171d565b116117bd576000548110156117bc5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117ba575b60008114156117b0576004600083600190039350838152602001908152602001600020549050611785565b80925050506117ef565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861187c868684611c4c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008054905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611a06828260405180602001604052806000815250611c55565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a3061170b565b8786866040518563ffffffff1660e01b8152600401611a52949392919061259d565b602060405180830381600087803b158015611a6c57600080fd5b505af1925050508015611a9d57506040513d601f19601f82011682018060405250810190611a9a91906122c8565b60015b611b17573d8060008114611acd576040519150601f19603f3d011682016040523d82523d6000602084013e611ad2565b606091505b50600081511415611b0f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611b7990612951565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba590612951565b8015611bf25780601f10611bc757610100808354040283529160200191611bf2565b820191906000526020600020905b815481529060010190602001808311611bd557829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611c3857600183039250600a81066030018353600a8104905080611c3357611c38565b611c0d565b508181036020830392508083525050919050565b60009392505050565b611c5f8383611cf2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ced57600080549050600083820390505b611c9f6000868380600101945086611a0a565b611cd5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c8c578160005414611cea57600080fd5b50505b505050565b6000805490506000821415611d33576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d40600084838561185f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611db783611da86000866000611865565b611db185611eaf565b1761188d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e5857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e1d565b506000821415611e94576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611eaa60008483856118b8565b505050565b60006001821460e11b9050919050565b828054611ecb90612951565b90600052602060002090601f016020900481019282611eed5760008555611f34565b82601f10611f0657805160ff1916838001178555611f34565b82800160010185558215611f34579182015b82811115611f33578251825591602001919060010190611f18565b5b509050611f419190611f45565b5090565b5b80821115611f5e576000816000905550600101611f46565b5090565b6000611f75611f7084612746565b612721565b905082815260208101848484011115611f9157611f90612a46565b5b611f9c84828561290f565b509392505050565b6000611fb7611fb284612777565b612721565b905082815260208101848484011115611fd357611fd2612a46565b5b611fde84828561290f565b509392505050565b600081359050611ff581612bd4565b92915050565b60008135905061200a81612beb565b92915050565b60008135905061201f81612c02565b92915050565b60008151905061203481612c02565b92915050565b600082601f83011261204f5761204e612a41565b5b813561205f848260208601611f62565b91505092915050565b600082601f83011261207d5761207c612a41565b5b813561208d848260208601611fa4565b91505092915050565b6000813590506120a581612c19565b92915050565b6000602082840312156120c1576120c0612a50565b5b60006120cf84828501611fe6565b91505092915050565b600080604083850312156120ef576120ee612a50565b5b60006120fd85828601611fe6565b925050602061210e85828601611fe6565b9150509250929050565b60008060006060848603121561213157612130612a50565b5b600061213f86828701611fe6565b935050602061215086828701611fe6565b925050604061216186828701612096565b9150509250925092565b6000806000806080858703121561218557612184612a50565b5b600061219387828801611fe6565b94505060206121a487828801611fe6565b93505060406121b587828801612096565b925050606085013567ffffffffffffffff8111156121d6576121d5612a4b565b5b6121e28782880161203a565b91505092959194509250565b6000806040838503121561220557612204612a50565b5b600061221385828601611fe6565b925050602061222485828601611ffb565b9150509250929050565b6000806040838503121561224557612244612a50565b5b600061225385828601611fe6565b925050602061226485828601612096565b9150509250929050565b60006020828403121561228457612283612a50565b5b600061229284828501611ffb565b91505092915050565b6000602082840312156122b1576122b0612a50565b5b60006122bf84828501612010565b91505092915050565b6000602082840312156122de576122dd612a50565b5b60006122ec84828501612025565b91505092915050565b60006020828403121561230b5761230a612a50565b5b600082013567ffffffffffffffff81111561232957612328612a4b565b5b61233584828501612068565b91505092915050565b60006020828403121561235457612353612a50565b5b600061236284828501612096565b91505092915050565b6123748161289b565b82525050565b612383816128ad565b82525050565b6000612394826127a8565b61239e81856127be565b93506123ae81856020860161291e565b6123b781612a55565b840191505092915050565b60006123cd826127b3565b6123d781856127cf565b93506123e781856020860161291e565b6123f081612a55565b840191505092915050565b6000612406826127b3565b61241081856127e0565b935061242081856020860161291e565b80840191505092915050565b60006124396026836127cf565b915061244482612a66565b604082019050919050565b600061245c6013836127cf565b915061246782612ab5565b602082019050919050565b600061247f6012836127cf565b915061248a82612ade565b602082019050919050565b60006124a26011836127cf565b91506124ad82612b07565b602082019050919050565b60006124c56016836127cf565b91506124d082612b30565b602082019050919050565b60006124e86005836127e0565b91506124f382612b59565b600582019050919050565b600061250b6020836127cf565b915061251682612b82565b602082019050919050565b600061252e6015836127cf565b915061253982612bab565b602082019050919050565b61254d81612905565b82525050565b600061255f82856123fb565b915061256b82846123fb565b9150612576826124db565b91508190509392505050565b6000602082019050612597600083018461236b565b92915050565b60006080820190506125b2600083018761236b565b6125bf602083018661236b565b6125cc6040830185612544565b81810360608301526125de8184612389565b905095945050505050565b60006020820190506125fe600083018461237a565b92915050565b6000602082019050818103600083015261261e81846123c2565b905092915050565b6000602082019050818103600083015261263f8161242c565b9050919050565b6000602082019050818103600083015261265f8161244f565b9050919050565b6000602082019050818103600083015261267f81612472565b9050919050565b6000602082019050818103600083015261269f81612495565b9050919050565b600060208201905081810360008301526126bf816124b8565b9050919050565b600060208201905081810360008301526126df816124fe565b9050919050565b600060208201905081810360008301526126ff81612521565b9050919050565b600060208201905061271b6000830184612544565b92915050565b600061272b61273c565b90506127378282612983565b919050565b6000604051905090565b600067ffffffffffffffff82111561276157612760612a12565b5b61276a82612a55565b9050602081019050919050565b600067ffffffffffffffff82111561279257612791612a12565b5b61279b82612a55565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006127f682612905565b915061280183612905565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612836576128356129b4565b5b828201905092915050565b600061284c82612905565b915061285783612905565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128905761288f6129b4565b5b828202905092915050565b60006128a6826128e5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561293c578082015181840152602081019050612921565b8381111561294b576000848401525b50505050565b6000600282049050600182168061296957607f821691505b6020821081141561297d5761297c6129e3565b5b50919050565b61298c82612a55565b810181811067ffffffffffffffff821117156129ab576129aa612a12565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f7420456e61626c656400000000000000000000000000600082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b612bdd8161289b565b8114612be857600080fd5b50565b612bf4816128ad565b8114612bff57600080fd5b50565b612c0b816128b9565b8114612c1657600080fd5b50565b612c2281612905565b8114612c2d57600080fd5b5056fea2646970667358221220f5f35edc83ccead29b996b38a8ed03acab41a988008176538a2beac6937d7bee64736f6c63430008070033
Deployed Bytecode Sourcemap
54625:2928:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22167:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56836:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23069:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29552:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28993:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55496:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18820:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33259:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56449:114;;;:::i;:::-;;36172:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55598:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56973:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24462:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55214:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20004:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2915:103;;;;;;;;;;;;;:::i;:::-;;2267:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23245:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55826:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30110:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55690:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54844:74;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57105:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36955:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57288:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54731:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56703:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30575:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3173:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54777:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22167:639;22252:4;22591:10;22576:25;;:11;:25;;;;:102;;;;22668:10;22653:25;;:11;:25;;;;22576:102;:179;;;;22745:10;22730:25;;:11;:25;;;;22576:179;22556:199;;22167:639;;;:::o;56836:108::-;2153:13;:11;:13::i;:::-;56928:8:::1;56911:14;;:25;;;;;;;;;;;;;;;;;;56836:108:::0;:::o;23069:100::-;23123:13;23156:5;23149:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23069:100;:::o;29552:218::-;29628:7;29653:16;29661:7;29653;:16::i;:::-;29648:64;;29678:34;;;;;;;;;;;;;;29648:64;29732:15;:24;29748:7;29732:24;;;;;;;;;;;:30;;;;;;;;;;;;29725:37;;29552:218;;;:::o;28993:400::-;29074:13;29090:16;29098:7;29090;:16::i;:::-;29074:32;;29146:5;29123:28;;:19;:17;:19::i;:::-;:28;;;29119:175;;29171:44;29188:5;29195:19;:17;:19::i;:::-;29171:16;:44::i;:::-;29166:128;;29243:35;;;;;;;;;;;;;;29166:128;29119:175;29339:2;29306:15;:24;29322:7;29306:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29377:7;29373:2;29357:28;;29366:5;29357:28;;;;;;;;;;;;29063:330;28993:400;;:::o;55496:94::-;55539:7;55566:14;:12;:14::i;:::-;55559:21;;55496:94;:::o;18820:323::-;18881:7;19109:15;:13;:15::i;:::-;19094:12;;19078:13;;:28;:46;19071:53;;18820:323;:::o;33259:2817::-;33393:27;33423;33442:7;33423:18;:27::i;:::-;33393:57;;33508:4;33467:45;;33483:19;33467:45;;;33463:86;;33521:28;;;;;;;;;;;;;;33463:86;33563:27;33592:23;33619:35;33646:7;33619:26;:35::i;:::-;33562:92;;;;33754:68;33779:15;33796:4;33802:19;:17;:19::i;:::-;33754:24;:68::i;:::-;33749:180;;33842:43;33859:4;33865:19;:17;:19::i;:::-;33842:16;:43::i;:::-;33837:92;;33894:35;;;;;;;;;;;;;;33837:92;33749:180;33960:1;33946:16;;:2;:16;;;33942:52;;;33971:23;;;;;;;;;;;;;;33942:52;34007:43;34029:4;34035:2;34039:7;34048:1;34007:21;:43::i;:::-;34143:15;34140:160;;;34283:1;34262:19;34255:30;34140:160;34680:18;:24;34699:4;34680:24;;;;;;;;;;;;;;;;34678:26;;;;;;;;;;;;34749:18;:22;34768:2;34749:22;;;;;;;;;;;;;;;;34747:24;;;;;;;;;;;35071:146;35108:2;35157:45;35172:4;35178:2;35182:19;35157:14;:45::i;:::-;15219:8;35129:73;35071:18;:146::i;:::-;35042:17;:26;35060:7;35042:26;;;;;;;;;;;:175;;;;35388:1;15219:8;35337:19;:47;:52;35333:627;;;35410:19;35442:1;35432:7;:11;35410:33;;35599:1;35565:17;:30;35583:11;35565:30;;;;;;;;;;;;:35;35561:384;;;35703:13;;35688:11;:28;35684:242;;35883:19;35850:17;:30;35868:11;35850:30;;;;;;;;;;;:52;;;;35684:242;35561:384;35391:569;35333:627;36007:7;36003:2;35988:27;;35997:4;35988:27;;;;;;;;;;;;36026:42;36047:4;36053:2;36057:7;36066:1;36026:20;:42::i;:::-;33382:2694;;;33259:2817;;;:::o;56449:114::-;2153:13;:11;:13::i;:::-;56515:7:::1;:5;:7::i;:::-;56507:25;;:48;56533:21;56507:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;56449:114::o:0;36172:185::-;36310:39;36327:4;36333:2;36337:7;36310:39;;;;;;;;;;;;:16;:39::i;:::-;36172:185;;;:::o;55598:84::-;55634:7;55660:14;:12;:14::i;:::-;55653:21;;55598:84;:::o;56973:92::-;2153:13;:11;:13::i;:::-;57053:4:::1;57043:7;:14;;;;;;;;;;;;:::i;:::-;;56973:92:::0;:::o;24462:152::-;24534:7;24577:27;24596:7;24577:18;:27::i;:::-;24554:52;;24462:152;;;:::o;55214:92::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20004:233::-;20076:7;20117:1;20100:19;;:5;:19;;;20096:60;;;20128:28;;;;;;;;;;;;;;20096:60;14163:13;20174:18;:25;20193:5;20174:25;;;;;;;;;;;;;;;;:55;20167:62;;20004:233;;;:::o;2915:103::-;2153:13;:11;:13::i;:::-;2980:30:::1;3007:1;2980:18;:30::i;:::-;2915:103::o:0;2267:87::-;2313:7;2340:6;;;;;;;;;;;2333:13;;2267:87;:::o;23245:104::-;23301:13;23334:7;23327:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23245:104;:::o;55826:615::-;55901:10;;;;;;;;;;;55888:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;56099:9;;56068:27;56082:12;:10;:12::i;:::-;56068:13;:27::i;:::-;56057:8;:38;;;;:::i;:::-;:51;;56035:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;56215:10;;56203:8;56187:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;56165:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;56319:8;56308;;:19;;;;:::i;:::-;56294:9;:34;;56286:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56365:33;56375:12;:10;:12::i;:::-;56389:8;56365:9;:33::i;:::-;56424:8;56414:19;;;;;;;;;;55826:615;:::o;30110:308::-;30221:19;:17;:19::i;:::-;30209:31;;:8;:31;;;30205:61;;;30249:17;;;;;;;;;;;;;;30205:61;30331:8;30279:18;:39;30298:19;:17;:19::i;:::-;30279:39;;;;;;;;;;;;;;;:49;30319:8;30279:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30391:8;30355:55;;30370:19;:17;:19::i;:::-;30355:55;;;30401:8;30355:55;;;;;;:::i;:::-;;;;;;;;30110:308;;:::o;55690:127::-;2153:13;:11;:13::i;:::-;55772:6:::1;55759:19;;:10;;;;;;;;;;;:19;;;;55751:28;;;::::0;::::1;;55803:6;55790:10;;:19;;;;;;;;;;;;;;;;;;55690:127:::0;:::o;54844:74::-;;;;;;;;;;;;;:::o;57105:162::-;2153:13;:11;:13::i;:::-;57205:12:::1;57184:18;:33;;;;57248:12;57229:32;;;;;;;;;;57105:162:::0;:::o;36955:399::-;37122:31;37135:4;37141:2;37145:7;37122:12;:31::i;:::-;37186:1;37168:2;:14;;;:19;37164:183;;37207:56;37238:4;37244:2;37248:7;37257:5;37207:30;:56::i;:::-;37202:145;;37291:40;;;;;;;;;;;;;;37202:145;37164:183;36955:399;;;;:::o;57288:256::-;57386:13;57419:16;57427:7;57419;:16::i;:::-;57411:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;57497:10;:8;:10::i;:::-;57509:18;57519:7;57509:9;:18::i;:::-;57480:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57466:72;;57288:256;;;:::o;54731:39::-;;;;:::o;56703:96::-;2153:13;:11;:13::i;:::-;56782:9:::1;56771:8;:20;;;;56703:96:::0;:::o;30575:164::-;30672:4;30696:18;:25;30715:5;30696:25;;;;;;;;;;;;;;;:35;30722:8;30696:35;;;;;;;;;;;;;;;;;;;;;;;;;30689:42;;30575:164;;;;:::o;3173:201::-;2153:13;:11;:13::i;:::-;3282:1:::1;3262:22;;:8;:22;;;;3254:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3338:28;3357:8;3338:18;:28::i;:::-;3173:201:::0;:::o;54777:30::-;;;;;;;;;;;;;:::o;2432:132::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2432:132::o;30997:282::-;31062:4;31118:7;31099:15;:13;:15::i;:::-;:26;;:66;;;;;31152:13;;31142:7;:23;31099:66;:153;;;;;31251:1;14939:8;31203:17;:26;31221:7;31203:26;;;;;;;;;;;;:44;:49;31099:153;31079:173;;30997:282;;;:::o;52763:105::-;52823:7;52850:10;52843:17;;52763:105;:::o;19619:102::-;19674:7;19701:12;;19694:19;;19619:102;:::o;55396:92::-;55453:7;55479:1;55472:8;;55396:92;:::o;25617:1275::-;25684:7;25704:12;25719:7;25704:22;;25787:4;25768:15;:13;:15::i;:::-;:23;25764:1061;;25821:13;;25814:4;:20;25810:1015;;;25859:14;25876:17;:23;25894:4;25876:23;;;;;;;;;;;;25859:40;;25993:1;14939:8;25965:6;:24;:29;25961:845;;;26630:113;26647:1;26637:6;:11;26630:113;;;26690:17;:25;26708:6;;;;;;;26690:25;;;;;;;;;;;;26681:34;;26630:113;;;26776:6;26769:13;;;;;;25961:845;25836:989;25810:1015;25764:1061;26853:31;;;;;;;;;;;;;;25617:1275;;;;:::o;32160:479::-;32262:27;32291:23;32332:38;32373:15;:24;32389:7;32373:24;;;;;;;;;;;32332:65;;32544:18;32521:41;;32601:19;32595:26;32576:45;;32506:126;32160:479;;;:::o;31388:659::-;31537:11;31702:16;31695:5;31691:28;31682:37;;31862:16;31851:9;31847:32;31834:45;;32012:15;32001:9;31998:30;31990:5;31979:9;31976:20;31973:56;31963:66;;31388:659;;;;;:::o;38016:159::-;;;;;:::o;52072:311::-;52207:7;52227:16;15343:3;52253:19;:41;;52227:68;;15343:3;52321:31;52332:4;52338:2;52342:9;52321:10;:31::i;:::-;52313:40;;:62;;52306:69;;;52072:311;;;;;:::o;27440:450::-;27520:14;27688:16;27681:5;27677:28;27668:37;;27865:5;27851:11;27826:23;27822:41;27819:52;27812:5;27809:63;27799:73;;27440:450;;;;:::o;38840:158::-;;;;;:::o;18507:103::-;18562:7;18589:13;;18582:20;;18507:103;:::o;3534:191::-;3608:16;3627:6;;;;;;;;;;;3608:25;;3653:8;3644:6;;:17;;;;;;;;;;;;;;;;;;3708:8;3677:40;;3698:8;3677:40;;;;;;;;;;;;3597:128;3534:191;:::o;818:98::-;871:7;898:10;891:17;;818:98;:::o;20319:178::-;20380:7;14163:13;14301:2;20408:18;:25;20427:5;20408:25;;;;;;;;;;;;;;;;:50;;20407:82;20400:89;;20319:178;;;:::o;46595:112::-;46672:27;46682:2;46686:8;46672:27;;;;;;;;;;;;:9;:27::i;:::-;46595:112;;:::o;39438:716::-;39601:4;39647:2;39622:45;;;39668:19;:17;:19::i;:::-;39689:4;39695:7;39704:5;39622:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39618:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39922:1;39905:6;:13;:18;39901:235;;;39951:40;;;;;;;;;;;;;;39901:235;40094:6;40088:13;40079:6;40075:2;40071:15;40064:38;39618:529;39791:54;;;39781:64;;;:6;:64;;;;39774:71;;;39438:716;;;;;;:::o;56595:100::-;56647:13;56680:7;56673:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56595:100;:::o;52970:1581::-;53035:17;53460:4;53453;53447:11;53443:22;53436:29;;53552:3;53546:4;53539:17;53658:3;53897:5;53879:428;53905:1;53879:428;;;53945:1;53940:3;53936:11;53929:18;;54116:2;54110:4;54106:13;54102:2;54098:22;54093:3;54085:36;54210:2;54204:4;54200:13;54192:21;;54277:4;54267:25;;54285:5;;54267:25;53879:428;;;53883:21;54346:3;54341;54337:13;54461:4;54456:3;54452:14;54445:21;;54526:6;54521:3;54514:19;53074:1470;;52970:1581;;;:::o;51773:147::-;51910:6;51773:147;;;;;:::o;45822:689::-;45953:19;45959:2;45963:8;45953:5;:19::i;:::-;46032:1;46014:2;:14;;;:19;46010:483;;46054:11;46068:13;;46054:27;;46100:13;46122:8;46116:3;:14;46100:30;;46149:233;46180:62;46219:1;46223:2;46227:7;;;;;;46236:5;46180:30;:62::i;:::-;46175:167;;46278:40;;;;;;;;;;;;;;46175:167;46377:3;46369:5;:11;46149:233;;46464:3;46447:13;;:20;46443:34;;46469:8;;;46443:34;46035:458;;46010:483;45822:689;;;:::o;40616:2454::-;40689:20;40712:13;;40689:36;;40752:1;40740:8;:13;40736:44;;;40762:18;;;;;;;;;;;;;;40736:44;40793:61;40823:1;40827:2;40831:12;40845:8;40793:21;:61::i;:::-;41337:1;14301:2;41307:1;:26;;41306:32;41294:8;:45;41268:18;:22;41287:2;41268:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41616:139;41653:2;41707:33;41730:1;41734:2;41738:1;41707:14;:33::i;:::-;41674:30;41695:8;41674:20;:30::i;:::-;:66;41616:18;:139::i;:::-;41582:17;:31;41600:12;41582:31;;;;;;;;;;;:173;;;;41772:16;41803:11;41832:8;41817:12;:23;41803:37;;42087:16;42083:2;42079:25;42067:37;;42459:12;42419:8;42378:1;42316:25;42257:1;42196;42169:335;42584:1;42570:12;42566:20;42524:346;42625:3;42616:7;42613:16;42524:346;;42843:7;42833:8;42830:1;42803:25;42800:1;42797;42792:59;42678:1;42669:7;42665:15;42654:26;;42524:346;;;42528:77;42915:1;42903:8;:13;42899:45;;;42925:19;;;;;;;;;;;;;;42899:45;42977:3;42961:13;:19;;;;41042:1950;;43002:60;43031:1;43035:2;43039:12;43053:8;43002:20;:60::i;:::-;40678:2392;40616:2454;;:::o;27992:324::-;28062:14;28295:1;28285:8;28282:15;28256:24;28252:46;28242:56;;27992:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:::-;10475:3;10496:67;10560:2;10555:3;10496:67;:::i;:::-;10489:74;;10572:93;10661:3;10572:93;:::i;:::-;10690:2;10685:3;10681:12;10674:19;;10333:366;;;:::o;10705:400::-;10865:3;10886:84;10968:1;10963:3;10886:84;:::i;:::-;10879:91;;10979:93;11068:3;10979:93;:::i;:::-;11097:1;11092:3;11088:11;11081:18;;10705:400;;;:::o;11111:366::-;11253:3;11274:67;11338:2;11333:3;11274:67;:::i;:::-;11267:74;;11350:93;11439:3;11350:93;:::i;:::-;11468:2;11463:3;11459:12;11452:19;;11111:366;;;:::o;11483:::-;11625:3;11646:67;11710:2;11705:3;11646:67;:::i;:::-;11639:74;;11722:93;11811:3;11722:93;:::i;:::-;11840:2;11835:3;11831:12;11824:19;;11483:366;;;:::o;11855:118::-;11942:24;11960:5;11942:24;:::i;:::-;11937:3;11930:37;11855:118;;:::o;11979:701::-;12260:3;12282:95;12373:3;12364:6;12282:95;:::i;:::-;12275:102;;12394:95;12485:3;12476:6;12394:95;:::i;:::-;12387:102;;12506:148;12650:3;12506:148;:::i;:::-;12499:155;;12671:3;12664:10;;11979:701;;;;;:::o;12686:222::-;12779:4;12817:2;12806:9;12802:18;12794:26;;12830:71;12898:1;12887:9;12883:17;12874:6;12830:71;:::i;:::-;12686:222;;;;:::o;12914:640::-;13109:4;13147:3;13136:9;13132:19;13124:27;;13161:71;13229:1;13218:9;13214:17;13205:6;13161:71;:::i;:::-;13242:72;13310:2;13299:9;13295:18;13286:6;13242:72;:::i;:::-;13324;13392:2;13381:9;13377:18;13368:6;13324:72;:::i;:::-;13443:9;13437:4;13433:20;13428:2;13417:9;13413:18;13406:48;13471:76;13542:4;13533:6;13471:76;:::i;:::-;13463:84;;12914:640;;;;;;;:::o;13560:210::-;13647:4;13685:2;13674:9;13670:18;13662:26;;13698:65;13760:1;13749:9;13745:17;13736:6;13698:65;:::i;:::-;13560:210;;;;:::o;13776:313::-;13889:4;13927:2;13916:9;13912:18;13904:26;;13976:9;13970:4;13966:20;13962:1;13951:9;13947:17;13940:47;14004:78;14077:4;14068:6;14004:78;:::i;:::-;13996:86;;13776:313;;;;:::o;14095:419::-;14261:4;14299:2;14288:9;14284:18;14276:26;;14348:9;14342:4;14338:20;14334:1;14323:9;14319:17;14312:47;14376:131;14502:4;14376:131;:::i;:::-;14368:139;;14095:419;;;:::o;14520:::-;14686:4;14724:2;14713:9;14709:18;14701:26;;14773:9;14767:4;14763:20;14759:1;14748:9;14744:17;14737:47;14801:131;14927:4;14801:131;:::i;:::-;14793:139;;14520:419;;;:::o;14945:::-;15111:4;15149:2;15138:9;15134:18;15126:26;;15198:9;15192:4;15188:20;15184:1;15173:9;15169:17;15162:47;15226:131;15352:4;15226:131;:::i;:::-;15218:139;;14945:419;;;:::o;15370:::-;15536:4;15574:2;15563:9;15559:18;15551:26;;15623:9;15617:4;15613:20;15609:1;15598:9;15594:17;15587:47;15651:131;15777:4;15651:131;:::i;:::-;15643:139;;15370:419;;;:::o;15795:::-;15961:4;15999:2;15988:9;15984:18;15976:26;;16048:9;16042:4;16038:20;16034:1;16023:9;16019:17;16012:47;16076:131;16202:4;16076:131;:::i;:::-;16068:139;;15795:419;;;:::o;16220:::-;16386:4;16424:2;16413:9;16409:18;16401:26;;16473:9;16467:4;16463:20;16459:1;16448:9;16444:17;16437:47;16501:131;16627:4;16501:131;:::i;:::-;16493:139;;16220:419;;;:::o;16645:::-;16811:4;16849:2;16838:9;16834:18;16826:26;;16898:9;16892:4;16888:20;16884:1;16873:9;16869:17;16862:47;16926:131;17052:4;16926:131;:::i;:::-;16918:139;;16645:419;;;:::o;17070:222::-;17163:4;17201:2;17190:9;17186:18;17178:26;;17214:71;17282:1;17271:9;17267:17;17258:6;17214:71;:::i;:::-;17070:222;;;;:::o;17298:129::-;17332:6;17359:20;;:::i;:::-;17349:30;;17388:33;17416:4;17408:6;17388:33;:::i;:::-;17298:129;;;:::o;17433:75::-;17466:6;17499:2;17493:9;17483:19;;17433:75;:::o;17514:307::-;17575:4;17665:18;17657:6;17654:30;17651:56;;;17687:18;;:::i;:::-;17651:56;17725:29;17747:6;17725:29;:::i;:::-;17717:37;;17809:4;17803;17799:15;17791:23;;17514:307;;;:::o;17827:308::-;17889:4;17979:18;17971:6;17968:30;17965:56;;;18001:18;;:::i;:::-;17965:56;18039:29;18061:6;18039:29;:::i;:::-;18031:37;;18123:4;18117;18113:15;18105:23;;17827:308;;;:::o;18141:98::-;18192:6;18226:5;18220:12;18210:22;;18141:98;;;:::o;18245:99::-;18297:6;18331:5;18325:12;18315:22;;18245:99;;;:::o;18350:168::-;18433:11;18467:6;18462:3;18455:19;18507:4;18502:3;18498:14;18483:29;;18350:168;;;;:::o;18524:169::-;18608:11;18642:6;18637:3;18630:19;18682:4;18677:3;18673:14;18658:29;;18524:169;;;;:::o;18699:148::-;18801:11;18838:3;18823:18;;18699:148;;;;:::o;18853:305::-;18893:3;18912:20;18930:1;18912:20;:::i;:::-;18907:25;;18946:20;18964:1;18946:20;:::i;:::-;18941:25;;19100:1;19032:66;19028:74;19025:1;19022:81;19019:107;;;19106:18;;:::i;:::-;19019:107;19150:1;19147;19143:9;19136:16;;18853:305;;;;:::o;19164:348::-;19204:7;19227:20;19245:1;19227:20;:::i;:::-;19222:25;;19261:20;19279:1;19261:20;:::i;:::-;19256:25;;19449:1;19381:66;19377:74;19374:1;19371:81;19366:1;19359:9;19352:17;19348:105;19345:131;;;19456:18;;:::i;:::-;19345:131;19504:1;19501;19497:9;19486:20;;19164:348;;;;:::o;19518:96::-;19555:7;19584:24;19602:5;19584:24;:::i;:::-;19573:35;;19518:96;;;:::o;19620:90::-;19654:7;19697:5;19690:13;19683:21;19672:32;;19620:90;;;:::o;19716:149::-;19752:7;19792:66;19785:5;19781:78;19770:89;;19716:149;;;:::o;19871:126::-;19908:7;19948:42;19941:5;19937:54;19926:65;;19871:126;;;:::o;20003:77::-;20040:7;20069:5;20058:16;;20003:77;;;:::o;20086:154::-;20170:6;20165:3;20160;20147:30;20232:1;20223:6;20218:3;20214:16;20207:27;20086:154;;;:::o;20246:307::-;20314:1;20324:113;20338:6;20335:1;20332:13;20324:113;;;20423:1;20418:3;20414:11;20408:18;20404:1;20399:3;20395:11;20388:39;20360:2;20357:1;20353:10;20348:15;;20324:113;;;20455:6;20452:1;20449:13;20446:101;;;20535:1;20526:6;20521:3;20517:16;20510:27;20446:101;20295:258;20246:307;;;:::o;20559:320::-;20603:6;20640:1;20634:4;20630:12;20620:22;;20687:1;20681:4;20677:12;20708:18;20698:81;;20764:4;20756:6;20752:17;20742:27;;20698:81;20826:2;20818:6;20815:14;20795:18;20792:38;20789:84;;;20845:18;;:::i;:::-;20789:84;20610:269;20559:320;;;:::o;20885:281::-;20968:27;20990:4;20968:27;:::i;:::-;20960:6;20956:40;21098:6;21086:10;21083:22;21062:18;21050:10;21047:34;21044:62;21041:88;;;21109:18;;:::i;:::-;21041:88;21149:10;21145:2;21138:22;20928:238;20885:281;;:::o;21172:180::-;21220:77;21217:1;21210:88;21317:4;21314:1;21307:15;21341:4;21338:1;21331:15;21358:180;21406:77;21403:1;21396:88;21503:4;21500:1;21493:15;21527:4;21524:1;21517:15;21544:180;21592:77;21589:1;21582:88;21689:4;21686:1;21679:15;21713:4;21710:1;21703:15;21730:117;21839:1;21836;21829:12;21853:117;21962:1;21959;21952:12;21976:117;22085:1;22082;22075:12;22099:117;22208:1;22205;22198:12;22222:102;22263:6;22314:2;22310:7;22305:2;22298:5;22294:14;22290:28;22280:38;;22222:102;;;:::o;22330:225::-;22470:34;22466:1;22458:6;22454:14;22447:58;22539:8;22534:2;22526:6;22522:15;22515:33;22330:225;:::o;22561:169::-;22701:21;22697:1;22689:6;22685:14;22678:45;22561:169;:::o;22736:168::-;22876:20;22872:1;22864:6;22860:14;22853:44;22736:168;:::o;22910:167::-;23050:19;23046:1;23038:6;23034:14;23027:43;22910:167;:::o;23083:172::-;23223:24;23219:1;23211:6;23207:14;23200:48;23083:172;:::o;23261:155::-;23401:7;23397:1;23389:6;23385:14;23378:31;23261:155;:::o;23422:182::-;23562:34;23558:1;23550:6;23546:14;23539:58;23422:182;:::o;23610:171::-;23750:23;23746:1;23738:6;23734:14;23727:47;23610:171;:::o;23787:122::-;23860:24;23878:5;23860:24;:::i;:::-;23853:5;23850:35;23840:63;;23899:1;23896;23889:12;23840:63;23787:122;:::o;23915:116::-;23985:21;24000:5;23985:21;:::i;:::-;23978:5;23975:32;23965:60;;24021:1;24018;24011:12;23965:60;23915:116;:::o;24037:120::-;24109:23;24126:5;24109:23;:::i;:::-;24102:5;24099:34;24089:62;;24147:1;24144;24137:12;24089:62;24037:120;:::o;24163:122::-;24236:24;24254:5;24236:24;:::i;:::-;24229:5;24226:35;24216:63;;24275:1;24272;24265:12;24216:63;24163:122;:::o
Swarm Source
ipfs://f5f35edc83ccead29b996b38a8ed03acab41a988008176538a2beac6937d7bee
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.