ERC-721
Overview
Max Total Supply
405 APNFT
Holders
58
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 APNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
aipepe
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-21 */ /** *Submitted for verification at Etherscan.io on 2022-09-08 */ /** *Submitted for verification at Etherscan.io on 2022-08-18 */ /** *Submitted for verification at Etherscan.io on 2022-08-18 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol /** Where am i?....... */ // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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 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.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 { 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; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @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 See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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 ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _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 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _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 { 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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function 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) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try 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)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { 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 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; } /** * @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 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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721AQueryable compliant contract. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * - `extraData` = `0` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * - `extraData` = `<Extra data when token was burned>` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` * - `extraData` = `<Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } pragma solidity ^0.8.0; contract aipepe is ERC721A, Ownable, ReentrancyGuard { using Strings for uint; string public hiddenMetadataUri; bytes32 public merkleRoot; mapping(address => bool) public whitelistClaimed; string public baseTokenURI = "ipfs://bafybeihsk2c6tgptuz4osajyt4efu3p76d62jruy4clkqgkmogktw5mkzi"; uint256 public maxSupply = 2222; uint256 public MAX_MINTS_PER_TX = 10; uint256 public PUBLIC_SALE_PRICE = 0.0025 ether; uint256 public NUM_FREE_MINTS = 0; uint256 public MAX_FREE_PER_WALLET = 1; uint256 public freeNFTAlreadyMinted = 0; bool public isPublicSaleActive = false; bool public whitelistMintEnabled = false; constructor( string memory _tokenName, string memory _tokenSymbol, string memory _hiddenMetadataUri ) ERC721A(_tokenName, _tokenSymbol) { setHiddenMetadataUri(_hiddenMetadataUri); } function mint(uint256 numberOfTokens) external payable { require(isPublicSaleActive, "Public sale is not open"); require(totalSupply() + numberOfTokens < maxSupply + 1, "No more"); if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS){ require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); } else { if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) { require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); require( numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded" ); } else { require( numberOfTokens <= MAX_FREE_PER_WALLET, "Max mints per transaction exceeded" ); freeNFTAlreadyMinted += numberOfTokens; } } _safeMint(msg.sender, numberOfTokens); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function treasuryMint(uint quantity) public onlyOwner { require( quantity > 0, "Invalid mint amount" ); require( totalSupply() + quantity <= maxSupply, "Maximum supply exceeded" ); _safeMint(msg.sender, quantity); } function withdraw() public onlyOwner nonReentrant { // This will transfer the remaining contract balance to the owner. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); // ============================================================================= } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json")); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setNumFreeMints(uint256 _numfreemints) external onlyOwner { NUM_FREE_MINTS = _numfreemints; } function setSalePrice(uint256 _price) external onlyOwner { PUBLIC_SALE_PRICE = _price; } function setMaxSupply(uint256 _maxsupply) external onlyOwner { maxSupply = _maxsupply; } function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner { MAX_MINTS_PER_TX = _limit; } function setwhitelistMintEnabled(bool _wlMintEnabled) external onlyOwner { whitelistMintEnabled = _wlMintEnabled; } function whitelistMint(uint256 _price, bytes32[] calldata _merkleProof) public payable { // Verify whitelist requirements require(whitelistMintEnabled, 'The whitelist sale is not enabled!'); require(!whitelistClaimed[_msgSender()], 'Address already claimed!'); bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!'); whitelistClaimed[_msgSender()] = true; _safeMint(_msgSender(), _price); } function setFreeLimitPerWallet(uint256 _limit) external onlyOwner { MAX_FREE_PER_WALLET = _limit; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxsupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_wlMintEnabled","type":"bool"}],"name":"setwhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61010060405260426080818152906200247560a039600d9062000023908262000242565b506108ae600e55600a600f556608e1bc9bf040006010556000601181905560016012556013556014805461ffff191690553480156200006157600080fd5b50604051620024b7380380620024b78339810160408190526200008491620003bd565b8282600262000094838262000242565b506003620000a3828262000242565b50506000805550620000b533620000ce565b6001600955620000c58162000120565b5050506200044e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200012a6200013c565b600a62000138828262000242565b5050565b6008546001600160a01b031633146200019b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001c857607f821691505b602082108103620001e957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023d57600081815260208120601f850160051c81016020861015620002185750805b601f850160051c820191505b81811015620002395782815560010162000224565b5050505b505050565b81516001600160401b038111156200025e576200025e6200019d565b62000276816200026f8454620001b3565b84620001ef565b602080601f831160018114620002ae5760008415620002955750858301515b600019600386901b1c1916600185901b17855562000239565b600085815260208120601f198616915b82811015620002df57888601518255948401946001909101908401620002be565b5085821015620002fe5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200032057600080fd5b81516001600160401b03808211156200033d576200033d6200019d565b604051601f8301601f19908116603f011681019082821181831017156200036857620003686200019d565b816040528381526020925086838588010111156200038557600080fd5b600091505b83821015620003a957858201830151818301840152908201906200038a565b600093810190920192909252949350505050565b600080600060608486031215620003d357600080fd5b83516001600160401b0380821115620003eb57600080fd5b620003f9878388016200030e565b945060208601519150808211156200041057600080fd5b6200041e878388016200030e565b935060408601519150808211156200043557600080fd5b5062000444868287016200030e565b9150509250925092565b612017806200045e6000396000f3fe6080604052600436106102515760003560e01c80636f8b44b011610139578063a45ba8e7116100b6578063d547cfb71161007a578063d547cfb714610683578063d5abeb0114610698578063db4bec44146106ae578063e985e9c5146106de578063efdc7788146106fe578063f2fde38b1461071e57600080fd5b8063a45ba8e714610605578063b88d4fde1461061a578063c6a91b421461063a578063c87b56dd14610650578063d2cab0561461067057600080fd5b8063982d669e116100fd578063982d669e1461058657806398710d1e1461059c5780639e9fcffc146105b2578063a0712d68146105d2578063a22cb465146105e557600080fd5b80636f8b44b0146104fe57806370a082311461051e578063715018a61461053e5780638da5cb5b1461055357806395d89b411461057157600080fd5b80631e84c413116101d25780633ccfd60b116101965780633ccfd60b1461044a57806342842e0e1461045f5780634fdd43cb1461047f57806355f804b31461049f5780636352211e146104bf5780636caede3d146104df57600080fd5b80631e84c413146103ba578063202f298a146103d457806323b872dd146103f457806328cad13d146104145780632eb4a7ab1461043457600080fd5b8063095ea7b311610219578063095ea7b31461032b5780630a00ae831461034b57806318160ddd1461036b5780631919fed714610384578063193ad7b4146103a457600080fd5b806301ffc9a71461025657806305480eee1461028b57806306fdde03146102ad57806307e89ec0146102cf578063081812fc146102f3575b600080fd5b34801561026257600080fd5b50610276610271366004611911565b61073e565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611943565b610790565b005b3480156102b957600080fd5b506102c26107b2565b60405161028291906119ae565b3480156102db57600080fd5b506102e560105481565b604051908152602001610282565b3480156102ff57600080fd5b5061031361030e3660046119c1565b610844565b6040516001600160a01b039091168152602001610282565b34801561033757600080fd5b506102ab6103463660046119f1565b610888565b34801561035757600080fd5b506102ab6103663660046119c1565b610928565b34801561037757600080fd5b50600154600054036102e5565b34801561039057600080fd5b506102ab61039f3660046119c1565b610935565b3480156103b057600080fd5b506102e560135481565b3480156103c657600080fd5b506014546102769060ff1681565b3480156103e057600080fd5b506102ab6103ef3660046119c1565b610942565b34801561040057600080fd5b506102ab61040f366004611a1b565b61094f565b34801561042057600080fd5b506102ab61042f366004611943565b610ae8565b34801561044057600080fd5b506102e5600b5481565b34801561045657600080fd5b506102ab610b03565b34801561046b57600080fd5b506102ab61047a366004611a1b565b610be0565b34801561048b57600080fd5b506102ab61049a366004611ae3565b610c00565b3480156104ab57600080fd5b506102ab6104ba366004611ae3565b610c18565b3480156104cb57600080fd5b506103136104da3660046119c1565b610c2c565b3480156104eb57600080fd5b5060145461027690610100900460ff1681565b34801561050a57600080fd5b506102ab6105193660046119c1565b610c37565b34801561052a57600080fd5b506102e5610539366004611b2c565b610c44565b34801561054a57600080fd5b506102ab610c93565b34801561055f57600080fd5b506008546001600160a01b0316610313565b34801561057d57600080fd5b506102c2610ca7565b34801561059257600080fd5b506102e560115481565b3480156105a857600080fd5b506102e560125481565b3480156105be57600080fd5b506102ab6105cd3660046119c1565b610cb6565b6102ab6105e03660046119c1565b610cc3565b3480156105f157600080fd5b506102ab610600366004611b47565b610ec4565b34801561061157600080fd5b506102c2610f59565b34801561062657600080fd5b506102ab610635366004611b7a565b610fe7565b34801561064657600080fd5b506102e5600f5481565b34801561065c57600080fd5b506102c261066b3660046119c1565b611031565b6102ab61067e366004611bf6565b6110d2565b34801561068f57600080fd5b506102c261126f565b3480156106a457600080fd5b506102e5600e5481565b3480156106ba57600080fd5b506102766106c9366004611b2c565b600c6020526000908152604090205460ff1681565b3480156106ea57600080fd5b506102766106f9366004611c75565b61127c565b34801561070a57600080fd5b506102ab6107193660046119c1565b6112aa565b34801561072a57600080fd5b506102ab610739366004611b2c565b611361565b60006301ffc9a760e01b6001600160e01b03198316148061076f57506380ac58cd60e01b6001600160e01b03198316145b8061078a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6107986113d7565b601480549115156101000261ff0019909216919091179055565b6060600280546107c190611c9f565b80601f01602080910402602001604051908101604052809291908181526020018280546107ed90611c9f565b801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b5050505050905090565b600061084f82611431565b61086c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089382610c2c565b9050336001600160a01b038216146108cc576108af813361127c565b6108cc576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109306113d7565b601155565b61093d6113d7565b601055565b61094a6113d7565b601255565b600061095a82611458565b9050836001600160a01b0316816001600160a01b03161461098d5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109da576109bd863361127c565b6109da57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a0157604051633a954ecd60e21b815260040160405180910390fd5b8015610a0c57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a9e57600184016000818152600460205260408120549003610a9c576000548114610a9c5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610af06113d7565b6014805460ff1916911515919091179055565b610b0b6113d7565b600260095403610b625760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026009556000610b7b6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bc5576040519150601f19603f3d011682016040523d82523d6000602084013e610bca565b606091505b5050905080610bd857600080fd5b506001600955565b610bfb83838360405180602001604052806000815250610fe7565b505050565b610c086113d7565b600a610c148282611d1f565b5050565b610c206113d7565b600d610c148282611d1f565b600061078a82611458565b610c3f6113d7565b600e55565b60006001600160a01b038216610c6d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c9b6113d7565b610ca560006114c6565b565b6060600380546107c190611c9f565b610cbe6113d7565b600f55565b60145460ff16610d155760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006044820152606401610b59565b600e54610d23906001611df5565b81610d316001546000540390565b610d3b9190611df5565b10610d725760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610b59565b60115481601354610d839190611df5565b1115610de6573481601054610d989190611e08565b1115610de15760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610b59565b610eb7565b60125481610df333610c44565b610dfd9190611df5565b1115610e7d573481601054610e129190611e08565b1115610e5b5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610b59565b600f54811115610de15760405162461bcd60e51b8152600401610b5990611e1f565b601254811115610e9f5760405162461bcd60e51b8152600401610b5990611e1f565b8060136000828254610eb19190611df5565b90915550505b610ec13382611518565b50565b336001600160a01b03831603610eed5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a8054610f6690611c9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9290611c9f565b8015610fdf5780601f10610fb457610100808354040283529160200191610fdf565b820191906000526020600020905b815481529060010190602001808311610fc257829003601f168201915b505050505081565b610ff284848461094f565b6001600160a01b0383163b1561102b5761100e84848484611532565b61102b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061103c82611431565b6110a05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b59565b600d6110ab8361161e565b6040516020016110bc929190611e61565b6040516020818303038152906040529050919050565b601454610100900460ff166111345760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610b59565b336000908152600c602052604090205460ff16156111945760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610b59565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061120e83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b54915084905061171f565b61124b5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610b59565b336000818152600c60205260409020805460ff1916600117905561102b9085611518565b600d8054610f6690611c9f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6112b26113d7565b600081116112f85760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610b59565b600e54816113096001546000540390565b6113139190611df5565b1115610eb75760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c792065786365656465640000000000000000006044820152606401610b59565b6113696113d7565b6001600160a01b0381166113ce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b59565b610ec1816114c6565b6008546001600160a01b03163314610ca55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b59565b600080548210801561078a575050600090815260046020526040902054600160e01b161590565b6000816000548110156114ad5760008181526004602052604081205490600160e01b821690036114ab575b806000036114a4575060001901600081815260046020526040902054611483565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c14828260405180602001604052806000815250611735565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611567903390899088908890600401611f07565b6020604051808303816000875af19250505080156115a2575060408051601f3d908101601f1916820190925261159f91810190611f44565b60015b611600573d8080156115d0576040519150601f19603f3d011682016040523d82523d6000602084013e6115d5565b606091505b5080516000036115f8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036116455750506040805180820190915260018152600360fc1b602082015290565b8160005b811561166f578061165981611f61565b91506116689050600a83611f90565b9150611649565b60008167ffffffffffffffff81111561168a5761168a611a57565b6040519080825280601f01601f1916602001820160405280156116b4576020820181803683370190505b5090505b8415611616576116c9600183611fa4565b91506116d6600a86611fb7565b6116e1906030611df5565b60f81b8183815181106116f6576116f6611fcb565b60200101906001600160f81b031916908160001a905350611718600a86611f90565b94506116b8565b60008261172c85846117a2565b14949350505050565b61173f83836117ef565b6001600160a01b0383163b15610bfb576000548281035b6117696000868380600101945086611532565b611786576040516368d2bf6b60e11b815260040160405180910390fd5b81811061175657816000541461179b57600080fd5b5050505050565b600081815b84518110156117e7576117d3828683815181106117c6576117c6611fcb565b60200260200101516118cf565b9150806117df81611f61565b9150506117a7565b509392505050565b6000546001600160a01b03831661181857604051622e076360e81b815260040160405180910390fd5b816000036118395760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106118835760005550505050565b60008183106118eb5760008281526020849052604090206114a4565b5060009182526020526040902090565b6001600160e01b031981168114610ec157600080fd5b60006020828403121561192357600080fd5b81356114a4816118fb565b8035801515811461193e57600080fd5b919050565b60006020828403121561195557600080fd5b6114a48261192e565b60005b83811015611979578181015183820152602001611961565b50506000910152565b6000815180845261199a81602086016020860161195e565b601f01601f19169290920160200192915050565b6020815260006114a46020830184611982565b6000602082840312156119d357600080fd5b5035919050565b80356001600160a01b038116811461193e57600080fd5b60008060408385031215611a0457600080fd5b611a0d836119da565b946020939093013593505050565b600080600060608486031215611a3057600080fd5b611a39846119da565b9250611a47602085016119da565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a8857611a88611a57565b604051601f8501601f19908116603f01168101908282118183101715611ab057611ab0611a57565b81604052809350858152868686011115611ac957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611af557600080fd5b813567ffffffffffffffff811115611b0c57600080fd5b8201601f81018413611b1d57600080fd5b61161684823560208401611a6d565b600060208284031215611b3e57600080fd5b6114a4826119da565b60008060408385031215611b5a57600080fd5b611b63836119da565b9150611b716020840161192e565b90509250929050565b60008060008060808587031215611b9057600080fd5b611b99856119da565b9350611ba7602086016119da565b925060408501359150606085013567ffffffffffffffff811115611bca57600080fd5b8501601f81018713611bdb57600080fd5b611bea87823560208401611a6d565b91505092959194509250565b600080600060408486031215611c0b57600080fd5b83359250602084013567ffffffffffffffff80821115611c2a57600080fd5b818601915086601f830112611c3e57600080fd5b813581811115611c4d57600080fd5b8760208260051b8501011115611c6257600080fd5b6020830194508093505050509250925092565b60008060408385031215611c8857600080fd5b611c91836119da565b9150611b71602084016119da565b600181811c90821680611cb357607f821691505b602082108103611cd357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610bfb57600081815260208120601f850160051c81016020861015611d005750805b601f850160051c820191505b81811015610ae057828155600101611d0c565b815167ffffffffffffffff811115611d3957611d39611a57565b611d4d81611d478454611c9f565b84611cd9565b602080601f831160018114611d825760008415611d6a5750858301515b600019600386901b1c1916600185901b178555610ae0565b600085815260208120601f198616915b82811015611db157888601518255948401946001909101908401611d92565b5085821015611dcf5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561078a5761078a611ddf565b808202811582820484141761078a5761078a611ddf565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6000808454611e6f81611c9f565b60018281168015611e875760018114611e9c57611ecb565b60ff1984168752821515830287019450611ecb565b8860005260208060002060005b85811015611ec25781548a820152908401908201611ea9565b50505082870194505b50602f60f81b845286519250611ee78382860160208a0161195e565b64173539b7b760d91b939092019182019290925260060195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3a90830184611982565b9695505050505050565b600060208284031215611f5657600080fd5b81516114a4816118fb565b600060018201611f7357611f73611ddf565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611f9f57611f9f611f7a565b500490565b8181038181111561078a5761078a611ddf565b600082611fc657611fc6611f7a565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220ae6a253d0e49be4b8efad67bc8f75c757fef98f50ee354d857c41f02db2942c664736f6c63430008120033697066733a2f2f6261667962656968736b32633674677074757a346f73616a797434656675337037366436326a72757934636c6b71676b6d6f676b7477356d6b7a69000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000064169506570650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000541504e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102515760003560e01c80636f8b44b011610139578063a45ba8e7116100b6578063d547cfb71161007a578063d547cfb714610683578063d5abeb0114610698578063db4bec44146106ae578063e985e9c5146106de578063efdc7788146106fe578063f2fde38b1461071e57600080fd5b8063a45ba8e714610605578063b88d4fde1461061a578063c6a91b421461063a578063c87b56dd14610650578063d2cab0561461067057600080fd5b8063982d669e116100fd578063982d669e1461058657806398710d1e1461059c5780639e9fcffc146105b2578063a0712d68146105d2578063a22cb465146105e557600080fd5b80636f8b44b0146104fe57806370a082311461051e578063715018a61461053e5780638da5cb5b1461055357806395d89b411461057157600080fd5b80631e84c413116101d25780633ccfd60b116101965780633ccfd60b1461044a57806342842e0e1461045f5780634fdd43cb1461047f57806355f804b31461049f5780636352211e146104bf5780636caede3d146104df57600080fd5b80631e84c413146103ba578063202f298a146103d457806323b872dd146103f457806328cad13d146104145780632eb4a7ab1461043457600080fd5b8063095ea7b311610219578063095ea7b31461032b5780630a00ae831461034b57806318160ddd1461036b5780631919fed714610384578063193ad7b4146103a457600080fd5b806301ffc9a71461025657806305480eee1461028b57806306fdde03146102ad57806307e89ec0146102cf578063081812fc146102f3575b600080fd5b34801561026257600080fd5b50610276610271366004611911565b61073e565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611943565b610790565b005b3480156102b957600080fd5b506102c26107b2565b60405161028291906119ae565b3480156102db57600080fd5b506102e560105481565b604051908152602001610282565b3480156102ff57600080fd5b5061031361030e3660046119c1565b610844565b6040516001600160a01b039091168152602001610282565b34801561033757600080fd5b506102ab6103463660046119f1565b610888565b34801561035757600080fd5b506102ab6103663660046119c1565b610928565b34801561037757600080fd5b50600154600054036102e5565b34801561039057600080fd5b506102ab61039f3660046119c1565b610935565b3480156103b057600080fd5b506102e560135481565b3480156103c657600080fd5b506014546102769060ff1681565b3480156103e057600080fd5b506102ab6103ef3660046119c1565b610942565b34801561040057600080fd5b506102ab61040f366004611a1b565b61094f565b34801561042057600080fd5b506102ab61042f366004611943565b610ae8565b34801561044057600080fd5b506102e5600b5481565b34801561045657600080fd5b506102ab610b03565b34801561046b57600080fd5b506102ab61047a366004611a1b565b610be0565b34801561048b57600080fd5b506102ab61049a366004611ae3565b610c00565b3480156104ab57600080fd5b506102ab6104ba366004611ae3565b610c18565b3480156104cb57600080fd5b506103136104da3660046119c1565b610c2c565b3480156104eb57600080fd5b5060145461027690610100900460ff1681565b34801561050a57600080fd5b506102ab6105193660046119c1565b610c37565b34801561052a57600080fd5b506102e5610539366004611b2c565b610c44565b34801561054a57600080fd5b506102ab610c93565b34801561055f57600080fd5b506008546001600160a01b0316610313565b34801561057d57600080fd5b506102c2610ca7565b34801561059257600080fd5b506102e560115481565b3480156105a857600080fd5b506102e560125481565b3480156105be57600080fd5b506102ab6105cd3660046119c1565b610cb6565b6102ab6105e03660046119c1565b610cc3565b3480156105f157600080fd5b506102ab610600366004611b47565b610ec4565b34801561061157600080fd5b506102c2610f59565b34801561062657600080fd5b506102ab610635366004611b7a565b610fe7565b34801561064657600080fd5b506102e5600f5481565b34801561065c57600080fd5b506102c261066b3660046119c1565b611031565b6102ab61067e366004611bf6565b6110d2565b34801561068f57600080fd5b506102c261126f565b3480156106a457600080fd5b506102e5600e5481565b3480156106ba57600080fd5b506102766106c9366004611b2c565b600c6020526000908152604090205460ff1681565b3480156106ea57600080fd5b506102766106f9366004611c75565b61127c565b34801561070a57600080fd5b506102ab6107193660046119c1565b6112aa565b34801561072a57600080fd5b506102ab610739366004611b2c565b611361565b60006301ffc9a760e01b6001600160e01b03198316148061076f57506380ac58cd60e01b6001600160e01b03198316145b8061078a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6107986113d7565b601480549115156101000261ff0019909216919091179055565b6060600280546107c190611c9f565b80601f01602080910402602001604051908101604052809291908181526020018280546107ed90611c9f565b801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b5050505050905090565b600061084f82611431565b61086c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089382610c2c565b9050336001600160a01b038216146108cc576108af813361127c565b6108cc576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109306113d7565b601155565b61093d6113d7565b601055565b61094a6113d7565b601255565b600061095a82611458565b9050836001600160a01b0316816001600160a01b03161461098d5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109da576109bd863361127c565b6109da57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a0157604051633a954ecd60e21b815260040160405180910390fd5b8015610a0c57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a9e57600184016000818152600460205260408120549003610a9c576000548114610a9c5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610af06113d7565b6014805460ff1916911515919091179055565b610b0b6113d7565b600260095403610b625760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026009556000610b7b6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bc5576040519150601f19603f3d011682016040523d82523d6000602084013e610bca565b606091505b5050905080610bd857600080fd5b506001600955565b610bfb83838360405180602001604052806000815250610fe7565b505050565b610c086113d7565b600a610c148282611d1f565b5050565b610c206113d7565b600d610c148282611d1f565b600061078a82611458565b610c3f6113d7565b600e55565b60006001600160a01b038216610c6d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c9b6113d7565b610ca560006114c6565b565b6060600380546107c190611c9f565b610cbe6113d7565b600f55565b60145460ff16610d155760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006044820152606401610b59565b600e54610d23906001611df5565b81610d316001546000540390565b610d3b9190611df5565b10610d725760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610b59565b60115481601354610d839190611df5565b1115610de6573481601054610d989190611e08565b1115610de15760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610b59565b610eb7565b60125481610df333610c44565b610dfd9190611df5565b1115610e7d573481601054610e129190611e08565b1115610e5b5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610b59565b600f54811115610de15760405162461bcd60e51b8152600401610b5990611e1f565b601254811115610e9f5760405162461bcd60e51b8152600401610b5990611e1f565b8060136000828254610eb19190611df5565b90915550505b610ec13382611518565b50565b336001600160a01b03831603610eed5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a8054610f6690611c9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9290611c9f565b8015610fdf5780601f10610fb457610100808354040283529160200191610fdf565b820191906000526020600020905b815481529060010190602001808311610fc257829003601f168201915b505050505081565b610ff284848461094f565b6001600160a01b0383163b1561102b5761100e84848484611532565b61102b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061103c82611431565b6110a05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b59565b600d6110ab8361161e565b6040516020016110bc929190611e61565b6040516020818303038152906040529050919050565b601454610100900460ff166111345760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610b59565b336000908152600c602052604090205460ff16156111945760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610b59565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061120e83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b54915084905061171f565b61124b5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610b59565b336000818152600c60205260409020805460ff1916600117905561102b9085611518565b600d8054610f6690611c9f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6112b26113d7565b600081116112f85760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610b59565b600e54816113096001546000540390565b6113139190611df5565b1115610eb75760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c792065786365656465640000000000000000006044820152606401610b59565b6113696113d7565b6001600160a01b0381166113ce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b59565b610ec1816114c6565b6008546001600160a01b03163314610ca55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b59565b600080548210801561078a575050600090815260046020526040902054600160e01b161590565b6000816000548110156114ad5760008181526004602052604081205490600160e01b821690036114ab575b806000036114a4575060001901600081815260046020526040902054611483565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c14828260405180602001604052806000815250611735565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611567903390899088908890600401611f07565b6020604051808303816000875af19250505080156115a2575060408051601f3d908101601f1916820190925261159f91810190611f44565b60015b611600573d8080156115d0576040519150601f19603f3d011682016040523d82523d6000602084013e6115d5565b606091505b5080516000036115f8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036116455750506040805180820190915260018152600360fc1b602082015290565b8160005b811561166f578061165981611f61565b91506116689050600a83611f90565b9150611649565b60008167ffffffffffffffff81111561168a5761168a611a57565b6040519080825280601f01601f1916602001820160405280156116b4576020820181803683370190505b5090505b8415611616576116c9600183611fa4565b91506116d6600a86611fb7565b6116e1906030611df5565b60f81b8183815181106116f6576116f6611fcb565b60200101906001600160f81b031916908160001a905350611718600a86611f90565b94506116b8565b60008261172c85846117a2565b14949350505050565b61173f83836117ef565b6001600160a01b0383163b15610bfb576000548281035b6117696000868380600101945086611532565b611786576040516368d2bf6b60e11b815260040160405180910390fd5b81811061175657816000541461179b57600080fd5b5050505050565b600081815b84518110156117e7576117d3828683815181106117c6576117c6611fcb565b60200260200101516118cf565b9150806117df81611f61565b9150506117a7565b509392505050565b6000546001600160a01b03831661181857604051622e076360e81b815260040160405180910390fd5b816000036118395760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106118835760005550505050565b60008183106118eb5760008281526020849052604090206114a4565b5060009182526020526040902090565b6001600160e01b031981168114610ec157600080fd5b60006020828403121561192357600080fd5b81356114a4816118fb565b8035801515811461193e57600080fd5b919050565b60006020828403121561195557600080fd5b6114a48261192e565b60005b83811015611979578181015183820152602001611961565b50506000910152565b6000815180845261199a81602086016020860161195e565b601f01601f19169290920160200192915050565b6020815260006114a46020830184611982565b6000602082840312156119d357600080fd5b5035919050565b80356001600160a01b038116811461193e57600080fd5b60008060408385031215611a0457600080fd5b611a0d836119da565b946020939093013593505050565b600080600060608486031215611a3057600080fd5b611a39846119da565b9250611a47602085016119da565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a8857611a88611a57565b604051601f8501601f19908116603f01168101908282118183101715611ab057611ab0611a57565b81604052809350858152868686011115611ac957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611af557600080fd5b813567ffffffffffffffff811115611b0c57600080fd5b8201601f81018413611b1d57600080fd5b61161684823560208401611a6d565b600060208284031215611b3e57600080fd5b6114a4826119da565b60008060408385031215611b5a57600080fd5b611b63836119da565b9150611b716020840161192e565b90509250929050565b60008060008060808587031215611b9057600080fd5b611b99856119da565b9350611ba7602086016119da565b925060408501359150606085013567ffffffffffffffff811115611bca57600080fd5b8501601f81018713611bdb57600080fd5b611bea87823560208401611a6d565b91505092959194509250565b600080600060408486031215611c0b57600080fd5b83359250602084013567ffffffffffffffff80821115611c2a57600080fd5b818601915086601f830112611c3e57600080fd5b813581811115611c4d57600080fd5b8760208260051b8501011115611c6257600080fd5b6020830194508093505050509250925092565b60008060408385031215611c8857600080fd5b611c91836119da565b9150611b71602084016119da565b600181811c90821680611cb357607f821691505b602082108103611cd357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610bfb57600081815260208120601f850160051c81016020861015611d005750805b601f850160051c820191505b81811015610ae057828155600101611d0c565b815167ffffffffffffffff811115611d3957611d39611a57565b611d4d81611d478454611c9f565b84611cd9565b602080601f831160018114611d825760008415611d6a5750858301515b600019600386901b1c1916600185901b178555610ae0565b600085815260208120601f198616915b82811015611db157888601518255948401946001909101908401611d92565b5085821015611dcf5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561078a5761078a611ddf565b808202811582820484141761078a5761078a611ddf565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6000808454611e6f81611c9f565b60018281168015611e875760018114611e9c57611ecb565b60ff1984168752821515830287019450611ecb565b8860005260208060002060005b85811015611ec25781548a820152908401908201611ea9565b50505082870194505b50602f60f81b845286519250611ee78382860160208a0161195e565b64173539b7b760d91b939092019182019290925260060195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3a90830184611982565b9695505050505050565b600060208284031215611f5657600080fd5b81516114a4816118fb565b600060018201611f7357611f73611ddf565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611f9f57611f9f611f7a565b500490565b8181038181111561078a5761078a611ddf565b600082611fc657611fc6611f7a565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220ae6a253d0e49be4b8efad67bc8f75c757fef98f50ee354d857c41f02db2942c664736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000064169506570650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000541504e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): AiPepe
Arg [1] : _tokenSymbol (string): APNFT
Arg [2] : _hiddenMetadataUri (string):
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 4169506570650000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 41504e4654000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
71368:4870:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23828:615;;;;;;;;;;-1:-1:-1;23828:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23828:615:0;;;;;;;;75445:142;;;;;;;;;;-1:-1:-1;75445:142:0;;;;;:::i;:::-;;:::i;:::-;;29475:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;71765:48::-;;;;;;;;;;;;;;;;;;;1844:25:1;;;1832:2;1817:18;71765:48:0;1698:177:1;31421:204:0;;;;;;;;;;-1:-1:-1;31421:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2229:32:1;;;2211:51;;2199:2;2184:18;31421:204:0;2065:203:1;30969:386:0;;;;;;;;;;-1:-1:-1;30969:386:0;;;;;:::i;:::-;;:::i;74939:129::-;;;;;;;;;;-1:-1:-1;74939:129:0;;;;;:::i;:::-;;:::i;22882:315::-;;;;;;;;;;-1:-1:-1;23148:12:0;;22935:7;23132:13;:28;22882:315;;75074:115;;;;;;;;;;-1:-1:-1;75074:115:0;;;;;:::i;:::-;;:::i;71901:39::-;;;;;;;;;;;;;;;;71945:38;;;;;;;;;;-1:-1:-1;71945:38:0;;;;;;;;76109:126;;;;;;;;;;-1:-1:-1;76109:126:0;;;;;:::i;:::-;;:::i;40686:2800::-;;;;;;;;;;-1:-1:-1;40686:2800:0;;;;;:::i;:::-;;:::i;74649:148::-;;;;;;;;;;-1:-1:-1;74649:148:0;;;;;:::i;:::-;;:::i;71495:25::-;;;;;;;;;;;;;;;;73709:475;;;;;;;;;;;;;:::i;32311:185::-;;;;;;;;;;-1:-1:-1;32311:185:0;;;;;:::i;:::-;;:::i;74801:132::-;;;;;;;;;;-1:-1:-1;74801:132:0;;;;;:::i;:::-;;:::i;73307:108::-;;;;;;;;;;-1:-1:-1;73307:108:0;;;;;:::i;:::-;;:::i;29264:144::-;;;;;;;;;;-1:-1:-1;29264:144:0;;;;;:::i;:::-;;:::i;71989:40::-;;;;;;;;;;-1:-1:-1;71989:40:0;;;;;;;;;;;75193:115;;;;;;;;;;-1:-1:-1;75193:115:0;;;;;:::i;:::-;;:::i;24507:224::-;;;;;;;;;;-1:-1:-1;24507:224:0;;;;;:::i;:::-;;:::i;8419:103::-;;;;;;;;;;;;;:::i;7771:87::-;;;;;;;;;;-1:-1:-1;7844:6:0;;-1:-1:-1;;;;;7844:6:0;7771:87;;29644:104;;;;;;;;;;;;;:::i;71818:34::-;;;;;;;;;;;;;;;;71857:39;;;;;;;;;;;;;;;;75314:127;;;;;;;;;;-1:-1:-1;75314:127:0;;;;;:::i;:::-;;:::i;72252:1049::-;;;;;;:::i;:::-;;:::i;31697:308::-;;;;;;;;;;-1:-1:-1;31697:308:0;;;;;:::i;:::-;;:::i;71458:31::-;;;;;;;;;;;;;:::i;32567:399::-;;;;;;;;;;-1:-1:-1;32567:399:0;;;;;:::i;:::-;;:::i;71723:37::-;;;;;;;;;;;;;;;;74190:312;;;;;;;;;;-1:-1:-1;74190:312:0;;;;;:::i;:::-;;:::i;75591:512::-;;;;;;:::i;:::-;;:::i;71581:99::-;;;;;;;;;;;;;:::i;71685:33::-;;;;;;;;;;;;;;;;71526:48;;;;;;;;;;-1:-1:-1;71526:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32076:164;;;;;;;;;;-1:-1:-1;32076:164:0;;;;;:::i;:::-;;:::i;73421:284::-;;;;;;;;;;-1:-1:-1;73421:284:0;;;;;:::i;:::-;;:::i;8677:201::-;;;;;;;;;;-1:-1:-1;8677:201:0;;;;;:::i;:::-;;:::i;23828:615::-;23913:4;-1:-1:-1;;;;;;;;;24213:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;24290:25:0;;;24213:102;:179;;;-1:-1:-1;;;;;;;;;;24367:25:0;;;24213:179;24193:199;23828:615;-1:-1:-1;;23828:615:0:o;75445:142::-;7657:13;:11;:13::i;:::-;75544:20:::1;:37:::0;;;::::1;;;;-1:-1:-1::0;;75544:37:0;;::::1;::::0;;;::::1;::::0;;75445:142::o;29475:100::-;29529:13;29562:5;29555:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29475:100;:::o;31421:204::-;31489:7;31514:16;31522:7;31514;:16::i;:::-;31509:64;;31539:34;;-1:-1:-1;;;31539:34:0;;;;;;;;;;;31509:64;-1:-1:-1;31593:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31593:24:0;;31421:204::o;30969:386::-;31042:13;31058:16;31066:7;31058;:16::i;:::-;31042:32;-1:-1:-1;51869:10:0;-1:-1:-1;;;;;31091:28:0;;;31087:175;;31139:44;31156:5;51869:10;32076:164;:::i;31139:44::-;31134:128;;31211:35;;-1:-1:-1;;;31211:35:0;;;;;;;;;;;31134:128;31274:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;31274:29:0;-1:-1:-1;;;;;31274:29:0;;;;;;;;;31319:28;;31274:24;;31319:28;;;;;;;31031:324;30969:386;;:::o;74939:129::-;7657:13;:11;:13::i;:::-;75032:14:::1;:30:::0;74939:129::o;75074:115::-;7657:13;:11;:13::i;:::-;75157:17:::1;:26:::0;75074:115::o;76109:126::-;7657:13;:11;:13::i;:::-;76201:19:::1;:28:::0;76109:126::o;40686:2800::-;40820:27;40850;40869:7;40850:18;:27::i;:::-;40820:57;;40935:4;-1:-1:-1;;;;;40894:45:0;40910:19;-1:-1:-1;;;;;40894:45:0;;40890:86;;40948:28;;-1:-1:-1;;;40948:28:0;;;;;;;;;;;40890:86;40990:27;39416:21;;;39243:15;39458:4;39451:36;39540:4;39524:21;;39630:26;;51869:10;40383:30;;;-1:-1:-1;;;;;40081:26:0;;40362:19;;;40359:55;41169:174;;41256:43;41273:4;51869:10;32076:164;:::i;41256:43::-;41251:92;;41308:35;;-1:-1:-1;;;41308:35:0;;;;;;;;;;;41251:92;-1:-1:-1;;;;;41360:16:0;;41356:52;;41385:23;;-1:-1:-1;;;41385:23:0;;;;;;;;;;;41356:52;41557:15;41554:160;;;41697:1;41676:19;41669:30;41554:160;-1:-1:-1;;;;;42092:24:0;;;;;;;:18;:24;;;;;;42090:26;;-1:-1:-1;;42090:26:0;;;42161:22;;;;;;;;;42159:24;;-1:-1:-1;42159:24:0;;;29163:11;29139:22;29135:40;29122:62;-1:-1:-1;;;29122:62:0;42454:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;42748:46:0;;:51;;42744:626;;42852:1;42842:11;;42820:19;42975:30;;;:17;:30;;;;;;:35;;42971:384;;43113:13;;43098:11;:28;43094:242;;43260:30;;;;:17;:30;;;;;:52;;;43094:242;42801:569;42744:626;43417:7;43413:2;-1:-1:-1;;;;;43398:27:0;43407:4;-1:-1:-1;;;;;43398:27:0;;;;;;;;;;;43436:42;40809:2677;;;40686:2800;;;:::o;74649:148::-;7657:13;:11;:13::i;:::-;74751:18:::1;:40:::0;;-1:-1:-1;;74751:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;74649:148::o;73709:475::-;7657:13;:11;:13::i;:::-;2197:1:::1;2795:7;;:19:::0;2787:63:::1;;;::::0;-1:-1:-1;;;2787:63:0;;7112:2:1;2787:63:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:33;7170:18;;;7163:61;7241:18;;2787:63:0::1;;;;;;;;;2197:1;2928:7;:18:::0;74006:7:::2;74027;7844:6:::0;;-1:-1:-1;;;;;7844:6:0;;7771:87;74027:7:::2;-1:-1:-1::0;;;;;74019:21:0::2;74048;74019:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74005:69;;;74089:2;74081:11;;;::::0;::::2;;-1:-1:-1::0;2153:1:0::1;3107:7;:22:::0;73709:475::o;32311:185::-;32449:39;32466:4;32472:2;32476:7;32449:39;;;;;;;;;;;;:16;:39::i;:::-;32311:185;;;:::o;74801:132::-;7657:13;:11;:13::i;:::-;74889:17:::1;:38;74909:18:::0;74889:17;:38:::1;:::i;:::-;;74801:132:::0;:::o;73307:108::-;7657:13;:11;:13::i;:::-;73387:12:::1;:22;73402:7:::0;73387:12;:22:::1;:::i;29264:144::-:0;29328:7;29371:27;29390:7;29371:18;:27::i;75193:115::-;7657:13;:11;:13::i;:::-;75280:9:::1;:22:::0;75193:115::o;24507:224::-;24571:7;-1:-1:-1;;;;;24595:19:0;;24591:60;;24623:28;;-1:-1:-1;;;24623:28:0;;;;;;;;;;;24591:60;-1:-1:-1;;;;;;24669:25:0;;;;;:18;:25;;;;;;19062:13;24669:54;;24507:224::o;8419:103::-;7657:13;:11;:13::i;:::-;8484:30:::1;8511:1;8484:18;:30::i;:::-;8419:103::o:0;29644:104::-;29700:13;29733:7;29726:14;;;;;:::i;75314:127::-;7657:13;:11;:13::i;:::-;75410:16:::1;:25:::0;75314:127::o;72252:1049::-;72339:18;;;;72331:54;;;;-1:-1:-1;;;72331:54:0;;9886:2:1;72331:54:0;;;9868:21:1;9925:2;9905:18;;;9898:30;9964:25;9944:18;;;9937:53;10007:18;;72331:54:0;9684:347:1;72331:54:0;72433:9;;:13;;72445:1;72433:13;:::i;:::-;72416:14;72400:13;23148:12;;22935:7;23132:13;:28;;22882:315;72400:13;:30;;;;:::i;:::-;:46;72392:66;;;;-1:-1:-1;;;72392:66:0;;10500:2:1;72392:66:0;;;10482:21:1;10539:1;10519:18;;;10512:29;-1:-1:-1;;;10557:18:1;;;10550:37;10604:18;;72392:66:0;10298:330:1;72392:66:0;72510:14;;72493;72470:20;;:37;;;;:::i;:::-;:54;72467:784;;;72598:9;72579:14;72559:17;;:34;;;;:::i;:::-;72558:49;;72536:123;;;;-1:-1:-1;;;72536:123:0;;11008:2:1;72536:123:0;;;10990:21:1;11047:2;11027:18;;;11020:30;-1:-1:-1;;;11066:18:1;;;11059:54;11130:18;;72536:123:0;10806:348:1;72536:123:0;72467:784;;;72729:19;;72712:14;72688:21;72698:10;72688:9;:21::i;:::-;:38;;;;:::i;:::-;:60;72684:560;;;72823:9;72804:14;72784:17;;:34;;;;:::i;:::-;72783:49;;72761:123;;;;-1:-1:-1;;;72761:123:0;;11008:2:1;72761:123:0;;;10990:21:1;11047:2;11027:18;;;11020:30;-1:-1:-1;;;11066:18:1;;;11059:54;11130:18;;72761:123:0;10806:348:1;72761:123:0;72935:16;;72917:14;:34;;72895:118;;;;-1:-1:-1;;;72895:118:0;;;;;;;:::i;72684:560::-;73090:19;;73072:14;:37;;73046:133;;;;-1:-1:-1;;;73046:133:0;;;;;;;:::i;:::-;73218:14;73194:20;;:38;;;;;;;:::i;:::-;;;;-1:-1:-1;;72684:560:0;73257:37;73267:10;73279:14;73257:9;:37::i;:::-;72252:1049;:::o;31697:308::-;51869:10;-1:-1:-1;;;;;31796:31:0;;;31792:61;;31836:17;;-1:-1:-1;;;31836:17:0;;;;;;;;;;;31792:61;51869:10;31866:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;31866:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;31866:60:0;;;;;;;;;;31942:55;;540:41:1;;;31866:49:0;;51869:10;31942:55;;513:18:1;31942:55:0;;;;;;;31697:308;;:::o;71458:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32567:399::-;32734:31;32747:4;32753:2;32757:7;32734:12;:31::i;:::-;-1:-1:-1;;;;;32780:14:0;;;:19;32776:183;;32819:56;32850:4;32856:2;32860:7;32869:5;32819:30;:56::i;:::-;32814:145;;32903:40;;-1:-1:-1;;;32903:40:0;;;;;;;;;;;32814:145;32567:399;;;;:::o;74190:312::-;74286:13;74327:17;74335:8;74327:7;:17::i;:::-;74311:98;;;;-1:-1:-1;;;74311:98:0;;11764:2:1;74311:98:0;;;11746:21:1;11803:2;11783:18;;;11776:30;11842:34;11822:18;;;11815:62;-1:-1:-1;;;11893:18:1;;;11886:45;11948:19;;74311:98:0;11562:411:1;74311:98:0;74447:12;74466:19;:8;:17;:19::i;:::-;74430:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74416:80;;74190:312;;;:::o;75591:512::-;75732:20;;;;;;;75724:67;;;;-1:-1:-1;;;75724:67:0;;13507:2:1;75724:67:0;;;13489:21:1;13546:2;13526:18;;;13519:30;13585:34;13565:18;;;13558:62;-1:-1:-1;;;13636:18:1;;;13629:32;13678:19;;75724:67:0;13305:398:1;75724:67:0;51869:10;75807:30;;;;:16;:30;;;;;;;;75806:31;75798:68;;;;-1:-1:-1;;;75798:68:0;;13910:2:1;75798:68:0;;;13892:21:1;13949:2;13929:18;;;13922:30;13988:26;13968:18;;;13961:54;14032:18;;75798:68:0;13708:348:1;75798:68:0;75898:30;;-1:-1:-1;;51869:10:0;14210:2:1;14206:15;14202:53;75898:30:0;;;14190:66:1;75873:12:0;;14272::1;;75898:30:0;;;;;;;;;;;;75888:41;;;;;;75873:56;;75944:50;75963:12;;75944:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;75977:10:0;;;-1:-1:-1;75989:4:0;;-1:-1:-1;75944:18:0;:50::i;:::-;75936:77;;;;-1:-1:-1;;;75936:77:0;;14497:2:1;75936:77:0;;;14479:21:1;14536:2;14516:18;;;14509:30;-1:-1:-1;;;14555:18:1;;;14548:44;14609:18;;75936:77:0;14295:338:1;75936:77:0;51869:10;76022:30;;;;:16;:30;;;;;:37;;-1:-1:-1;;76022:37:0;76055:4;76022:37;;;76066:31;;76090:6;76066:9;:31::i;71581:99::-;;;;;;;:::i;32076:164::-;-1:-1:-1;;;;;32197:25:0;;;32173:4;32197:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32076:164::o;73421:284::-;7657:13;:11;:13::i;:::-;73522:1:::1;73511:8;:12;73495:65;;;::::0;-1:-1:-1;;;73495:65:0;;14840:2:1;73495:65:0::1;::::0;::::1;14822:21:1::0;14879:2;14859:18;;;14852:30;-1:-1:-1;;;14898:18:1;;;14891:49;14957:18;;73495:65:0::1;14638:343:1::0;73495:65:0::1;73611:9;;73599:8;73583:13;23148:12:::0;;22935:7;23132:13;:28;;22882:315;73583:13:::1;:24;;;;:::i;:::-;:37;;73567:94;;;::::0;-1:-1:-1;;;73567:94:0;;15188:2:1;73567:94:0::1;::::0;::::1;15170:21:1::0;15227:2;15207:18;;;15200:30;15266:25;15246:18;;;15239:53;15309:18;;73567:94:0::1;14986:347:1::0;8677:201:0;7657:13;:11;:13::i;:::-;-1:-1:-1;;;;;8766:22:0;::::1;8758:73;;;::::0;-1:-1:-1;;;8758:73:0;;15540:2:1;8758:73:0::1;::::0;::::1;15522:21:1::0;15579:2;15559:18;;;15552:30;15618:34;15598:18;;;15591:62;-1:-1:-1;;;15669:18:1;;;15662:36;15715:19;;8758:73:0::1;15338:402:1::0;8758:73:0::1;8842:28;8861:8;8842:18;:28::i;7936:132::-:0;7844:6;;-1:-1:-1;;;;;7844:6:0;51869:10;8000:23;7992:68;;;;-1:-1:-1;;;7992:68:0;;15947:2:1;7992:68:0;;;15929:21:1;;;15966:18;;;15959:30;16025:34;16005:18;;;15998:62;16077:18;;7992:68:0;15745:356:1;33221:273:0;33278:4;33368:13;;33358:7;:23;33315:152;;;;-1:-1:-1;;33419:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33419:43:0;:48;;33221:273::o;26181:1129::-;26248:7;26283;26385:13;;26378:4;:20;26374:869;;;26423:14;26440:23;;;:17;:23;;;;;;;-1:-1:-1;;;26529:23:0;;:28;;26525:699;;27048:113;27055:6;27065:1;27055:11;27048:113;;-1:-1:-1;;;27126:6:0;27108:25;;;;:17;:25;;;;;;27048:113;;;27194:6;26181:1129;-1:-1:-1;;;26181:1129:0:o;26525:699::-;26400:843;26374:869;27271:31;;-1:-1:-1;;;27271:31:0;;;;;;;;;;;9038:191;9131:6;;;-1:-1:-1;;;;;9148:17:0;;;-1:-1:-1;;;;;;9148:17:0;;;;;;;9181:40;;9131:6;;;9148:17;9131:6;;9181:40;;9112:16;;9181:40;9101:128;9038:191;:::o;33578:104::-;33647:27;33657:2;33661:8;33647:27;;;;;;;;;;;;:9;:27::i;47437:716::-;47621:88;;-1:-1:-1;;;47621:88:0;;47600:4;;-1:-1:-1;;;;;47621:45:0;;;;;:88;;51869:10;;47688:4;;47694:7;;47703:5;;47621:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47621:88:0;;;;;;;;-1:-1:-1;;47621:88:0;;;;;;;;;;;;:::i;:::-;;;47617:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47904:6;:13;47921:1;47904:18;47900:235;;47950:40;;-1:-1:-1;;;47950:40:0;;;;;;;;;;;47900:235;48093:6;48087:13;48078:6;48074:2;48070:15;48063:38;47617:529;-1:-1:-1;;;;;;47780:64:0;-1:-1:-1;;;47780:64:0;;-1:-1:-1;47617:529:0;47437:716;;;;;;:::o;3574:723::-;3630:13;3851:5;3860:1;3851:10;3847:53;;-1:-1:-1;;3878:10:0;;;;;;;;;;;;-1:-1:-1;;;3878:10:0;;;;;3574:723::o;3847:53::-;3925:5;3910:12;3966:78;3973:9;;3966:78;;3999:8;;;;:::i;:::-;;-1:-1:-1;4022:10:0;;-1:-1:-1;4030:2:0;4022:10;;:::i;:::-;;;3966:78;;;4054:19;4086:6;4076:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4076:17:0;;4054:39;;4104:154;4111:10;;4104:154;;4138:11;4148:1;4138:11;;:::i;:::-;;-1:-1:-1;4207:10:0;4215:2;4207:5;:10;:::i;:::-;4194:24;;:2;:24;:::i;:::-;4181:39;;4164:6;4171;4164:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4164:56:0;;;;;;;;-1:-1:-1;4235:11:0;4244:2;4235:11;;:::i;:::-;;;4104:154;;63835:190;63960:4;64013;63984:25;63997:5;64004:4;63984:12;:25::i;:::-;:33;;63835:190;-1:-1:-1;;;;63835:190:0:o;34098:681::-;34221:19;34227:2;34231:8;34221:5;:19::i;:::-;-1:-1:-1;;;;;34282:14:0;;;:19;34278:483;;34322:11;34336:13;34384:14;;;34417:233;34448:62;34487:1;34491:2;34495:7;;;;;;34504:5;34448:30;:62::i;:::-;34443:167;;34546:40;;-1:-1:-1;;;34546:40:0;;;;;;;;;;;34443:167;34645:3;34637:5;:11;34417:233;;34732:3;34715:13;;:20;34711:34;;34737:8;;;34711:34;34303:458;;34098:681;;;:::o;64702:296::-;64785:7;64828:4;64785:7;64843:118;64867:5;:12;64863:1;:16;64843:118;;;64916:33;64926:12;64940:5;64946:1;64940:8;;;;;;;;:::i;:::-;;;;;;;64916:9;:33::i;:::-;64901:48;-1:-1:-1;64881:3:0;;;;:::i;:::-;;;;64843:118;;;-1:-1:-1;64978:12:0;64702:296;-1:-1:-1;;;64702:296:0:o;35052:1529::-;35117:20;35140:13;-1:-1:-1;;;;;35168:16:0;;35164:48;;35193:19;;-1:-1:-1;;;35193:19:0;;;;;;;;;;;35164:48;35227:8;35239:1;35227:13;35223:44;;35249:18;;-1:-1:-1;;;35249:18:0;;;;;;;;;;;35223:44;-1:-1:-1;;;;;35755:22:0;;;;;;:18;:22;;19199:2;35755:22;;:70;;35793:31;35781:44;;35755:70;;;29163:11;29139:22;29135:40;-1:-1:-1;30873:15:0;;30848:23;30844:45;29132:51;29122:62;36068:31;;;;:17;:31;;;;;:173;36086:12;36317:23;;;36355:101;36382:35;;36407:9;;;;;-1:-1:-1;;;;;36382:35:0;;;36399:1;;36382:35;;36399:1;;36382:35;36451:3;36441:7;:13;36355:101;;36472:13;:19;-1:-1:-1;32311:185:0;;;:::o;70909:149::-;70972:7;71003:1;70999;:5;:51;;71134:13;71228:15;;;71264:4;71257:15;;;71311:4;71295:21;;70999:51;;;-1:-1:-1;71134:13:0;71228:15;;;71264:4;71257:15;71311:4;71295:21;;;70909:149::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:250::-;1027:1;1037:113;1051:6;1048:1;1045:13;1037:113;;;1127:11;;;1121:18;1108:11;;;1101:39;1073:2;1066:10;1037:113;;;-1:-1:-1;;1184:1:1;1166:16;;1159:27;942:250::o;1197:271::-;1239:3;1277:5;1271:12;1304:6;1299:3;1292:19;1320:76;1389:6;1382:4;1377:3;1373:14;1366:4;1359:5;1355:16;1320:76;:::i;:::-;1450:2;1429:15;-1:-1:-1;;1425:29:1;1416:39;;;;1457:4;1412:50;;1197:271;-1:-1:-1;;1197:271:1:o;1473:220::-;1622:2;1611:9;1604:21;1585:4;1642:45;1683:2;1672:9;1668:18;1660:6;1642:45;:::i;1880:180::-;1939:6;1992:2;1980:9;1971:7;1967:23;1963:32;1960:52;;;2008:1;2005;1998:12;1960:52;-1:-1:-1;2031:23:1;;1880:180;-1:-1:-1;1880:180:1:o;2273:173::-;2341:20;;-1:-1:-1;;;;;2390:31:1;;2380:42;;2370:70;;2436:1;2433;2426:12;2451:254;2519:6;2527;2580:2;2568:9;2559:7;2555:23;2551:32;2548:52;;;2596:1;2593;2586:12;2548:52;2619:29;2638:9;2619:29;:::i;:::-;2609:39;2695:2;2680:18;;;;2667:32;;-1:-1:-1;;;2451:254:1:o;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3225:127::-;3286:10;3281:3;3277:20;3274:1;3267:31;3317:4;3314:1;3307:15;3341:4;3338:1;3331:15;3357:632;3422:5;3452:18;3493:2;3485:6;3482:14;3479:40;;;3499:18;;:::i;:::-;3574:2;3568:9;3542:2;3628:15;;-1:-1:-1;;3624:24:1;;;3650:2;3620:33;3616:42;3604:55;;;3674:18;;;3694:22;;;3671:46;3668:72;;;3720:18;;:::i;:::-;3760:10;3756:2;3749:22;3789:6;3780:15;;3819:6;3811;3804:22;3859:3;3850:6;3845:3;3841:16;3838:25;3835:45;;;3876:1;3873;3866:12;3835:45;3926:6;3921:3;3914:4;3906:6;3902:17;3889:44;3981:1;3974:4;3965:6;3957;3953:19;3949:30;3942:41;;;;3357:632;;;;;:::o;3994:451::-;4063:6;4116:2;4104:9;4095:7;4091:23;4087:32;4084:52;;;4132:1;4129;4122:12;4084:52;4172:9;4159:23;4205:18;4197:6;4194:30;4191:50;;;4237:1;4234;4227:12;4191:50;4260:22;;4313:4;4305:13;;4301:27;-1:-1:-1;4291:55:1;;4342:1;4339;4332:12;4291:55;4365:74;4431:7;4426:2;4413:16;4408:2;4404;4400:11;4365:74;:::i;4450:186::-;4509:6;4562:2;4550:9;4541:7;4537:23;4533:32;4530:52;;;4578:1;4575;4568:12;4530:52;4601:29;4620:9;4601:29;:::i;4641:254::-;4706:6;4714;4767:2;4755:9;4746:7;4742:23;4738:32;4735:52;;;4783:1;4780;4773:12;4735:52;4806:29;4825:9;4806:29;:::i;:::-;4796:39;;4854:35;4885:2;4874:9;4870:18;4854:35;:::i;:::-;4844:45;;4641:254;;;;;:::o;4900:667::-;4995:6;5003;5011;5019;5072:3;5060:9;5051:7;5047:23;5043:33;5040:53;;;5089:1;5086;5079:12;5040:53;5112:29;5131:9;5112:29;:::i;:::-;5102:39;;5160:38;5194:2;5183:9;5179:18;5160:38;:::i;:::-;5150:48;;5245:2;5234:9;5230:18;5217:32;5207:42;;5300:2;5289:9;5285:18;5272:32;5327:18;5319:6;5316:30;5313:50;;;5359:1;5356;5349:12;5313:50;5382:22;;5435:4;5427:13;;5423:27;-1:-1:-1;5413:55:1;;5464:1;5461;5454:12;5413:55;5487:74;5553:7;5548:2;5535:16;5530:2;5526;5522:11;5487:74;:::i;:::-;5477:84;;;4900:667;;;;;;;:::o;5572:683::-;5667:6;5675;5683;5736:2;5724:9;5715:7;5711:23;5707:32;5704:52;;;5752:1;5749;5742:12;5704:52;5788:9;5775:23;5765:33;;5849:2;5838:9;5834:18;5821:32;5872:18;5913:2;5905:6;5902:14;5899:34;;;5929:1;5926;5919:12;5899:34;5967:6;5956:9;5952:22;5942:32;;6012:7;6005:4;6001:2;5997:13;5993:27;5983:55;;6034:1;6031;6024:12;5983:55;6074:2;6061:16;6100:2;6092:6;6089:14;6086:34;;;6116:1;6113;6106:12;6086:34;6169:7;6164:2;6154:6;6151:1;6147:14;6143:2;6139:23;6135:32;6132:45;6129:65;;;6190:1;6187;6180:12;6129:65;6221:2;6217;6213:11;6203:21;;6243:6;6233:16;;;;;5572:683;;;;;:::o;6260:260::-;6328:6;6336;6389:2;6377:9;6368:7;6364:23;6360:32;6357:52;;;6405:1;6402;6395:12;6357:52;6428:29;6447:9;6428:29;:::i;:::-;6418:39;;6476:38;6510:2;6499:9;6495:18;6476:38;:::i;6525:380::-;6604:1;6600:12;;;;6647;;;6668:61;;6722:4;6714:6;6710:17;6700:27;;6668:61;6775:2;6767:6;6764:14;6744:18;6741:38;6738:161;;6821:10;6816:3;6812:20;6809:1;6802:31;6856:4;6853:1;6846:15;6884:4;6881:1;6874:15;6738:161;;6525:380;;;:::o;7606:545::-;7708:2;7703:3;7700:11;7697:448;;;7744:1;7769:5;7765:2;7758:17;7814:4;7810:2;7800:19;7884:2;7872:10;7868:19;7865:1;7861:27;7855:4;7851:38;7920:4;7908:10;7905:20;7902:47;;;-1:-1:-1;7943:4:1;7902:47;7998:2;7993:3;7989:12;7986:1;7982:20;7976:4;7972:31;7962:41;;8053:82;8071:2;8064:5;8061:13;8053:82;;;8116:17;;;8097:1;8086:13;8053:82;;8327:1352;8453:3;8447:10;8480:18;8472:6;8469:30;8466:56;;;8502:18;;:::i;:::-;8531:97;8621:6;8581:38;8613:4;8607:11;8581:38;:::i;:::-;8575:4;8531:97;:::i;:::-;8683:4;;8747:2;8736:14;;8764:1;8759:663;;;;9466:1;9483:6;9480:89;;;-1:-1:-1;9535:19:1;;;9529:26;9480:89;-1:-1:-1;;8284:1:1;8280:11;;;8276:24;8272:29;8262:40;8308:1;8304:11;;;8259:57;9582:81;;8729:944;;8759:663;7553:1;7546:14;;;7590:4;7577:18;;-1:-1:-1;;8795:20:1;;;8913:236;8927:7;8924:1;8921:14;8913:236;;;9016:19;;;9010:26;8995:42;;9108:27;;;;9076:1;9064:14;;;;8943:19;;8913:236;;;8917:3;9177:6;9168:7;9165:19;9162:201;;;9238:19;;;9232:26;-1:-1:-1;;9321:1:1;9317:14;;;9333:3;9313:24;9309:37;9305:42;9290:58;9275:74;;9162:201;-1:-1:-1;;;;;9409:1:1;9393:14;;;9389:22;9376:36;;-1:-1:-1;8327:1352:1:o;10036:127::-;10097:10;10092:3;10088:20;10085:1;10078:31;10128:4;10125:1;10118:15;10152:4;10149:1;10142:15;10168:125;10233:9;;;10254:10;;;10251:36;;;10267:18;;:::i;10633:168::-;10706:9;;;10737;;10754:15;;;10748:22;;10734:37;10724:71;;10775:18;;:::i;11159:398::-;11361:2;11343:21;;;11400:2;11380:18;;;11373:30;11439:34;11434:2;11419:18;;11412:62;-1:-1:-1;;;11505:2:1;11490:18;;11483:32;11547:3;11532:19;;11159:398::o;11978:1322::-;12356:3;12385:1;12418:6;12412:13;12448:36;12474:9;12448:36;:::i;:::-;12503:1;12520:18;;;12547:133;;;;12694:1;12689:356;;;;12513:532;;12547:133;-1:-1:-1;;12580:24:1;;12568:37;;12653:14;;12646:22;12634:35;;12625:45;;;-1:-1:-1;12547:133:1;;12689:356;12720:6;12717:1;12710:17;12750:4;12795:2;12792:1;12782:16;12820:1;12834:165;12848:6;12845:1;12842:13;12834:165;;;12926:14;;12913:11;;;12906:35;12969:16;;;;12863:10;;12834:165;;;12838:3;;;13028:6;13023:3;13019:16;13012:23;;12513:532;;-1:-1:-1;;;13061:3:1;13054:16;13101:6;13095:13;13079:29;;13117:77;13185:8;13180:2;13175:3;13171:12;13164:4;13156:6;13152:17;13117:77;:::i;:::-;-1:-1:-1;;;13213:18:1;;;;13247:11;;;13240:28;;;;13292:1;13284:10;;11978:1322;-1:-1:-1;;;;;11978:1322:1:o;16106:489::-;-1:-1:-1;;;;;16375:15:1;;;16357:34;;16427:15;;16422:2;16407:18;;16400:43;16474:2;16459:18;;16452:34;;;16522:3;16517:2;16502:18;;16495:31;;;16300:4;;16543:46;;16569:19;;16561:6;16543:46;:::i;:::-;16535:54;16106:489;-1:-1:-1;;;;;;16106:489:1:o;16600:249::-;16669:6;16722:2;16710:9;16701:7;16697:23;16693:32;16690:52;;;16738:1;16735;16728:12;16690:52;16770:9;16764:16;16789:30;16813:5;16789:30;:::i;16854:135::-;16893:3;16914:17;;;16911:43;;16934:18;;:::i;:::-;-1:-1:-1;16981:1:1;16970:13;;16854:135::o;16994:127::-;17055:10;17050:3;17046:20;17043:1;17036:31;17086:4;17083:1;17076:15;17110:4;17107:1;17100:15;17126:120;17166:1;17192;17182:35;;17197:18;;:::i;:::-;-1:-1:-1;17231:9:1;;17126:120::o;17251:128::-;17318:9;;;17339:11;;;17336:37;;;17353:18;;:::i;17384:112::-;17416:1;17442;17432:35;;17447:18;;:::i;:::-;-1:-1:-1;17481:9:1;;17384:112::o;17501:127::-;17562:10;17557:3;17553:20;17550:1;17543:31;17593:4;17590:1;17583:15;17617:4;17614:1;17607:15
Swarm Source
ipfs://ae6a253d0e49be4b8efad67bc8f75c757fef98f50ee354d857c41f02db2942c6
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.