ERC-721
Overview
Max Total Supply
285 M4OGACAI
Holders
105
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 M4OGACAILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
M4AI_OGACAI
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-11 */ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface 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); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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); } // File: @openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library MathUpgradeable { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _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) { unchecked { uint256 length = MathUpgradeable.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, MathUpgradeable.log256(value) + 1); } } /** * @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] = _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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) _revert(URIQueryForNonexistentToken.selector); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector); // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = _packedOwnerships[--tokenId]; } if (packed == 0) continue; return packed; } } // Otherwise, the data exists and is not burned. We can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. return packed; } } _revert(OwnerQueryForNonexistentToken.selector); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) _revert(ApprovalQueryForNonexistentToken.selector); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS)); if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector); _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; } } } } // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. from, // `from`. toMasked, // `to`. tokenId // `tokenId`. ) } if (toMasked == 0) _revert(TransferToZeroAddress.selector); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { _revert(TransferToNonERC721ReceiverImplementer.selector); } assembly { revert(add(32, reason), mload(reason)) } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) _revert(MintZeroQuantity.selector); _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: // - `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) ); // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); uint256 end = startTokenId + quantity; uint256 tokenId = startTokenId; do { assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. tokenId // `tokenId`. ) } // The `!=` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. } 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 virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) _revert(MintToZeroAddress.selector); if (quantity == 0) _revert(MintZeroQuantity.selector); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) _revert(bytes4(0)); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @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: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve( address to, uint256 tokenId, bool approvalCheck ) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck && _msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { _revert(ApprovalCallerNotOwnerNorApproved.selector); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) _revert(OwnershipNotInitializedForExtraData.selector); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } /** * @dev For more efficient reverts. */ function _revert(bytes4 errorSelector) internal pure { assembly { mstore(0x00, errorSelector) revert(0x00, 0x04) } } } // File: m4ai.sol pragma solidity ^0.8.17; contract M4AI_OGACAI is ERC721A, Ownable { IERC721 private ogac = IERC721(0xA83ad73eEd496fcD7adc5F4027CbAD818D0075a0); IERC721 private m4 = IERC721(0x68EA301ECc143C239e354a632FDb6fa1D08dA8D9); using StringsUpgradeable for uint256; address externalContract; address private partnerAddr = address(0x4fdc1E3a6c0243a089D80E90D7bd0e060044E267); address public crossmintAddress; string public baseApiURI; uint256 public cost = 0.020 ether; uint256 public maxSupply = 500; uint16 public maxMintAmountPerTransaction = 20; //used to pause the contract bool public wl = true; bool public saleOn = true; constructor(string memory _baseUrl) ERC721A("M4AI/OGACAI AI collection", "M4OGACAI") { baseApiURI = _baseUrl; } //This function will be used to extend the project with more capabilities function setExternalContract(address _bAddress) public onlyOwnerOrPartner { externalContract = _bAddress; } //this function can be called only from the extending contract function mintExternal(address _address, uint256 _mintAmount) external { require( msg.sender == externalContract, "Sorry you dont have permission to mint" ); _safeMint(_address, _mintAmount); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function mint(uint256 _mintAmount) external payable { if (msg.sender != owner()) { if(wl){ require((ogac.balanceOf(msg.sender) > 0 || (m4.balanceOf(msg.sender) > 0)), "Only M4 and OGAC Holders May Mint Now."); } require(saleOn, "Sale Has Not Started."); require(_mintAmount > 0, "Mint amount should be greater than 0"); require( _mintAmount <= maxMintAmountPerTransaction, "Sorry you cant mint this amount at once" ); require( totalSupply() + _mintAmount <= maxSupply, "Exceeds Max Supply" ); require(msg.value >= cost * _mintAmount, "Insuffient funds"); } _safeMint(msg.sender, _mintAmount); } function crossmint(address _to, uint256 _mintAmount) public payable { if(wl){ require((ogac.balanceOf(msg.sender) > 0 || (m4.balanceOf(msg.sender) > 0)), "Only M4 and OGAC Holders May Mint Now."); } require(_mintAmount > 0, "Mint amount should be greater than 0"); require( _mintAmount <= maxMintAmountPerTransaction, "Sorry you cant mint this amount at once" ); require(totalSupply() + _mintAmount <= maxSupply, "Exceeds Max Supply"); require(msg.value >= cost * _mintAmount, "Incorrect value sent"); require( msg.sender == crossmintAddress, "This function is for Crossmint only." ); _safeMint(_to, _mintAmount); } function _baseURI() internal view virtual override returns (string memory) { return baseApiURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : ""; } function setCost(uint256 _newCost) public onlyOwnerOrPartner { cost = _newCost; } function setmaxMintAmountPerTransaction(uint16 _amount) public onlyOwnerOrPartner { maxMintAmountPerTransaction = _amount; } function setMaxSupply(uint256 _supply) public onlyOwnerOrPartner { maxSupply = _supply; } function setBaseURI(string memory _newBaseURI) public onlyOwnerOrPartner { baseApiURI = _newBaseURI; } function setWLStatus(bool _val) public onlyOwnerOrPartner { wl = _val; } function setSaleStatus(bool _val) public onlyOwnerOrPartner { saleOn = _val; } modifier onlyOwnerOrPartner() { require(msg.sender == owner() || msg.sender == partnerAddr); _; } function setCrossmintAddress(address _crossmintAddress) public onlyOwnerOrPartner { crossmintAddress = _crossmintAddress; } function withdraw() public onlyOwnerOrPartner { // This will pass 50% of the initial sale to partner (bool hs, ) = payable(partnerAddr).call{ value: (address(this).balance * 50) / 100 }(""); require(hs); // This will transfer the remaining contract balance to the owner. (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseUrl","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseApiURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"crossmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"crossmintAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintExternal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_crossmintAddress","type":"address"}],"name":"setCrossmintAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bAddress","type":"address"}],"name":"setExternalContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setWLStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wl","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600980546001600160a01b031990811673a83ad73eed496fcd7adc5f4027cbad818d0075a017909155600a805482167368ea301ecc143c239e354a632fdb6fa1d08da8d9179055600c8054909116734fdc1e3a6c0243a089d80e90d7bd0e060044e26717905566470de4df820000600f556101f460105560118054630101001463ffffffff199091161790553480156200009d57600080fd5b506040516200251b3803806200251b833981016040819052620000c091620001c7565b6040518060400160405280601981526020017f4d3441492f4f474143414920414920636f6c6c656374696f6e00000000000000815250604051806040016040528060088152602001674d344f474143414960c01b81525081600290816200012891906200032b565b5060036200013782826200032b565b5050600080555062000149336200015f565b600e6200015782826200032b565b5050620003f7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620001db57600080fd5b82516001600160401b0380821115620001f357600080fd5b818501915085601f8301126200020857600080fd5b8151818111156200021d576200021d620001b1565b604051601f8201601f19908116603f01168101908382118183101715620002485762000248620001b1565b8160405282815288868487010111156200026157600080fd5b600093505b8284101562000285578484018601518185018701529285019262000266565b600086848301015280965050505050505092915050565b600181811c90821680620002b157607f821691505b602082108103620002d257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200032657600081815260208120601f850160051c81016020861015620003015750805b601f850160051c820191505b8181101562000322578281556001016200030d565b5050505b505050565b81516001600160401b03811115620003475762000347620001b1565b6200035f816200035884546200029c565b84620002d8565b602080601f8311600181146200039757600084156200037e5750858301515b600019600386901b1c1916600185901b17855562000322565b600085815260208120601f198616915b82811015620003c857888601518255948401946001909101908401620003a7565b5085821015620003e75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61211480620004076000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063c87b56dd116100ab578063e532bb001161006f578063e532bb00146105d6578063e97800cb146105f6578063e985e9c514610616578063f2fde38b14610636578063f4da18461461065657600080fd5b8063c87b56dd14610540578063c8eb66b214610560578063d5abeb0114610580578063d897833e14610596578063dc33e681146105b657600080fd5b806399755624116100f257806399755624146104ac578063a0712d68146104cc578063a22cb465146104df578063b88d4fde146104ff578063bbb897441461051257600080fd5b8063715018a614610443578063773ef1cf146104585780638da5cb5b1461047957806395d89b411461049757600080fd5b806341827f13116101a657806358891a371161017557806358891a37146103b05780635b2a55e4146103c35780636352211e146103e35780636f8b44b01461040357806370a082311461042357600080fd5b806341827f131461034857806342842e0e1461035d57806344a0d68a1461037057806355f804b31461039057600080fd5b806309e7fe1b116101ed57806309e7fe1b146102c357806313faede6146102e357806318160ddd1461030757806323b872dd146103205780633ccfd60b1461033357600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611a93565b610676565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106c8565b60405161024b9190611b00565b34801561028257600080fd5b50610296610291366004611b13565b61075a565b6040516001600160a01b03909116815260200161024b565b6102c16102bc366004611b43565b610795565b005b3480156102cf57600080fd5b506102c16102de366004611b6d565b6107a5565b3480156102ef57600080fd5b506102f9600f5481565b60405190815260200161024b565b34801561031357600080fd5b50600154600054036102f9565b6102c161032e366004611b88565b6107f3565b34801561033f57600080fd5b506102c1610958565b34801561035457600080fd5b50610269610a6a565b6102c161036b366004611b88565b610af8565b34801561037c57600080fd5b506102c161038b366004611b13565b610b18565b34801561039c57600080fd5b506102c16103ab366004611c50565b610b49565b6102c16103be366004611b43565b610b81565b3480156103cf57600080fd5b50600d54610296906001600160a01b031681565b3480156103ef57600080fd5b506102966103fe366004611b13565b610e02565b34801561040f57600080fd5b506102c161041e366004611b13565b610e0d565b34801561042f57600080fd5b506102f961043e366004611b6d565b610e3e565b34801561044f57600080fd5b506102c1610e84565b34801561046457600080fd5b5060115461023f906301000000900460ff1681565b34801561048557600080fd5b506008546001600160a01b0316610296565b3480156104a357600080fd5b50610269610e98565b3480156104b857600080fd5b506102c16104c7366004611b6d565b610ea7565b6102c16104da366004611b13565b610ef5565b3480156104eb57600080fd5b506102c16104fa366004611ca9565b611169565b6102c161050d366004611cdc565b6111d5565b34801561051e57600080fd5b5060115461052d9061ffff1681565b60405161ffff909116815260200161024b565b34801561054c57600080fd5b5061026961055b366004611b13565b611216565b34801561056c57600080fd5b5060115461023f9062010000900460ff1681565b34801561058c57600080fd5b506102f960105481565b3480156105a257600080fd5b506102c16105b1366004611d58565b6112e1565b3480156105c257600080fd5b506102f96105d1366004611b6d565b61132b565b3480156105e257600080fd5b506102c16105f1366004611d58565b611356565b34801561060257600080fd5b506102c1610611366004611d73565b61139e565b34801561062257600080fd5b5061023f610631366004611d97565b6113e2565b34801561064257600080fd5b506102c1610651366004611b6d565b611410565b34801561066257600080fd5b506102c1610671366004611b43565b611486565b60006301ffc9a760e01b6001600160e01b0319831614806106a757506380ac58cd60e01b6001600160e01b03198316145b806106c25750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106d790611dc1565b80601f016020809104026020016040519081016040528092919081815260200182805461070390611dc1565b80156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b5050505050905090565b6000610765826114ef565b610779576107796333d1c03960e21b611516565b506000908152600660205260409020546001600160a01b031690565b6107a182826001611520565b5050565b6008546001600160a01b03163314806107c85750600c546001600160a01b031633145b6107d157600080fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006107fe826115c3565b6001600160a01b0394851694909150811684146108245761082462a1148160e81b611516565b60008281526006602052604090208054338082146001600160a01b038816909114176108685761085486336113e2565b61086857610868632ce44b5f60e11b611516565b801561087357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610905576001840160008181526004602052604081205490036109035760005481146109035760008181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48060000361094f5761094f633a954ecd60e21b611516565b50505050505050565b6008546001600160a01b031633148061097b5750600c546001600160a01b031633145b61098457600080fd5b600c546000906001600160a01b031660646109a0476032611e11565b6109aa9190611e28565b604051600081818185875af1925050503d80600081146109e6576040519150601f19603f3d011682016040523d82523d6000602084013e6109eb565b606091505b50509050806109f957600080fd5b6000610a0d6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a57576040519150601f19603f3d011682016040523d82523d6000602084013e610a5c565b606091505b50509050806107a157600080fd5b600e8054610a7790611dc1565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa390611dc1565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b505050505081565b610b13838383604051806020016040528060008152506111d5565b505050565b6008546001600160a01b0316331480610b3b5750600c546001600160a01b031633145b610b4457600080fd5b600f55565b6008546001600160a01b0316331480610b6c5750600c546001600160a01b031633145b610b7557600080fd5b600e6107a18282611e98565b60115462010000900460ff1615610c9a576009546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610bdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bff9190611f58565b1180610c755750600a546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610c4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c739190611f58565b115b610c9a5760405162461bcd60e51b8152600401610c9190611f71565b60405180910390fd5b60008111610cba5760405162461bcd60e51b8152600401610c9190611fb7565b60115461ffff16811115610ce05760405162461bcd60e51b8152600401610c9190611ffb565b60105481610cf16001546000540390565b610cfb9190612042565b1115610d3e5760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610c91565b80600f54610d4c9190611e11565b341015610d925760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd081d985b1d59481cd95b9d60621b6044820152606401610c91565b600d546001600160a01b03163314610df85760405162461bcd60e51b8152602060048201526024808201527f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60448201526337363c9760e11b6064820152608401610c91565b6107a18282611632565b60006106c2826115c3565b6008546001600160a01b0316331480610e305750600c546001600160a01b031633145b610e3957600080fd5b601055565b60006001600160a01b038216610e5e57610e5e6323d3ad8160e21b611516565b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610e8c61164c565b610e9660006116a6565b565b6060600380546106d790611dc1565b6008546001600160a01b0316331480610eca5750600c546001600160a01b031633145b610ed357600080fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b0316331461115c5760115462010000900460ff1615611017576009546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610f61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f859190611f58565b1180610ffb5750600a546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff99190611f58565b115b6110175760405162461bcd60e51b8152600401610c9190611f71565b6011546301000000900460ff166110685760405162461bcd60e51b815260206004820152601560248201527429b0b632902430b9902737ba1029ba30b93a32b21760591b6044820152606401610c91565b600081116110885760405162461bcd60e51b8152600401610c9190611fb7565b60115461ffff168111156110ae5760405162461bcd60e51b8152600401610c9190611ffb565b601054816110bf6001546000540390565b6110c99190612042565b111561110c5760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610c91565b80600f5461111a9190611e11565b34101561115c5760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610c91565b6111663382611632565b50565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111e08484846107f3565b6001600160a01b0383163b15611210576111fc848484846116f8565b611210576112106368d2bf6b60e11b611516565b50505050565b6060611221826114ef565b6112855760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c91565b600061128f6117db565b905060008151116112af57604051806020016040528060008152506112da565b806112b9846117ea565b6040516020016112ca929190612055565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314806113045750600c546001600160a01b031633145b61130d57600080fd5b6011805491151563010000000263ff00000019909216919091179055565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106c2565b6008546001600160a01b03163314806113795750600c546001600160a01b031633145b61138257600080fd5b60118054911515620100000262ff000019909216919091179055565b6008546001600160a01b03163314806113c15750600c546001600160a01b031633145b6113ca57600080fd5b6011805461ffff191661ffff92909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61141861164c565b6001600160a01b03811661147d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c91565b611166816116a6565b600b546001600160a01b03163314610df85760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b6064820152608401610c91565b60008054821080156106c2575050600090815260046020526040902054600160e01b161590565b8060005260046000fd5b600061152b83610e02565b90508180156115435750336001600160a01b03821614155b156115665761155281336113e2565b611566576115666367d9dca160e11b611516565b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b60008181526004602052604081205490600160e01b82169003611622578060000361161d57600054821061160157611601636f96cda160e11b611516565b5b50600019016000818152600460205260409020548015611602575b919050565b61161d636f96cda160e11b611516565b6107a182826040518060200160405280600081525061187d565b6008546001600160a01b03163314610e965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c91565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061172d903390899088908890600401612084565b6020604051808303816000875af1925050508015611768575060408051601f3d908101601f19168201909252611765918101906120c1565b60015b6117bd573d808015611796576040519150601f19603f3d011682016040523d82523d6000602084013e61179b565b606091505b5080516000036117b5576117b56368d2bf6b60e11b611516565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e80546106d790611dc1565b606060006117f7836118e6565b600101905060008167ffffffffffffffff81111561181757611817611bc4565b6040519080825280601f01601f191660200182016040528015611841576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461184b57509392505050565b61188783836119be565b6001600160a01b0383163b15610b13576000548281035b6118b160008683806001019450866116f8565b6118c5576118c56368d2bf6b60e11b611516565b81811061189e5781600054146118df576118df6000611516565b5050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106119255772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611951576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061196f57662386f26fc10000830492506010015b6305f5e1008310611987576305f5e100830492506008015b612710831061199b57612710830492506004015b606483106119ad576064830492506002015b600a83106106c25760010192915050565b60008054908290036119da576119da63b562e8dd60e01b611516565b60008181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b17811790915580845260059092528220805468010000000000000001860201905590819003611a3857611a38622e076360e81b611516565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103611a3d575060005550505050565b6001600160e01b03198116811461116657600080fd5b600060208284031215611aa557600080fd5b81356112da81611a7d565b60005b83811015611acb578181015183820152602001611ab3565b50506000910152565b60008151808452611aec816020860160208601611ab0565b601f01601f19169290920160200192915050565b6020815260006112da6020830184611ad4565b600060208284031215611b2557600080fd5b5035919050565b80356001600160a01b038116811461161d57600080fd5b60008060408385031215611b5657600080fd5b611b5f83611b2c565b946020939093013593505050565b600060208284031215611b7f57600080fd5b6112da82611b2c565b600080600060608486031215611b9d57600080fd5b611ba684611b2c565b9250611bb460208501611b2c565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bf557611bf5611bc4565b604051601f8501601f19908116603f01168101908282118183101715611c1d57611c1d611bc4565b81604052809350858152868686011115611c3657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c6257600080fd5b813567ffffffffffffffff811115611c7957600080fd5b8201601f81018413611c8a57600080fd5b6117d384823560208401611bda565b8035801515811461161d57600080fd5b60008060408385031215611cbc57600080fd5b611cc583611b2c565b9150611cd360208401611c99565b90509250929050565b60008060008060808587031215611cf257600080fd5b611cfb85611b2c565b9350611d0960208601611b2c565b925060408501359150606085013567ffffffffffffffff811115611d2c57600080fd5b8501601f81018713611d3d57600080fd5b611d4c87823560208401611bda565b91505092959194509250565b600060208284031215611d6a57600080fd5b6112da82611c99565b600060208284031215611d8557600080fd5b813561ffff811681146112da57600080fd5b60008060408385031215611daa57600080fd5b611db383611b2c565b9150611cd360208401611b2c565b600181811c90821680611dd557607f821691505b602082108103611df557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106c2576106c2611dfb565b600082611e4557634e487b7160e01b600052601260045260246000fd5b500490565b601f821115610b1357600081815260208120601f850160051c81016020861015611e715750805b601f850160051c820191505b81811015611e9057828155600101611e7d565b505050505050565b815167ffffffffffffffff811115611eb257611eb2611bc4565b611ec681611ec08454611dc1565b84611e4a565b602080601f831160018114611efb5760008415611ee35750858301515b600019600386901b1c1916600185901b178555611e90565b600085815260208120601f198616915b82811015611f2a57888601518255948401946001909101908401611f0b565b5085821015611f485787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215611f6a57600080fd5b5051919050565b60208082526026908201527f4f6e6c79204d3420616e64204f47414320486f6c64657273204d6179204d696e6040820152653a102737bb9760d11b606082015260800190565b60208082526024908201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686040820152630616e20360e41b606082015260800190565b60208082526027908201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206040820152666174206f6e636560c81b606082015260800190565b808201808211156106c2576106c2611dfb565b60008351612067818460208801611ab0565b83519083019061207b818360208801611ab0565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120b790830184611ad4565b9695505050505050565b6000602082840312156120d357600080fd5b81516112da81611a7d56fea2646970667358221220cee679206e0d66c733a6f762c66211190271787d65e8fcb84b7076fdeb58f5aa64736f6c634300081100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f73776d323933636e65612e657865637574652d6170692e61702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f70726f642f6170692f76312f6e66742f6d6661692f746f6b656e2f000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c8063715018a611610123578063c87b56dd116100ab578063e532bb001161006f578063e532bb00146105d6578063e97800cb146105f6578063e985e9c514610616578063f2fde38b14610636578063f4da18461461065657600080fd5b8063c87b56dd14610540578063c8eb66b214610560578063d5abeb0114610580578063d897833e14610596578063dc33e681146105b657600080fd5b806399755624116100f257806399755624146104ac578063a0712d68146104cc578063a22cb465146104df578063b88d4fde146104ff578063bbb897441461051257600080fd5b8063715018a614610443578063773ef1cf146104585780638da5cb5b1461047957806395d89b411461049757600080fd5b806341827f13116101a657806358891a371161017557806358891a37146103b05780635b2a55e4146103c35780636352211e146103e35780636f8b44b01461040357806370a082311461042357600080fd5b806341827f131461034857806342842e0e1461035d57806344a0d68a1461037057806355f804b31461039057600080fd5b806309e7fe1b116101ed57806309e7fe1b146102c357806313faede6146102e357806318160ddd1461030757806323b872dd146103205780633ccfd60b1461033357600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611a93565b610676565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106c8565b60405161024b9190611b00565b34801561028257600080fd5b50610296610291366004611b13565b61075a565b6040516001600160a01b03909116815260200161024b565b6102c16102bc366004611b43565b610795565b005b3480156102cf57600080fd5b506102c16102de366004611b6d565b6107a5565b3480156102ef57600080fd5b506102f9600f5481565b60405190815260200161024b565b34801561031357600080fd5b50600154600054036102f9565b6102c161032e366004611b88565b6107f3565b34801561033f57600080fd5b506102c1610958565b34801561035457600080fd5b50610269610a6a565b6102c161036b366004611b88565b610af8565b34801561037c57600080fd5b506102c161038b366004611b13565b610b18565b34801561039c57600080fd5b506102c16103ab366004611c50565b610b49565b6102c16103be366004611b43565b610b81565b3480156103cf57600080fd5b50600d54610296906001600160a01b031681565b3480156103ef57600080fd5b506102966103fe366004611b13565b610e02565b34801561040f57600080fd5b506102c161041e366004611b13565b610e0d565b34801561042f57600080fd5b506102f961043e366004611b6d565b610e3e565b34801561044f57600080fd5b506102c1610e84565b34801561046457600080fd5b5060115461023f906301000000900460ff1681565b34801561048557600080fd5b506008546001600160a01b0316610296565b3480156104a357600080fd5b50610269610e98565b3480156104b857600080fd5b506102c16104c7366004611b6d565b610ea7565b6102c16104da366004611b13565b610ef5565b3480156104eb57600080fd5b506102c16104fa366004611ca9565b611169565b6102c161050d366004611cdc565b6111d5565b34801561051e57600080fd5b5060115461052d9061ffff1681565b60405161ffff909116815260200161024b565b34801561054c57600080fd5b5061026961055b366004611b13565b611216565b34801561056c57600080fd5b5060115461023f9062010000900460ff1681565b34801561058c57600080fd5b506102f960105481565b3480156105a257600080fd5b506102c16105b1366004611d58565b6112e1565b3480156105c257600080fd5b506102f96105d1366004611b6d565b61132b565b3480156105e257600080fd5b506102c16105f1366004611d58565b611356565b34801561060257600080fd5b506102c1610611366004611d73565b61139e565b34801561062257600080fd5b5061023f610631366004611d97565b6113e2565b34801561064257600080fd5b506102c1610651366004611b6d565b611410565b34801561066257600080fd5b506102c1610671366004611b43565b611486565b60006301ffc9a760e01b6001600160e01b0319831614806106a757506380ac58cd60e01b6001600160e01b03198316145b806106c25750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106d790611dc1565b80601f016020809104026020016040519081016040528092919081815260200182805461070390611dc1565b80156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b5050505050905090565b6000610765826114ef565b610779576107796333d1c03960e21b611516565b506000908152600660205260409020546001600160a01b031690565b6107a182826001611520565b5050565b6008546001600160a01b03163314806107c85750600c546001600160a01b031633145b6107d157600080fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006107fe826115c3565b6001600160a01b0394851694909150811684146108245761082462a1148160e81b611516565b60008281526006602052604090208054338082146001600160a01b038816909114176108685761085486336113e2565b61086857610868632ce44b5f60e11b611516565b801561087357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610905576001840160008181526004602052604081205490036109035760005481146109035760008181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48060000361094f5761094f633a954ecd60e21b611516565b50505050505050565b6008546001600160a01b031633148061097b5750600c546001600160a01b031633145b61098457600080fd5b600c546000906001600160a01b031660646109a0476032611e11565b6109aa9190611e28565b604051600081818185875af1925050503d80600081146109e6576040519150601f19603f3d011682016040523d82523d6000602084013e6109eb565b606091505b50509050806109f957600080fd5b6000610a0d6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a57576040519150601f19603f3d011682016040523d82523d6000602084013e610a5c565b606091505b50509050806107a157600080fd5b600e8054610a7790611dc1565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa390611dc1565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b505050505081565b610b13838383604051806020016040528060008152506111d5565b505050565b6008546001600160a01b0316331480610b3b5750600c546001600160a01b031633145b610b4457600080fd5b600f55565b6008546001600160a01b0316331480610b6c5750600c546001600160a01b031633145b610b7557600080fd5b600e6107a18282611e98565b60115462010000900460ff1615610c9a576009546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610bdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bff9190611f58565b1180610c755750600a546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610c4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c739190611f58565b115b610c9a5760405162461bcd60e51b8152600401610c9190611f71565b60405180910390fd5b60008111610cba5760405162461bcd60e51b8152600401610c9190611fb7565b60115461ffff16811115610ce05760405162461bcd60e51b8152600401610c9190611ffb565b60105481610cf16001546000540390565b610cfb9190612042565b1115610d3e5760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610c91565b80600f54610d4c9190611e11565b341015610d925760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd081d985b1d59481cd95b9d60621b6044820152606401610c91565b600d546001600160a01b03163314610df85760405162461bcd60e51b8152602060048201526024808201527f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60448201526337363c9760e11b6064820152608401610c91565b6107a18282611632565b60006106c2826115c3565b6008546001600160a01b0316331480610e305750600c546001600160a01b031633145b610e3957600080fd5b601055565b60006001600160a01b038216610e5e57610e5e6323d3ad8160e21b611516565b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610e8c61164c565b610e9660006116a6565b565b6060600380546106d790611dc1565b6008546001600160a01b0316331480610eca5750600c546001600160a01b031633145b610ed357600080fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b0316331461115c5760115462010000900460ff1615611017576009546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610f61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f859190611f58565b1180610ffb5750600a546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff99190611f58565b115b6110175760405162461bcd60e51b8152600401610c9190611f71565b6011546301000000900460ff166110685760405162461bcd60e51b815260206004820152601560248201527429b0b632902430b9902737ba1029ba30b93a32b21760591b6044820152606401610c91565b600081116110885760405162461bcd60e51b8152600401610c9190611fb7565b60115461ffff168111156110ae5760405162461bcd60e51b8152600401610c9190611ffb565b601054816110bf6001546000540390565b6110c99190612042565b111561110c5760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610c91565b80600f5461111a9190611e11565b34101561115c5760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610c91565b6111663382611632565b50565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111e08484846107f3565b6001600160a01b0383163b15611210576111fc848484846116f8565b611210576112106368d2bf6b60e11b611516565b50505050565b6060611221826114ef565b6112855760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c91565b600061128f6117db565b905060008151116112af57604051806020016040528060008152506112da565b806112b9846117ea565b6040516020016112ca929190612055565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314806113045750600c546001600160a01b031633145b61130d57600080fd5b6011805491151563010000000263ff00000019909216919091179055565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106c2565b6008546001600160a01b03163314806113795750600c546001600160a01b031633145b61138257600080fd5b60118054911515620100000262ff000019909216919091179055565b6008546001600160a01b03163314806113c15750600c546001600160a01b031633145b6113ca57600080fd5b6011805461ffff191661ffff92909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61141861164c565b6001600160a01b03811661147d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c91565b611166816116a6565b600b546001600160a01b03163314610df85760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b6064820152608401610c91565b60008054821080156106c2575050600090815260046020526040902054600160e01b161590565b8060005260046000fd5b600061152b83610e02565b90508180156115435750336001600160a01b03821614155b156115665761155281336113e2565b611566576115666367d9dca160e11b611516565b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b60008181526004602052604081205490600160e01b82169003611622578060000361161d57600054821061160157611601636f96cda160e11b611516565b5b50600019016000818152600460205260409020548015611602575b919050565b61161d636f96cda160e11b611516565b6107a182826040518060200160405280600081525061187d565b6008546001600160a01b03163314610e965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c91565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061172d903390899088908890600401612084565b6020604051808303816000875af1925050508015611768575060408051601f3d908101601f19168201909252611765918101906120c1565b60015b6117bd573d808015611796576040519150601f19603f3d011682016040523d82523d6000602084013e61179b565b606091505b5080516000036117b5576117b56368d2bf6b60e11b611516565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e80546106d790611dc1565b606060006117f7836118e6565b600101905060008167ffffffffffffffff81111561181757611817611bc4565b6040519080825280601f01601f191660200182016040528015611841576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461184b57509392505050565b61188783836119be565b6001600160a01b0383163b15610b13576000548281035b6118b160008683806001019450866116f8565b6118c5576118c56368d2bf6b60e11b611516565b81811061189e5781600054146118df576118df6000611516565b5050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106119255772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611951576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061196f57662386f26fc10000830492506010015b6305f5e1008310611987576305f5e100830492506008015b612710831061199b57612710830492506004015b606483106119ad576064830492506002015b600a83106106c25760010192915050565b60008054908290036119da576119da63b562e8dd60e01b611516565b60008181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b17811790915580845260059092528220805468010000000000000001860201905590819003611a3857611a38622e076360e81b611516565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103611a3d575060005550505050565b6001600160e01b03198116811461116657600080fd5b600060208284031215611aa557600080fd5b81356112da81611a7d565b60005b83811015611acb578181015183820152602001611ab3565b50506000910152565b60008151808452611aec816020860160208601611ab0565b601f01601f19169290920160200192915050565b6020815260006112da6020830184611ad4565b600060208284031215611b2557600080fd5b5035919050565b80356001600160a01b038116811461161d57600080fd5b60008060408385031215611b5657600080fd5b611b5f83611b2c565b946020939093013593505050565b600060208284031215611b7f57600080fd5b6112da82611b2c565b600080600060608486031215611b9d57600080fd5b611ba684611b2c565b9250611bb460208501611b2c565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bf557611bf5611bc4565b604051601f8501601f19908116603f01168101908282118183101715611c1d57611c1d611bc4565b81604052809350858152868686011115611c3657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c6257600080fd5b813567ffffffffffffffff811115611c7957600080fd5b8201601f81018413611c8a57600080fd5b6117d384823560208401611bda565b8035801515811461161d57600080fd5b60008060408385031215611cbc57600080fd5b611cc583611b2c565b9150611cd360208401611c99565b90509250929050565b60008060008060808587031215611cf257600080fd5b611cfb85611b2c565b9350611d0960208601611b2c565b925060408501359150606085013567ffffffffffffffff811115611d2c57600080fd5b8501601f81018713611d3d57600080fd5b611d4c87823560208401611bda565b91505092959194509250565b600060208284031215611d6a57600080fd5b6112da82611c99565b600060208284031215611d8557600080fd5b813561ffff811681146112da57600080fd5b60008060408385031215611daa57600080fd5b611db383611b2c565b9150611cd360208401611b2c565b600181811c90821680611dd557607f821691505b602082108103611df557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106c2576106c2611dfb565b600082611e4557634e487b7160e01b600052601260045260246000fd5b500490565b601f821115610b1357600081815260208120601f850160051c81016020861015611e715750805b601f850160051c820191505b81811015611e9057828155600101611e7d565b505050505050565b815167ffffffffffffffff811115611eb257611eb2611bc4565b611ec681611ec08454611dc1565b84611e4a565b602080601f831160018114611efb5760008415611ee35750858301515b600019600386901b1c1916600185901b178555611e90565b600085815260208120601f198616915b82811015611f2a57888601518255948401946001909101908401611f0b565b5085821015611f485787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215611f6a57600080fd5b5051919050565b60208082526026908201527f4f6e6c79204d3420616e64204f47414320486f6c64657273204d6179204d696e6040820152653a102737bb9760d11b606082015260800190565b60208082526024908201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686040820152630616e20360e41b606082015260800190565b60208082526027908201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206040820152666174206f6e636560c81b606082015260800190565b808201808211156106c2576106c2611dfb565b60008351612067818460208801611ab0565b83519083019061207b818360208801611ab0565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120b790830184611ad4565b9695505050505050565b6000602082840312156120d357600080fd5b81516112da81611a7d56fea2646970667358221220cee679206e0d66c733a6f762c66211190271787d65e8fcb84b7076fdeb58f5aa64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f73776d323933636e65612e657865637574652d6170692e61702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f70726f642f6170692f76312f6e66742f6d6661692f746f6b656e2f000000000000000000
-----Decoded View---------------
Arg [0] : _baseUrl (string): https://swm293cnea.execute-api.ap-southeast-1.amazonaws.com/prod/api/v1/nft/mfai/token/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000057
Arg [2] : 68747470733a2f2f73776d323933636e65612e657865637574652d6170692e61
Arg [3] : 702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f70726f64
Arg [4] : 2f6170692f76312f6e66742f6d6661692f746f6b656e2f000000000000000000
Deployed Bytecode Sourcemap
78028:5111:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43396:639;;;;;;;;;;-1:-1:-1;43396:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;43396:639:0;;;;;;;;44298:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50725:227::-;;;;;;;;;;-1:-1:-1;50725:227:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;50725:227:0;1533:203:1;50442:124:0;;;;;;:::i;:::-;;:::i;:::-;;78923:121;;;;;;;;;;-1:-1:-1;78923:121:0;;;;;:::i;:::-;;:::i;78471:33::-;;;;;;;;;;;;;;;;;;;2515:25:1;;;2503:2;2488:18;78471:33:0;2369:177:1;40040:323:0;;;;;;;;;;-1:-1:-1;40314:12:0;;40101:7;40298:13;:28;40040:323;;54373:3523;;;;;;:::i;:::-;;:::i;82692:437::-;;;;;;;;;;;;;:::i;78438:24::-;;;;;;;;;;;;;:::i;57992:193::-;;;;;;:::i;:::-;;:::i;81741:95::-;;;;;;;;;;-1:-1:-1;81741:95:0;;;;;:::i;:::-;;:::i;82101:116::-;;;;;;;;;;-1:-1:-1;82101:116:0;;;;;:::i;:::-;;:::i;80337:782::-;;;;;;:::i;:::-;;:::i;78400:31::-;;;;;;;;;;-1:-1:-1;78400:31:0;;;;-1:-1:-1;;;;;78400:31:0;;;45700:152;;;;;;;;;;-1:-1:-1;45700:152:0;;;;;:::i;:::-;;:::i;81990:103::-;;;;;;;;;;-1:-1:-1;81990:103:0;;;;;:::i;:::-;;:::i;41224:242::-;;;;;;;;;;-1:-1:-1;41224:242:0;;;;;:::i;:::-;;:::i;24086:103::-;;;;;;;;;;;;;:::i;78663:25::-;;;;;;;;;;-1:-1:-1;78663:25:0;;;;;;;;;;;23438:87;;;;;;;;;;-1:-1:-1;23511:6:0;;-1:-1:-1;;;;;23511:6:0;23438:87;;44474:104;;;;;;;;;;;;;:::i;82547:137::-;;;;;;;;;;-1:-1:-1;82547:137:0;;;;;:::i;:::-;;:::i;79499:830::-;;;;;;:::i;:::-;;:::i;51292:234::-;;;;;;;;;;-1:-1:-1;51292:234:0;;;;;:::i;:::-;;:::i;58783:416::-;;;;;;:::i;:::-;;:::i;78548:46::-;;;;;;;;;;-1:-1:-1;78548:46:0;;;;;;;;;;;5379:6:1;5367:19;;;5349:38;;5337:2;5322:18;78548:46:0;5205:188:1;81246:487:0;;;;;;;;;;-1:-1:-1;81246:487:0;;;;;:::i;:::-;;:::i;78635:21::-;;;;;;;;;;-1:-1:-1;78635:21:0;;;;;;;;;;;78511:30;;;;;;;;;;;;;;;;82319:92;;;;;;;;;;-1:-1:-1;82319:92:0;;;;;:::i;:::-;;:::i;79378:113::-;;;;;;;;;;-1:-1:-1;79378:113:0;;;;;:::i;:::-;;:::i;82225:86::-;;;;;;;;;;-1:-1:-1;82225:86:0;;;;;:::i;:::-;;:::i;81844:138::-;;;;;;;;;;-1:-1:-1;81844:138:0;;;;;:::i;:::-;;:::i;51683:164::-;;;;;;;;;;-1:-1:-1;51683:164:0;;;;;:::i;:::-;;:::i;24344:201::-;;;;;;;;;;-1:-1:-1;24344:201:0;;;;;:::i;:::-;;:::i;79120:250::-;;;;;;;;;;-1:-1:-1;79120:250:0;;;;;:::i;:::-;;:::i;43396:639::-;43481:4;-1:-1:-1;;;;;;;;;43805:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;43882:25:0;;;43805:102;:179;;;-1:-1:-1;;;;;;;;;;43959:25:0;;;43805:179;43785:199;43396:639;-1:-1:-1;;43396:639:0:o;44298:100::-;44352:13;44385:5;44378:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44298:100;:::o;50725:227::-;50801:7;50826:16;50834:7;50826;:16::i;:::-;50821:73;;50844:50;-1:-1:-1;;;50844:7:0;:50::i;:::-;-1:-1:-1;50914:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;50914:30:0;;50725:227::o;50442:124::-;50531:27;50540:2;50544:7;50553:4;50531:8;:27::i;:::-;50442:124;;:::o;78923:121::-;23511:6;;-1:-1:-1;;;;;23511:6:0;82468:10;:21;;:50;;-1:-1:-1;82507:11:0;;-1:-1:-1;;;;;82507:11:0;82493:10;:25;82468:50;82460:59;;;;;;79008:16:::1;:28:::0;;-1:-1:-1;;;;;;79008:28:0::1;-1:-1:-1::0;;;;;79008:28:0;;;::::1;::::0;;;::::1;::::0;;78923:121::o;54373:3523::-;54515:27;54545;54564:7;54545:18;:27::i;:::-;-1:-1:-1;;;;;54700:22:0;;;;54515:57;;-1:-1:-1;54760:45:0;;;;54756:95;;54807:44;-1:-1:-1;;;54807:7:0;:44::i;:::-;54865:27;53481:24;;;:15;:24;;;;;53709:26;;75865:10;53106:30;;;-1:-1:-1;;;;;52799:28:0;;53084:20;;;53081:56;55051:189;;55144:43;55161:4;75865:10;51683:164;:::i;55144:43::-;55139:101;;55189:51;-1:-1:-1;;;55189:7:0;:51::i;:::-;55389:15;55386:160;;;55529:1;55508:19;55501:30;55386:160;-1:-1:-1;;;;;55926:24:0;;;;;;;:18;:24;;;;;;55924:26;;-1:-1:-1;;55924:26:0;;;55995:22;;;;;;;;;55993:24;;-1:-1:-1;55993:24:0;;;49544:11;49519:23;49515:41;49502:63;-1:-1:-1;;;49502:63:0;56288:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;56583:47:0;;:52;;56579:627;;56688:1;56678:11;;56656:19;56811:30;;;:17;:30;;;;;;:35;;56807:384;;56949:13;;56934:11;:28;56930:242;;57096:30;;;;:17;:30;;;;;:52;;;56930:242;56637:569;56579:627;-1:-1:-1;;;;;57338:20:0;;57718:7;57338:20;57648:4;57590:25;57319:16;;57455:299;57779:8;57791:1;57779:13;57775:58;;57794:39;-1:-1:-1;;;57794:7:0;:39::i;:::-;54504:3392;;;;54373:3523;;;:::o;82692:437::-;23511:6;;-1:-1:-1;;;;;23511:6:0;82468:10;:21;;:50;;-1:-1:-1;82507:11:0;;-1:-1:-1;;;;;82507:11:0;82493:10;:25;82468:50;82460:59;;;;;;82833:11:::1;::::0;82812:7:::1;::::0;-1:-1:-1;;;;;82833:11:0::1;82903:3;82873:26;:21;82897:2;82873:26;:::i;:::-;82872:34;;;;:::i;:::-;82825:96;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82811:110;;;82940:2;82932:11;;;::::0;::::1;;83031:7;83052;23511:6:::0;;-1:-1:-1;;;;;23511:6:0;;23438:87;83052:7:::1;-1:-1:-1::0;;;;;83044:21:0::1;83073;83044:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83030:69;;;83118:2;83110:11;;;::::0;::::1;78438:24:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57992:193::-;58138:39;58155:4;58161:2;58165:7;58138:39;;;;;;;;;;;;:16;:39::i;:::-;57992:193;;;:::o;81741:95::-;23511:6;;-1:-1:-1;;;;;23511:6:0;82468:10;:21;;:50;;-1:-1:-1;82507:11:0;;-1:-1:-1;;;;;82507:11:0;82493:10;:25;82468:50;82460:59;;;;;;81813:4:::1;:15:::0;81741:95::o;82101:116::-;23511:6;;-1:-1:-1;;;;;23511:6:0;82468:10;:21;;:50;;-1:-1:-1;82507:11:0;;-1:-1:-1;;;;;82507:11:0;82493:10;:25;82468:50;82460:59;;;;;;82185:10:::1;:24;82198:11:::0;82185:10;:24:::1;:::i;80337:782::-:0;80418:2;;;;;;;80415:158;;;80449:4;;:26;;-1:-1:-1;;;80449:26:0;;80464:10;80449:26;;;1679:51:1;80478:1:0;;-1:-1:-1;;;;;80449:4:0;;:14;;1652:18:1;;80449:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:30;:64;;;-1:-1:-1;80484:2:0;;:24;;-1:-1:-1;;;80484:24:0;;80497:10;80484:24;;;1679:51:1;80511:1:0;;-1:-1:-1;;;;;80484:2:0;;:12;;1652:18:1;;80484:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:28;80449:64;80440:117;;;;-1:-1:-1;;;80440:117:0;;;;;;;:::i;:::-;;;;;;;;;80605:1;80591:11;:15;80583:64;;;;-1:-1:-1;;;80583:64:0;;;;;;;:::i;:::-;80695:27;;;;80680:42;;;80658:131;;;;-1:-1:-1;;;80658:131:0;;;;;;;:::i;:::-;80839:9;;80824:11;80808:13;40314:12;;40101:7;40298:13;:28;;40040:323;80808:13;:27;;;;:::i;:::-;:40;;80800:71;;;;-1:-1:-1;;;80800:71:0;;11324:2:1;80800:71:0;;;11306:21:1;11363:2;11343:18;;;11336:30;-1:-1:-1;;;11382:18:1;;;11375:48;11440:18;;80800:71:0;11122:342:1;80800:71:0;80910:11;80903:4;;:18;;;;:::i;:::-;80890:9;:31;;80882:64;;;;-1:-1:-1;;;80882:64:0;;11671:2:1;80882:64:0;;;11653:21:1;11710:2;11690:18;;;11683:30;-1:-1:-1;;;11729:18:1;;;11722:50;11789:18;;80882:64:0;11469:344:1;80882:64:0;80993:16;;-1:-1:-1;;;;;80993:16:0;80979:10;:30;80957:116;;;;-1:-1:-1;;;80957:116:0;;12020:2:1;80957:116:0;;;12002:21:1;12059:2;12039:18;;;12032:30;12098:34;12078:18;;;12071:62;-1:-1:-1;;;12149:18:1;;;12142:34;12193:19;;80957:116:0;11818:400:1;80957:116:0;81084:27;81094:3;81099:11;81084:9;:27::i;45700:152::-;45772:7;45815:27;45834:7;45815:18;:27::i;81990:103::-;23511:6;;-1:-1:-1;;;;;23511:6:0;82468:10;:21;;:50;;-1:-1:-1;82507:11:0;;-1:-1:-1;;;;;82507:11:0;82493:10;:25;82468:50;82460:59;;;;;;82066:9:::1;:19:::0;81990:103::o;41224:242::-;41296:7;-1:-1:-1;;;;;41320:19:0;;41316:69;;41341:44;-1:-1:-1;;;41341:7:0;:44::i;:::-;-1:-1:-1;;;;;;41403:25:0;;;;;:18;:25;;;;;;35383:13;41403:55;;41224:242::o;24086:103::-;23324:13;:11;:13::i;:::-;24151:30:::1;24178:1;24151:18;:30::i;:::-;24086:103::o:0;44474:104::-;44530:13;44563:7;44556:14;;;;;:::i;82547:137::-;23511:6;;-1:-1:-1;;;;;23511:6:0;82468:10;:21;;:50;;-1:-1:-1;82507:11:0;;-1:-1:-1;;;;;82507:11:0;82493:10;:25;82468:50;82460:59;;;;;;82640:16:::1;:36:::0;;-1:-1:-1;;;;;;82640:36:0::1;-1:-1:-1::0;;;;;82640:36:0;;;::::1;::::0;;;::::1;::::0;;82547:137::o;79499:830::-;23511:6;;-1:-1:-1;;;;;23511:6:0;79566:10;:21;79562:713;;79607:2;;;;;;;79604:158;;;79638:4;;:26;;-1:-1:-1;;;79638:26:0;;79653:10;79638:26;;;1679:51:1;79667:1:0;;-1:-1:-1;;;;;79638:4:0;;:14;;1652:18:1;;79638:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:30;:64;;;-1:-1:-1;79673:2:0;;:24;;-1:-1:-1;;;79673:24:0;;79686:10;79673:24;;;1679:51:1;79700:1:0;;-1:-1:-1;;;;;79673:2:0;;:12;;1652:18:1;;79673:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:28;79638:64;79629:117;;;;-1:-1:-1;;;79629:117:0;;;;;;;:::i;:::-;79784:6;;;;;;;79776:40;;;;-1:-1:-1;;;79776:40:0;;12425:2:1;79776:40:0;;;12407:21:1;12464:2;12444:18;;;12437:30;-1:-1:-1;;;12483:18:1;;;12476:51;12544:18;;79776:40:0;12223:345:1;79776:40:0;79853:1;79839:11;:15;79831:64;;;;-1:-1:-1;;;79831:64:0;;;;;;;:::i;:::-;79951:27;;;;79936:42;;;79910:143;;;;-1:-1:-1;;;79910:143:0;;;;;;;:::i;:::-;80125:9;;80110:11;80094:13;40314:12;;40101:7;40298:13;:28;;40040:323;80094:13;:27;;;;:::i;:::-;:40;;80068:120;;;;-1:-1:-1;;;80068:120:0;;11324:2:1;80068:120:0;;;11306:21:1;11363:2;11343:18;;;11336:30;-1:-1:-1;;;11382:18:1;;;11375:48;11440:18;;80068:120:0;11122:342:1;80068:120:0;80231:11;80224:4;;:18;;;;:::i;:::-;80211:9;:31;;80203:60;;;;-1:-1:-1;;;80203:60:0;;12775:2:1;80203:60:0;;;12757:21:1;12814:2;12794:18;;;12787:30;-1:-1:-1;;;12833:18:1;;;12826:46;12889:18;;80203:60:0;12573:340:1;80203:60:0;80287:34;80297:10;80309:11;80287:9;:34::i;:::-;79499:830;:::o;51292:234::-;75865:10;51387:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;51387:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;51387:60:0;;;;;;;;;;51463:55;;540:41:1;;;51387:49:0;;75865:10;51463:55;;513:18:1;51463:55:0;;;;;;;51292:234;;:::o;58783:416::-;58958:31;58971:4;58977:2;58981:7;58958:12;:31::i;:::-;-1:-1:-1;;;;;59004:14:0;;;:19;59000:192;;59043:56;59074:4;59080:2;59084:7;59093:5;59043:30;:56::i;:::-;59038:154;;59120:56;-1:-1:-1;;;59120:7:0;:56::i;:::-;58783:416;;;;:::o;81246:487::-;81364:13;81417:16;81425:7;81417;:16::i;:::-;81395:113;;;;-1:-1:-1;;;81395:113:0;;13120:2:1;81395:113:0;;;13102:21:1;13159:2;13139:18;;;13132:30;13198:34;13178:18;;;13171:62;-1:-1:-1;;;13249:18:1;;;13242:45;13304:19;;81395:113:0;12918:411:1;81395:113:0;81519:28;81550:10;:8;:10::i;:::-;81519:41;;81622:1;81597:14;81591:28;:32;:134;;;;;;;;;;;;;;;;;81667:14;81683:18;:7;:16;:18::i;:::-;81650:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81591:134;81571:154;81246:487;-1:-1:-1;;;81246:487:0:o;82319:92::-;23511:6;;-1:-1:-1;;;;;23511:6:0;82468:10;:21;;:50;;-1:-1:-1;82507:11:0;;-1:-1:-1;;;;;82507:11:0;82493:10;:25;82468:50;82460:59;;;;;;82390:6:::1;:13:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;82390:13:0;;::::1;::::0;;;::::1;::::0;;82319:92::o;79378:113::-;-1:-1:-1;;;;;41637:25:0;;79436:7;41637:25;;;:18;:25;;35521:2;41637:25;;;;35383:13;41637:50;;41636:82;79463:20;41548:178;82225:86;23511:6;;-1:-1:-1;;;;;23511:6:0;82468:10;:21;;:50;;-1:-1:-1;82507:11:0;;-1:-1:-1;;;;;82507:11:0;82493:10;:25;82468:50;82460:59;;;;;;82294:2:::1;:9:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;82294:9:0;;::::1;::::0;;;::::1;::::0;;82225:86::o;81844:138::-;23511:6;;-1:-1:-1;;;;;23511:6:0;82468:10;:21;;:50;;-1:-1:-1;82507:11:0;;-1:-1:-1;;;;;82507:11:0;82493:10;:25;82468:50;82460:59;;;;;;81937:27:::1;:37:::0;;-1:-1:-1;;81937:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;81844:138::o;51683:164::-;-1:-1:-1;;;;;51804:25:0;;;51780:4;51804:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;51683:164::o;24344:201::-;23324:13;:11;:13::i;:::-;-1:-1:-1;;;;;24433:22:0;::::1;24425:73;;;::::0;-1:-1:-1;;;24425:73:0;;14037:2:1;24425:73:0::1;::::0;::::1;14019:21:1::0;14076:2;14056:18;;;14049:30;14115:34;14095:18;;;14088:62;-1:-1:-1;;;14166:18:1;;;14159:36;14212:19;;24425:73:0::1;13835:402:1::0;24425:73:0::1;24509:28;24528:8;24509:18;:28::i;79120:250::-:0;79237:16;;-1:-1:-1;;;;;79237:16:0;79223:10;:30;79201:118;;;;-1:-1:-1;;;79201:118:0;;14444:2:1;79201:118:0;;;14426:21:1;14483:2;14463:18;;;14456:30;14522:34;14502:18;;;14495:62;-1:-1:-1;;;14573:18:1;;;14566:36;14619:19;;79201:118:0;14242:402:1;52105:282:0;52170:4;52260:13;;52250:7;:23;52207:153;;;;-1:-1:-1;;52311:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;52311:44:0;:49;;52105:282::o;77797:165::-;77898:13;77892:4;77885:27;77939:4;77933;77926:18;69230:474;69359:13;69375:16;69383:7;69375;:16::i;:::-;69359:32;;69408:13;:45;;;;-1:-1:-1;75865:10:0;-1:-1:-1;;;;;69425:28:0;;;;69408:45;69404:201;;;69473:44;69490:5;75865:10;51683:164;:::i;69473:44::-;69468:137;;69538:51;-1:-1:-1;;;69538:7:0;:51::i;:::-;69617:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;69617:35:0;-1:-1:-1;;;;;69617:35:0;;;;;;;;;69668:28;;69617:24;;69668:28;;;;;;;69348:356;69230:474;;;:::o;46855:1730::-;47005:26;;;;:17;:26;;;;;;;-1:-1:-1;;;47081:24:0;;:29;;47077:1432;;47220:6;47230:1;47220:11;47216:990;;47271:13;;47260:7;:24;47256:77;;47286:47;-1:-1:-1;;;47286:7:0;:47::i;:::-;47930:257;-1:-1:-1;;;48034:9:0;48016:28;;;;:17;:28;;;;;;48098:25;;47930:257;48098:25;;46855:1730;;;:::o;47077:1432::-;48530:47;-1:-1:-1;;;48530:7:0;:47::i;68312:112::-;68389:27;68399:2;68403:8;68389:27;;;;;;;;;;;;:9;:27::i;23603:132::-;23511:6;;-1:-1:-1;;;;;23511:6:0;75865:10;23667:23;23659:68;;;;-1:-1:-1;;;23659:68:0;;14851:2:1;23659:68:0;;;14833:21:1;;;14870:18;;;14863:30;14929:34;14909:18;;;14902:62;14981:18;;23659:68:0;14649:356:1;24705:191:0;24798:6;;;-1:-1:-1;;;;;24815:17:0;;;-1:-1:-1;;;;;;24815:17:0;;;;;;;24848:40;;24798:6;;;24815:17;24798:6;;24848:40;;24779:16;;24848:40;24768:128;24705:191;:::o;61283:691::-;61467:88;;-1:-1:-1;;;61467:88:0;;61446:4;;-1:-1:-1;;;;;61467:45:0;;;;;:88;;75865:10;;61534:4;;61540:7;;61549:5;;61467:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61467:88:0;;;;;;;;-1:-1:-1;;61467:88:0;;;;;;;;;;;;:::i;:::-;;;61463:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61750:6;:13;61767:1;61750:18;61746:115;;61789:56;-1:-1:-1;;;61789:7:0;:56::i;:::-;61933:6;61927:13;61918:6;61914:2;61910:15;61903:38;61463:504;-1:-1:-1;;;;;;61626:64:0;-1:-1:-1;;;61626:64:0;;-1:-1:-1;61463:504:0;61283:691;;;;;;:::o;81127:111::-;81187:13;81220:10;81213:17;;;;;:::i;19394:727::-;19450:13;19501:14;19518:28;19540:5;19518:21;:28::i;:::-;19549:1;19518:32;19501:49;;19565:20;19599:6;19588:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19588:18:0;-1:-1:-1;19565:41:0;-1:-1:-1;19730:28:0;;;19746:2;19730:28;19787:288;-1:-1:-1;;19819:5:0;-1:-1:-1;;;19956:2:0;19945:14;;19940:30;19819:5;19927:44;20017:2;20008:11;;;-1:-1:-1;20038:21:0;19787:288;20038:21;-1:-1:-1;20096:6:0;19394:727;-1:-1:-1;;;19394:727:0:o;67520:708::-;67651:19;67657:2;67661:8;67651:5;:19::i;:::-;-1:-1:-1;;;;;67712:14:0;;;:19;67708:502;;67752:11;67766:13;67814:14;;;67847:242;67878:62;67917:1;67921:2;67925:7;;;;;;67934:5;67878:30;:62::i;:::-;67873:176;;67969:56;-1:-1:-1;;;67969:7:0;:56::i;:::-;68084:3;68076:5;:11;67847:242;;68171:3;68154:13;;:20;68150:44;;68176:18;68191:1;68176:7;:18::i;:::-;67733:477;;67520:708;;;:::o;16226:922::-;16279:7;;-1:-1:-1;;;16357:15:0;;16353:102;;-1:-1:-1;;;16393:15:0;;;-1:-1:-1;16437:2:0;16427:12;16353:102;16482:6;16473:5;:15;16469:102;;16518:6;16509:15;;;-1:-1:-1;16553:2:0;16543:12;16469:102;16598:6;16589:5;:15;16585:102;;16634:6;16625:15;;;-1:-1:-1;16669:2:0;16659:12;16585:102;16714:5;16705;:14;16701:99;;16749:5;16740:14;;;-1:-1:-1;16783:1:0;16773:11;16701:99;16827:5;16818;:14;16814:99;;16862:5;16853:14;;;-1:-1:-1;16896:1:0;16886:11;16814:99;16940:5;16931;:14;16927:99;;16975:5;16966:14;;;-1:-1:-1;17009:1:0;16999:11;16927:99;17053:5;17044;:14;17040:66;;17089:1;17079:11;17134:6;16226:922;-1:-1:-1;;16226:922:0:o;62436:2305::-;62509:20;62532:13;;;62560;;;62556:53;;62575:34;-1:-1:-1;;;62575:7:0;:34::i;:::-;63122:31;;;;:17;:31;;;;;;;;-1:-1:-1;;;;;49370:28:0;;49544:11;49519:23;49515:41;49988:1;49975:15;;49949:24;49945:46;49512:52;49502:63;;63122:173;;;63513:22;;;:18;:22;;;;;:71;;63551:32;63539:45;;63513:71;;;49370:28;63774:13;;;63770:54;;63789:35;-1:-1:-1;;;63789:7:0;:35::i;:::-;63855:23;;;:12;63940:676;64359:7;64315:8;64270:1;64204:25;64141:1;64076;64045:358;64611:3;64598:9;;;;;;:16;63940:676;;-1:-1:-1;64632:13:0;:19;-1:-1:-1;57992:193:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1919:254;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:186::-;2237:6;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;2329:29;2348:9;2329:29;:::i;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;2884:127::-;2945:10;2940:3;2936:20;2933:1;2926:31;2976:4;2973:1;2966:15;3000:4;2997:1;2990:15;3016:632;3081:5;3111:18;3152:2;3144:6;3141:14;3138:40;;;3158:18;;:::i;:::-;3233:2;3227:9;3201:2;3287:15;;-1:-1:-1;;3283:24:1;;;3309:2;3279:33;3275:42;3263:55;;;3333:18;;;3353:22;;;3330:46;3327:72;;;3379:18;;:::i;:::-;3419:10;3415:2;3408:22;3448:6;3439:15;;3478:6;3470;3463:22;3518:3;3509:6;3504:3;3500:16;3497:25;3494:45;;;3535:1;3532;3525:12;3494:45;3585:6;3580:3;3573:4;3565:6;3561:17;3548:44;3640:1;3633:4;3624:6;3616;3612:19;3608:30;3601:41;;;;3016:632;;;;;:::o;3653:451::-;3722:6;3775:2;3763:9;3754:7;3750:23;3746:32;3743:52;;;3791:1;3788;3781:12;3743:52;3831:9;3818:23;3864:18;3856:6;3853:30;3850:50;;;3896:1;3893;3886:12;3850:50;3919:22;;3972:4;3964:13;;3960:27;-1:-1:-1;3950:55:1;;4001:1;3998;3991:12;3950:55;4024:74;4090:7;4085:2;4072:16;4067:2;4063;4059:11;4024:74;:::i;4109:160::-;4174:20;;4230:13;;4223:21;4213:32;;4203:60;;4259:1;4256;4249:12;4274:254;4339:6;4347;4400:2;4388:9;4379:7;4375:23;4371:32;4368:52;;;4416:1;4413;4406:12;4368:52;4439:29;4458:9;4439:29;:::i;:::-;4429:39;;4487:35;4518:2;4507:9;4503:18;4487:35;:::i;:::-;4477:45;;4274:254;;;;;:::o;4533:667::-;4628:6;4636;4644;4652;4705:3;4693:9;4684:7;4680:23;4676:33;4673:53;;;4722:1;4719;4712:12;4673:53;4745:29;4764:9;4745:29;:::i;:::-;4735:39;;4793:38;4827:2;4816:9;4812:18;4793:38;:::i;:::-;4783:48;;4878:2;4867:9;4863:18;4850:32;4840:42;;4933:2;4922:9;4918:18;4905:32;4960:18;4952:6;4949:30;4946:50;;;4992:1;4989;4982:12;4946:50;5015:22;;5068:4;5060:13;;5056:27;-1:-1:-1;5046:55:1;;5097:1;5094;5087:12;5046:55;5120:74;5186:7;5181:2;5168:16;5163:2;5159;5155:11;5120:74;:::i;:::-;5110:84;;;4533:667;;;;;;;:::o;5398:180::-;5454:6;5507:2;5495:9;5486:7;5482:23;5478:32;5475:52;;;5523:1;5520;5513:12;5475:52;5546:26;5562:9;5546:26;:::i;5583:272::-;5641:6;5694:2;5682:9;5673:7;5669:23;5665:32;5662:52;;;5710:1;5707;5700:12;5662:52;5749:9;5736:23;5799:6;5792:5;5788:18;5781:5;5778:29;5768:57;;5821:1;5818;5811:12;5860:260;5928:6;5936;5989:2;5977:9;5968:7;5964:23;5960:32;5957:52;;;6005:1;6002;5995:12;5957:52;6028:29;6047:9;6028:29;:::i;:::-;6018:39;;6076:38;6110:2;6099:9;6095:18;6076:38;:::i;6125:380::-;6204:1;6200:12;;;;6247;;;6268:61;;6322:4;6314:6;6310:17;6300:27;;6268:61;6375:2;6367:6;6364:14;6344:18;6341:38;6338:161;;6421:10;6416:3;6412:20;6409:1;6402:31;6456:4;6453:1;6446:15;6484:4;6481:1;6474:15;6338:161;;6125:380;;;:::o;6510:127::-;6571:10;6566:3;6562:20;6559:1;6552:31;6602:4;6599:1;6592:15;6626:4;6623:1;6616:15;6642:168;6715:9;;;6746;;6763:15;;;6757:22;;6743:37;6733:71;;6784:18;;:::i;6947:217::-;6987:1;7013;7003:132;;7057:10;7052:3;7048:20;7045:1;7038:31;7092:4;7089:1;7082:15;7120:4;7117:1;7110:15;7003:132;-1:-1:-1;7149:9:1;;6947:217::o;7505:545::-;7607:2;7602:3;7599:11;7596:448;;;7643:1;7668:5;7664:2;7657:17;7713:4;7709:2;7699:19;7783:2;7771:10;7767:19;7764:1;7760:27;7754:4;7750:38;7819:4;7807:10;7804:20;7801:47;;;-1:-1:-1;7842:4:1;7801:47;7897:2;7892:3;7888:12;7885:1;7881:20;7875:4;7871:31;7861:41;;7952:82;7970:2;7963:5;7960:13;7952:82;;;8015:17;;;7996:1;7985:13;7952:82;;;7956:3;;;7505:545;;;:::o;8226:1352::-;8352:3;8346:10;8379:18;8371:6;8368:30;8365:56;;;8401:18;;:::i;:::-;8430:97;8520:6;8480:38;8512:4;8506:11;8480:38;:::i;:::-;8474:4;8430:97;:::i;:::-;8582:4;;8646:2;8635:14;;8663:1;8658:663;;;;9365:1;9382:6;9379:89;;;-1:-1:-1;9434:19:1;;;9428:26;9379:89;-1:-1:-1;;8183:1:1;8179:11;;;8175:24;8171:29;8161:40;8207:1;8203:11;;;8158:57;9481:81;;8628:944;;8658:663;7452:1;7445:14;;;7489:4;7476:18;;-1:-1:-1;;8694:20:1;;;8812:236;8826:7;8823:1;8820:14;8812:236;;;8915:19;;;8909:26;8894:42;;9007:27;;;;8975:1;8963:14;;;;8842:19;;8812:236;;;8816:3;9076:6;9067:7;9064:19;9061:201;;;9137:19;;;9131:26;-1:-1:-1;;9220:1:1;9216:14;;;9232:3;9212:24;9208:37;9204:42;9189:58;9174:74;;9061:201;-1:-1:-1;;;;;9308:1:1;9292:14;;;9288:22;9275:36;;-1:-1:-1;8226:1352:1:o;9583:184::-;9653:6;9706:2;9694:9;9685:7;9681:23;9677:32;9674:52;;;9722:1;9719;9712:12;9674:52;-1:-1:-1;9745:16:1;;9583:184;-1:-1:-1;9583:184:1:o;9772:402::-;9974:2;9956:21;;;10013:2;9993:18;;;9986:30;10052:34;10047:2;10032:18;;10025:62;-1:-1:-1;;;10118:2:1;10103:18;;10096:36;10164:3;10149:19;;9772:402::o;10179:400::-;10381:2;10363:21;;;10420:2;10400:18;;;10393:30;10459:34;10454:2;10439:18;;10432:62;-1:-1:-1;;;10525:2:1;10510:18;;10503:34;10569:3;10554:19;;10179:400::o;10584:403::-;10786:2;10768:21;;;10825:2;10805:18;;;10798:30;10864:34;10859:2;10844:18;;10837:62;-1:-1:-1;;;10930:2:1;10915:18;;10908:37;10977:3;10962:19;;10584:403::o;10992:125::-;11057:9;;;11078:10;;;11075:36;;;11091:18;;:::i;13334:496::-;13513:3;13551:6;13545:13;13567:66;13626:6;13621:3;13614:4;13606:6;13602:17;13567:66;:::i;:::-;13696:13;;13655:16;;;;13718:70;13696:13;13655:16;13765:4;13753:17;;13718:70;:::i;:::-;13804:20;;13334:496;-1:-1:-1;;;;13334:496:1:o;15010:489::-;-1:-1:-1;;;;;15279:15:1;;;15261:34;;15331:15;;15326:2;15311:18;;15304:43;15378:2;15363:18;;15356:34;;;15426:3;15421:2;15406:18;;15399:31;;;15204:4;;15447:46;;15473:19;;15465:6;15447:46;:::i;:::-;15439:54;15010:489;-1:-1:-1;;;;;;15010:489:1:o;15504:249::-;15573:6;15626:2;15614:9;15605:7;15601:23;15597:32;15594:52;;;15642:1;15639;15632:12;15594:52;15674:9;15668:16;15693:30;15717:5;15693:30;:::i
Swarm Source
ipfs://cee679206e0d66c733a6f762c66211190271787d65e8fcb84b7076fdeb58f5aa
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.