ERC-721
Overview
Max Total Supply
1,070 MB
Holders
12
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
MetaBirdsOfficial
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-07 */ /* ───────────▄██████████████▄─────── ───────▄████░░░░░░░░█▀────█▄────── ──────██░░░░░░░░░░░█▀──────█▄───── ─────██░░░░░░░░░░░█▀────────█▄──── ────██░░░░░░░░░░░░█──────────██─── ───██░░░░░░░░░░░░░█──────██──██─── ──██░░░░░░░░░░░░░░█▄─────██──██─── ─████████████░░░░░░██────────██─── ██░░░░░░░░░░░██░░░░░█████████████─ ██░░░░░░░░░░░██░░░░█▓▓▓▓▓▓▓▓▓▓▓▓▓█ ██░░░░░░░░░░░██░░░█▓▓▓▓▓▓▓▓▓▓▓▓▓▓█ ─▀███████████▒▒▒▒█▓▓▓███████████▀─ ────██▒▒▒▒▒▒▒▒▒▒▒▒█▓▓▓▓▓▓▓▓▓▓▓▓█── ─────██▒▒▒▒▒▒▒▒▒▒▒▒██▓▓▓▓▓▓▓▓▓▓█── ──────█████▒▒▒▒▒▒▒▒▒▒██████████─── ─────────▀███████████▀──────────── ___ ___ __ _______ __ __ | Y .-----| |_.---.-| _ |__.----.--| .-----. |. | -__| _| _ |. 1 | | _| _ |__ --| |. \_/ |_____|____|___._|. _ |__|__| |_____|_____| |: | | |: 1 \ |::.|:. | |::.. . / `--- ---' `-------' */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721AQueryable compliant contract. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * - `extraData` = `0` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * - `extraData` = `<Extra data when token was burned>` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` * - `extraData` = `<Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File: contracts/metabirds.sol pragma solidity >=0.8.9 <0.9.0; contract MetaBirdsOfficial is ERC721AQueryable, Ownable, ReentrancyGuard { using Strings for uint256; bytes32 public merkleRoot; mapping(address => bool) public whitelistClaimed; string public uriPrefix = ''; string public uriSuffix = '.json'; string public hiddenMetadataUri; uint256 public cost; uint256 public maxSupply; uint256 public maxMintAmountPerTx; bool public paused = true; bool public whitelistMintEnabled = false; bool public revealed = false; address public devWallet = 0x2aAC035fB193429e18EA5AF33DCa3DA266448afF; address public projectWallet = 0x2aAC035fB193429e18EA5AF33DCa3DA266448afF; uint256 public addAN = 3; uint256 public addBN = 96; constructor() ERC721A("MetaBirdsOfficial", "MB") { cost = 0.1 ether; maxSupply = 10000; maxMintAmountPerTx = 50; hiddenMetadataUri = "ipfs://QmNtzArJMkkYpkbRBw3aToZ3WpZjbYKCm9aHG8EhDVNpM6"; } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!'); require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!'); _; } modifier airdropMintCompliance(uint256 _mintAmount) { require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!'); _; } function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) { // Verify whitelist requirements require(whitelistMintEnabled, 'The whitelist sale is not enabled!'); require(!whitelistClaimed[_msgSender()], 'Address already claimed!'); bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!'); whitelistClaimed[_msgSender()] = true; _safeMint(_msgSender(), _mintAmount); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, 'The contract is paused!'); _safeMint(_msgSender(), _mintAmount); } function airdropMint(uint256 _mintAmount) public payable airdropMintCompliance(_mintAmount) onlyOwner { _safeMint(_msgSender(), _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setDiscountedMintPrice() public onlyOwner{ cost = .05 ether; } function setDefaultMintPrice() public onlyOwner{ cost = .1 ether; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ''; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function setWhitelistMintEnabled(bool _state) public onlyOwner { whitelistMintEnabled = _state; } function setProjectWallet(address _address) external onlyOwner { projectWallet = _address; } function setDevWallet(address _devAddress) external onlyOwner { devWallet = _devAddress; } function setDevAmount(uint256 _amtD) external onlyOwner{ addAN = _amtD; } function setProjectAmount(uint256 _amtP) external onlyOwner{ addBN = _amtP; } function withdraw() public onlyOwner nonReentrant { uint256 contractBalance = address(this).balance; uint256 addANp = (contractBalance * addAN) / 100; uint256 addBNp = (contractBalance * addBN) / 100; (bool hs, ) = payable(devWallet).call{value: addANp}(""); (hs, ) = payable(projectWallet).call{value: addBNp}(""); require(hs); (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"addAN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addBN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"airdropMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setDefaultMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amtD","type":"uint256"}],"name":"setDevAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devAddress","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setDiscountedMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amtP","type":"uint256"}],"name":"setProjectAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600c91620001de565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600d91620001de565b5060128054762aac035fb193429e18ea5af33dca3da266448aff0000016001600160b81b0319909116179055601380546001600160a01b031916732aac035fb193429e18ea5af33dca3da266448aff17905560036014556060601555348015620000b357600080fd5b506040518060400160405280601181526020017013595d18509a5c991cd3d9999a58da585b607a1b8152506040518060400160405280600281526020016126a160f11b815250816002908051906020019062000111929190620001de565b50805162000127906003906020840190620001de565b50506001600055506200013a336200018c565b600160095567016345785d8a0000600f5561271060105560326011556040805160608101909152603580825262002de6602083013980516200018591600e91602090910190620001de565b50620002c1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ec9062000284565b90600052602060002090601f0160209004810192826200021057600085556200025b565b82601f106200022b57805160ff19168380011785556200025b565b828001600101855582156200025b579182015b828111156200025b5782518255916020019190600101906200023e565b50620002699291506200026d565b5090565b5b808211156200026957600081556001016200026e565b600181811c908216806200029957607f821691505b60208210811415620002bb57634e487b7160e01b600052602260045260246000fd5b50919050565b612b1580620002d16000396000f3fe60806040526004361061036b5760003560e01c80637ec4a659116101c6578063b9610bc8116100f7578063e0a8085311610095578063f0aae16f1161006f578063f0aae16f146109b2578063f2fde38b146109d2578063f8fa1cb1146109f2578063fb3471f214610a0757600080fd5b8063e0a8085314610952578063e985e9c514610972578063efbd73f41461099257600080fd5b8063c87b56dd116100d1578063c87b56dd146108d9578063d2cab056146108f9578063d5abeb011461090c578063db4bec441461092257600080fd5b8063b9610bc814610876578063beb08ab91461088c578063c23dc68f146108ac57600080fd5b806399a2557a11610164578063a45ba8e71161013e578063a45ba8e714610801578063b071401b14610816578063b767a09814610836578063b88d4fde1461085657600080fd5b806399a2557a146107ae578063a0712d68146107ce578063a22cb465146107e157600080fd5b80638da5cb5b116101a05780638da5cb5b1461073e5780638ea5220f1461075c57806394354fd01461078357806395d89b411461079957600080fd5b80637ec4a659146106d15780638462151c146106f15780638a7804471461071e57600080fd5b806344799d6c116102a057806362b99ad41161023e57806370a082311161021857806370a0823114610667578063715018a61461068757806375ac3d2e1461069c5780637cb64759146106b157600080fd5b806362b99ad4146106135780636352211e146106285780636caede3d1461064857600080fd5b8063518302271161027a57806351830227146105975780635503a0e8146105b75780635bbb2177146105cc5780635c975abb146105f957600080fd5b806344799d6c1461054457806344a0d68a146105575780634fdd43cb1461057757600080fd5b806316c38b3c1161030d57806323b872dd116102e757806323b872dd146104d95780632eb4a7ab146104f95780633ccfd60b1461050f57806342842e0e1461052457600080fd5b806316c38b3c1461047b57806318160ddd1461049b5780631f53ac02146104b957600080fd5b8063095ea7b311610349578063095ea7b3146103ff57806311f0453a1461042157806313faede61461044557806316ba10e01461045b57600080fd5b806301ffc9a71461037057806306fdde03146103a5578063081812fc146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b366004612322565b610a27565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103ba610a79565b60405161039c9190612397565b3480156103d357600080fd5b506103e76103e23660046123aa565b610b0b565b6040516001600160a01b03909116815260200161039c565b34801561040b57600080fd5b5061041f61041a3660046123df565b610b4f565b005b34801561042d57600080fd5b5061043760145481565b60405190815260200161039c565b34801561045157600080fd5b50610437600f5481565b34801561046757600080fd5b5061041f6104763660046124a6565b610bef565b34801561048757600080fd5b5061041f6104963660046124fe565b610c0e565b3480156104a757600080fd5b50610437600154600054036000190190565b3480156104c557600080fd5b5061041f6104d4366004612519565b610c29565b3480156104e557600080fd5b5061041f6104f4366004612534565b610c5d565b34801561050557600080fd5b50610437600a5481565b34801561051b57600080fd5b5061041f610dee565b34801561053057600080fd5b5061041f61053f366004612534565b610fcf565b61041f6105523660046123aa565b610fef565b34801561056357600080fd5b5061041f6105723660046123aa565b61103f565b34801561058357600080fd5b5061041f6105923660046124a6565b61104c565b3480156105a357600080fd5b506012546103909062010000900460ff1681565b3480156105c357600080fd5b506103ba611067565b3480156105d857600080fd5b506105ec6105e7366004612570565b6110f5565b60405161039c9190612651565b34801561060557600080fd5b506012546103909060ff1681565b34801561061f57600080fd5b506103ba6111c2565b34801561063457600080fd5b506103e76106433660046123aa565b6111cf565b34801561065457600080fd5b5060125461039090610100900460ff1681565b34801561067357600080fd5b50610437610682366004612519565b6111da565b34801561069357600080fd5b5061041f611228565b3480156106a857600080fd5b5061041f61123c565b3480156106bd57600080fd5b5061041f6106cc3660046123aa565b611251565b3480156106dd57600080fd5b5061041f6106ec3660046124a6565b61125e565b3480156106fd57600080fd5b5061071161070c366004612519565b611279565b60405161039c9190612693565b34801561072a57600080fd5b5061041f610739366004612519565b611388565b34801561074a57600080fd5b506008546001600160a01b03166103e7565b34801561076857600080fd5b506012546103e790630100000090046001600160a01b031681565b34801561078f57600080fd5b5061043760115481565b3480156107a557600080fd5b506103ba6113b2565b3480156107ba57600080fd5b506107116107c93660046126cb565b6113c1565b61041f6107dc3660046123aa565b61154c565b3480156107ed57600080fd5b5061041f6107fc3660046126fe565b611632565b34801561080d57600080fd5b506103ba6116c8565b34801561082257600080fd5b5061041f6108313660046123aa565b6116d5565b34801561084257600080fd5b5061041f6108513660046124fe565b6116e2565b34801561086257600080fd5b5061041f610871366004612731565b611704565b34801561088257600080fd5b5061043760155481565b34801561089857600080fd5b506013546103e7906001600160a01b031681565b3480156108b857600080fd5b506108cc6108c73660046123aa565b61174e565b60405161039c91906127ac565b3480156108e557600080fd5b506103ba6108f43660046123aa565b6117d6565b61041f6109073660046127ba565b611945565b34801561091857600080fd5b5061043760105481565b34801561092e57600080fd5b5061039061093d366004612519565b600b6020526000908152604090205460ff1681565b34801561095e57600080fd5b5061041f61096d3660046124fe565b611b7c565b34801561097e57600080fd5b5061039061098d366004612838565b611ba0565b34801561099e57600080fd5b5061041f6109ad366004612862565b611bce565b3480156109be57600080fd5b5061041f6109cd3660046123aa565b611be0565b3480156109de57600080fd5b5061041f6109ed366004612519565b611bed565b3480156109fe57600080fd5b5061041f611c66565b348015610a1357600080fd5b5061041f610a223660046123aa565b611c7c565b60006301ffc9a760e01b6001600160e01b031983161480610a5857506380ac58cd60e01b6001600160e01b03198316145b80610a735750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610a8890612885565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab490612885565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b6000610b1682611c89565b610b33576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b5a826111cf565b9050336001600160a01b03821614610b9357610b768133611ba0565b610b93576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bf7611cbe565b8051610c0a90600d906020840190612273565b5050565b610c16611cbe565b6012805460ff1916911515919091179055565b610c31611cbe565b601280546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b6000610c6882611d18565b9050836001600160a01b0316816001600160a01b031614610c9b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610ce857610ccb8633611ba0565b610ce857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d0f57604051633a954ecd60e21b815260040160405180910390fd5b8015610d1a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610da55760018401600081815260046020526040902054610da3576000548114610da35760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610df6611cbe565b60026009541415610e4e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026009556014544790600090606490610e6890846128d6565b610e72919061290b565b90506000606460155484610e8691906128d6565b610e90919061290b565b60125460405191925060009163010000009091046001600160a01b03169084908381818185875af1925050503d8060008114610ee8576040519150601f19603f3d011682016040523d82523d6000602084013e610eed565b606091505b50506013546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114610f3d576040519150601f19603f3d011682016040523d82523d6000602084013e610f42565b606091505b50508091505080610f5257600080fd5b6000610f666008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610fb0576040519150601f19603f3d011682016040523d82523d6000602084013e610fb5565b606091505b5050905080610fc357600080fd5b50506001600955505050565b610fea83838360405180602001604052806000815250611704565b505050565b8060105481611005600154600054036000190190565b61100f919061291f565b111561102d5760405162461bcd60e51b8152600401610e4590612937565b611035611cbe565b610c0a3383611d81565b611047611cbe565b600f55565b611054611cbe565b8051610c0a90600e906020840190612273565b600d805461107490612885565b80601f01602080910402602001604051908101604052809291908181526020018280546110a090612885565b80156110ed5780601f106110c2576101008083540402835291602001916110ed565b820191906000526020600020905b8154815290600101906020018083116110d057829003601f168201915b505050505081565b80516060906000816001600160401b0381111561111457611114612409565b60405190808252806020026020018201604052801561116657816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816111325790505b50905060005b8281146111ba5761119585828151811061118857611188612965565b602002602001015161174e565b8282815181106111a7576111a7612965565b602090810291909101015260010161116c565b509392505050565b600c805461107490612885565b6000610a7382611d18565b60006001600160a01b038216611203576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b611230611cbe565b61123a6000611d9b565b565b611244611cbe565b66b1a2bc2ec50000600f55565b611259611cbe565b600a55565b611266611cbe565b8051610c0a90600c906020840190612273565b60606000806000611289856111da565b90506000816001600160401b038111156112a5576112a5612409565b6040519080825280602002602001820160405280156112ce578160200160208202803683370190505b5090506112fb60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b83861461137c5761130e81611ded565b915081604001511561131f57611374565b81516001600160a01b03161561133457815194505b876001600160a01b0316856001600160a01b03161415611374578083878060010198508151811061136757611367612965565b6020026020010181815250505b6001016112fe565b50909695505050505050565b611390611cbe565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610a8890612885565b60608183106113e357604051631960ccad60e11b815260040160405180910390fd5b6000806113ef60005490565b905060018510156113ff57600194505b8084111561140b578093505b6000611416876111da565b905084861015611435578585038181101561142f578091505b50611439565b5060005b6000816001600160401b0381111561145357611453612409565b60405190808252806020026020018201604052801561147c578160200160208202803683370190505b5090508161148f57935061154592505050565b600061149a8861174e565b9050600081604001516114ab575080515b885b8881141580156114bd5750848714155b15611539576114cb81611ded565b92508260400151156114dc57611531565b82516001600160a01b0316156114f157825191505b8a6001600160a01b0316826001600160a01b03161415611531578084888060010199508151811061152457611524612965565b6020026020010181815250505b6001016114ad565b50505092835250909150505b9392505050565b8060008111801561155f57506011548111155b6115a25760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610e45565b601054816115b7600154600054036000190190565b6115c1919061291f565b11156115df5760405162461bcd60e51b8152600401610e4590612937565b60125460ff16156110355760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610e45565b6001600160a01b03821633141561165c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e805461107490612885565b6116dd611cbe565b601155565b6116ea611cbe565b601280549115156101000261ff0019909216919091179055565b61170f848484610c5d565b6001600160a01b0383163b156117485761172b84848484611e29565b611748576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051608081018252600080825260208201819052918101829052606081019190915260408051608081018252600080825260208201819052918101829052606081019190915260018310806117a757506000548310155b156117b25792915050565b6117bb83611ded565b90508060400151156117cd5792915050565b61154583611f21565b60606117e182611c89565b6118455760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610e45565b60125462010000900460ff166118e757600e805461186290612885565b80601f016020809104026020016040519081016040528092919081815260200182805461188e90612885565b80156118db5780601f106118b0576101008083540402835291602001916118db565b820191906000526020600020905b8154815290600101906020018083116118be57829003601f168201915b50505050509050919050565b60006118f1611f56565b905060008151116119115760405180602001604052806000815250611545565b8061191b84611f65565b600d60405160200161192f9392919061297b565b6040516020818303038152906040529392505050565b8260008111801561195857506011548111155b61199b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610e45565b601054816119b0600154600054036000190190565b6119ba919061291f565b11156119d85760405162461bcd60e51b8152600401610e4590612937565b601254610100900460ff16611a3a5760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610e45565b336000908152600b602052604090205460ff1615611a9a5760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610e45565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b1484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050612062565b611b515760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610e45565b336000818152600b60205260409020805460ff19166001179055611b759086611d81565b5050505050565b611b84611cbe565b60128054911515620100000262ff000019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b611bd6611cbe565b610c0a8183611d81565b611be8611cbe565b601555565b611bf5611cbe565b6001600160a01b038116611c5a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e45565b611c6381611d9b565b50565b611c6e611cbe565b67016345785d8a0000600f55565b611c84611cbe565b601455565b600081600111158015611c9d575060005482105b8015610a73575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b0316331461123a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e45565b60008180600111611d6857600054811015611d6857600081815260046020526040902054600160e01b8116611d66575b80611545575060001901600081815260046020526040902054611d48565b505b604051636f96cda160e11b815260040160405180910390fd5b610c0a828260405180602001604052806000815250612078565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610a73906120de565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e5e903390899088908890600401612a3f565b602060405180830381600087803b158015611e7857600080fd5b505af1925050508015611ea8575060408051601f3d908101601f19168201909252611ea591810190612a7c565b60015b611f03573d808015611ed6576040519150601f19603f3d011682016040523d82523d6000602084013e611edb565b606091505b508051611efb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610a73611f5183611d18565b6120de565b6060600c8054610a8890612885565b606081611f895750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fb35780611f9d81612a99565b9150611fac9050600a8361290b565b9150611f8d565b6000816001600160401b03811115611fcd57611fcd612409565b6040519080825280601f01601f191660200182016040528015611ff7576020820181803683370190505b5090505b8415611f195761200c600183612ab4565b9150612019600a86612acb565b61202490603061291f565b60f81b81838151811061203957612039612965565b60200101906001600160f81b031916908160001a90535061205b600a8661290b565b9450611ffb565b60008261206f8584612125565b14949350505050565b612082838361216a565b6001600160a01b0383163b15610fea576000548281035b6120ac6000868380600101945086611e29565b6120c9576040516368d2bf6b60e11b815260040160405180910390fd5b818110612099578160005414611b7557600080fd5b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b600081815b84518110156111ba576121568286838151811061214957612149612965565b6020026020010151612247565b91508061216281612a99565b91505061212a565b6000546001600160a01b03831661219357604051622e076360e81b815260040160405180910390fd5b816121b15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106121fb5760005550505050565b6000818310612263576000828152602084905260409020611545565b5060009182526020526040902090565b82805461227f90612885565b90600052602060002090601f0160209004810192826122a157600085556122e7565b82601f106122ba57805160ff19168380011785556122e7565b828001600101855582156122e7579182015b828111156122e75782518255916020019190600101906122cc565b506122f39291506122f7565b5090565b5b808211156122f357600081556001016122f8565b6001600160e01b031981168114611c6357600080fd5b60006020828403121561233457600080fd5b81356115458161230c565b60005b8381101561235a578181015183820152602001612342565b838111156117485750506000910152565b6000815180845261238381602086016020860161233f565b601f01601f19169290920160200192915050565b602081526000611545602083018461236b565b6000602082840312156123bc57600080fd5b5035919050565b80356001600160a01b03811681146123da57600080fd5b919050565b600080604083850312156123f257600080fd5b6123fb836123c3565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561244757612447612409565b604052919050565b60006001600160401b0383111561246857612468612409565b61247b601f8401601f191660200161241f565b905082815283838301111561248f57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156124b857600080fd5b81356001600160401b038111156124ce57600080fd5b8201601f810184136124df57600080fd5b611f198482356020840161244f565b803580151581146123da57600080fd5b60006020828403121561251057600080fd5b611545826124ee565b60006020828403121561252b57600080fd5b611545826123c3565b60008060006060848603121561254957600080fd5b612552846123c3565b9250612560602085016123c3565b9150604084013590509250925092565b6000602080838503121561258357600080fd5b82356001600160401b038082111561259a57600080fd5b818501915085601f8301126125ae57600080fd5b8135818111156125c0576125c0612409565b8060051b91506125d184830161241f565b81815291830184019184810190888411156125eb57600080fd5b938501935b83851015612609578435825293850193908501906125f0565b98975050505050505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b8181101561137c57612680838551612615565b928401926080929092019160010161266d565b6020808252825182820181905260009190848201906040850190845b8181101561137c578351835292840192918401916001016126af565b6000806000606084860312156126e057600080fd5b6126e9846123c3565b95602085013595506040909401359392505050565b6000806040838503121561271157600080fd5b61271a836123c3565b9150612728602084016124ee565b90509250929050565b6000806000806080858703121561274757600080fd5b612750856123c3565b935061275e602086016123c3565b92506040850135915060608501356001600160401b0381111561278057600080fd5b8501601f8101871361279157600080fd5b6127a08782356020840161244f565b91505092959194509250565b60808101610a738284612615565b6000806000604084860312156127cf57600080fd5b8335925060208401356001600160401b03808211156127ed57600080fd5b818601915086601f83011261280157600080fd5b81358181111561281057600080fd5b8760208260051b850101111561282557600080fd5b6020830194508093505050509250925092565b6000806040838503121561284b57600080fd5b612854836123c3565b9150612728602084016123c3565b6000806040838503121561287557600080fd5b82359150612728602084016123c3565b600181811c9082168061289957607f821691505b602082108114156128ba57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156128f0576128f06128c0565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261291a5761291a6128f5565b500490565b60008219821115612932576129326128c0565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60008451602061298e8285838a0161233f565b8551918401916129a18184848a0161233f565b8554920191600090600181811c90808316806129be57607f831692505b8583108114156129dc57634e487b7160e01b85526022600452602485fd5b8080156129f05760018114612a0157612a2e565b60ff19851688528388019550612a2e565b60008b81526020902060005b85811015612a265781548a820152908401908801612a0d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a729083018461236b565b9695505050505050565b600060208284031215612a8e57600080fd5b81516115458161230c565b6000600019821415612aad57612aad6128c0565b5060010190565b600082821015612ac657612ac66128c0565b500390565b600082612ada57612ada6128f5565b50069056fea26469706673582212204656c2537a610c1abbd2277416456a703757f88b98bc7b033d02e8c2cd9765f464736f6c63430008090033697066733a2f2f516d4e747a41724a4d6b6b59706b625242773361546f5a3357705a6a62594b436d3961484738456844564e704d36
Deployed Bytecode
0x60806040526004361061036b5760003560e01c80637ec4a659116101c6578063b9610bc8116100f7578063e0a8085311610095578063f0aae16f1161006f578063f0aae16f146109b2578063f2fde38b146109d2578063f8fa1cb1146109f2578063fb3471f214610a0757600080fd5b8063e0a8085314610952578063e985e9c514610972578063efbd73f41461099257600080fd5b8063c87b56dd116100d1578063c87b56dd146108d9578063d2cab056146108f9578063d5abeb011461090c578063db4bec441461092257600080fd5b8063b9610bc814610876578063beb08ab91461088c578063c23dc68f146108ac57600080fd5b806399a2557a11610164578063a45ba8e71161013e578063a45ba8e714610801578063b071401b14610816578063b767a09814610836578063b88d4fde1461085657600080fd5b806399a2557a146107ae578063a0712d68146107ce578063a22cb465146107e157600080fd5b80638da5cb5b116101a05780638da5cb5b1461073e5780638ea5220f1461075c57806394354fd01461078357806395d89b411461079957600080fd5b80637ec4a659146106d15780638462151c146106f15780638a7804471461071e57600080fd5b806344799d6c116102a057806362b99ad41161023e57806370a082311161021857806370a0823114610667578063715018a61461068757806375ac3d2e1461069c5780637cb64759146106b157600080fd5b806362b99ad4146106135780636352211e146106285780636caede3d1461064857600080fd5b8063518302271161027a57806351830227146105975780635503a0e8146105b75780635bbb2177146105cc5780635c975abb146105f957600080fd5b806344799d6c1461054457806344a0d68a146105575780634fdd43cb1461057757600080fd5b806316c38b3c1161030d57806323b872dd116102e757806323b872dd146104d95780632eb4a7ab146104f95780633ccfd60b1461050f57806342842e0e1461052457600080fd5b806316c38b3c1461047b57806318160ddd1461049b5780631f53ac02146104b957600080fd5b8063095ea7b311610349578063095ea7b3146103ff57806311f0453a1461042157806313faede61461044557806316ba10e01461045b57600080fd5b806301ffc9a71461037057806306fdde03146103a5578063081812fc146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b366004612322565b610a27565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103ba610a79565b60405161039c9190612397565b3480156103d357600080fd5b506103e76103e23660046123aa565b610b0b565b6040516001600160a01b03909116815260200161039c565b34801561040b57600080fd5b5061041f61041a3660046123df565b610b4f565b005b34801561042d57600080fd5b5061043760145481565b60405190815260200161039c565b34801561045157600080fd5b50610437600f5481565b34801561046757600080fd5b5061041f6104763660046124a6565b610bef565b34801561048757600080fd5b5061041f6104963660046124fe565b610c0e565b3480156104a757600080fd5b50610437600154600054036000190190565b3480156104c557600080fd5b5061041f6104d4366004612519565b610c29565b3480156104e557600080fd5b5061041f6104f4366004612534565b610c5d565b34801561050557600080fd5b50610437600a5481565b34801561051b57600080fd5b5061041f610dee565b34801561053057600080fd5b5061041f61053f366004612534565b610fcf565b61041f6105523660046123aa565b610fef565b34801561056357600080fd5b5061041f6105723660046123aa565b61103f565b34801561058357600080fd5b5061041f6105923660046124a6565b61104c565b3480156105a357600080fd5b506012546103909062010000900460ff1681565b3480156105c357600080fd5b506103ba611067565b3480156105d857600080fd5b506105ec6105e7366004612570565b6110f5565b60405161039c9190612651565b34801561060557600080fd5b506012546103909060ff1681565b34801561061f57600080fd5b506103ba6111c2565b34801561063457600080fd5b506103e76106433660046123aa565b6111cf565b34801561065457600080fd5b5060125461039090610100900460ff1681565b34801561067357600080fd5b50610437610682366004612519565b6111da565b34801561069357600080fd5b5061041f611228565b3480156106a857600080fd5b5061041f61123c565b3480156106bd57600080fd5b5061041f6106cc3660046123aa565b611251565b3480156106dd57600080fd5b5061041f6106ec3660046124a6565b61125e565b3480156106fd57600080fd5b5061071161070c366004612519565b611279565b60405161039c9190612693565b34801561072a57600080fd5b5061041f610739366004612519565b611388565b34801561074a57600080fd5b506008546001600160a01b03166103e7565b34801561076857600080fd5b506012546103e790630100000090046001600160a01b031681565b34801561078f57600080fd5b5061043760115481565b3480156107a557600080fd5b506103ba6113b2565b3480156107ba57600080fd5b506107116107c93660046126cb565b6113c1565b61041f6107dc3660046123aa565b61154c565b3480156107ed57600080fd5b5061041f6107fc3660046126fe565b611632565b34801561080d57600080fd5b506103ba6116c8565b34801561082257600080fd5b5061041f6108313660046123aa565b6116d5565b34801561084257600080fd5b5061041f6108513660046124fe565b6116e2565b34801561086257600080fd5b5061041f610871366004612731565b611704565b34801561088257600080fd5b5061043760155481565b34801561089857600080fd5b506013546103e7906001600160a01b031681565b3480156108b857600080fd5b506108cc6108c73660046123aa565b61174e565b60405161039c91906127ac565b3480156108e557600080fd5b506103ba6108f43660046123aa565b6117d6565b61041f6109073660046127ba565b611945565b34801561091857600080fd5b5061043760105481565b34801561092e57600080fd5b5061039061093d366004612519565b600b6020526000908152604090205460ff1681565b34801561095e57600080fd5b5061041f61096d3660046124fe565b611b7c565b34801561097e57600080fd5b5061039061098d366004612838565b611ba0565b34801561099e57600080fd5b5061041f6109ad366004612862565b611bce565b3480156109be57600080fd5b5061041f6109cd3660046123aa565b611be0565b3480156109de57600080fd5b5061041f6109ed366004612519565b611bed565b3480156109fe57600080fd5b5061041f611c66565b348015610a1357600080fd5b5061041f610a223660046123aa565b611c7c565b60006301ffc9a760e01b6001600160e01b031983161480610a5857506380ac58cd60e01b6001600160e01b03198316145b80610a735750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610a8890612885565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab490612885565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b6000610b1682611c89565b610b33576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b5a826111cf565b9050336001600160a01b03821614610b9357610b768133611ba0565b610b93576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bf7611cbe565b8051610c0a90600d906020840190612273565b5050565b610c16611cbe565b6012805460ff1916911515919091179055565b610c31611cbe565b601280546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b6000610c6882611d18565b9050836001600160a01b0316816001600160a01b031614610c9b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610ce857610ccb8633611ba0565b610ce857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d0f57604051633a954ecd60e21b815260040160405180910390fd5b8015610d1a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610da55760018401600081815260046020526040902054610da3576000548114610da35760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610df6611cbe565b60026009541415610e4e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026009556014544790600090606490610e6890846128d6565b610e72919061290b565b90506000606460155484610e8691906128d6565b610e90919061290b565b60125460405191925060009163010000009091046001600160a01b03169084908381818185875af1925050503d8060008114610ee8576040519150601f19603f3d011682016040523d82523d6000602084013e610eed565b606091505b50506013546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114610f3d576040519150601f19603f3d011682016040523d82523d6000602084013e610f42565b606091505b50508091505080610f5257600080fd5b6000610f666008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610fb0576040519150601f19603f3d011682016040523d82523d6000602084013e610fb5565b606091505b5050905080610fc357600080fd5b50506001600955505050565b610fea83838360405180602001604052806000815250611704565b505050565b8060105481611005600154600054036000190190565b61100f919061291f565b111561102d5760405162461bcd60e51b8152600401610e4590612937565b611035611cbe565b610c0a3383611d81565b611047611cbe565b600f55565b611054611cbe565b8051610c0a90600e906020840190612273565b600d805461107490612885565b80601f01602080910402602001604051908101604052809291908181526020018280546110a090612885565b80156110ed5780601f106110c2576101008083540402835291602001916110ed565b820191906000526020600020905b8154815290600101906020018083116110d057829003601f168201915b505050505081565b80516060906000816001600160401b0381111561111457611114612409565b60405190808252806020026020018201604052801561116657816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816111325790505b50905060005b8281146111ba5761119585828151811061118857611188612965565b602002602001015161174e565b8282815181106111a7576111a7612965565b602090810291909101015260010161116c565b509392505050565b600c805461107490612885565b6000610a7382611d18565b60006001600160a01b038216611203576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b611230611cbe565b61123a6000611d9b565b565b611244611cbe565b66b1a2bc2ec50000600f55565b611259611cbe565b600a55565b611266611cbe565b8051610c0a90600c906020840190612273565b60606000806000611289856111da565b90506000816001600160401b038111156112a5576112a5612409565b6040519080825280602002602001820160405280156112ce578160200160208202803683370190505b5090506112fb60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b83861461137c5761130e81611ded565b915081604001511561131f57611374565b81516001600160a01b03161561133457815194505b876001600160a01b0316856001600160a01b03161415611374578083878060010198508151811061136757611367612965565b6020026020010181815250505b6001016112fe565b50909695505050505050565b611390611cbe565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610a8890612885565b60608183106113e357604051631960ccad60e11b815260040160405180910390fd5b6000806113ef60005490565b905060018510156113ff57600194505b8084111561140b578093505b6000611416876111da565b905084861015611435578585038181101561142f578091505b50611439565b5060005b6000816001600160401b0381111561145357611453612409565b60405190808252806020026020018201604052801561147c578160200160208202803683370190505b5090508161148f57935061154592505050565b600061149a8861174e565b9050600081604001516114ab575080515b885b8881141580156114bd5750848714155b15611539576114cb81611ded565b92508260400151156114dc57611531565b82516001600160a01b0316156114f157825191505b8a6001600160a01b0316826001600160a01b03161415611531578084888060010199508151811061152457611524612965565b6020026020010181815250505b6001016114ad565b50505092835250909150505b9392505050565b8060008111801561155f57506011548111155b6115a25760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610e45565b601054816115b7600154600054036000190190565b6115c1919061291f565b11156115df5760405162461bcd60e51b8152600401610e4590612937565b60125460ff16156110355760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610e45565b6001600160a01b03821633141561165c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e805461107490612885565b6116dd611cbe565b601155565b6116ea611cbe565b601280549115156101000261ff0019909216919091179055565b61170f848484610c5d565b6001600160a01b0383163b156117485761172b84848484611e29565b611748576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051608081018252600080825260208201819052918101829052606081019190915260408051608081018252600080825260208201819052918101829052606081019190915260018310806117a757506000548310155b156117b25792915050565b6117bb83611ded565b90508060400151156117cd5792915050565b61154583611f21565b60606117e182611c89565b6118455760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610e45565b60125462010000900460ff166118e757600e805461186290612885565b80601f016020809104026020016040519081016040528092919081815260200182805461188e90612885565b80156118db5780601f106118b0576101008083540402835291602001916118db565b820191906000526020600020905b8154815290600101906020018083116118be57829003601f168201915b50505050509050919050565b60006118f1611f56565b905060008151116119115760405180602001604052806000815250611545565b8061191b84611f65565b600d60405160200161192f9392919061297b565b6040516020818303038152906040529392505050565b8260008111801561195857506011548111155b61199b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610e45565b601054816119b0600154600054036000190190565b6119ba919061291f565b11156119d85760405162461bcd60e51b8152600401610e4590612937565b601254610100900460ff16611a3a5760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610e45565b336000908152600b602052604090205460ff1615611a9a5760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610e45565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b1484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050612062565b611b515760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610e45565b336000818152600b60205260409020805460ff19166001179055611b759086611d81565b5050505050565b611b84611cbe565b60128054911515620100000262ff000019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b611bd6611cbe565b610c0a8183611d81565b611be8611cbe565b601555565b611bf5611cbe565b6001600160a01b038116611c5a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e45565b611c6381611d9b565b50565b611c6e611cbe565b67016345785d8a0000600f55565b611c84611cbe565b601455565b600081600111158015611c9d575060005482105b8015610a73575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b0316331461123a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e45565b60008180600111611d6857600054811015611d6857600081815260046020526040902054600160e01b8116611d66575b80611545575060001901600081815260046020526040902054611d48565b505b604051636f96cda160e11b815260040160405180910390fd5b610c0a828260405180602001604052806000815250612078565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610a73906120de565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e5e903390899088908890600401612a3f565b602060405180830381600087803b158015611e7857600080fd5b505af1925050508015611ea8575060408051601f3d908101601f19168201909252611ea591810190612a7c565b60015b611f03573d808015611ed6576040519150601f19603f3d011682016040523d82523d6000602084013e611edb565b606091505b508051611efb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610a73611f5183611d18565b6120de565b6060600c8054610a8890612885565b606081611f895750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fb35780611f9d81612a99565b9150611fac9050600a8361290b565b9150611f8d565b6000816001600160401b03811115611fcd57611fcd612409565b6040519080825280601f01601f191660200182016040528015611ff7576020820181803683370190505b5090505b8415611f195761200c600183612ab4565b9150612019600a86612acb565b61202490603061291f565b60f81b81838151811061203957612039612965565b60200101906001600160f81b031916908160001a90535061205b600a8661290b565b9450611ffb565b60008261206f8584612125565b14949350505050565b612082838361216a565b6001600160a01b0383163b15610fea576000548281035b6120ac6000868380600101945086611e29565b6120c9576040516368d2bf6b60e11b815260040160405180910390fd5b818110612099578160005414611b7557600080fd5b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b600081815b84518110156111ba576121568286838151811061214957612149612965565b6020026020010151612247565b91508061216281612a99565b91505061212a565b6000546001600160a01b03831661219357604051622e076360e81b815260040160405180910390fd5b816121b15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106121fb5760005550505050565b6000818310612263576000828152602084905260409020611545565b5060009182526020526040902090565b82805461227f90612885565b90600052602060002090601f0160209004810192826122a157600085556122e7565b82601f106122ba57805160ff19168380011785556122e7565b828001600101855582156122e7579182015b828111156122e75782518255916020019190600101906122cc565b506122f39291506122f7565b5090565b5b808211156122f357600081556001016122f8565b6001600160e01b031981168114611c6357600080fd5b60006020828403121561233457600080fd5b81356115458161230c565b60005b8381101561235a578181015183820152602001612342565b838111156117485750506000910152565b6000815180845261238381602086016020860161233f565b601f01601f19169290920160200192915050565b602081526000611545602083018461236b565b6000602082840312156123bc57600080fd5b5035919050565b80356001600160a01b03811681146123da57600080fd5b919050565b600080604083850312156123f257600080fd5b6123fb836123c3565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561244757612447612409565b604052919050565b60006001600160401b0383111561246857612468612409565b61247b601f8401601f191660200161241f565b905082815283838301111561248f57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156124b857600080fd5b81356001600160401b038111156124ce57600080fd5b8201601f810184136124df57600080fd5b611f198482356020840161244f565b803580151581146123da57600080fd5b60006020828403121561251057600080fd5b611545826124ee565b60006020828403121561252b57600080fd5b611545826123c3565b60008060006060848603121561254957600080fd5b612552846123c3565b9250612560602085016123c3565b9150604084013590509250925092565b6000602080838503121561258357600080fd5b82356001600160401b038082111561259a57600080fd5b818501915085601f8301126125ae57600080fd5b8135818111156125c0576125c0612409565b8060051b91506125d184830161241f565b81815291830184019184810190888411156125eb57600080fd5b938501935b83851015612609578435825293850193908501906125f0565b98975050505050505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b8181101561137c57612680838551612615565b928401926080929092019160010161266d565b6020808252825182820181905260009190848201906040850190845b8181101561137c578351835292840192918401916001016126af565b6000806000606084860312156126e057600080fd5b6126e9846123c3565b95602085013595506040909401359392505050565b6000806040838503121561271157600080fd5b61271a836123c3565b9150612728602084016124ee565b90509250929050565b6000806000806080858703121561274757600080fd5b612750856123c3565b935061275e602086016123c3565b92506040850135915060608501356001600160401b0381111561278057600080fd5b8501601f8101871361279157600080fd5b6127a08782356020840161244f565b91505092959194509250565b60808101610a738284612615565b6000806000604084860312156127cf57600080fd5b8335925060208401356001600160401b03808211156127ed57600080fd5b818601915086601f83011261280157600080fd5b81358181111561281057600080fd5b8760208260051b850101111561282557600080fd5b6020830194508093505050509250925092565b6000806040838503121561284b57600080fd5b612854836123c3565b9150612728602084016123c3565b6000806040838503121561287557600080fd5b82359150612728602084016123c3565b600181811c9082168061289957607f821691505b602082108114156128ba57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156128f0576128f06128c0565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261291a5761291a6128f5565b500490565b60008219821115612932576129326128c0565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60008451602061298e8285838a0161233f565b8551918401916129a18184848a0161233f565b8554920191600090600181811c90808316806129be57607f831692505b8583108114156129dc57634e487b7160e01b85526022600452602485fd5b8080156129f05760018114612a0157612a2e565b60ff19851688528388019550612a2e565b60008b81526020902060005b85811015612a265781548a820152908401908801612a0d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a729083018461236b565b9695505050505050565b600060208284031215612a8e57600080fd5b81516115458161230c565b6000600019821415612aad57612aad6128c0565b5060010190565b600082821015612ac657612ac66128c0565b500390565b600082612ada57612ada6128f5565b50069056fea26469706673582212204656c2537a610c1abbd2277416456a703757f88b98bc7b033d02e8c2cd9765f464736f6c63430008090033
Deployed Bytecode Sourcemap
73531:5014:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34523:615;;;;;;;;;;-1:-1:-1;34523:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34523:615:0;;;;;;;;40170:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42116:204::-;;;;;;;;;;-1:-1:-1;42116:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;42116:204:0;1528:203:1;41664:386:0;;;;;;;;;;-1:-1:-1;41664:386:0;;;;;:::i;:::-;;:::i;:::-;;74194:24;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;74194:24:0;2173:177:1;73839:19:0;;;;;;;;;;;;;;;;77169:100;;;;;;;;;;-1:-1:-1;77169:100:0;;;;;:::i;:::-;;:::i;77275:77::-;;;;;;;;;;-1:-1:-1;77275:77:0;;;;;:::i;:::-;;:::i;33577:315::-;;;;;;;;;;;;75988:1;33843:12;33630:7;33827:13;:28;-1:-1:-1;;33827:46:0;;33577:315;77680:99;;;;;;;;;;-1:-1:-1;77680:99:0;;;;;:::i;:::-;;:::i;51381:2800::-;;;;;;;;;;-1:-1:-1;51381:2800:0;;;;;:::i;:::-;;:::i;73643:25::-;;;;;;;;;;;;;;;;77967:465;;;;;;;;;;;;;:::i;43006:185::-;;;;;;;;;;-1:-1:-1;43006:185:0;;;;;:::i;:::-;;:::i;75606:153::-;;;;;;:::i;:::-;;:::i;76709:74::-;;;;;;;;;;-1:-1:-1;76709:74:0;;;;;:::i;:::-;;:::i;76925:132::-;;;;;;;;;;-1:-1:-1;76925:132:0;;;;;:::i;:::-;;:::i;74007:28::-;;;;;;;;;;-1:-1:-1;74007:28:0;;;;;;;;;;;73761:33;;;;;;;;;;;;;:::i;68749:468::-;;;;;;;;;;-1:-1:-1;68749:468:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;73932:25::-;;;;;;;;;;-1:-1:-1;73932:25:0;;;;;;;;73728:28;;;;;;;;;;;;;:::i;39959:144::-;;;;;;;;;;-1:-1:-1;39959:144:0;;;;;:::i;:::-;;:::i;73962:40::-;;;;;;;;;;-1:-1:-1;73962:40:0;;;;;;;;;;;35202:224;;;;;;;;;;-1:-1:-1;35202:224:0;;;;;:::i;:::-;;:::i;19114:103::-;;;;;;;;;;;;;:::i;76001:81::-;;;;;;;;;;;;;:::i;77358:98::-;;;;;;;;;;-1:-1:-1;77358:98:0;;;;;:::i;:::-;;:::i;77063:100::-;;;;;;;;;;-1:-1:-1;77063:100:0;;;;;:::i;:::-;;:::i;72561:892::-;;;;;;;;;;-1:-1:-1;72561:892:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;77573:101::-;;;;;;;;;;-1:-1:-1;77573:101:0;;;;;:::i;:::-;;:::i;18466:87::-;;;;;;;;;;-1:-1:-1;18539:6:0;;-1:-1:-1;;;;;18539:6:0;18466:87;;74042:69;;;;;;;;;;-1:-1:-1;74042:69:0;;;;;;;-1:-1:-1;;;;;74042:69:0;;;73892:33;;;;;;;;;;;;;;;;40339:104;;;;;;;;;;;;;:::i;69607:2505::-;;;;;;;;;;-1:-1:-1;69607:2505:0;;;;;:::i;:::-;;:::i;75420:180::-;;;;;;:::i;:::-;;:::i;42392:308::-;;;;;;;;;;-1:-1:-1;42392:308:0;;;;;:::i;:::-;;:::i;73799:31::-;;;;;;;;;;;;;:::i;76789:130::-;;;;;;;;;;-1:-1:-1;76789:130:0;;;;;:::i;:::-;;:::i;77462:105::-;;;;;;;;;;-1:-1:-1;77462:105:0;;;;;:::i;:::-;;:::i;43262:399::-;;;;;;;;;;-1:-1:-1;43262:399:0;;;;;:::i;:::-;;:::i;74223:25::-;;;;;;;;;;;;;;;;74116:73;;;;;;;;;;-1:-1:-1;74116:73:0;;;;-1:-1:-1;;;;;74116:73:0;;;68170:420;;;;;;;;;;-1:-1:-1;68170:420:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;76171:445::-;;;;;;;;;;-1:-1:-1;76171:445:0;;;;;:::i;:::-;;:::i;74864:550::-;;;;;;:::i;:::-;;:::i;73863:24::-;;;;;;;;;;;;;;;;73673:48;;;;;;;;;;-1:-1:-1;73673:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;76622:81;;;;;;;;;;-1:-1:-1;76622:81:0;;;;;:::i;:::-;;:::i;42771:164::-;;;;;;;;;;-1:-1:-1;42771:164:0;;;;;:::i;:::-;;:::i;75767:127::-;;;;;;;;;;-1:-1:-1;75767:127:0;;;;;:::i;:::-;;:::i;77872:87::-;;;;;;;;;;-1:-1:-1;77872:87:0;;;;;:::i;:::-;;:::i;19372:201::-;;;;;;;;;;-1:-1:-1;19372:201:0;;;;;:::i;:::-;;:::i;76088:77::-;;;;;;;;;;;;;:::i;77785:83::-;;;;;;;;;;-1:-1:-1;77785:83:0;;;;;:::i;:::-;;:::i;34523:615::-;34608:4;-1:-1:-1;;;;;;;;;34908:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;34985:25:0;;;34908:102;:179;;;-1:-1:-1;;;;;;;;;;35062:25:0;;;34908:179;34888:199;34523:615;-1:-1:-1;;34523:615:0:o;40170:100::-;40224:13;40257:5;40250:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40170:100;:::o;42116:204::-;42184:7;42209:16;42217:7;42209;:16::i;:::-;42204:64;;42234:34;;-1:-1:-1;;;42234:34:0;;;;;;;;;;;42204:64;-1:-1:-1;42288:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42288:24:0;;42116:204::o;41664:386::-;41737:13;41753:16;41761:7;41753;:16::i;:::-;41737:32;-1:-1:-1;62564:10:0;-1:-1:-1;;;;;41786:28:0;;;41782:175;;41834:44;41851:5;62564:10;42771:164;:::i;41834:44::-;41829:128;;41906:35;;-1:-1:-1;;;41906:35:0;;;;;;;;;;;41829:128;41969:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41969:29:0;-1:-1:-1;;;;;41969:29:0;;;;;;;;;42014:28;;41969:24;;42014:28;;;;;;;41726:324;41664:386;;:::o;77169:100::-;18352:13;:11;:13::i;:::-;77241:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;77169:100:::0;:::o;77275:77::-;18352:13;:11;:13::i;:::-;77331:6:::1;:15:::0;;-1:-1:-1;;77331:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;77275:77::o;77680:99::-;18352:13;:11;:13::i;:::-;77750:9:::1;:23:::0;;-1:-1:-1;;;;;77750:23:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;77750:23:0;;::::1;::::0;;;::::1;::::0;;77680:99::o;51381:2800::-;51515:27;51545;51564:7;51545:18;:27::i;:::-;51515:57;;51630:4;-1:-1:-1;;;;;51589:45:0;51605:19;-1:-1:-1;;;;;51589:45:0;;51585:86;;51643:28;;-1:-1:-1;;;51643:28:0;;;;;;;;;;;51585:86;51685:27;50111:21;;;49938:15;50153:4;50146:36;50235:4;50219:21;;50325:26;;62564:10;51078:30;;;-1:-1:-1;;;;;50776:26:0;;51057:19;;;51054:55;51864:174;;51951:43;51968:4;62564:10;42771:164;:::i;51951:43::-;51946:92;;52003:35;;-1:-1:-1;;;52003:35:0;;;;;;;;;;;51946:92;-1:-1:-1;;;;;52055:16:0;;52051:52;;52080:23;;-1:-1:-1;;;52080:23:0;;;;;;;;;;;52051:52;52252:15;52249:160;;;52392:1;52371:19;52364:30;52249:160;-1:-1:-1;;;;;52787:24:0;;;;;;;:18;:24;;;;;;52785:26;;-1:-1:-1;;52785:26:0;;;52856:22;;;;;;;;;52854:24;;-1:-1:-1;52854:24:0;;;39858:11;39834:22;39830:40;39817:62;-1:-1:-1;;;39817:62:0;53149:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;53443:46:0;;53439:626;;53547:1;53537:11;;53515:19;53670:30;;;:17;:30;;;;;;53666:384;;53808:13;;53793:11;:28;53789:242;;53955:30;;;;:17;:30;;;;;:52;;;53789:242;53496:569;53439:626;54112:7;54108:2;-1:-1:-1;;;;;54093:27:0;54102:4;-1:-1:-1;;;;;54093:27:0;;;;;;;;;;;51504:2677;;;51381:2800;;;:::o;77967:465::-;18352:13;:11;:13::i;:::-;6666:1:::1;7264:7;;:19;;7256:63;;;::::0;-1:-1:-1;;;7256:63:0;;10873:2:1;7256:63:0::1;::::0;::::1;10855:21:1::0;10912:2;10892:18;;;10885:30;10951:33;10931:18;;;10924:61;11002:18;;7256:63:0::1;;;;;;;;;6666:1;7397:7;:18:::0;78115:5:::2;::::0;78050:21:::2;::::0;78024:23:::2;::::0;78124:3:::2;::::0;78097:23:::2;::::0;78050:21;78097:23:::2;:::i;:::-;78096:31;;;;:::i;:::-;78078:49;;78134:15;78180:3;78171:5;;78153:15;:23;;;;:::i;:::-;78152:31;;;;:::i;:::-;78214:9;::::0;78206:42:::2;::::0;78134:49;;-1:-1:-1;78193:7:0::2;::::0;78214:9;;;::::2;-1:-1:-1::0;;;;;78214:9:0::2;::::0;78237:6;;78193:7;78206:42;78193:7;78206:42;78237:6;78214:9;78206:42:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;78272:13:0::2;::::0;78264:46:::2;::::0;78192:56;;-1:-1:-1;;;;;;78272:13:0::2;::::0;78299:6;;78264:46:::2;::::0;;;78299:6;78272:13;78264:46:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78255:55;;;;;78325:2;78317:11;;;::::0;::::2;;78338:7;78359;18539:6:::0;;-1:-1:-1;;;;;18539:6:0;;18466:87;78359:7:::2;-1:-1:-1::0;;;;;78351:21:0::2;78380;78351:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78337:69;;;78421:2;78413:11;;;::::0;::::2;;-1:-1:-1::0;;6622:1:0::1;7576:7;:22:::0;-1:-1:-1;;;77967:465:0:o;43006:185::-;43144:39;43161:4;43167:2;43171:7;43144:39;;;;;;;;;;;;:16;:39::i;:::-;43006:185;;;:::o;75606:153::-;75685:11;74810:9;;74795:11;74779:13;75988:1;33843:12;33630:7;33827:13;:28;-1:-1:-1;;33827:46:0;;33577:315;74779:13;:27;;;;:::i;:::-;:40;;74771:73;;;;-1:-1:-1;;;74771:73:0;;;;;;;:::i;:::-;18352:13:::1;:11;:13::i;:::-;75717:36:::2;62564:10:::0;75741:11:::2;75717:9;:36::i;76709:74::-:0;18352:13;:11;:13::i;:::-;76765:4:::1;:12:::0;76709:74::o;76925:132::-;18352:13;:11;:13::i;:::-;77013:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;73761:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68749:468::-;68924:15;;68838:23;;68899:22;68924:15;-1:-1:-1;;;;;68991:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68991:36:0;;-1:-1:-1;;68991:36:0;;;;;;;;;;;;68954:73;;69047:9;69042:125;69063:14;69058:1;:19;69042:125;;69119:32;69139:8;69148:1;69139:11;;;;;;;;:::i;:::-;;;;;;;69119:19;:32::i;:::-;69103:10;69114:1;69103:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;69079:3;;69042:125;;;-1:-1:-1;69188:10:0;68749:468;-1:-1:-1;;;68749:468:0:o;73728:28::-;;;;;;;:::i;39959:144::-;40023:7;40066:27;40085:7;40066:18;:27::i;35202:224::-;35266:7;-1:-1:-1;;;;;35290:19:0;;35286:60;;35318:28;;-1:-1:-1;;;35318:28:0;;;;;;;;;;;35286:60;-1:-1:-1;;;;;;35364:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;35364:54:0;;35202:224::o;19114:103::-;18352:13;:11;:13::i;:::-;19179:30:::1;19206:1;19179:18;:30::i;:::-;19114:103::o:0;76001:81::-;18352:13;:11;:13::i;:::-;76067:9:::1;76060:4;:16:::0;76001:81::o;77358:98::-;18352:13;:11;:13::i;:::-;77426:10:::1;:24:::0;77358:98::o;77063:100::-;18352:13;:11;:13::i;:::-;77135:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;72561:892::-:0;72631:16;72685:19;72719:25;72759:22;72784:16;72794:5;72784:9;:16::i;:::-;72759:41;;72815:25;72857:14;-1:-1:-1;;;;;72843:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72843:29:0;;72815:57;;72887:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72887:31:0;75988:1;72933:472;72982:14;72967:11;:29;72933:472;;73034:15;73047:1;73034:12;:15::i;:::-;73022:27;;73072:9;:16;;;73068:73;;;73113:8;;73068:73;73163:14;;-1:-1:-1;;;;;73163:28:0;;73159:111;;73236:14;;;-1:-1:-1;73159:111:0;73313:5;-1:-1:-1;;;;;73292:26:0;:17;-1:-1:-1;;;;;73292:26:0;;73288:102;;;73369:1;73343:8;73352:13;;;;;;73343:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;73288:102;72998:3;;72933:472;;;-1:-1:-1;73426:8:0;;72561:892;-1:-1:-1;;;;;;72561:892:0:o;77573:101::-;18352:13;:11;:13::i;:::-;77644::::1;:24:::0;;-1:-1:-1;;;;;;77644:24:0::1;-1:-1:-1::0;;;;;77644:24:0;;;::::1;::::0;;;::::1;::::0;;77573:101::o;40339:104::-;40395:13;40428:7;40421:14;;;;;:::i;69607:2505::-;69742:16;69809:4;69800:5;:13;69796:45;;69822:19;;-1:-1:-1;;;69822:19:0;;;;;;;;;;;69796:45;69856:19;69890:17;69910:14;33319:7;33346:13;;33272:95;69910:14;69890:34;-1:-1:-1;75988:1:0;70002:5;:23;69998:87;;;75988:1;70046:23;;69998:87;70161:9;70154:4;:16;70150:73;;;70198:9;70191:16;;70150:73;70237:25;70265:16;70275:5;70265:9;:16::i;:::-;70237:44;;70459:4;70451:5;:12;70447:278;;;70506:12;;;70541:31;;;70537:111;;;70617:11;70597:31;;70537:111;70465:198;70447:278;;;-1:-1:-1;70708:1:0;70447:278;70739:25;70781:17;-1:-1:-1;;;;;70767:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70767:32:0;-1:-1:-1;70739:60:0;-1:-1:-1;70818:22:0;70814:78;;70868:8;-1:-1:-1;70861:15:0;;-1:-1:-1;;;70861:15:0;70814:78;71036:31;71070:26;71090:5;71070:19;:26::i;:::-;71036:60;;71111:25;71356:9;:16;;;71351:92;;-1:-1:-1;71413:14:0;;71351:92;71474:5;71457:478;71486:4;71481:1;:9;;:45;;;;;71509:17;71494:11;:32;;71481:45;71457:478;;;71564:15;71577:1;71564:12;:15::i;:::-;71552:27;;71602:9;:16;;;71598:73;;;71643:8;;71598:73;71693:14;;-1:-1:-1;;;;;71693:28:0;;71689:111;;71766:14;;;-1:-1:-1;71689:111:0;71843:5;-1:-1:-1;;;;;71822:26:0;:17;-1:-1:-1;;;;;71822:26:0;;71818:102;;;71899:1;71873:8;71882:13;;;;;;71873:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;71818:102;71528:3;;71457:478;;;-1:-1:-1;;;72020:29:0;;;-1:-1:-1;72027:8:0;;-1:-1:-1;;69607:2505:0;;;;;;:::o;75420:180::-;75485:11;74549:1;74535:11;:15;:52;;;;;74569:18;;74554:11;:33;;74535:52;74527:85;;;;-1:-1:-1;;;74527:85:0;;12619:2:1;74527:85:0;;;12601:21:1;12658:2;12638:18;;;12631:30;-1:-1:-1;;;12677:18:1;;;12670:50;12737:18;;74527:85:0;12417:344:1;74527:85:0;74658:9;;74643:11;74627:13;75988:1;33843:12;33630:7;33827:13;:28;-1:-1:-1;;33827:46:0;;33577:315;74627:13;:27;;;;:::i;:::-;:40;;74619:73;;;;-1:-1:-1;;;74619:73:0;;;;;;;:::i;:::-;75515:6:::1;::::0;::::1;;75514:7;75506:43;;;::::0;-1:-1:-1;;;75506:43:0;;12968:2:1;75506:43:0::1;::::0;::::1;12950:21:1::0;13007:2;12987:18;;;12980:30;13046:25;13026:18;;;13019:53;13089:18;;75506:43:0::1;12766:347:1::0;42392:308:0;-1:-1:-1;;;;;42491:31:0;;62564:10;42491:31;42487:61;;;42531:17;;-1:-1:-1;;;42531:17:0;;;;;;;;;;;42487:61;62564:10;42561:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;42561:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;42561:60:0;;;;;;;;;;42637:55;;540:41:1;;;42561:49:0;;62564:10;42637:55;;513:18:1;42637:55:0;;;;;;;42392:308;;:::o;73799:31::-;;;;;;;:::i;76789:130::-;18352:13;:11;:13::i;:::-;76873:18:::1;:40:::0;76789:130::o;77462:105::-;18352:13;:11;:13::i;:::-;77532:20:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;77532:29:0;;::::1;::::0;;;::::1;::::0;;77462:105::o;43262:399::-;43429:31;43442:4;43448:2;43452:7;43429:12;:31::i;:::-;-1:-1:-1;;;;;43475:14:0;;;:19;43471:183;;43514:56;43545:4;43551:2;43555:7;43564:5;43514:30;:56::i;:::-;43509:145;;43598:40;;-1:-1:-1;;;43598:40:0;;;;;;;;;;;43509:145;43262:399;;;;:::o;68170:420::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75988:1:0;68326:7;:25;:54;;;-1:-1:-1;33319:7:0;33346:13;68355:7;:25;;68326:54;68322:103;;;68404:9;68170:420;-1:-1:-1;;68170:420:0:o;68322:103::-;68447:21;68460:7;68447:12;:21::i;:::-;68435:33;;68483:9;:16;;;68479:65;;;68523:9;68170:420;-1:-1:-1;;68170:420:0:o;68479:65::-;68561:21;68574:7;68561:12;:21::i;76171:445::-;76245:13;76275:17;76283:8;76275:7;:17::i;:::-;76267:77;;;;-1:-1:-1;;;76267:77:0;;13320:2:1;76267:77:0;;;13302:21:1;13359:2;13339:18;;;13332:30;13398:34;13378:18;;;13371:62;-1:-1:-1;;;13449:18:1;;;13442:45;13504:19;;76267:77:0;13118:411:1;76267:77:0;76357:8;;;;;;;76353:64;;76392:17;76385:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76171:445;;;:::o;76353:64::-;76425:28;76456:10;:8;:10::i;:::-;76425:41;;76511:1;76486:14;76480:28;:32;:130;;;;;;;;;;;;;;;;;76548:14;76564:19;:8;:17;:19::i;:::-;76585:9;76531:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76473:137;76171:445;-1:-1:-1;;;76171:445:0:o;74864:550::-;74971:11;74549:1;74535:11;:15;:52;;;;;74569:18;;74554:11;:33;;74535:52;74527:85;;;;-1:-1:-1;;;74527:85:0;;12619:2:1;74527:85:0;;;12601:21:1;12658:2;12638:18;;;12631:30;-1:-1:-1;;;12677:18:1;;;12670:50;12737:18;;74527:85:0;12417:344:1;74527:85:0;74658:9;;74643:11;74627:13;75988:1;33843:12;33630:7;33827:13;:28;-1:-1:-1;;33827:46:0;;33577:315;74627:13;:27;;;;:::i;:::-;:40;;74619:73;;;;-1:-1:-1;;;74619:73:0;;;;;;;:::i;:::-;75038:20:::1;::::0;::::1;::::0;::::1;;;75030:67;;;::::0;-1:-1:-1;;;75030:67:0;;15394:2:1;75030:67:0::1;::::0;::::1;15376:21:1::0;15433:2;15413:18;;;15406:30;15472:34;15452:18;;;15445:62;-1:-1:-1;;;15523:18:1;;;15516:32;15565:19;;75030:67:0::1;15192:398:1::0;75030:67:0::1;62564:10:::0;75113:30:::1;::::0;;;:16:::1;:30;::::0;;;;;::::1;;75112:31;75104:68;;;::::0;-1:-1:-1;;;75104:68:0;;15797:2:1;75104:68:0::1;::::0;::::1;15779:21:1::0;15836:2;15816:18;;;15809:30;15875:26;15855:18;;;15848:54;15919:18;;75104:68:0::1;15595:348:1::0;75104:68:0::1;75204:30;::::0;-1:-1:-1;;62564:10:0;16097:2:1;16093:15;16089:53;75204:30:0::1;::::0;::::1;16077:66:1::0;75179:12:0::1;::::0;16159::1;;75204:30:0::1;;;;;;;;;;;;75194:41;;;;;;75179:56;;75250:50;75269:12;;75250:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;75283:10:0::1;::::0;;-1:-1:-1;75295:4:0;;-1:-1:-1;75250:18:0::1;:50::i;:::-;75242:77;;;::::0;-1:-1:-1;;;75242:77:0;;16384:2:1;75242:77:0::1;::::0;::::1;16366:21:1::0;16423:2;16403:18;;;16396:30;-1:-1:-1;;;16442:18:1;;;16435:44;16496:18;;75242:77:0::1;16182:338:1::0;75242:77:0::1;62564:10:::0;75328:30:::1;::::0;;;:16:::1;:30;::::0;;;;:37;;-1:-1:-1;;75328:37:0::1;75361:4;75328:37;::::0;;75372:36:::1;::::0;75396:11;75372:9:::1;:36::i;:::-;74985:429;74864:550:::0;;;;:::o;76622:81::-;18352:13;:11;:13::i;:::-;76680:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;76680:17:0;;::::1;::::0;;;::::1;::::0;;76622:81::o;42771:164::-;-1:-1:-1;;;;;42892:25:0;;;42868:4;42892:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42771:164::o;75767:127::-;18352:13;:11;:13::i;:::-;75855:33:::1;75865:9;75876:11;75855:9;:33::i;77872:87::-:0;18352:13;:11;:13::i;:::-;77940:5:::1;:13:::0;77872:87::o;19372:201::-;18352:13;:11;:13::i;:::-;-1:-1:-1;;;;;19461:22:0;::::1;19453:73;;;::::0;-1:-1:-1;;;19453:73:0;;16727:2:1;19453:73:0::1;::::0;::::1;16709:21:1::0;16766:2;16746:18;;;16739:30;16805:34;16785:18;;;16778:62;-1:-1:-1;;;16856:18:1;;;16849:36;16902:19;;19453:73:0::1;16525:402:1::0;19453:73:0::1;19537:28;19556:8;19537:18;:28::i;:::-;19372:201:::0;:::o;76088:77::-;18352:13;:11;:13::i;:::-;76151:8:::1;76144:4;:15:::0;76088:77::o;77785:83::-;18352:13;:11;:13::i;:::-;77849:5:::1;:13:::0;77785:83::o;43916:273::-;43973:4;44029:7;75988:1;44010:26;;:66;;;;;44063:13;;44053:7;:23;44010:66;:152;;;;-1:-1:-1;;44114:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;44114:43:0;:48;;43916:273::o;18631:132::-;18539:6;;-1:-1:-1;;;;;18539:6:0;62564:10;18695:23;18687:68;;;;-1:-1:-1;;;18687:68:0;;17134:2:1;18687:68:0;;;17116:21:1;;;17153:18;;;17146:30;17212:34;17192:18;;;17185:62;17264:18;;18687:68:0;16932:356:1;36876:1129:0;36943:7;36978;;75988:1;37027:23;37023:915;;37080:13;;37073:4;:20;37069:869;;;37118:14;37135:23;;;:17;:23;;;;;;-1:-1:-1;;;37224:23:0;;37220:699;;37743:113;37750:11;37743:113;;-1:-1:-1;;;37821:6:0;37803:25;;;;:17;:25;;;;;;37743:113;;37220:699;37095:843;37069:869;37966:31;;-1:-1:-1;;;37966:31:0;;;;;;;;;;;44273:104;44342:27;44352:2;44356:8;44342:27;;;;;;;;;;;;:9;:27::i;19733:191::-;19826:6;;;-1:-1:-1;;;;;19843:17:0;;;-1:-1:-1;;;;;;19843:17:0;;;;;;;19876:40;;19826:6;;;19843:17;19826:6;;19876:40;;19807:16;;19876:40;19796:128;19733:191;:::o;38553:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38673:24:0;;;;:17;:24;;;;;;38654:44;;:18;:44::i;58132:716::-;58316:88;;-1:-1:-1;;;58316:88:0;;58295:4;;-1:-1:-1;;;;;58316:45:0;;;;;:88;;62564:10;;58383:4;;58389:7;;58398:5;;58316:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58316:88:0;;;;;;;;-1:-1:-1;;58316:88:0;;;;;;;;;;;;:::i;:::-;;;58312:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58599:13:0;;58595:235;;58645:40;;-1:-1:-1;;;58645:40:0;;;;;;;;;;;58595:235;58788:6;58782:13;58773:6;58769:2;58765:15;58758:38;58312:529;-1:-1:-1;;;;;;58475:64:0;-1:-1:-1;;;58475:64:0;;-1:-1:-1;58312:529:0;58132:716;;;;;;:::o;39209:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39312:47:0;39331:27;39350:7;39331:18;:27::i;:::-;39312:18;:47::i;78438:104::-;78498:13;78527:9;78520:16;;;;;:::i;2787:723::-;2843:13;3064:10;3060:53;;-1:-1:-1;;3091:10:0;;;;;;;;;;;;-1:-1:-1;;;3091:10:0;;;;;2787:723::o;3060:53::-;3138:5;3123:12;3179:78;3186:9;;3179:78;;3212:8;;;;:::i;:::-;;-1:-1:-1;3235:10:0;;-1:-1:-1;3243:2:0;3235:10;;:::i;:::-;;;3179:78;;;3267:19;3299:6;-1:-1:-1;;;;;3289:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3289:17:0;;3267:39;;3317:154;3324:10;;3317:154;;3351:11;3361:1;3351:11;;:::i;:::-;;-1:-1:-1;3420:10:0;3428:2;3420:5;:10;:::i;:::-;3407:24;;:2;:24;:::i;:::-;3394:39;;3377:6;3384;3377:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3377:56:0;;;;;;;;-1:-1:-1;3448:11:0;3457:2;3448:11;;:::i;:::-;;;3317:154;;8832:190;8957:4;9010;8981:25;8994:5;9001:4;8981:12;:25::i;:::-;:33;;8832:190;-1:-1:-1;;;;8832:190:0:o;44793:681::-;44916:19;44922:2;44926:8;44916:5;:19::i;:::-;-1:-1:-1;;;;;44977:14:0;;;:19;44973:483;;45017:11;45031:13;45079:14;;;45112:233;45143:62;45182:1;45186:2;45190:7;;;;;;45199:5;45143:30;:62::i;:::-;45138:167;;45241:40;;-1:-1:-1;;;45241:40:0;;;;;;;;;;;45138:167;45340:3;45332:5;:11;45112:233;;45427:3;45410:13;;:20;45406:34;;45432:8;;;38099:363;-1:-1:-1;;;;;;;;;;;;;38209:41:0;;;;30411:3;38295:32;;;-1:-1:-1;;;;;38261:67:0;-1:-1:-1;;;38261:67:0;-1:-1:-1;;;38358:23:0;;:28;;-1:-1:-1;;;38339:47:0;;;;30928:3;38426:27;;;;-1:-1:-1;;;38397:57:0;-1:-1:-1;38099:363:0:o;9699:296::-;9782:7;9825:4;9782:7;9840:118;9864:5;:12;9860:1;:16;9840:118;;;9913:33;9923:12;9937:5;9943:1;9937:8;;;;;;;;:::i;:::-;;;;;;;9913:9;:33::i;:::-;9898:48;-1:-1:-1;9878:3:0;;;;:::i;:::-;;;;9840:118;;45747:1529;45812:20;45835:13;-1:-1:-1;;;;;45863:16:0;;45859:48;;45888:19;;-1:-1:-1;;;45888:19:0;;;;;;;;;;;45859:48;45922:13;45918:44;;45944:18;;-1:-1:-1;;;45944:18:0;;;;;;;;;;;45918:44;-1:-1:-1;;;;;46450:22:0;;;;;;:18;:22;;29894:2;46450:22;;:70;;46488:31;46476:44;;46450:70;;;39858:11;39834:22;39830:40;-1:-1:-1;41568:15:0;;41543:23;41539:45;39827:51;39817:62;46763:31;;;;:17;:31;;;;;:173;46781:12;47012:23;;;47050:101;47077:35;;47102:9;;;;;-1:-1:-1;;;;;47077:35:0;;;47094:1;;47077:35;;47094:1;;47077:35;47146:3;47136:7;:13;47050:101;;47167:13;:19;-1:-1:-1;43006:185:0;;;:::o;15906:149::-;15969:7;16000:1;15996;:5;:51;;16131:13;16225:15;;;16261:4;16254:15;;;16308:4;16292:21;;15996:51;;;-1:-1:-1;16131:13:0;16225:15;;;16261:4;16254:15;16308:4;16292:21;;;15906:149::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:275;2558:2;2552:9;2623:2;2604:13;;-1:-1:-1;;2600:27:1;2588:40;;-1:-1:-1;;;;;2643:34:1;;2679:22;;;2640:62;2637:88;;;2705:18;;:::i;:::-;2741:2;2734:22;2487:275;;-1:-1:-1;2487:275:1:o;2767:407::-;2832:5;-1:-1:-1;;;;;2858:6:1;2855:30;2852:56;;;2888:18;;:::i;:::-;2926:57;2971:2;2950:15;;-1:-1:-1;;2946:29:1;2977:4;2942:40;2926:57;:::i;:::-;2917:66;;3006:6;2999:5;2992:21;3046:3;3037:6;3032:3;3028:16;3025:25;3022:45;;;3063:1;3060;3053:12;3022:45;3112:6;3107:3;3100:4;3093:5;3089:16;3076:43;3166:1;3159:4;3150:6;3143:5;3139:18;3135:29;3128:40;2767:407;;;;;:::o;3179:451::-;3248:6;3301:2;3289:9;3280:7;3276:23;3272:32;3269:52;;;3317:1;3314;3307:12;3269:52;3357:9;3344:23;-1:-1:-1;;;;;3382:6:1;3379:30;3376:50;;;3422:1;3419;3412:12;3376:50;3445:22;;3498:4;3490:13;;3486:27;-1:-1:-1;3476:55:1;;3527:1;3524;3517:12;3476:55;3550:74;3616:7;3611:2;3598:16;3593:2;3589;3585:11;3550:74;:::i;3635:160::-;3700:20;;3756:13;;3749:21;3739:32;;3729:60;;3785:1;3782;3775:12;3800:180;3856:6;3909:2;3897:9;3888:7;3884:23;3880:32;3877:52;;;3925:1;3922;3915:12;3877:52;3948:26;3964:9;3948:26;:::i;3985:186::-;4044:6;4097:2;4085:9;4076:7;4072:23;4068:32;4065:52;;;4113:1;4110;4103:12;4065:52;4136:29;4155:9;4136:29;:::i;4176:328::-;4253:6;4261;4269;4322:2;4310:9;4301:7;4297:23;4293:32;4290:52;;;4338:1;4335;4328:12;4290:52;4361:29;4380:9;4361:29;:::i;:::-;4351:39;;4409:38;4443:2;4432:9;4428:18;4409:38;:::i;:::-;4399:48;;4494:2;4483:9;4479:18;4466:32;4456:42;;4176:328;;;;;:::o;4691:946::-;4775:6;4806:2;4849;4837:9;4828:7;4824:23;4820:32;4817:52;;;4865:1;4862;4855:12;4817:52;4905:9;4892:23;-1:-1:-1;;;;;4975:2:1;4967:6;4964:14;4961:34;;;4991:1;4988;4981:12;4961:34;5029:6;5018:9;5014:22;5004:32;;5074:7;5067:4;5063:2;5059:13;5055:27;5045:55;;5096:1;5093;5086:12;5045:55;5132:2;5119:16;5154:2;5150;5147:10;5144:36;;;5160:18;;:::i;:::-;5206:2;5203:1;5199:10;5189:20;;5229:28;5253:2;5249;5245:11;5229:28;:::i;:::-;5291:15;;;5361:11;;;5357:20;;;5322:12;;;;5389:19;;;5386:39;;;5421:1;5418;5411:12;5386:39;5445:11;;;;5465:142;5481:6;5476:3;5473:15;5465:142;;;5547:17;;5535:30;;5498:12;;;;5585;;;;5465:142;;;5626:5;4691:946;-1:-1:-1;;;;;;;;4691:946:1:o;5642:349::-;5726:12;;-1:-1:-1;;;;;5722:38:1;5710:51;;5814:4;5803:16;;;5797:23;-1:-1:-1;;;;;5793:48:1;5777:14;;;5770:72;5905:4;5894:16;;;5888:23;5881:31;5874:39;5858:14;;;5851:63;5967:4;5956:16;;;5950:23;5975:8;5946:38;5930:14;;5923:62;5642:349::o;5996:722::-;6229:2;6281:21;;;6351:13;;6254:18;;;6373:22;;;6200:4;;6229:2;6452:15;;;;6426:2;6411:18;;;6200:4;6495:197;6509:6;6506:1;6503:13;6495:197;;;6558:52;6606:3;6597:6;6591:13;6558:52;:::i;:::-;6667:15;;;;6639:4;6630:14;;;;;6531:1;6524:9;6495:197;;6908:632;7079:2;7131:21;;;7201:13;;7104:18;;;7223:22;;;7050:4;;7079:2;7302:15;;;;7276:2;7261:18;;;7050:4;7345:169;7359:6;7356:1;7353:13;7345:169;;;7420:13;;7408:26;;7489:15;;;;7454:12;;;;7381:1;7374:9;7345:169;;7545:322;7622:6;7630;7638;7691:2;7679:9;7670:7;7666:23;7662:32;7659:52;;;7707:1;7704;7697:12;7659:52;7730:29;7749:9;7730:29;:::i;:::-;7720:39;7806:2;7791:18;;7778:32;;-1:-1:-1;7857:2:1;7842:18;;;7829:32;;7545:322;-1:-1:-1;;;7545:322:1:o;7872:254::-;7937:6;7945;7998:2;7986:9;7977:7;7973:23;7969:32;7966:52;;;8014:1;8011;8004:12;7966:52;8037:29;8056:9;8037:29;:::i;:::-;8027:39;;8085:35;8116:2;8105:9;8101:18;8085:35;:::i;:::-;8075:45;;7872:254;;;;;:::o;8131:667::-;8226:6;8234;8242;8250;8303:3;8291:9;8282:7;8278:23;8274:33;8271:53;;;8320:1;8317;8310:12;8271:53;8343:29;8362:9;8343:29;:::i;:::-;8333:39;;8391:38;8425:2;8414:9;8410:18;8391:38;:::i;:::-;8381:48;;8476:2;8465:9;8461:18;8448:32;8438:42;;8531:2;8520:9;8516:18;8503:32;-1:-1:-1;;;;;8550:6:1;8547:30;8544:50;;;8590:1;8587;8580:12;8544:50;8613:22;;8666:4;8658:13;;8654:27;-1:-1:-1;8644:55:1;;8695:1;8692;8685:12;8644:55;8718:74;8784:7;8779:2;8766:16;8761:2;8757;8753:11;8718:74;:::i;:::-;8708:84;;;8131:667;;;;;;;:::o;8803:266::-;8999:3;8984:19;;9012:51;8988:9;9045:6;9012:51;:::i;9074:683::-;9169:6;9177;9185;9238:2;9226:9;9217:7;9213:23;9209:32;9206:52;;;9254:1;9251;9244:12;9206:52;9290:9;9277:23;9267:33;;9351:2;9340:9;9336:18;9323:32;-1:-1:-1;;;;;9415:2:1;9407:6;9404:14;9401:34;;;9431:1;9428;9421:12;9401:34;9469:6;9458:9;9454:22;9444:32;;9514:7;9507:4;9503:2;9499:13;9495:27;9485:55;;9536:1;9533;9526:12;9485:55;9576:2;9563:16;9602:2;9594:6;9591:14;9588:34;;;9618:1;9615;9608:12;9588:34;9671:7;9666:2;9656:6;9653:1;9649:14;9645:2;9641:23;9637:32;9634:45;9631:65;;;9692:1;9689;9682:12;9631:65;9723:2;9719;9715:11;9705:21;;9745:6;9735:16;;;;;9074:683;;;;;:::o;9762:260::-;9830:6;9838;9891:2;9879:9;9870:7;9866:23;9862:32;9859:52;;;9907:1;9904;9897:12;9859:52;9930:29;9949:9;9930:29;:::i;:::-;9920:39;;9978:38;10012:2;10001:9;9997:18;9978:38;:::i;10027:254::-;10095:6;10103;10156:2;10144:9;10135:7;10131:23;10127:32;10124:52;;;10172:1;10169;10162:12;10124:52;10208:9;10195:23;10185:33;;10237:38;10271:2;10260:9;10256:18;10237:38;:::i;10286:380::-;10365:1;10361:12;;;;10408;;;10429:61;;10483:4;10475:6;10471:17;10461:27;;10429:61;10536:2;10528:6;10525:14;10505:18;10502:38;10499:161;;;10582:10;10577:3;10573:20;10570:1;10563:31;10617:4;10614:1;10607:15;10645:4;10642:1;10635:15;10499:161;;10286:380;;;:::o;11031:127::-;11092:10;11087:3;11083:20;11080:1;11073:31;11123:4;11120:1;11113:15;11147:4;11144:1;11137:15;11163:168;11203:7;11269:1;11265;11261:6;11257:14;11254:1;11251:21;11246:1;11239:9;11232:17;11228:45;11225:71;;;11276:18;;:::i;:::-;-1:-1:-1;11316:9:1;;11163:168::o;11336:127::-;11397:10;11392:3;11388:20;11385:1;11378:31;11428:4;11425:1;11418:15;11452:4;11449:1;11442:15;11468:120;11508:1;11534;11524:35;;11539:18;;:::i;:::-;-1:-1:-1;11573:9:1;;11468:120::o;11803:128::-;11843:3;11874:1;11870:6;11867:1;11864:13;11861:39;;;11880:18;;:::i;:::-;-1:-1:-1;11916:9:1;;11803:128::o;11936:344::-;12138:2;12120:21;;;12177:2;12157:18;;;12150:30;-1:-1:-1;;;12211:2:1;12196:18;;12189:50;12271:2;12256:18;;11936:344::o;12285:127::-;12346:10;12341:3;12337:20;12334:1;12327:31;12377:4;12374:1;12367:15;12401:4;12398:1;12391:15;13660:1527;13884:3;13922:6;13916:13;13948:4;13961:51;14005:6;14000:3;13995:2;13987:6;13983:15;13961:51;:::i;:::-;14075:13;;14034:16;;;;14097:55;14075:13;14034:16;14119:15;;;14097:55;:::i;:::-;14241:13;;14174:20;;;14214:1;;14301;14323:18;;;;14376;;;;14403:93;;14481:4;14471:8;14467:19;14455:31;;14403:93;14544:2;14534:8;14531:16;14511:18;14508:40;14505:167;;;-1:-1:-1;;;14571:33:1;;14627:4;14624:1;14617:15;14657:4;14578:3;14645:17;14505:167;14688:18;14715:110;;;;14839:1;14834:328;;;;14681:481;;14715:110;-1:-1:-1;;14750:24:1;;14736:39;;14795:20;;;;-1:-1:-1;14715:110:1;;14834:328;13607:1;13600:14;;;13644:4;13631:18;;14929:1;14943:169;14957:8;14954:1;14951:15;14943:169;;;15039:14;;15024:13;;;15017:37;15082:16;;;;14974:10;;14943:169;;;14947:3;;15143:8;15136:5;15132:20;15125:27;;14681:481;-1:-1:-1;15178:3:1;;13660:1527;-1:-1:-1;;;;;;;;;;;13660:1527:1:o;17293:489::-;-1:-1:-1;;;;;17562:15:1;;;17544:34;;17614:15;;17609:2;17594:18;;17587:43;17661:2;17646:18;;17639:34;;;17709:3;17704:2;17689:18;;17682:31;;;17487:4;;17730:46;;17756:19;;17748:6;17730:46;:::i;:::-;17722:54;17293:489;-1:-1:-1;;;;;;17293:489:1:o;17787:249::-;17856:6;17909:2;17897:9;17888:7;17884:23;17880:32;17877:52;;;17925:1;17922;17915:12;17877:52;17957:9;17951:16;17976:30;18000:5;17976:30;:::i;18041:135::-;18080:3;-1:-1:-1;;18101:17:1;;18098:43;;;18121:18;;:::i;:::-;-1:-1:-1;18168:1:1;18157:13;;18041:135::o;18181:125::-;18221:4;18249:1;18246;18243:8;18240:34;;;18254:18;;:::i;:::-;-1:-1:-1;18291:9:1;;18181:125::o;18311:112::-;18343:1;18369;18359:35;;18374:18;;:::i;:::-;-1:-1:-1;18408:9:1;;18311:112::o
Swarm Source
ipfs://4656c2537a610c1abbd2277416456a703757f88b98bc7b033d02e8c2cd9765f4
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.