Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 305 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 21142556 | 15 days ago | IN | 0 ETH | 0.00070326 | ||||
Set Approval For... | 20900323 | 49 days ago | IN | 0 ETH | 0.00029124 | ||||
Set Approval For... | 20875407 | 52 days ago | IN | 0 ETH | 0.00032846 | ||||
Set Approval For... | 20823175 | 59 days ago | IN | 0 ETH | 0.00178979 | ||||
Transfer From | 20519484 | 102 days ago | IN | 0 ETH | 0.00011854 | ||||
Set Approval For... | 20169967 | 151 days ago | IN | 0 ETH | 0.00053145 | ||||
Set Approval For... | 19955634 | 180 days ago | IN | 0 ETH | 0.00023332 | ||||
Set Approval For... | 19305666 | 272 days ago | IN | 0 ETH | 0.00177067 | ||||
Set Approval For... | 18967105 | 319 days ago | IN | 0 ETH | 0.00064124 | ||||
Safe Transfer Fr... | 18702484 | 356 days ago | IN | 0 ETH | 0.0018948 | ||||
Set Approval For... | 18214739 | 424 days ago | IN | 0 ETH | 0.00032389 | ||||
Set Approval For... | 18023621 | 451 days ago | IN | 0 ETH | 0.0008143 | ||||
Set Approval For... | 17827073 | 479 days ago | IN | 0 ETH | 0.00087569 | ||||
Set Approval For... | 17633256 | 506 days ago | IN | 0 ETH | 0.00374776 | ||||
Set Approval For... | 17620953 | 508 days ago | IN | 0 ETH | 0.00049197 | ||||
Set Approval For... | 17595592 | 511 days ago | IN | 0 ETH | 0.00067794 | ||||
Set Approval For... | 17485592 | 527 days ago | IN | 0 ETH | 0.00131045 | ||||
Set Approval For... | 17320292 | 550 days ago | IN | 0 ETH | 0.00271867 | ||||
Set Approval For... | 17320278 | 550 days ago | IN | 0 ETH | 0.00184128 | ||||
Set Approval For... | 17252858 | 559 days ago | IN | 0 ETH | 0.00176328 | ||||
Safe Transfer Fr... | 17122186 | 578 days ago | IN | 0 ETH | 0.00216046 | ||||
Set Approval For... | 17030867 | 591 days ago | IN | 0 ETH | 0.00091408 | ||||
Set Approval For... | 16977387 | 598 days ago | IN | 0 ETH | 0.0034405 | ||||
Set Approval For... | 16968104 | 600 days ago | IN | 0 ETH | 0.00090154 | ||||
Set Approval For... | 16800804 | 623 days ago | IN | 0 ETH | 0.00150283 |
Loading...
Loading
Contract Name:
FocusBloc
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-19 */ // File: OperatorFilterer.sol pragma solidity ^0.8.4; /// @notice Optimized and flexible operator filterer to abide to OpenSea's /// mandatory on-chain royalty enforcement in order for new collections to /// receive royalties. /// For more information, see: /// See: https://github.com/ProjectOpenSea/operator-filter-registry abstract contract OperatorFilterer { /// @dev The default OpenSea operator blocklist subscription. address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; /// @dev The OpenSea operator filter registry. address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E; /// @dev Registers the current contract to OpenSea's operator filter, /// and subscribe to the default OpenSea operator blocklist. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering() internal virtual { _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true); } /// @dev Registers the current contract to OpenSea's operator filter. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering( address subscriptionOrRegistrantToCopy, bool subscribe ) internal virtual { /// @solidity memory-safe-assembly assembly { let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`. // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty. subscriptionOrRegistrantToCopy := shr( 96, shl(96, subscriptionOrRegistrantToCopy) ) for { } iszero(subscribe) { } { if iszero(subscriptionOrRegistrantToCopy) { functionSelector := 0x4420e486 // `register(address)`. break } functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`. break } // Store the function selector. mstore(0x00, shl(224, functionSelector)) // Store the `address(this)`. mstore(0x04, address()) // Store the `subscriptionOrRegistrantToCopy`. mstore(0x24, subscriptionOrRegistrantToCopy) // Register into the registry. if iszero( call( gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04 ) ) { // If the function selector has not been overwritten, // it is an out-of-gas error. if eq(shr(224, mload(0x00)), functionSelector) { // To prevent gas under-estimation. revert(0, 0) } } // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, because of Solidity's memory size limits. mstore(0x24, 0) } } /// @dev Modifier to guard a function and revert if the caller is a blocked operator. modifier onlyAllowedOperator(address from) virtual { if (from != msg.sender) { if (!_isPriorityOperator(msg.sender)) { if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender); } } _; } /// @dev Modifier to guard a function from approving a blocked operator.. modifier onlyAllowedOperatorApproval(address operator) virtual { if (!_isPriorityOperator(operator)) { if (_operatorFilteringEnabled()) _revertIfBlocked(operator); } _; } /// @dev Helper function that reverts if the `operator` is blocked by the registry. function _revertIfBlocked(address operator) private view { /// @solidity memory-safe-assembly assembly { // Store the function selector of `isOperatorAllowed(address,address)`, // shifted left by 6 bytes, which is enough for 8tb of memory. // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL). mstore(0x00, 0xc6171134001122334455) // Store the `address(this)`. mstore(0x1a, address()) // Store the `operator`. mstore(0x3a, operator) // `isOperatorAllowed` always returns true if it does not revert. if iszero( staticcall( gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00 ) ) { // Bubble up the revert if the staticcall reverts. returndatacopy(0x00, 0x00, returndatasize()) revert(0x00, returndatasize()) } // We'll skip checking if `from` is inside the blacklist. // Even though that can block transferring out of wrapper contracts, // we don't want tokens to be stuck. // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, if less than 8tb of memory is used. mstore(0x3a, 0) } } /// @dev For deriving contracts to override, so that operator filtering /// can be turned on / off. /// Returns true by default. function _operatorFilteringEnabled() internal view virtual returns (bool) { return true; } /// @dev For deriving contracts to override, so that preferred marketplaces can /// skip operator filtering, helping users save gas. /// Returns false for all inputs by default. function _isPriorityOperator(address) internal view virtual returns (bool) { return false; } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * 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. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ 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 simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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 sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _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}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721AQueryable. */ 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` * - `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) 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 collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721AQueryable. * * @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 virtual 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[] calldata tokenIds) external view virtual 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 virtual 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 collections should be fine). */ function tokensOfOwner(address owner) external view virtual 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: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: FocusBloc.sol //SPDX-License-Identifier: UNLICENSED pragma solidity >=0.8.13; /* ______ ____ _____ _ _ _____ ____ _ ____ _____ | ____/ __ \ / ____| | | |/ ____| | _ \| | / __ \ / ____ | |__ | | | | | | | | | (___ | |_) | | | | | | | | __|| | | | | | | | |\___ \ | _ <| | | | | | | | | | |__| | |____| |__| |____) | | |_) | |___| |__| | |____ |_| \____/ \_____|\____/|_____/ |____/|______\____/ \_____ /\ |==| ==== XX xXXx XXXX XXXX XXXX xXXXXx XXXXXX XXXXXX xXXXXXXx XXXXXXXX xXXXXXXXXx XXXXXXXXXX XXXXX XXXXX xXXXX" "XXXXx XXXXXxxxxxxXXXXX xXXXXX""""""""XXXXXx xXXXXXX" "XXXXXXx xxXXXXXXX XXXXXXXxx 120 exclusive vintage celebrity photographs, taken by Jean-Claude Deutsch between 60’s and early 90’s. Each of the 120 photographs are 1/1s, exclusive to Focus Bloc, of the 25 curated iconic actors, singers and fashion designers present in our first drop. FocusBloc and ParisMatch have collaborated to grant the exclusive NFT rights for each minters/holders. Terms and Conditions : By purchasing an NFT containing intellectual property rights of LAGARDERE MEDIA NEWS including any artwork, graphics, images, photographs (collectively the “Artwork”), you acknowledge and agree to the following terms and conditions (“Terms”): All right, title and interest (including all copyrights, trademark rights, and all other intellectual property rights) in the Artwork are owned by LAGARDERE MEDIA NEWS. Your purchase of the NFT does not give you any right, license, or ownership in or to the Artwork other than the rights expressly contained in these Terms. You shall not have the right, except as otherwise set forth in these Terms, to reproduce, distribute, display, modify, or commercialize the Artwork, in whole or in part, in any way. You shall not apply for, register, or otherwise use or attempt to use the Artwork, in whole or in part as a trademark, service mark, or any confusingly similar mark, anywhere in the world. Subject to your continued compliance with these Terms, you are granted a personal non-exclusive, non sublicensable license to view and display the Artwork associated with the NFT solely for the following purposes: (a) for your own personal, non-commercial use; (b) as part of a marketplace that permits the display, purchase and sale or other transfer of NFTs, provided the marketplace has mechanisms in place to : (i) verify the owners’ rights to display and sell their NFTs, (ii) ensure that each subsequent purchaser or transferee of an NFT acquires the NFT subject to all of these Terms. As for selling or otherwise transferring the NFT, you shall have the limited right to transfer the NFT including your license to the Artwork associated with NFT, subject to the following, all of which shall remain in force and effect even if you seek to resell the NFT on a different NFT platform: (i) the transferee must accept all of these Terms; (ii) you shall not, prior to the transfer, have breached these Terms; (iii) LAGARDERE MEDIA NEWS shall be entitled to receive a percentage of the sales price. In the event you violate any of these Terms, you agree that in addition to all of LAGARDERE MEDIA NEWS’ rights and remedies for violating LAGARDERE MEDIA NEWS’ intellectual property and other rights, such violation shall constitute a breach of contract, for which LAGARDERE MEDIA NEWS shall have the right to pursue such additional rights and remedies as may be available to LAGARDERE MEDIA NEWS for breach of contract, including, without limitation, monetary damages and injunctive relief. This license will continue only so long as you continue to own the NFT. If you sell, trade, donate, giveaway or otherwise dispose of your NFT, all of your rights in and to the NFT and the Artwork will immediately cease and you will have no further rights in the NFT or the Artwork. */ contract FocusBloc is Ownable, ERC721A, OperatorFilterer, ERC2981, ERC721AQueryable { using Strings for uint256; bool public operatorFilteringEnabled; //base url for metadata string _baseTokenURI; //mint price uint256 public cost = 0.5 ether; //maximum supply of the collection uint256 public maxSupply = 120; //metadata is revealed or not bool public isRevealed = false; //merkle root bytes32 public merkleRoot; //white list active or not bool public whiteListActive = true; //pause minting bool public paused = true; constructor( string memory baseURI ) ERC721A("Focus Bloc - Iconic Models of The Past", "FCIMP") { _baseTokenURI = baseURI; _registerForOperatorFiltering(); operatorFilteringEnabled = true; // Set royalty receiver to the contract creator, // at 10% (default denominator is 10000). _setDefaultRoyalty(msg.sender, 1000); } /** * @dev toggle minting */ function toggleMinting() external onlyOwner { paused = !paused; } /** * @dev Returns the first token id. */ function _startTokenId() internal view virtual override returns (uint256) { return 1; } /** * @dev change cost * @param _cost cost of the token */ function setCost(uint256 _cost) external onlyOwner { cost = _cost; } /** * @dev toggle white list */ function toggleWhiteList() external onlyOwner { whiteListActive = !whiteListActive; } /** * @dev set max supply */ function setMaxSupply(uint256 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } /** * @dev _baseURI overides the Openzeppelin's ERC721 implementation which by default * returned an empty string for the baseURI */ function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } /** * @dev setBaseURI * @param _uri base url for metadata */ function setBaseURI(string memory _uri) external onlyOwner { _baseTokenURI = _uri; } /** * @dev reveal metadata * @param _uri base url for metadata */ function revealMetadata(string memory _uri) external onlyOwner { isRevealed = true; _baseTokenURI = _uri; } /** * @dev setMerkleRoot */ function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } /** * @dev mint allows an user to mint 1 NFT each. * @param _proof merkle proof */ function mint(bytes32[] memory _proof) external payable { if (whiteListActive) { require( MerkleProof.verify( _proof, merkleRoot, keccak256(abi.encodePacked(msg.sender)) ), "Wallet not whitelisted." ); } uint256 supply = _totalMinted(); require(supply + 1 <= maxSupply, "Exceed maximum supply"); require(msg.value == cost, "Incorrect value sent"); require(_numberMinted(msg.sender) == 0, "Exceed max mintable amount"); _mint(msg.sender, 1); } /** * @dev Get token URI * @param tokenId ID of the token to retrieve */ function tokenURI( uint256 tokenId ) public view virtual override(ERC721A, IERC721A) returns (string memory) { require(_exists(tokenId), "URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); if (isRevealed) return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, Strings.toString(tokenId), ".json" ) ) : ""; else { return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI)) : ""; } } /** * @dev withdraw ETH from contract */ function withdraw() public onlyOwner { uint256 amount = address(this).balance; (bool sent, ) = payable(owner()).call{value: amount}(""); require(sent, "Failed to send Ether"); } /** * @dev withdraw ERC20 from contract * @param _erc20Address address of the ERC20 token to withdraw */ function withdrawERC20(address _erc20Address) public onlyOwner { IERC20 token = IERC20(_erc20Address); uint256 balance = token.balanceOf(address(this)); token.transfer(msg.sender, balance); } function setApprovalForAll( address operator, bool approved ) public override(ERC721A, IERC721A) onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve( address operator, uint256 tokenId ) public payable override(ERC721A, IERC721A) onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom( address from, address to, uint256 tokenId ) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC721A, IERC721A, ERC2981) returns (bool) { // Supports the following `interfaceId`s: // - IERC165: 0x01ffc9a7 // - IERC721: 0x80ac58cd // - IERC721Metadata: 0x5b5e139f // - IERC2981: 0x2a55205a return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } function setDefaultRoyalty( address receiver, uint96 feeNumerator ) public onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } function setOperatorFilteringEnabled(bool value) public onlyOwner { operatorFilteringEnabled = value; } function _operatorFilteringEnabled() internal view override returns (bool) { return operatorFilteringEnabled; } function _isPriorityOperator( address operator ) internal pure override returns (bool) { // OpenSea Seaport Conduit: // https://etherscan.io/address/0x1E0049783F008A0085193E00003D00cd54003c71 // https://goerli.etherscan.io/address/0x1E0049783F008A0085193E00003D00cd54003c71 return operator == address(0x1E0049783F008A0085193E00003D00cd54003c71); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"revealMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","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":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20Address","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526706f05b59d3b20000600d556078600e556000600f60006101000a81548160ff0219169083151502179055506001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055503480156200007357600080fd5b506040516200514e3803806200514e833981810160405281019062000099919062000724565b60405180606001604052806026815260200162005128602691396040518060400160405280600581526020017f4643494d5000000000000000000000000000000000000000000000000000000081525062000109620000fd620001b260201b60201c565b620001ba60201b60201c565b816003908051906020019062000121929190620004d7565b5080600490805190602001906200013a929190620004d7565b506200014b6200027e60201b60201c565b600181905550505080600c90805190602001906200016b929190620004d7565b506200017c6200028760201b60201c565b6001600b60006101000a81548160ff021916908315150217905550620001ab336103e8620002b060201b60201c565b50620008f4565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b620002ae733cc6cdda760b79bafa08df41ecfa224f810dceb660016200045360201b60201c565b565b620002c0620004cd60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000321576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031890620007fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000393576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038a906200086e565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b637d3e3dbe8260601b60601c9250816200048257826200047a57634420e486905062000482565b63a0af290390505b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620004c3578060005160e01c03620004c257600080fd5b5b6000602452505050565b6000612710905090565b828054620004e590620008bf565b90600052602060002090601f01602090048101928262000509576000855562000555565b82601f106200052457805160ff191683800117855562000555565b8280016001018555821562000555579182015b828111156200055457825182559160200191906001019062000537565b5b50905062000564919062000568565b5090565b5b808211156200058357600081600090555060010162000569565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005f082620005a5565b810181811067ffffffffffffffff82111715620006125762000611620005b6565b5b80604052505050565b60006200062762000587565b9050620006358282620005e5565b919050565b600067ffffffffffffffff821115620006585762000657620005b6565b5b6200066382620005a5565b9050602081019050919050565b60005b838110156200069057808201518184015260208101905062000673565b83811115620006a0576000848401525b50505050565b6000620006bd620006b7846200063a565b6200061b565b905082815260208101848484011115620006dc57620006db620005a0565b5b620006e984828562000670565b509392505050565b600082601f8301126200070957620007086200059b565b5b81516200071b848260208601620006a6565b91505092915050565b6000602082840312156200073d576200073c62000591565b5b600082015167ffffffffffffffff8111156200075e576200075d62000596565b5b6200076c84828501620006f1565b91505092915050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000620007e4602a8362000775565b9150620007f18262000786565b604082019050919050565b600060208201905081810360008301526200081781620007d5565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006200085660198362000775565b915062000863826200081e565b602082019050919050565b60006020820190508181036000830152620008898162000847565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008d857607f821691505b602082108103620008ee57620008ed62000890565b5b50919050565b61482480620009046000396000f3fe6080604052600436106102465760003560e01c80636352211e11610139578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd14610824578063d5abeb0114610861578063e985e9c51461088c578063f2fde38b146108c9578063f4f3b200146108f2578063fb796e6c1461091b57610246565b8063a22cb4651461075d578063b77a147b14610786578063b7c0b8e8146107a2578063b88d4fde146107cb578063c23dc68f146107e757610246565b80637d55094d116100fd5780637d55094d146106765780638462151c1461068d5780638da5cb5b146106ca57806395d89b41146106f557806399a2557a1461072057610246565b80636352211e146105935780636f8b44b0146105d057806370a08231146105f9578063715018a6146106365780637cb647591461064d57610246565b80632e4355cd116101c757806354214f691161018b57806354214f69146104c057806355f804b3146104eb5780635bbb2177146105145780635c975abb1461055157806363430b381461057c57610246565b80632e4355cd1461040e5780632eb4a7ab146104395780633ccfd60b1461046457806342842e0e1461047b57806344a0d68a1461049757610246565b80630cb715841161020e5780630cb715841461033557806313faede61461035e57806318160ddd1461038957806323b872dd146103b45780632a55205a146103d057610246565b806301ffc9a71461024b57806304634d8d1461028857806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906131ad565b610946565b60405161027f91906131f5565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa91906132b2565b610968565b005b3480156102bd57600080fd5b506102c661097e565b6040516102d3919061338b565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe91906133e3565b610a10565b604051610310919061341f565b60405180910390f35b610333600480360381019061032e919061343a565b610a8f565b005b34801561034157600080fd5b5061035c600480360381019061035791906135af565b610ac4565b005b34801561036a57600080fd5b50610373610b01565b6040516103809190613607565b60405180910390f35b34801561039557600080fd5b5061039e610b07565b6040516103ab9190613607565b60405180910390f35b6103ce60048036038101906103c99190613622565b610b1e565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190613675565b610b89565b6040516104059291906136b5565b60405180910390f35b34801561041a57600080fd5b50610423610d73565b60405161043091906131f5565b60405180910390f35b34801561044557600080fd5b5061044e610d86565b60405161045b91906136f7565b60405180910390f35b34801561047057600080fd5b50610479610d8c565b005b61049560048036038101906104909190613622565b610e50565b005b3480156104a357600080fd5b506104be60048036038101906104b991906133e3565b610ebb565b005b3480156104cc57600080fd5b506104d5610ecd565b6040516104e291906131f5565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906135af565b610ee0565b005b34801561052057600080fd5b5061053b60048036038101906105369190613772565b610f02565b6040516105489190613922565b60405180910390f35b34801561055d57600080fd5b50610566610fc5565b60405161057391906131f5565b60405180910390f35b34801561058857600080fd5b50610591610fd8565b005b34801561059f57600080fd5b506105ba60048036038101906105b591906133e3565b61100c565b6040516105c7919061341f565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f291906133e3565b61101e565b005b34801561060557600080fd5b50610620600480360381019061061b9190613944565b611030565b60405161062d9190613607565b60405180910390f35b34801561064257600080fd5b5061064b6110e8565b005b34801561065957600080fd5b50610674600480360381019061066f919061399d565b6110fc565b005b34801561068257600080fd5b5061068b61110e565b005b34801561069957600080fd5b506106b460048036038101906106af9190613944565b611142565b6040516106c19190613a88565b60405180910390f35b3480156106d657600080fd5b506106df611285565b6040516106ec919061341f565b60405180910390f35b34801561070157600080fd5b5061070a6112ae565b604051610717919061338b565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190613aaa565b611340565b6040516107549190613a88565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190613b29565b61154c565b005b6107a0600480360381019061079b9190613c2c565b611581565b005b3480156107ae57600080fd5b506107c960048036038101906107c49190613c75565b611704565b005b6107e560048036038101906107e09190613d43565b611729565b005b3480156107f357600080fd5b5061080e600480360381019061080991906133e3565b611796565b60405161081b9190613e1b565b60405180910390f35b34801561083057600080fd5b5061084b600480360381019061084691906133e3565b611800565b604051610858919061338b565b60405180910390f35b34801561086d57600080fd5b50610876611904565b6040516108839190613607565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190613e36565b61190a565b6040516108c091906131f5565b60405180910390f35b3480156108d557600080fd5b506108f060048036038101906108eb9190613944565b61199e565b005b3480156108fe57600080fd5b5061091960048036038101906109149190613944565b611a21565b005b34801561092757600080fd5b50610930611b30565b60405161093d91906131f5565b60405180910390f35b600061095182611b43565b80610961575061096082611bd5565b5b9050919050565b610970611c4f565b61097a8282611ccd565b5050565b60606003805461098d90613ea5565b80601f01602080910402602001604051908101604052809291908181526020018280546109b990613ea5565b8015610a065780601f106109db57610100808354040283529160200191610a06565b820191906000526020600020905b8154815290600101906020018083116109e957829003601f168201915b5050505050905090565b6000610a1b82611e62565b610a51576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a9981611ec1565b610ab557610aa5611f0d565b15610ab457610ab381611f24565b5b5b610abf8383611f68565b505050565b610acc611c4f565b6001600f60006101000a81548160ff02191690831515021790555080600c9080519060200190610afd92919061304f565b5050565b600d5481565b6000610b116120ac565b6002546001540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b7857610b5b33611ec1565b610b7757610b67611f0d565b15610b7657610b7533611f24565b5b5b5b610b838484846120b5565b50505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610d1e5760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610d286123d7565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610d549190613f05565b610d5e9190613f8e565b90508160000151819350935050509250929050565b601160009054906101000a900460ff1681565b60105481565b610d94611c4f565b60004790506000610da3611285565b73ffffffffffffffffffffffffffffffffffffffff1682604051610dc690613ff0565b60006040518083038185875af1925050503d8060008114610e03576040519150601f19603f3d011682016040523d82523d6000602084013e610e08565b606091505b5050905080610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390614051565b60405180910390fd5b5050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610eaa57610e8d33611ec1565b610ea957610e99611f0d565b15610ea857610ea733611f24565b5b5b5b610eb58484846123e1565b50505050565b610ec3611c4f565b80600d8190555050565b600f60009054906101000a900460ff1681565b610ee8611c4f565b80600c9080519060200190610efe92919061304f565b5050565b6060600083839050905060008167ffffffffffffffff811115610f2857610f27613484565b5b604051908082528060200260200182016040528015610f6157816020015b610f4e6130d5565b815260200190600190039081610f465790505b50905060005b828114610fb957610f90868683818110610f8457610f83614071565b5b90506020020135611796565b828281518110610fa357610fa2614071565b5b6020026020010181905250806001019050610f67565b50809250505092915050565b601160019054906101000a900460ff1681565b610fe0611c4f565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b600061101782612401565b9050919050565b611026611c4f565b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611097576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110f0611c4f565b6110fa60006124cd565b565b611104611c4f565b8060108190555050565b611116611c4f565b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b6060600080600061115285611030565b905060008167ffffffffffffffff8111156111705761116f613484565b5b60405190808252806020026020018201604052801561119e5781602001602082028036833780820191505090505b5090506111a96130d5565b60006111b36120ac565b90505b838614611277576111c681612591565b9150816040015161126c57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461121157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361126b578083878060010198508151811061125e5761125d614071565b5b6020026020010181815250505b5b8060010190506111b6565b508195505050505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546112bd90613ea5565b80601f01602080910402602001604051908101604052809291908181526020018280546112e990613ea5565b80156113365780601f1061130b57610100808354040283529160200191611336565b820191906000526020600020905b81548152906001019060200180831161131957829003601f168201915b5050505050905090565b606081831061137b576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806113866125bc565b90506113906120ac565b8510156113a25761139f6120ac565b94505b808411156113ae578093505b60006113b987611030565b9050848610156113dc5760008686039050818110156113d6578091505b506113e1565b600090505b60008167ffffffffffffffff8111156113fd576113fc613484565b5b60405190808252806020026020018201604052801561142b5781602001602082028036833780820191505090505b509050600082036114425780945050505050611545565b600061144d88611796565b90506000816040015161146257816000015190505b60008990505b8881141580156114785750848714155b156115375761148681612591565b9250826040015161152c57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146114d157826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361152b578084888060010199508151811061151e5761151d614071565b5b6020026020010181815250505b5b806001019050611468565b508583528296505050505050505b9392505050565b8161155681611ec1565b61157257611562611f0d565b156115715761157081611f24565b5b5b61157c83836125c6565b505050565b601160009054906101000a900460ff1615611609576115c981601054336040516020016115ae91906140e8565b604051602081830303815290604052805190602001206126d1565b611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff9061414f565b60405180910390fd5b5b60006116136126e8565b9050600e54600182611625919061416f565b1115611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90614211565b60405180910390fd5b600d5434146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a19061427d565b60405180910390fd5b60006116b5336126fb565b146116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ec906142e9565b60405180910390fd5b611700336001612752565b5050565b61170c611c4f565b80600b60006101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117835761176633611ec1565b61178257611772611f0d565b156117815761178033611f24565b5b5b5b61178f8585858561290e565b5050505050565b61179e6130d5565b6117a66130d5565b6117ae6120ac565b8310806117c257506117be6125bc565b8310155b156117d057809150506117fb565b6117d983612591565b90508060400151156117ee57809150506117fb565b6117f783612981565b9150505b919050565b606061180b82611e62565b61184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184190614355565b60405180910390fd5b60006118546129a1565b9050600f60009054906101000a900460ff16156118bc57600081511161188957604051806020016040528060008152506118b4565b8061189384612a33565b6040516020016118a49291906143fd565b6040516020818303038152906040525b9150506118ff565b60008151116118da57604051806020016040528060008152506118fb565b806040516020016118eb919061442c565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119a6611c4f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c906144b5565b60405180910390fd5b611a1e816124cd565b50565b611a29611c4f565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611a69919061341f565b602060405180830381865afa158015611a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aaa91906144ea565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611ae79291906136b5565b6020604051808303816000875af1158015611b06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2a919061452c565b50505050565b600b60009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b9e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611bce5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c485750611c4782612b01565b5b9050919050565b611c57612b6b565b73ffffffffffffffffffffffffffffffffffffffff16611c75611285565b73ffffffffffffffffffffffffffffffffffffffff1614611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc2906145a5565b60405180910390fd5b565b611cd56123d7565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90614637565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d99906146a3565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611e6d6120ac565b11158015611e7c575060015482105b8015611eba575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b6000731e0049783f008a0085193e00003d00cd54003c7173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b6000600b60009054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611f60573d6000803e3d6000fd5b6000603a5250565b6000611f738261100c565b90508073ffffffffffffffffffffffffffffffffffffffff16611f94612b73565b73ffffffffffffffffffffffffffffffffffffffff1614611ff757611fc081611fbb612b73565b61190a565b611ff6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006120c082612401565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612127576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061213384612b7b565b915091506121498187612144612b73565b612ba2565b6121955761215e86612159612b73565b61190a565b612194576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036121fb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122088686866001612be6565b801561221357600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506122e1856122bd888887612bec565b7c020000000000000000000000000000000000000000000000000000000017612c14565b600560008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036123675760006001850190506000600560008381526020019081526020016000205403612365576001548114612364578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123cf8686866001612c3f565b505050505050565b6000612710905090565b6123fc83838360405180602001604052806000815250611729565b505050565b600080829050806124106120ac565b11612496576001548110156124955760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612493575b6000810361248957600560008360019003935083815260200190815260200160002054905061245f565b80925050506124c8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125996130d5565b6125b56005600084815260200190815260200160002054612c45565b9050919050565b6000600154905090565b80600860006125d3612b73565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612680612b73565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126c591906131f5565b60405180910390a35050565b6000826126de8584612cfb565b1490509392505050565b60006126f26120ac565b60015403905090565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600154905060008203612793576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127a06000848385612be6565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612817836128086000866000612bec565b61281185612d51565b17612c14565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146128b857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061287d565b50600082036128f3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506129096000848385612c3f565b505050565b612919848484610b1e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461297b5761294484848484612d61565b61297a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6129896130d5565b61299a61299583612401565b612c45565b9050919050565b6060600c80546129b090613ea5565b80601f01602080910402602001604051908101604052809291908181526020018280546129dc90613ea5565b8015612a295780601f106129fe57610100808354040283529160200191612a29565b820191906000526020600020905b815481529060010190602001808311612a0c57829003601f168201915b5050505050905090565b606060006001612a4284612eb1565b01905060008167ffffffffffffffff811115612a6157612a60613484565b5b6040519080825280601f01601f191660200182016040528015612a935781602001600182028036833780820191505090505b509050600082602001820190505b600115612af6578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612aea57612ae9613f5f565b5b04945060008503612aa1575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612c03868684613004565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612c4d6130d5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b8451811015612d4657612d3182868381518110612d2457612d23614071565b5b602002602001015161300d565b91508080612d3e906146c3565b915050612d04565b508091505092915050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d87612b73565b8786866040518563ffffffff1660e01b8152600401612da99493929190614760565b6020604051808303816000875af1925050508015612de557506040513d601f19601f82011682018060405250810190612de291906147c1565b60015b612e5e573d8060008114612e15576040519150601f19603f3d011682016040523d82523d6000602084013e612e1a565b606091505b506000815103612e56576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612f0f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612f0557612f04613f5f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612f4c576d04ee2d6d415b85acef81000000008381612f4257612f41613f5f565b5b0492506020810190505b662386f26fc100008310612f7b57662386f26fc100008381612f7157612f70613f5f565b5b0492506010810190505b6305f5e1008310612fa4576305f5e1008381612f9a57612f99613f5f565b5b0492506008810190505b6127108310612fc9576127108381612fbf57612fbe613f5f565b5b0492506004810190505b60648310612fec5760648381612fe257612fe1613f5f565b5b0492506002810190505b600a8310612ffb576001810190505b80915050919050565b60009392505050565b6000818310613025576130208284613038565b613030565b61302f8383613038565b5b905092915050565b600082600052816020526040600020905092915050565b82805461305b90613ea5565b90600052602060002090601f01602090048101928261307d57600085556130c4565b82601f1061309657805160ff19168380011785556130c4565b828001600101855582156130c4579182015b828111156130c35782518255916020019190600101906130a8565b5b5090506130d19190613124565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561313d576000816000905550600101613125565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61318a81613155565b811461319557600080fd5b50565b6000813590506131a781613181565b92915050565b6000602082840312156131c3576131c261314b565b5b60006131d184828501613198565b91505092915050565b60008115159050919050565b6131ef816131da565b82525050565b600060208201905061320a60008301846131e6565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061323b82613210565b9050919050565b61324b81613230565b811461325657600080fd5b50565b60008135905061326881613242565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61328f8161326e565b811461329a57600080fd5b50565b6000813590506132ac81613286565b92915050565b600080604083850312156132c9576132c861314b565b5b60006132d785828601613259565b92505060206132e88582860161329d565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561332c578082015181840152602081019050613311565b8381111561333b576000848401525b50505050565b6000601f19601f8301169050919050565b600061335d826132f2565b61336781856132fd565b935061337781856020860161330e565b61338081613341565b840191505092915050565b600060208201905081810360008301526133a58184613352565b905092915050565b6000819050919050565b6133c0816133ad565b81146133cb57600080fd5b50565b6000813590506133dd816133b7565b92915050565b6000602082840312156133f9576133f861314b565b5b6000613407848285016133ce565b91505092915050565b61341981613230565b82525050565b60006020820190506134346000830184613410565b92915050565b600080604083850312156134515761345061314b565b5b600061345f85828601613259565b9250506020613470858286016133ce565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134bc82613341565b810181811067ffffffffffffffff821117156134db576134da613484565b5b80604052505050565b60006134ee613141565b90506134fa82826134b3565b919050565b600067ffffffffffffffff82111561351a57613519613484565b5b61352382613341565b9050602081019050919050565b82818337600083830152505050565b600061355261354d846134ff565b6134e4565b90508281526020810184848401111561356e5761356d61347f565b5b613579848285613530565b509392505050565b600082601f8301126135965761359561347a565b5b81356135a684826020860161353f565b91505092915050565b6000602082840312156135c5576135c461314b565b5b600082013567ffffffffffffffff8111156135e3576135e2613150565b5b6135ef84828501613581565b91505092915050565b613601816133ad565b82525050565b600060208201905061361c60008301846135f8565b92915050565b60008060006060848603121561363b5761363a61314b565b5b600061364986828701613259565b935050602061365a86828701613259565b925050604061366b868287016133ce565b9150509250925092565b6000806040838503121561368c5761368b61314b565b5b600061369a858286016133ce565b92505060206136ab858286016133ce565b9150509250929050565b60006040820190506136ca6000830185613410565b6136d760208301846135f8565b9392505050565b6000819050919050565b6136f1816136de565b82525050565b600060208201905061370c60008301846136e8565b92915050565b600080fd5b600080fd5b60008083601f8401126137325761373161347a565b5b8235905067ffffffffffffffff81111561374f5761374e613712565b5b60208301915083602082028301111561376b5761376a613717565b5b9250929050565b600080602083850312156137895761378861314b565b5b600083013567ffffffffffffffff8111156137a7576137a6613150565b5b6137b38582860161371c565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6137f481613230565b82525050565b600067ffffffffffffffff82169050919050565b613817816137fa565b82525050565b613826816131da565b82525050565b600062ffffff82169050919050565b6138448161382c565b82525050565b60808201600082015161386060008501826137eb565b506020820151613873602085018261380e565b506040820151613886604085018261381d565b506060820151613899606085018261383b565b50505050565b60006138ab838361384a565b60808301905092915050565b6000602082019050919050565b60006138cf826137bf565b6138d981856137ca565b93506138e4836137db565b8060005b838110156139155781516138fc888261389f565b9750613907836138b7565b9250506001810190506138e8565b5085935050505092915050565b6000602082019050818103600083015261393c81846138c4565b905092915050565b60006020828403121561395a5761395961314b565b5b600061396884828501613259565b91505092915050565b61397a816136de565b811461398557600080fd5b50565b60008135905061399781613971565b92915050565b6000602082840312156139b3576139b261314b565b5b60006139c184828501613988565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139ff816133ad565b82525050565b6000613a1183836139f6565b60208301905092915050565b6000602082019050919050565b6000613a35826139ca565b613a3f81856139d5565b9350613a4a836139e6565b8060005b83811015613a7b578151613a628882613a05565b9750613a6d83613a1d565b925050600181019050613a4e565b5085935050505092915050565b60006020820190508181036000830152613aa28184613a2a565b905092915050565b600080600060608486031215613ac357613ac261314b565b5b6000613ad186828701613259565b9350506020613ae2868287016133ce565b9250506040613af3868287016133ce565b9150509250925092565b613b06816131da565b8114613b1157600080fd5b50565b600081359050613b2381613afd565b92915050565b60008060408385031215613b4057613b3f61314b565b5b6000613b4e85828601613259565b9250506020613b5f85828601613b14565b9150509250929050565b600067ffffffffffffffff821115613b8457613b83613484565b5b602082029050602081019050919050565b6000613ba8613ba384613b69565b6134e4565b90508083825260208201905060208402830185811115613bcb57613bca613717565b5b835b81811015613bf45780613be08882613988565b845260208401935050602081019050613bcd565b5050509392505050565b600082601f830112613c1357613c1261347a565b5b8135613c23848260208601613b95565b91505092915050565b600060208284031215613c4257613c4161314b565b5b600082013567ffffffffffffffff811115613c6057613c5f613150565b5b613c6c84828501613bfe565b91505092915050565b600060208284031215613c8b57613c8a61314b565b5b6000613c9984828501613b14565b91505092915050565b600067ffffffffffffffff821115613cbd57613cbc613484565b5b613cc682613341565b9050602081019050919050565b6000613ce6613ce184613ca2565b6134e4565b905082815260208101848484011115613d0257613d0161347f565b5b613d0d848285613530565b509392505050565b600082601f830112613d2a57613d2961347a565b5b8135613d3a848260208601613cd3565b91505092915050565b60008060008060808587031215613d5d57613d5c61314b565b5b6000613d6b87828801613259565b9450506020613d7c87828801613259565b9350506040613d8d878288016133ce565b925050606085013567ffffffffffffffff811115613dae57613dad613150565b5b613dba87828801613d15565b91505092959194509250565b608082016000820151613ddc60008501826137eb565b506020820151613def602085018261380e565b506040820151613e02604085018261381d565b506060820151613e15606085018261383b565b50505050565b6000608082019050613e306000830184613dc6565b92915050565b60008060408385031215613e4d57613e4c61314b565b5b6000613e5b85828601613259565b9250506020613e6c85828601613259565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ebd57607f821691505b602082108103613ed057613ecf613e76565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f10826133ad565b9150613f1b836133ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f5457613f53613ed6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f99826133ad565b9150613fa4836133ad565b925082613fb457613fb3613f5f565b5b828204905092915050565b600081905092915050565b50565b6000613fda600083613fbf565b9150613fe582613fca565b600082019050919050565b6000613ffb82613fcd565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b600061403b6014836132fd565b915061404682614005565b602082019050919050565b6000602082019050818103600083015261406a8161402e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160601b9050919050565b60006140b8826140a0565b9050919050565b60006140ca826140ad565b9050919050565b6140e26140dd82613230565b6140bf565b82525050565b60006140f482846140d1565b60148201915081905092915050565b7f57616c6c6574206e6f742077686974656c69737465642e000000000000000000600082015250565b60006141396017836132fd565b915061414482614103565b602082019050919050565b600060208201905081810360008301526141688161412c565b9050919050565b600061417a826133ad565b9150614185836133ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141ba576141b9613ed6565b5b828201905092915050565b7f457863656564206d6178696d756d20737570706c790000000000000000000000600082015250565b60006141fb6015836132fd565b9150614206826141c5565b602082019050919050565b6000602082019050818103600083015261422a816141ee565b9050919050565b7f496e636f72726563742076616c75652073656e74000000000000000000000000600082015250565b60006142676014836132fd565b915061427282614231565b602082019050919050565b600060208201905081810360008301526142968161425a565b9050919050565b7f457863656564206d6178206d696e7461626c6520616d6f756e74000000000000600082015250565b60006142d3601a836132fd565b91506142de8261429d565b602082019050919050565b60006020820190508181036000830152614302816142c6565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b600061433f601f836132fd565b915061434a82614309565b602082019050919050565b6000602082019050818103600083015261436e81614332565b9050919050565b600081905092915050565b600061438b826132f2565b6143958185614375565b93506143a581856020860161330e565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006143e7600583614375565b91506143f2826143b1565b600582019050919050565b60006144098285614380565b91506144158284614380565b9150614420826143da565b91508190509392505050565b60006144388284614380565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061449f6026836132fd565b91506144aa82614443565b604082019050919050565b600060208201905081810360008301526144ce81614492565b9050919050565b6000815190506144e4816133b7565b92915050565b600060208284031215614500576144ff61314b565b5b600061450e848285016144d5565b91505092915050565b60008151905061452681613afd565b92915050565b6000602082840312156145425761454161314b565b5b600061455084828501614517565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061458f6020836132fd565b915061459a82614559565b602082019050919050565b600060208201905081810360008301526145be81614582565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614621602a836132fd565b915061462c826145c5565b604082019050919050565b6000602082019050818103600083015261465081614614565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061468d6019836132fd565b915061469882614657565b602082019050919050565b600060208201905081810360008301526146bc81614680565b9050919050565b60006146ce826133ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614700576146ff613ed6565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b60006147328261470b565b61473c8185614716565b935061474c81856020860161330e565b61475581613341565b840191505092915050565b60006080820190506147756000830187613410565b6147826020830186613410565b61478f60408301856135f8565b81810360608301526147a18184614727565b905095945050505050565b6000815190506147bb81613181565b92915050565b6000602082840312156147d7576147d661314b565b5b60006147e5848285016147ac565b9150509291505056fea26469706673582212200f0b2e8c92bd68676389ba61e0ab06edc37b54d4075481c9825e2bd6bc3da4f664736f6c634300080d0033466f63757320426c6f63202d2049636f6e6963204d6f64656c73206f6620546865205061737400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a4450776a46556e6d6666557563586d57667a57314b4875774e4c597a63437633595a43644d7059384238590000000000000000000000
Deployed Bytecode
0x6080604052600436106102465760003560e01c80636352211e11610139578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd14610824578063d5abeb0114610861578063e985e9c51461088c578063f2fde38b146108c9578063f4f3b200146108f2578063fb796e6c1461091b57610246565b8063a22cb4651461075d578063b77a147b14610786578063b7c0b8e8146107a2578063b88d4fde146107cb578063c23dc68f146107e757610246565b80637d55094d116100fd5780637d55094d146106765780638462151c1461068d5780638da5cb5b146106ca57806395d89b41146106f557806399a2557a1461072057610246565b80636352211e146105935780636f8b44b0146105d057806370a08231146105f9578063715018a6146106365780637cb647591461064d57610246565b80632e4355cd116101c757806354214f691161018b57806354214f69146104c057806355f804b3146104eb5780635bbb2177146105145780635c975abb1461055157806363430b381461057c57610246565b80632e4355cd1461040e5780632eb4a7ab146104395780633ccfd60b1461046457806342842e0e1461047b57806344a0d68a1461049757610246565b80630cb715841161020e5780630cb715841461033557806313faede61461035e57806318160ddd1461038957806323b872dd146103b45780632a55205a146103d057610246565b806301ffc9a71461024b57806304634d8d1461028857806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906131ad565b610946565b60405161027f91906131f5565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa91906132b2565b610968565b005b3480156102bd57600080fd5b506102c661097e565b6040516102d3919061338b565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe91906133e3565b610a10565b604051610310919061341f565b60405180910390f35b610333600480360381019061032e919061343a565b610a8f565b005b34801561034157600080fd5b5061035c600480360381019061035791906135af565b610ac4565b005b34801561036a57600080fd5b50610373610b01565b6040516103809190613607565b60405180910390f35b34801561039557600080fd5b5061039e610b07565b6040516103ab9190613607565b60405180910390f35b6103ce60048036038101906103c99190613622565b610b1e565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190613675565b610b89565b6040516104059291906136b5565b60405180910390f35b34801561041a57600080fd5b50610423610d73565b60405161043091906131f5565b60405180910390f35b34801561044557600080fd5b5061044e610d86565b60405161045b91906136f7565b60405180910390f35b34801561047057600080fd5b50610479610d8c565b005b61049560048036038101906104909190613622565b610e50565b005b3480156104a357600080fd5b506104be60048036038101906104b991906133e3565b610ebb565b005b3480156104cc57600080fd5b506104d5610ecd565b6040516104e291906131f5565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906135af565b610ee0565b005b34801561052057600080fd5b5061053b60048036038101906105369190613772565b610f02565b6040516105489190613922565b60405180910390f35b34801561055d57600080fd5b50610566610fc5565b60405161057391906131f5565b60405180910390f35b34801561058857600080fd5b50610591610fd8565b005b34801561059f57600080fd5b506105ba60048036038101906105b591906133e3565b61100c565b6040516105c7919061341f565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f291906133e3565b61101e565b005b34801561060557600080fd5b50610620600480360381019061061b9190613944565b611030565b60405161062d9190613607565b60405180910390f35b34801561064257600080fd5b5061064b6110e8565b005b34801561065957600080fd5b50610674600480360381019061066f919061399d565b6110fc565b005b34801561068257600080fd5b5061068b61110e565b005b34801561069957600080fd5b506106b460048036038101906106af9190613944565b611142565b6040516106c19190613a88565b60405180910390f35b3480156106d657600080fd5b506106df611285565b6040516106ec919061341f565b60405180910390f35b34801561070157600080fd5b5061070a6112ae565b604051610717919061338b565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190613aaa565b611340565b6040516107549190613a88565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190613b29565b61154c565b005b6107a0600480360381019061079b9190613c2c565b611581565b005b3480156107ae57600080fd5b506107c960048036038101906107c49190613c75565b611704565b005b6107e560048036038101906107e09190613d43565b611729565b005b3480156107f357600080fd5b5061080e600480360381019061080991906133e3565b611796565b60405161081b9190613e1b565b60405180910390f35b34801561083057600080fd5b5061084b600480360381019061084691906133e3565b611800565b604051610858919061338b565b60405180910390f35b34801561086d57600080fd5b50610876611904565b6040516108839190613607565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190613e36565b61190a565b6040516108c091906131f5565b60405180910390f35b3480156108d557600080fd5b506108f060048036038101906108eb9190613944565b61199e565b005b3480156108fe57600080fd5b5061091960048036038101906109149190613944565b611a21565b005b34801561092757600080fd5b50610930611b30565b60405161093d91906131f5565b60405180910390f35b600061095182611b43565b80610961575061096082611bd5565b5b9050919050565b610970611c4f565b61097a8282611ccd565b5050565b60606003805461098d90613ea5565b80601f01602080910402602001604051908101604052809291908181526020018280546109b990613ea5565b8015610a065780601f106109db57610100808354040283529160200191610a06565b820191906000526020600020905b8154815290600101906020018083116109e957829003601f168201915b5050505050905090565b6000610a1b82611e62565b610a51576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a9981611ec1565b610ab557610aa5611f0d565b15610ab457610ab381611f24565b5b5b610abf8383611f68565b505050565b610acc611c4f565b6001600f60006101000a81548160ff02191690831515021790555080600c9080519060200190610afd92919061304f565b5050565b600d5481565b6000610b116120ac565b6002546001540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b7857610b5b33611ec1565b610b7757610b67611f0d565b15610b7657610b7533611f24565b5b5b5b610b838484846120b5565b50505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610d1e5760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610d286123d7565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610d549190613f05565b610d5e9190613f8e565b90508160000151819350935050509250929050565b601160009054906101000a900460ff1681565b60105481565b610d94611c4f565b60004790506000610da3611285565b73ffffffffffffffffffffffffffffffffffffffff1682604051610dc690613ff0565b60006040518083038185875af1925050503d8060008114610e03576040519150601f19603f3d011682016040523d82523d6000602084013e610e08565b606091505b5050905080610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390614051565b60405180910390fd5b5050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610eaa57610e8d33611ec1565b610ea957610e99611f0d565b15610ea857610ea733611f24565b5b5b5b610eb58484846123e1565b50505050565b610ec3611c4f565b80600d8190555050565b600f60009054906101000a900460ff1681565b610ee8611c4f565b80600c9080519060200190610efe92919061304f565b5050565b6060600083839050905060008167ffffffffffffffff811115610f2857610f27613484565b5b604051908082528060200260200182016040528015610f6157816020015b610f4e6130d5565b815260200190600190039081610f465790505b50905060005b828114610fb957610f90868683818110610f8457610f83614071565b5b90506020020135611796565b828281518110610fa357610fa2614071565b5b6020026020010181905250806001019050610f67565b50809250505092915050565b601160019054906101000a900460ff1681565b610fe0611c4f565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b600061101782612401565b9050919050565b611026611c4f565b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611097576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110f0611c4f565b6110fa60006124cd565b565b611104611c4f565b8060108190555050565b611116611c4f565b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b6060600080600061115285611030565b905060008167ffffffffffffffff8111156111705761116f613484565b5b60405190808252806020026020018201604052801561119e5781602001602082028036833780820191505090505b5090506111a96130d5565b60006111b36120ac565b90505b838614611277576111c681612591565b9150816040015161126c57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461121157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361126b578083878060010198508151811061125e5761125d614071565b5b6020026020010181815250505b5b8060010190506111b6565b508195505050505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546112bd90613ea5565b80601f01602080910402602001604051908101604052809291908181526020018280546112e990613ea5565b80156113365780601f1061130b57610100808354040283529160200191611336565b820191906000526020600020905b81548152906001019060200180831161131957829003601f168201915b5050505050905090565b606081831061137b576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806113866125bc565b90506113906120ac565b8510156113a25761139f6120ac565b94505b808411156113ae578093505b60006113b987611030565b9050848610156113dc5760008686039050818110156113d6578091505b506113e1565b600090505b60008167ffffffffffffffff8111156113fd576113fc613484565b5b60405190808252806020026020018201604052801561142b5781602001602082028036833780820191505090505b509050600082036114425780945050505050611545565b600061144d88611796565b90506000816040015161146257816000015190505b60008990505b8881141580156114785750848714155b156115375761148681612591565b9250826040015161152c57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146114d157826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361152b578084888060010199508151811061151e5761151d614071565b5b6020026020010181815250505b5b806001019050611468565b508583528296505050505050505b9392505050565b8161155681611ec1565b61157257611562611f0d565b156115715761157081611f24565b5b5b61157c83836125c6565b505050565b601160009054906101000a900460ff1615611609576115c981601054336040516020016115ae91906140e8565b604051602081830303815290604052805190602001206126d1565b611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff9061414f565b60405180910390fd5b5b60006116136126e8565b9050600e54600182611625919061416f565b1115611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90614211565b60405180910390fd5b600d5434146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a19061427d565b60405180910390fd5b60006116b5336126fb565b146116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ec906142e9565b60405180910390fd5b611700336001612752565b5050565b61170c611c4f565b80600b60006101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117835761176633611ec1565b61178257611772611f0d565b156117815761178033611f24565b5b5b5b61178f8585858561290e565b5050505050565b61179e6130d5565b6117a66130d5565b6117ae6120ac565b8310806117c257506117be6125bc565b8310155b156117d057809150506117fb565b6117d983612591565b90508060400151156117ee57809150506117fb565b6117f783612981565b9150505b919050565b606061180b82611e62565b61184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184190614355565b60405180910390fd5b60006118546129a1565b9050600f60009054906101000a900460ff16156118bc57600081511161188957604051806020016040528060008152506118b4565b8061189384612a33565b6040516020016118a49291906143fd565b6040516020818303038152906040525b9150506118ff565b60008151116118da57604051806020016040528060008152506118fb565b806040516020016118eb919061442c565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119a6611c4f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c906144b5565b60405180910390fd5b611a1e816124cd565b50565b611a29611c4f565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611a69919061341f565b602060405180830381865afa158015611a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aaa91906144ea565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611ae79291906136b5565b6020604051808303816000875af1158015611b06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2a919061452c565b50505050565b600b60009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b9e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611bce5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c485750611c4782612b01565b5b9050919050565b611c57612b6b565b73ffffffffffffffffffffffffffffffffffffffff16611c75611285565b73ffffffffffffffffffffffffffffffffffffffff1614611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc2906145a5565b60405180910390fd5b565b611cd56123d7565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90614637565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d99906146a3565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611e6d6120ac565b11158015611e7c575060015482105b8015611eba575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b6000731e0049783f008a0085193e00003d00cd54003c7173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b6000600b60009054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611f60573d6000803e3d6000fd5b6000603a5250565b6000611f738261100c565b90508073ffffffffffffffffffffffffffffffffffffffff16611f94612b73565b73ffffffffffffffffffffffffffffffffffffffff1614611ff757611fc081611fbb612b73565b61190a565b611ff6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006120c082612401565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612127576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061213384612b7b565b915091506121498187612144612b73565b612ba2565b6121955761215e86612159612b73565b61190a565b612194576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036121fb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122088686866001612be6565b801561221357600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506122e1856122bd888887612bec565b7c020000000000000000000000000000000000000000000000000000000017612c14565b600560008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036123675760006001850190506000600560008381526020019081526020016000205403612365576001548114612364578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123cf8686866001612c3f565b505050505050565b6000612710905090565b6123fc83838360405180602001604052806000815250611729565b505050565b600080829050806124106120ac565b11612496576001548110156124955760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612493575b6000810361248957600560008360019003935083815260200190815260200160002054905061245f565b80925050506124c8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125996130d5565b6125b56005600084815260200190815260200160002054612c45565b9050919050565b6000600154905090565b80600860006125d3612b73565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612680612b73565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126c591906131f5565b60405180910390a35050565b6000826126de8584612cfb565b1490509392505050565b60006126f26120ac565b60015403905090565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600154905060008203612793576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127a06000848385612be6565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612817836128086000866000612bec565b61281185612d51565b17612c14565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146128b857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061287d565b50600082036128f3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506129096000848385612c3f565b505050565b612919848484610b1e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461297b5761294484848484612d61565b61297a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6129896130d5565b61299a61299583612401565b612c45565b9050919050565b6060600c80546129b090613ea5565b80601f01602080910402602001604051908101604052809291908181526020018280546129dc90613ea5565b8015612a295780601f106129fe57610100808354040283529160200191612a29565b820191906000526020600020905b815481529060010190602001808311612a0c57829003601f168201915b5050505050905090565b606060006001612a4284612eb1565b01905060008167ffffffffffffffff811115612a6157612a60613484565b5b6040519080825280601f01601f191660200182016040528015612a935781602001600182028036833780820191505090505b509050600082602001820190505b600115612af6578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612aea57612ae9613f5f565b5b04945060008503612aa1575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612c03868684613004565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612c4d6130d5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b8451811015612d4657612d3182868381518110612d2457612d23614071565b5b602002602001015161300d565b91508080612d3e906146c3565b915050612d04565b508091505092915050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d87612b73565b8786866040518563ffffffff1660e01b8152600401612da99493929190614760565b6020604051808303816000875af1925050508015612de557506040513d601f19601f82011682018060405250810190612de291906147c1565b60015b612e5e573d8060008114612e15576040519150601f19603f3d011682016040523d82523d6000602084013e612e1a565b606091505b506000815103612e56576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612f0f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612f0557612f04613f5f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612f4c576d04ee2d6d415b85acef81000000008381612f4257612f41613f5f565b5b0492506020810190505b662386f26fc100008310612f7b57662386f26fc100008381612f7157612f70613f5f565b5b0492506010810190505b6305f5e1008310612fa4576305f5e1008381612f9a57612f99613f5f565b5b0492506008810190505b6127108310612fc9576127108381612fbf57612fbe613f5f565b5b0492506004810190505b60648310612fec5760648381612fe257612fe1613f5f565b5b0492506002810190505b600a8310612ffb576001810190505b80915050919050565b60009392505050565b6000818310613025576130208284613038565b613030565b61302f8383613038565b5b905092915050565b600082600052816020526040600020905092915050565b82805461305b90613ea5565b90600052602060002090601f01602090048101928261307d57600085556130c4565b82601f1061309657805160ff19168380011785556130c4565b828001600101855582156130c4579182015b828111156130c35782518255916020019190600101906130a8565b5b5090506130d19190613124565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561313d576000816000905550600101613125565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61318a81613155565b811461319557600080fd5b50565b6000813590506131a781613181565b92915050565b6000602082840312156131c3576131c261314b565b5b60006131d184828501613198565b91505092915050565b60008115159050919050565b6131ef816131da565b82525050565b600060208201905061320a60008301846131e6565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061323b82613210565b9050919050565b61324b81613230565b811461325657600080fd5b50565b60008135905061326881613242565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61328f8161326e565b811461329a57600080fd5b50565b6000813590506132ac81613286565b92915050565b600080604083850312156132c9576132c861314b565b5b60006132d785828601613259565b92505060206132e88582860161329d565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561332c578082015181840152602081019050613311565b8381111561333b576000848401525b50505050565b6000601f19601f8301169050919050565b600061335d826132f2565b61336781856132fd565b935061337781856020860161330e565b61338081613341565b840191505092915050565b600060208201905081810360008301526133a58184613352565b905092915050565b6000819050919050565b6133c0816133ad565b81146133cb57600080fd5b50565b6000813590506133dd816133b7565b92915050565b6000602082840312156133f9576133f861314b565b5b6000613407848285016133ce565b91505092915050565b61341981613230565b82525050565b60006020820190506134346000830184613410565b92915050565b600080604083850312156134515761345061314b565b5b600061345f85828601613259565b9250506020613470858286016133ce565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134bc82613341565b810181811067ffffffffffffffff821117156134db576134da613484565b5b80604052505050565b60006134ee613141565b90506134fa82826134b3565b919050565b600067ffffffffffffffff82111561351a57613519613484565b5b61352382613341565b9050602081019050919050565b82818337600083830152505050565b600061355261354d846134ff565b6134e4565b90508281526020810184848401111561356e5761356d61347f565b5b613579848285613530565b509392505050565b600082601f8301126135965761359561347a565b5b81356135a684826020860161353f565b91505092915050565b6000602082840312156135c5576135c461314b565b5b600082013567ffffffffffffffff8111156135e3576135e2613150565b5b6135ef84828501613581565b91505092915050565b613601816133ad565b82525050565b600060208201905061361c60008301846135f8565b92915050565b60008060006060848603121561363b5761363a61314b565b5b600061364986828701613259565b935050602061365a86828701613259565b925050604061366b868287016133ce565b9150509250925092565b6000806040838503121561368c5761368b61314b565b5b600061369a858286016133ce565b92505060206136ab858286016133ce565b9150509250929050565b60006040820190506136ca6000830185613410565b6136d760208301846135f8565b9392505050565b6000819050919050565b6136f1816136de565b82525050565b600060208201905061370c60008301846136e8565b92915050565b600080fd5b600080fd5b60008083601f8401126137325761373161347a565b5b8235905067ffffffffffffffff81111561374f5761374e613712565b5b60208301915083602082028301111561376b5761376a613717565b5b9250929050565b600080602083850312156137895761378861314b565b5b600083013567ffffffffffffffff8111156137a7576137a6613150565b5b6137b38582860161371c565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6137f481613230565b82525050565b600067ffffffffffffffff82169050919050565b613817816137fa565b82525050565b613826816131da565b82525050565b600062ffffff82169050919050565b6138448161382c565b82525050565b60808201600082015161386060008501826137eb565b506020820151613873602085018261380e565b506040820151613886604085018261381d565b506060820151613899606085018261383b565b50505050565b60006138ab838361384a565b60808301905092915050565b6000602082019050919050565b60006138cf826137bf565b6138d981856137ca565b93506138e4836137db565b8060005b838110156139155781516138fc888261389f565b9750613907836138b7565b9250506001810190506138e8565b5085935050505092915050565b6000602082019050818103600083015261393c81846138c4565b905092915050565b60006020828403121561395a5761395961314b565b5b600061396884828501613259565b91505092915050565b61397a816136de565b811461398557600080fd5b50565b60008135905061399781613971565b92915050565b6000602082840312156139b3576139b261314b565b5b60006139c184828501613988565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139ff816133ad565b82525050565b6000613a1183836139f6565b60208301905092915050565b6000602082019050919050565b6000613a35826139ca565b613a3f81856139d5565b9350613a4a836139e6565b8060005b83811015613a7b578151613a628882613a05565b9750613a6d83613a1d565b925050600181019050613a4e565b5085935050505092915050565b60006020820190508181036000830152613aa28184613a2a565b905092915050565b600080600060608486031215613ac357613ac261314b565b5b6000613ad186828701613259565b9350506020613ae2868287016133ce565b9250506040613af3868287016133ce565b9150509250925092565b613b06816131da565b8114613b1157600080fd5b50565b600081359050613b2381613afd565b92915050565b60008060408385031215613b4057613b3f61314b565b5b6000613b4e85828601613259565b9250506020613b5f85828601613b14565b9150509250929050565b600067ffffffffffffffff821115613b8457613b83613484565b5b602082029050602081019050919050565b6000613ba8613ba384613b69565b6134e4565b90508083825260208201905060208402830185811115613bcb57613bca613717565b5b835b81811015613bf45780613be08882613988565b845260208401935050602081019050613bcd565b5050509392505050565b600082601f830112613c1357613c1261347a565b5b8135613c23848260208601613b95565b91505092915050565b600060208284031215613c4257613c4161314b565b5b600082013567ffffffffffffffff811115613c6057613c5f613150565b5b613c6c84828501613bfe565b91505092915050565b600060208284031215613c8b57613c8a61314b565b5b6000613c9984828501613b14565b91505092915050565b600067ffffffffffffffff821115613cbd57613cbc613484565b5b613cc682613341565b9050602081019050919050565b6000613ce6613ce184613ca2565b6134e4565b905082815260208101848484011115613d0257613d0161347f565b5b613d0d848285613530565b509392505050565b600082601f830112613d2a57613d2961347a565b5b8135613d3a848260208601613cd3565b91505092915050565b60008060008060808587031215613d5d57613d5c61314b565b5b6000613d6b87828801613259565b9450506020613d7c87828801613259565b9350506040613d8d878288016133ce565b925050606085013567ffffffffffffffff811115613dae57613dad613150565b5b613dba87828801613d15565b91505092959194509250565b608082016000820151613ddc60008501826137eb565b506020820151613def602085018261380e565b506040820151613e02604085018261381d565b506060820151613e15606085018261383b565b50505050565b6000608082019050613e306000830184613dc6565b92915050565b60008060408385031215613e4d57613e4c61314b565b5b6000613e5b85828601613259565b9250506020613e6c85828601613259565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ebd57607f821691505b602082108103613ed057613ecf613e76565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f10826133ad565b9150613f1b836133ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f5457613f53613ed6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f99826133ad565b9150613fa4836133ad565b925082613fb457613fb3613f5f565b5b828204905092915050565b600081905092915050565b50565b6000613fda600083613fbf565b9150613fe582613fca565b600082019050919050565b6000613ffb82613fcd565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b600061403b6014836132fd565b915061404682614005565b602082019050919050565b6000602082019050818103600083015261406a8161402e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160601b9050919050565b60006140b8826140a0565b9050919050565b60006140ca826140ad565b9050919050565b6140e26140dd82613230565b6140bf565b82525050565b60006140f482846140d1565b60148201915081905092915050565b7f57616c6c6574206e6f742077686974656c69737465642e000000000000000000600082015250565b60006141396017836132fd565b915061414482614103565b602082019050919050565b600060208201905081810360008301526141688161412c565b9050919050565b600061417a826133ad565b9150614185836133ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141ba576141b9613ed6565b5b828201905092915050565b7f457863656564206d6178696d756d20737570706c790000000000000000000000600082015250565b60006141fb6015836132fd565b9150614206826141c5565b602082019050919050565b6000602082019050818103600083015261422a816141ee565b9050919050565b7f496e636f72726563742076616c75652073656e74000000000000000000000000600082015250565b60006142676014836132fd565b915061427282614231565b602082019050919050565b600060208201905081810360008301526142968161425a565b9050919050565b7f457863656564206d6178206d696e7461626c6520616d6f756e74000000000000600082015250565b60006142d3601a836132fd565b91506142de8261429d565b602082019050919050565b60006020820190508181036000830152614302816142c6565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b600061433f601f836132fd565b915061434a82614309565b602082019050919050565b6000602082019050818103600083015261436e81614332565b9050919050565b600081905092915050565b600061438b826132f2565b6143958185614375565b93506143a581856020860161330e565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006143e7600583614375565b91506143f2826143b1565b600582019050919050565b60006144098285614380565b91506144158284614380565b9150614420826143da565b91508190509392505050565b60006144388284614380565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061449f6026836132fd565b91506144aa82614443565b604082019050919050565b600060208201905081810360008301526144ce81614492565b9050919050565b6000815190506144e4816133b7565b92915050565b600060208284031215614500576144ff61314b565b5b600061450e848285016144d5565b91505092915050565b60008151905061452681613afd565b92915050565b6000602082840312156145425761454161314b565b5b600061455084828501614517565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061458f6020836132fd565b915061459a82614559565b602082019050919050565b600060208201905081810360008301526145be81614582565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614621602a836132fd565b915061462c826145c5565b604082019050919050565b6000602082019050818103600083015261465081614614565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061468d6019836132fd565b915061469882614657565b602082019050919050565b600060208201905081810360008301526146bc81614680565b9050919050565b60006146ce826133ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614700576146ff613ed6565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b60006147328261470b565b61473c8185614716565b935061474c81856020860161330e565b61475581613341565b840191505092915050565b60006080820190506147756000830187613410565b6147826020830186613410565b61478f60408301856135f8565b81810360608301526147a18184614727565b905095945050505050565b6000815190506147bb81613181565b92915050565b6000602082840312156147d7576147d661314b565b5b60006147e5848285016147ac565b9150509291505056fea26469706673582212200f0b2e8c92bd68676389ba61e0ab06edc37b54d4075481c9825e2bd6bc3da4f664736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a4450776a46556e6d6666557563586d57667a57314b4875774e4c597a63437633595a43644d7059384238590000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmZDPwjFUnmffUucXmWfzW1KHuwNLYzcCv3YZCdMpY8B8Y
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d5a4450776a46556e6d6666557563586d57667a57314b48
Arg [3] : 75774e4c597a63437633595a43644d7059384238590000000000000000000000
Deployed Bytecode Sourcemap
109361:7550:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115600:463;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;116071:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47485:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53976:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;114596:250;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;111739:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109629:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43236:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;114854:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10718:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;109899:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109835:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;113792:209;;;;;;;;;;;;;:::i;:::-;;115086:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110780:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109779:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111544:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81282:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109961:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110919:99;;;;;;;;;;;;;:::i;:::-;;48878:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111072:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44420:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104040:103;;;;;;;;;;;;;:::i;:::-;;111922:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110443:79;;;;;;;;;;;;;:::i;:::-;;85158:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103392:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47661:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82198:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;114368:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112142:652;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;116248:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;115326:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80695:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;112898:828;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109707:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54925:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104298:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;114137:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109510:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;115600:463;115729:4;115962:38;115988:11;115962:25;:38::i;:::-;:93;;;;116017:38;116043:11;116017:25;:38::i;:::-;115962:93;115942:113;;115600:463;;;:::o;116071:169::-;103278:13;:11;:13::i;:::-;116190:42:::1;116209:8;116219:12;116190:18;:42::i;:::-;116071:169:::0;;:::o;47485:100::-;47539:13;47572:5;47565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47485:100;:::o;53976:218::-;54052:7;54077:16;54085:7;54077;:16::i;:::-;54072:64;;54102:34;;;;;;;;;;;;;;54072:64;54156:15;:24;54172:7;54156:24;;;;;;;;;;;:30;;;;;;;;;;;;54149:37;;53976:218;;;:::o;114596:250::-;114780:8;3879:29;3899:8;3879:19;:29::i;:::-;3874:122;;3929:27;:25;:27::i;:::-;3925:59;;;3958:26;3975:8;3958:16;:26::i;:::-;3925:59;3874:122;114806:32:::1;114820:8;114830:7;114806:13;:32::i;:::-;114596:250:::0;;;:::o;111739:130::-;103278:13;:11;:13::i;:::-;111826:4:::1;111813:10;;:17;;;;;;;;;;;;;;;;;;111857:4;111841:13;:20;;;;;;;;;;;;:::i;:::-;;111739:130:::0;:::o;109629:31::-;;;;:::o;43236:323::-;43297:7;43525:15;:13;:15::i;:::-;43510:12;;43494:13;;:28;:46;43487:53;;43236:323;:::o;114854:224::-;115016:4;3522:10;3514:18;;:4;:18;;;3510:184;;3554:31;3574:10;3554:19;:31::i;:::-;3549:134;;3610:27;:25;:27::i;:::-;3606:61;;;3639:28;3656:10;3639:16;:28::i;:::-;3606:61;3549:134;3510:184;115033:37:::1;115052:4;115058:2;115062:7;115033:18;:37::i;:::-;114854:224:::0;;;;:::o;10718:442::-;10815:7;10824;10844:26;10873:17;:27;10891:8;10873:27;;;;;;;;;;;10844:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10945:1;10917:30;;:7;:16;;;:30;;;10913:92;;10974:19;10964:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10913:92;11017:21;11082:17;:15;:17::i;:::-;11041:58;;11055:7;:23;;;11042:36;;:10;:36;;;;:::i;:::-;11041:58;;;;:::i;:::-;11017:82;;11120:7;:16;;;11138:13;11112:40;;;;;;10718:442;;;;;:::o;109899:34::-;;;;;;;;;;;;;:::o;109835:25::-;;;;:::o;113792:209::-;103278:13;:11;:13::i;:::-;113840:14:::1;113857:21;113840:38;;113890:9;113913:7;:5;:7::i;:::-;113905:21;;113934:6;113905:40;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113889:56;;;113964:4;113956:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;113829:172;;113792:209::o:0;115086:232::-;115252:4;3522:10;3514:18;;:4;:18;;;3510:184;;3554:31;3574:10;3554:19;:31::i;:::-;3549:134;;3610:27;:25;:27::i;:::-;3606:61;;;3639:28;3656:10;3639:16;:28::i;:::-;3606:61;3549:134;3510:184;115269:41:::1;115292:4;115298:2;115302:7;115269:22;:41::i;:::-;115086:232:::0;;;;:::o;110780:82::-;103278:13;:11;:13::i;:::-;110849:5:::1;110842:4;:12;;;;110780:82:::0;:::o;109779:30::-;;;;;;;;;;;;;:::o;111544:98::-;103278:13;:11;:13::i;:::-;111630:4:::1;111614:13;:20;;;;;;;;;;;;:::i;:::-;;111544:98:::0;:::o;81282:528::-;81426:23;81492:22;81517:8;;:15;;81492:40;;81547:34;81605:14;81584:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;81547:73;;81640:9;81635:125;81656:14;81651:1;:19;81635:125;;81712:32;81732:8;;81741:1;81732:11;;;;;;;:::i;:::-;;;;;;;;81712:19;:32::i;:::-;81696:10;81707:1;81696:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;81672:3;;;;;81635:125;;;;81781:10;81774:17;;;;81282:528;;;;:::o;109961:25::-;;;;;;;;;;;;;:::o;110919:99::-;103278:13;:11;:13::i;:::-;110995:15:::1;;;;;;;;;;;110994:16;110976:15;;:34;;;;;;;;;;;;;;;;;;110919:99::o:0;48878:152::-;48950:7;48993:27;49012:7;48993:18;:27::i;:::-;48970:52;;48878:152;;;:::o;111072:102::-;103278:13;:11;:13::i;:::-;111156:10:::1;111144:9;:22;;;;111072:102:::0;:::o;44420:233::-;44492:7;44533:1;44516:19;;:5;:19;;;44512:60;;44544:28;;;;;;;;;;;;;;44512:60;38579:13;44590:18;:25;44609:5;44590:25;;;;;;;;;;;;;;;;:55;44583:62;;44420:233;;;:::o;104040:103::-;103278:13;:11;:13::i;:::-;104105:30:::1;104132:1;104105:18;:30::i;:::-;104040:103::o:0;111922:106::-;103278:13;:11;:13::i;:::-;112009:11:::1;111996:10;:24;;;;111922:106:::0;:::o;110443:79::-;103278:13;:11;:13::i;:::-;110508:6:::1;;;;;;;;;;;110507:7;110498:6;;:16;;;;;;;;;;;;;;;;;;110443:79::o:0;85158:900::-;85236:16;85290:19;85324:25;85364:22;85389:16;85399:5;85389:9;:16::i;:::-;85364:41;;85420:25;85462:14;85448:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85420:57;;85492:31;;:::i;:::-;85543:9;85555:15;:13;:15::i;:::-;85543:27;;85538:472;85587:14;85572:11;:29;85538:472;;85639:15;85652:1;85639:12;:15::i;:::-;85627:27;;85677:9;:16;;;85718:8;85673:73;85794:1;85768:28;;:9;:14;;;:28;;;85764:111;;85841:9;:14;;;85821:34;;85764:111;85918:5;85897:26;;:17;:26;;;85893:102;;85974:1;85948:8;85957:13;;;;;;85948:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;85893:102;85538:472;85603:3;;;;;85538:472;;;;86031:8;86024:15;;;;;;;85158:900;;;:::o;103392:87::-;103438:7;103465:6;;;;;;;;;;;103458:13;;103392:87;:::o;47661:104::-;47717:13;47750:7;47743:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47661:104;:::o;82198:2513::-;82341:16;82408:4;82399:5;:13;82395:45;;82421:19;;;;;;;;;;;;;;82395:45;82455:19;82489:17;82509:14;:12;:14::i;:::-;82489:34;;82609:15;:13;:15::i;:::-;82601:5;:23;82597:87;;;82653:15;:13;:15::i;:::-;82645:23;;82597:87;82760:9;82753:4;:16;82749:73;;;82797:9;82790:16;;82749:73;82836:25;82864:16;82874:5;82864:9;:16::i;:::-;82836:44;;83058:4;83050:5;:12;83046:278;;;83083:19;83112:5;83105:4;:12;83083:34;;83154:17;83140:11;:31;83136:111;;;83216:11;83196:31;;83136:111;83064:198;83046:278;;;83307:1;83287:21;;83046:278;83338:25;83380:17;83366:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83338:60;;83438:1;83417:17;:22;83413:78;;83467:8;83460:15;;;;;;;;83413:78;83635:31;83669:26;83689:5;83669:19;:26::i;:::-;83635:60;;83710:25;83955:9;:16;;;83950:92;;84012:9;:14;;;83992:34;;83950:92;84061:9;84073:5;84061:17;;84056:478;84085:4;84080:1;:9;;:45;;;;;84108:17;84093:11;:32;;84080:45;84056:478;;;84163:15;84176:1;84163:12;:15::i;:::-;84151:27;;84201:9;:16;;;84242:8;84197:73;84318:1;84292:28;;:9;:14;;;:28;;;84288:111;;84365:9;:14;;;84345:34;;84288:111;84442:5;84421:26;;:17;:26;;;84417:102;;84498:1;84472:8;84481:13;;;;;;84472:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;84417:102;84056:478;84127:3;;;;;84056:478;;;;84636:11;84626:8;84619:29;84684:8;84677:15;;;;;;;;82198:2513;;;;;;:::o;114368:220::-;114516:8;3879:29;3899:8;3879:19;:29::i;:::-;3874:122;;3929:27;:25;:27::i;:::-;3925:59;;;3958:26;3975:8;3958:16;:26::i;:::-;3925:59;3874:122;114537:43:::1;114561:8;114571;114537:23;:43::i;:::-;114368:220:::0;;;:::o;112142:652::-;112213:15;;;;;;;;;;;112209:294;;;112271:161;112312:6;112341:10;;112401;112384:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;112374:39;;;;;;112271:18;:161::i;:::-;112245:246;;;;;;;;;;;;:::i;:::-;;;;;;;;;112209:294;112515:14;112532;:12;:14::i;:::-;112515:31;;112579:9;;112574:1;112565:6;:10;;;;:::i;:::-;:23;;112557:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;112646:4;;112633:9;:17;112625:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;112723:1;112694:25;112708:10;112694:13;:25::i;:::-;:30;112686:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;112766:20;112772:10;112784:1;112766:5;:20::i;:::-;112198:596;112142:652;:::o;116248:117::-;103278:13;:11;:13::i;:::-;116352:5:::1;116325:24;;:32;;;;;;;;;;;;;;;;;;116248:117:::0;:::o;115326:266::-;115520:4;3522:10;3514:18;;:4;:18;;;3510:184;;3554:31;3574:10;3554:19;:31::i;:::-;3549:134;;3610:27;:25;:27::i;:::-;3606:61;;;3639:28;3656:10;3639:16;:28::i;:::-;3606:61;3549:134;3510:184;115537:47:::1;115560:4;115566:2;115570:7;115579:4;115537:22;:47::i;:::-;115326:266:::0;;;;;:::o;80695:428::-;80779:21;;:::i;:::-;80813:31;;:::i;:::-;80869:15;:13;:15::i;:::-;80859:7;:25;:54;;;;80899:14;:12;:14::i;:::-;80888:7;:25;;80859:54;80855:103;;;80937:9;80930:16;;;;;80855:103;80980:21;80993:7;80980:12;:21::i;:::-;80968:33;;81016:9;:16;;;81012:65;;;81056:9;81049:16;;;;;81012:65;81094:21;81107:7;81094:12;:21::i;:::-;81087:28;;;80695:428;;;;:::o;112898:828::-;113006:13;113040:16;113048:7;113040;:16::i;:::-;113032:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;113103:28;113134:10;:8;:10::i;:::-;113103:41;;113161:10;;;;;;;;;;;113157:562;;;113241:1;113216:14;113210:28;:32;:320;;;;;;;;;;;;;;;;;113346:14;113391:25;113408:7;113391:16;:25::i;:::-;113299:182;;;;;;;;;:::i;:::-;;;;;;;;;;;;;113210:320;113186:344;;;;;113157:562;113616:1;113591:14;113585:28;:32;:122;;;;;;;;;;;;;;;;;113665:14;113648:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;113585:122;113561:146;;;112898:828;;;;:::o;109707:30::-;;;;:::o;54925:164::-;55022:4;55046:18;:25;55065:5;55046:25;;;;;;;;;;;;;;;:35;55072:8;55046:35;;;;;;;;;;;;;;;;;;;;;;;;;55039:42;;54925:164;;;;:::o;104298:201::-;103278:13;:11;:13::i;:::-;104407:1:::1;104387:22;;:8;:22;;::::0;104379:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;104463:28;104482:8;104463:18;:28::i;:::-;104298:201:::0;:::o;114137:223::-;103278:13;:11;:13::i;:::-;114211:12:::1;114233:13;114211:36;;114258:15;114276:5;:15;;;114300:4;114276:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;114258:48;;114317:5;:14;;;114332:10;114344:7;114317:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;114200:160;;114137:223:::0;:::o;109510:36::-;;;;;;;;;;;;;:::o;46583:639::-;46668:4;47007:10;46992:25;;:11;:25;;;;:102;;;;47084:10;47069:25;;:11;:25;;;;46992:102;:179;;;;47161:10;47146:25;;:11;:25;;;;46992:179;46972:199;;46583:639;;;:::o;10448:215::-;10550:4;10589:26;10574:41;;;:11;:41;;;;:81;;;;10619:36;10643:11;10619:23;:36::i;:::-;10574:81;10567:88;;10448:215;;;:::o;103557:132::-;103632:12;:10;:12::i;:::-;103621:23;;:7;:5;:7::i;:::-;:23;;;103613:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;103557:132::o;11810:332::-;11929:17;:15;:17::i;:::-;11913:33;;:12;:33;;;;11905:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;12032:1;12012:22;;:8;:22;;;12004:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;12099:35;;;;;;;;12111:8;12099:35;;;;;;12121:12;12099:35;;;;;12077:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11810:332;;:::o;55347:282::-;55412:4;55468:7;55449:15;:13;:15::i;:::-;:26;;:66;;;;;55502:13;;55492:7;:23;55449:66;:153;;;;;55601:1;39355:8;55553:17;:26;55571:7;55553:26;;;;;;;;;;;;:44;:49;55449:153;55429:173;;55347:282;;;:::o;116506:402::-;116601:4;116857:42;116837:63;;:8;:63;;;116830:70;;116506:402;;;:::o;116373:125::-;116442:4;116466:24;;;;;;;;;;;116459:31;;116373:125;:::o;4112:1536::-;4505:22;4499:4;4492:36;4598:9;4592:4;4585:23;4673:8;4667:4;4660:22;4995:4;4968;4941;4914;4866:25;4838:5;4805:213;4777:451;;5148:16;5142:4;5136;5121:44;5196:16;5190:4;5183:30;4777:451;5628:1;5622:4;5615:15;4112:1536;:::o;53409:408::-;53498:13;53514:16;53522:7;53514;:16::i;:::-;53498:32;;53570:5;53547:28;;:19;:17;:19::i;:::-;:28;;;53543:175;;53595:44;53612:5;53619:19;:17;:19::i;:::-;53595:16;:44::i;:::-;53590:128;;53667:35;;;;;;;;;;;;;;53590:128;53543:175;53763:2;53730:15;:24;53746:7;53730:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;53801:7;53797:2;53781:28;;53790:5;53781:28;;;;;;;;;;;;53487:330;53409:408;;:::o;110589:101::-;110654:7;110681:1;110674:8;;110589:101;:::o;57615:2825::-;57757:27;57787;57806:7;57787:18;:27::i;:::-;57757:57;;57872:4;57831:45;;57847:19;57831:45;;;57827:86;;57885:28;;;;;;;;;;;;;;57827:86;57927:27;57956:23;57983:35;58010:7;57983:26;:35::i;:::-;57926:92;;;;58118:68;58143:15;58160:4;58166:19;:17;:19::i;:::-;58118:24;:68::i;:::-;58113:180;;58206:43;58223:4;58229:19;:17;:19::i;:::-;58206:16;:43::i;:::-;58201:92;;58258:35;;;;;;;;;;;;;;58201:92;58113:180;58324:1;58310:16;;:2;:16;;;58306:52;;58335:23;;;;;;;;;;;;;;58306:52;58371:43;58393:4;58399:2;58403:7;58412:1;58371:21;:43::i;:::-;58507:15;58504:160;;;58647:1;58626:19;58619:30;58504:160;59044:18;:24;59063:4;59044:24;;;;;;;;;;;;;;;;59042:26;;;;;;;;;;;;59113:18;:22;59132:2;59113:22;;;;;;;;;;;;;;;;59111:24;;;;;;;;;;;59435:146;59472:2;59521:45;59536:4;59542:2;59546:19;59521:14;:45::i;:::-;39635:8;59493:73;59435:18;:146::i;:::-;59406:17;:26;59424:7;59406:26;;;;;;;;;;;:175;;;;59752:1;39635:8;59701:19;:47;:52;59697:627;;59774:19;59806:1;59796:7;:11;59774:33;;59963:1;59929:17;:30;59947:11;59929:30;;;;;;;;;;;;:35;59925:384;;60067:13;;60052:11;:28;60048:242;;60247:19;60214:17;:30;60232:11;60214:30;;;;;;;;;;;:52;;;;60048:242;59925:384;59755:569;59697:627;60371:7;60367:2;60352:27;;60361:4;60352:27;;;;;;;;;;;;60390:42;60411:4;60417:2;60421:7;60430:1;60390:20;:42::i;:::-;57746:2694;;;57615:2825;;;:::o;11442:97::-;11500:6;11526:5;11519:12;;11442:97;:::o;60536:193::-;60682:39;60699:4;60705:2;60709:7;60682:39;;;;;;;;;;;;:16;:39::i;:::-;60536:193;;;:::o;50033:1275::-;50100:7;50120:12;50135:7;50120:22;;50203:4;50184:15;:13;:15::i;:::-;:23;50180:1061;;50237:13;;50230:4;:20;50226:1015;;;50275:14;50292:17;:23;50310:4;50292:23;;;;;;;;;;;;50275:40;;50409:1;39355:8;50381:6;:24;:29;50377:845;;51046:113;51063:1;51053:6;:11;51046:113;;51106:17;:25;51124:6;;;;;;;51106:25;;;;;;;;;;;;51097:34;;51046:113;;;51192:6;51185:13;;;;;;50377:845;50252:989;50226:1015;50180:1061;51269:31;;;;;;;;;;;;;;50033:1275;;;;:::o;104659:191::-;104733:16;104752:6;;;;;;;;;;;104733:25;;104778:8;104769:6;;:17;;;;;;;;;;;;;;;;;;104833:8;104802:40;;104823:8;104802:40;;;;;;;;;;;;104722:128;104659:191;:::o;49481:161::-;49549:21;;:::i;:::-;49590:44;49609:17;:24;49627:5;49609:24;;;;;;;;;;;;49590:18;:44::i;:::-;49583:51;;49481:161;;;:::o;42923:103::-;42978:7;43005:13;;42998:20;;42923:103;:::o;54534:234::-;54681:8;54629:18;:39;54648:19;:17;:19::i;:::-;54629:39;;;;;;;;;;;;;;;:49;54669:8;54629:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;54741:8;54705:55;;54720:19;:17;:19::i;:::-;54705:55;;;54751:8;54705:55;;;;;;:::i;:::-;;;;;;;;54534:234;;:::o;14437:190::-;14562:4;14615;14586:25;14599:5;14606:4;14586:12;:25::i;:::-;:33;14579:40;;14437:190;;;;;:::o;43657:296::-;43712:7;43919:15;:13;:15::i;:::-;43903:13;;:31;43896:38;;43657:296;:::o;44735:178::-;44796:7;38579:13;38717:2;44824:18;:25;44843:5;44824:25;;;;;;;;;;;;;;;;:50;;44823:82;44816:89;;44735:178;;;:::o;64996:2966::-;65069:20;65092:13;;65069:36;;65132:1;65120:8;:13;65116:44;;65142:18;;;;;;;;;;;;;;65116:44;65173:61;65203:1;65207:2;65211:12;65225:8;65173:21;:61::i;:::-;65717:1;38717:2;65687:1;:26;;65686:32;65674:8;:45;65648:18;:22;65667:2;65648:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;65996:139;66033:2;66087:33;66110:1;66114:2;66118:1;66087:14;:33::i;:::-;66054:30;66075:8;66054:20;:30::i;:::-;:66;65996:18;:139::i;:::-;65962:17;:31;65980:12;65962:31;;;;;;;;;;;:173;;;;66152:16;66183:11;66212:8;66197:12;:23;66183:37;;66733:16;66729:2;66725:25;66713:37;;67105:12;67065:8;67024:1;66962:25;66903:1;66842;66815:335;67476:1;67462:12;67458:20;67416:346;67517:3;67508:7;67505:16;67416:346;;67735:7;67725:8;67722:1;67695:25;67692:1;67689;67684:59;67570:1;67561:7;67557:15;67546:26;;67416:346;;;67420:77;67807:1;67795:8;:13;67791:45;;67817:19;;;;;;;;;;;;;;67791:45;67869:3;67853:13;:19;;;;65422:2462;;67894:60;67923:1;67927:2;67931:12;67945:8;67894:20;:60::i;:::-;65058:2904;64996:2966;;:::o;61327:407::-;61502:31;61515:4;61521:2;61525:7;61502:12;:31::i;:::-;61566:1;61548:2;:14;;;:19;61544:183;;61587:56;61618:4;61624:2;61628:7;61637:5;61587:30;:56::i;:::-;61582:145;;61671:40;;;;;;;;;;;;;;61582:145;61544:183;61327:407;;;;:::o;49219:166::-;49289:21;;:::i;:::-;49330:47;49349:27;49368:7;49349:18;:27::i;:::-;49330:18;:47::i;:::-;49323:54;;49219:166;;;:::o;111338:114::-;111398:13;111431;111424:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111338:114;:::o;99370:716::-;99426:13;99477:14;99514:1;99494:17;99505:5;99494:10;:17::i;:::-;:21;99477:38;;99530:20;99564:6;99553:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99530:41;;99586:11;99715:6;99711:2;99707:15;99699:6;99695:28;99688:35;;99752:288;99759:4;99752:288;;;99784:5;;;;;;;;99926:8;99921:2;99914:5;99910:14;99905:30;99900:3;99892:44;99982:2;99973:11;;;;;;:::i;:::-;;;;;100016:1;100007:5;:10;99752:288;100003:21;99752:288;100061:6;100054:13;;;;;99370:716;;;:::o;8000:157::-;8085:4;8124:25;8109:40;;;:11;:40;;;;8102:47;;8000:157;;;:::o;101943:98::-;101996:7;102023:10;102016:17;;101943:98;:::o;77655:105::-;77715:7;77742:10;77735:17;;77655:105;:::o;56510:485::-;56612:27;56641:23;56682:38;56723:15;:24;56739:7;56723:24;;;;;;;;;;;56682:65;;56900:18;56877:41;;56957:19;56951:26;56932:45;;56862:126;56510:485;;;:::o;55738:659::-;55887:11;56052:16;56045:5;56041:28;56032:37;;56212:16;56201:9;56197:32;56184:45;;56362:15;56351:9;56348:30;56340:5;56329:9;56326:20;56323:56;56313:66;;55738:659;;;;;:::o;62396:159::-;;;;;:::o;76964:311::-;77099:7;77119:16;39759:3;77145:19;:41;;77119:68;;39759:3;77213:31;77224:4;77230:2;77234:9;77213:10;:31::i;:::-;77205:40;;:62;;77198:69;;;76964:311;;;;;:::o;51856:450::-;51936:14;52104:16;52097:5;52093:28;52084:37;;52281:5;52267:11;52242:23;52238:41;52235:52;52228:5;52225:63;52215:73;;51856:450;;;;:::o;63220:158::-;;;;;:::o;51407:366::-;51473:31;;:::i;:::-;51550:6;51517:9;:14;;:41;;;;;;;;;;;39238:3;51603:6;:33;;51569:9;:24;;:68;;;;;;;;;;;51695:1;39355:8;51667:6;:24;:29;;51648:9;:16;;:48;;;;;;;;;;;39759:3;51736:6;:28;;51707:9;:19;;:58;;;;;;;;;;;51407:366;;;:::o;15304:296::-;15387:7;15407:20;15430:4;15407:27;;15450:9;15445:118;15469:5;:12;15465:1;:16;15445:118;;;15518:33;15528:12;15542:5;15548:1;15542:8;;;;;;;;:::i;:::-;;;;;;;;15518:9;:33::i;:::-;15503:48;;15483:3;;;;;:::i;:::-;;;;15445:118;;;;15580:12;15573:19;;;15304:296;;;;:::o;52408:324::-;52478:14;52711:1;52701:8;52698:15;52672:24;52668:46;52658:56;;52408:324;;;:::o;63818:716::-;63981:4;64027:2;64002:45;;;64048:19;:17;:19::i;:::-;64069:4;64075:7;64084:5;64002:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;63998:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64302:1;64285:6;:13;:18;64281:235;;64331:40;;;;;;;;;;;;;;64281:235;64474:6;64468:13;64459:6;64455:2;64451:15;64444:38;63998:529;64171:54;;;64161:64;;;:6;:64;;;;64154:71;;;63818:716;;;;;;:::o;96236:922::-;96289:7;96309:14;96326:1;96309:18;;96376:6;96367:5;:15;96363:102;;96412:6;96403:15;;;;;;:::i;:::-;;;;;96447:2;96437:12;;;;96363:102;96492:6;96483:5;:15;96479:102;;96528:6;96519:15;;;;;;:::i;:::-;;;;;96563:2;96553:12;;;;96479:102;96608:6;96599:5;:15;96595:102;;96644:6;96635:15;;;;;;:::i;:::-;;;;;96679:2;96669:12;;;;96595:102;96724:5;96715;:14;96711:99;;96759:5;96750:14;;;;;;:::i;:::-;;;;;96793:1;96783:11;;;;96711:99;96837:5;96828;:14;96824:99;;96872:5;96863:14;;;;;;:::i;:::-;;;;;96906:1;96896:11;;;;96824:99;96950:5;96941;:14;96937:99;;96985:5;96976:14;;;;;;:::i;:::-;;;;;97019:1;97009:11;;;;96937:99;97063:5;97054;:14;97050:66;;97099:1;97089:11;;;;97050:66;97144:6;97137:13;;;96236:922;;;:::o;76665:147::-;76802:6;76665:147;;;;;:::o;22344:149::-;22407:7;22438:1;22434;:5;:51;;22465:20;22480:1;22483;22465:14;:20::i;:::-;22434:51;;;22442:20;22457:1;22460;22442:14;:20::i;:::-;22434:51;22427:58;;22344:149;;;;:::o;22501:268::-;22569:13;22676:1;22670:4;22663:15;22705:1;22699:4;22692:15;22746:4;22740;22730:21;22721:30;;22501:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:307::-;3235:1;3245:113;3259:6;3256:1;3253:13;3245:113;;;3344:1;3339:3;3335:11;3329:18;3325:1;3320:3;3316:11;3309:39;3281:2;3278:1;3274:10;3269:15;;3245:113;;;3376:6;3373:1;3370:13;3367:101;;;3456:1;3447:6;3442:3;3438:16;3431:27;3367:101;3216:258;3167:307;;;:::o;3480:102::-;3521:6;3572:2;3568:7;3563:2;3556:5;3552:14;3548:28;3538:38;;3480:102;;;:::o;3588:364::-;3676:3;3704:39;3737:5;3704:39;:::i;:::-;3759:71;3823:6;3818:3;3759:71;:::i;:::-;3752:78;;3839:52;3884:6;3879:3;3872:4;3865:5;3861:16;3839:52;:::i;:::-;3916:29;3938:6;3916:29;:::i;:::-;3911:3;3907:39;3900:46;;3680:272;3588:364;;;;:::o;3958:313::-;4071:4;4109:2;4098:9;4094:18;4086:26;;4158:9;4152:4;4148:20;4144:1;4133:9;4129:17;4122:47;4186:78;4259:4;4250:6;4186:78;:::i;:::-;4178:86;;3958:313;;;;:::o;4277:77::-;4314:7;4343:5;4332:16;;4277:77;;;:::o;4360:122::-;4433:24;4451:5;4433:24;:::i;:::-;4426:5;4423:35;4413:63;;4472:1;4469;4462:12;4413:63;4360:122;:::o;4488:139::-;4534:5;4572:6;4559:20;4550:29;;4588:33;4615:5;4588:33;:::i;:::-;4488:139;;;;:::o;4633:329::-;4692:6;4741:2;4729:9;4720:7;4716:23;4712:32;4709:119;;;4747:79;;:::i;:::-;4709:119;4867:1;4892:53;4937:7;4928:6;4917:9;4913:22;4892:53;:::i;:::-;4882:63;;4838:117;4633:329;;;;:::o;4968:118::-;5055:24;5073:5;5055:24;:::i;:::-;5050:3;5043:37;4968:118;;:::o;5092:222::-;5185:4;5223:2;5212:9;5208:18;5200:26;;5236:71;5304:1;5293:9;5289:17;5280:6;5236:71;:::i;:::-;5092:222;;;;:::o;5320:474::-;5388:6;5396;5445:2;5433:9;5424:7;5420:23;5416:32;5413:119;;;5451:79;;:::i;:::-;5413:119;5571:1;5596:53;5641:7;5632:6;5621:9;5617:22;5596:53;:::i;:::-;5586:63;;5542:117;5698:2;5724:53;5769:7;5760:6;5749:9;5745:22;5724:53;:::i;:::-;5714:63;;5669:118;5320:474;;;;;:::o;5800:117::-;5909:1;5906;5899:12;5923:117;6032:1;6029;6022:12;6046:180;6094:77;6091:1;6084:88;6191:4;6188:1;6181:15;6215:4;6212:1;6205:15;6232:281;6315:27;6337:4;6315:27;:::i;:::-;6307:6;6303:40;6445:6;6433:10;6430:22;6409:18;6397:10;6394:34;6391:62;6388:88;;;6456:18;;:::i;:::-;6388:88;6496:10;6492:2;6485:22;6275:238;6232:281;;:::o;6519:129::-;6553:6;6580:20;;:::i;:::-;6570:30;;6609:33;6637:4;6629:6;6609:33;:::i;:::-;6519:129;;;:::o;6654:308::-;6716:4;6806:18;6798:6;6795:30;6792:56;;;6828:18;;:::i;:::-;6792:56;6866:29;6888:6;6866:29;:::i;:::-;6858:37;;6950:4;6944;6940:15;6932:23;;6654:308;;;:::o;6968:154::-;7052:6;7047:3;7042;7029:30;7114:1;7105:6;7100:3;7096:16;7089:27;6968:154;;;:::o;7128:412::-;7206:5;7231:66;7247:49;7289:6;7247:49;:::i;:::-;7231:66;:::i;:::-;7222:75;;7320:6;7313:5;7306:21;7358:4;7351:5;7347:16;7396:3;7387:6;7382:3;7378:16;7375:25;7372:112;;;7403:79;;:::i;:::-;7372:112;7493:41;7527:6;7522:3;7517;7493:41;:::i;:::-;7212:328;7128:412;;;;;:::o;7560:340::-;7616:5;7665:3;7658:4;7650:6;7646:17;7642:27;7632:122;;7673:79;;:::i;:::-;7632:122;7790:6;7777:20;7815:79;7890:3;7882:6;7875:4;7867:6;7863:17;7815:79;:::i;:::-;7806:88;;7622:278;7560:340;;;;:::o;7906:509::-;7975:6;8024:2;8012:9;8003:7;7999:23;7995:32;7992:119;;;8030:79;;:::i;:::-;7992:119;8178:1;8167:9;8163:17;8150:31;8208:18;8200:6;8197:30;8194:117;;;8230:79;;:::i;:::-;8194:117;8335:63;8390:7;8381:6;8370:9;8366:22;8335:63;:::i;:::-;8325:73;;8121:287;7906:509;;;;:::o;8421:118::-;8508:24;8526:5;8508:24;:::i;:::-;8503:3;8496:37;8421:118;;:::o;8545:222::-;8638:4;8676:2;8665:9;8661:18;8653:26;;8689:71;8757:1;8746:9;8742:17;8733:6;8689:71;:::i;:::-;8545:222;;;;:::o;8773:619::-;8850:6;8858;8866;8915:2;8903:9;8894:7;8890:23;8886:32;8883:119;;;8921:79;;:::i;:::-;8883:119;9041:1;9066:53;9111:7;9102:6;9091:9;9087:22;9066:53;:::i;:::-;9056:63;;9012:117;9168:2;9194:53;9239:7;9230:6;9219:9;9215:22;9194:53;:::i;:::-;9184:63;;9139:118;9296:2;9322:53;9367:7;9358:6;9347:9;9343:22;9322:53;:::i;:::-;9312:63;;9267:118;8773:619;;;;;:::o;9398:474::-;9466:6;9474;9523:2;9511:9;9502:7;9498:23;9494:32;9491:119;;;9529:79;;:::i;:::-;9491:119;9649:1;9674:53;9719:7;9710:6;9699:9;9695:22;9674:53;:::i;:::-;9664:63;;9620:117;9776:2;9802:53;9847:7;9838:6;9827:9;9823:22;9802:53;:::i;:::-;9792:63;;9747:118;9398:474;;;;;:::o;9878:332::-;9999:4;10037:2;10026:9;10022:18;10014:26;;10050:71;10118:1;10107:9;10103:17;10094:6;10050:71;:::i;:::-;10131:72;10199:2;10188:9;10184:18;10175:6;10131:72;:::i;:::-;9878:332;;;;;:::o;10216:77::-;10253:7;10282:5;10271:16;;10216:77;;;:::o;10299:118::-;10386:24;10404:5;10386:24;:::i;:::-;10381:3;10374:37;10299:118;;:::o;10423:222::-;10516:4;10554:2;10543:9;10539:18;10531:26;;10567:71;10635:1;10624:9;10620:17;10611:6;10567:71;:::i;:::-;10423:222;;;;:::o;10651:117::-;10760:1;10757;10750:12;10774:117;10883:1;10880;10873:12;10914:568;10987:8;10997:6;11047:3;11040:4;11032:6;11028:17;11024:27;11014:122;;11055:79;;:::i;:::-;11014:122;11168:6;11155:20;11145:30;;11198:18;11190:6;11187:30;11184:117;;;11220:79;;:::i;:::-;11184:117;11334:4;11326:6;11322:17;11310:29;;11388:3;11380:4;11372:6;11368:17;11358:8;11354:32;11351:41;11348:128;;;11395:79;;:::i;:::-;11348:128;10914:568;;;;;:::o;11488:559::-;11574:6;11582;11631:2;11619:9;11610:7;11606:23;11602:32;11599:119;;;11637:79;;:::i;:::-;11599:119;11785:1;11774:9;11770:17;11757:31;11815:18;11807:6;11804:30;11801:117;;;11837:79;;:::i;:::-;11801:117;11950:80;12022:7;12013:6;12002:9;11998:22;11950:80;:::i;:::-;11932:98;;;;11728:312;11488:559;;;;;:::o;12053:145::-;12151:6;12185:5;12179:12;12169:22;;12053:145;;;:::o;12204:215::-;12334:11;12368:6;12363:3;12356:19;12408:4;12403:3;12399:14;12384:29;;12204:215;;;;:::o;12425:163::-;12523:4;12546:3;12538:11;;12576:4;12571:3;12567:14;12559:22;;12425:163;;;:::o;12594:108::-;12671:24;12689:5;12671:24;:::i;:::-;12666:3;12659:37;12594:108;;:::o;12708:101::-;12744:7;12784:18;12777:5;12773:30;12762:41;;12708:101;;;:::o;12815:105::-;12890:23;12907:5;12890:23;:::i;:::-;12885:3;12878:36;12815:105;;:::o;12926:99::-;12997:21;13012:5;12997:21;:::i;:::-;12992:3;12985:34;12926:99;;:::o;13031:91::-;13067:7;13107:8;13100:5;13096:20;13085:31;;13031:91;;;:::o;13128:105::-;13203:23;13220:5;13203:23;:::i;:::-;13198:3;13191:36;13128:105;;:::o;13311:864::-;13460:4;13455:3;13451:14;13547:4;13540:5;13536:16;13530:23;13566:63;13623:4;13618:3;13614:14;13600:12;13566:63;:::i;:::-;13475:164;13731:4;13724:5;13720:16;13714:23;13750:61;13805:4;13800:3;13796:14;13782:12;13750:61;:::i;:::-;13649:172;13905:4;13898:5;13894:16;13888:23;13924:57;13975:4;13970:3;13966:14;13952:12;13924:57;:::i;:::-;13831:160;14078:4;14071:5;14067:16;14061:23;14097:61;14152:4;14147:3;14143:14;14129:12;14097:61;:::i;:::-;14001:167;13429:746;13311:864;;:::o;14181:303::-;14312:10;14333:108;14437:3;14429:6;14333:108;:::i;:::-;14473:4;14468:3;14464:14;14450:28;;14181:303;;;;:::o;14490:144::-;14591:4;14623;14618:3;14614:14;14606:22;;14490:144;;;:::o;14716:980::-;14897:3;14926:85;15005:5;14926:85;:::i;:::-;15027:117;15137:6;15132:3;15027:117;:::i;:::-;15020:124;;15168:87;15249:5;15168:87;:::i;:::-;15278:7;15309:1;15294:377;15319:6;15316:1;15313:13;15294:377;;;15395:6;15389:13;15422:125;15543:3;15528:13;15422:125;:::i;:::-;15415:132;;15570:91;15654:6;15570:91;:::i;:::-;15560:101;;15354:317;15341:1;15338;15334:9;15329:14;;15294:377;;;15298:14;15687:3;15680:10;;14902:794;;;14716:980;;;;:::o;15702:497::-;15907:4;15945:2;15934:9;15930:18;15922:26;;15994:9;15988:4;15984:20;15980:1;15969:9;15965:17;15958:47;16022:170;16187:4;16178:6;16022:170;:::i;:::-;16014:178;;15702:497;;;;:::o;16205:329::-;16264:6;16313:2;16301:9;16292:7;16288:23;16284:32;16281:119;;;16319:79;;:::i;:::-;16281:119;16439:1;16464:53;16509:7;16500:6;16489:9;16485:22;16464:53;:::i;:::-;16454:63;;16410:117;16205:329;;;;:::o;16540:122::-;16613:24;16631:5;16613:24;:::i;:::-;16606:5;16603:35;16593:63;;16652:1;16649;16642:12;16593:63;16540:122;:::o;16668:139::-;16714:5;16752:6;16739:20;16730:29;;16768:33;16795:5;16768:33;:::i;:::-;16668:139;;;;:::o;16813:329::-;16872:6;16921:2;16909:9;16900:7;16896:23;16892:32;16889:119;;;16927:79;;:::i;:::-;16889:119;17047:1;17072:53;17117:7;17108:6;17097:9;17093:22;17072:53;:::i;:::-;17062:63;;17018:117;16813:329;;;;:::o;17148:114::-;17215:6;17249:5;17243:12;17233:22;;17148:114;;;:::o;17268:184::-;17367:11;17401:6;17396:3;17389:19;17441:4;17436:3;17432:14;17417:29;;17268:184;;;;:::o;17458:132::-;17525:4;17548:3;17540:11;;17578:4;17573:3;17569:14;17561:22;;17458:132;;;:::o;17596:108::-;17673:24;17691:5;17673:24;:::i;:::-;17668:3;17661:37;17596:108;;:::o;17710:179::-;17779:10;17800:46;17842:3;17834:6;17800:46;:::i;:::-;17878:4;17873:3;17869:14;17855:28;;17710:179;;;;:::o;17895:113::-;17965:4;17997;17992:3;17988:14;17980:22;;17895:113;;;:::o;18044:732::-;18163:3;18192:54;18240:5;18192:54;:::i;:::-;18262:86;18341:6;18336:3;18262:86;:::i;:::-;18255:93;;18372:56;18422:5;18372:56;:::i;:::-;18451:7;18482:1;18467:284;18492:6;18489:1;18486:13;18467:284;;;18568:6;18562:13;18595:63;18654:3;18639:13;18595:63;:::i;:::-;18588:70;;18681:60;18734:6;18681:60;:::i;:::-;18671:70;;18527:224;18514:1;18511;18507:9;18502:14;;18467:284;;;18471:14;18767:3;18760:10;;18168:608;;;18044:732;;;;:::o;18782:373::-;18925:4;18963:2;18952:9;18948:18;18940:26;;19012:9;19006:4;19002:20;18998:1;18987:9;18983:17;18976:47;19040:108;19143:4;19134:6;19040:108;:::i;:::-;19032:116;;18782:373;;;;:::o;19161:619::-;19238:6;19246;19254;19303:2;19291:9;19282:7;19278:23;19274:32;19271:119;;;19309:79;;:::i;:::-;19271:119;19429:1;19454:53;19499:7;19490:6;19479:9;19475:22;19454:53;:::i;:::-;19444:63;;19400:117;19556:2;19582:53;19627:7;19618:6;19607:9;19603:22;19582:53;:::i;:::-;19572:63;;19527:118;19684:2;19710:53;19755:7;19746:6;19735:9;19731:22;19710:53;:::i;:::-;19700:63;;19655:118;19161:619;;;;;:::o;19786:116::-;19856:21;19871:5;19856:21;:::i;:::-;19849:5;19846:32;19836:60;;19892:1;19889;19882:12;19836:60;19786:116;:::o;19908:133::-;19951:5;19989:6;19976:20;19967:29;;20005:30;20029:5;20005:30;:::i;:::-;19908:133;;;;:::o;20047:468::-;20112:6;20120;20169:2;20157:9;20148:7;20144:23;20140:32;20137:119;;;20175:79;;:::i;:::-;20137:119;20295:1;20320:53;20365:7;20356:6;20345:9;20341:22;20320:53;:::i;:::-;20310:63;;20266:117;20422:2;20448:50;20490:7;20481:6;20470:9;20466:22;20448:50;:::i;:::-;20438:60;;20393:115;20047:468;;;;;:::o;20521:311::-;20598:4;20688:18;20680:6;20677:30;20674:56;;;20710:18;;:::i;:::-;20674:56;20760:4;20752:6;20748:17;20740:25;;20820:4;20814;20810:15;20802:23;;20521:311;;;:::o;20855:710::-;20951:5;20976:81;20992:64;21049:6;20992:64;:::i;:::-;20976:81;:::i;:::-;20967:90;;21077:5;21106:6;21099:5;21092:21;21140:4;21133:5;21129:16;21122:23;;21193:4;21185:6;21181:17;21173:6;21169:30;21222:3;21214:6;21211:15;21208:122;;;21241:79;;:::i;:::-;21208:122;21356:6;21339:220;21373:6;21368:3;21365:15;21339:220;;;21448:3;21477:37;21510:3;21498:10;21477:37;:::i;:::-;21472:3;21465:50;21544:4;21539:3;21535:14;21528:21;;21415:144;21399:4;21394:3;21390:14;21383:21;;21339:220;;;21343:21;20957:608;;20855:710;;;;;:::o;21588:370::-;21659:5;21708:3;21701:4;21693:6;21689:17;21685:27;21675:122;;21716:79;;:::i;:::-;21675:122;21833:6;21820:20;21858:94;21948:3;21940:6;21933:4;21925:6;21921:17;21858:94;:::i;:::-;21849:103;;21665:293;21588:370;;;;:::o;21964:539::-;22048:6;22097:2;22085:9;22076:7;22072:23;22068:32;22065:119;;;22103:79;;:::i;:::-;22065:119;22251:1;22240:9;22236:17;22223:31;22281:18;22273:6;22270:30;22267:117;;;22303:79;;:::i;:::-;22267:117;22408:78;22478:7;22469:6;22458:9;22454:22;22408:78;:::i;:::-;22398:88;;22194:302;21964:539;;;;:::o;22509:323::-;22565:6;22614:2;22602:9;22593:7;22589:23;22585:32;22582:119;;;22620:79;;:::i;:::-;22582:119;22740:1;22765:50;22807:7;22798:6;22787:9;22783:22;22765:50;:::i;:::-;22755:60;;22711:114;22509:323;;;;:::o;22838:307::-;22899:4;22989:18;22981:6;22978:30;22975:56;;;23011:18;;:::i;:::-;22975:56;23049:29;23071:6;23049:29;:::i;:::-;23041:37;;23133:4;23127;23123:15;23115:23;;22838:307;;;:::o;23151:410::-;23228:5;23253:65;23269:48;23310:6;23269:48;:::i;:::-;23253:65;:::i;:::-;23244:74;;23341:6;23334:5;23327:21;23379:4;23372:5;23368:16;23417:3;23408:6;23403:3;23399:16;23396:25;23393:112;;;23424:79;;:::i;:::-;23393:112;23514:41;23548:6;23543:3;23538;23514:41;:::i;:::-;23234:327;23151:410;;;;;:::o;23580:338::-;23635:5;23684:3;23677:4;23669:6;23665:17;23661:27;23651:122;;23692:79;;:::i;:::-;23651:122;23809:6;23796:20;23834:78;23908:3;23900:6;23893:4;23885:6;23881:17;23834:78;:::i;:::-;23825:87;;23641:277;23580:338;;;;:::o;23924:943::-;24019:6;24027;24035;24043;24092:3;24080:9;24071:7;24067:23;24063:33;24060:120;;;24099:79;;:::i;:::-;24060:120;24219:1;24244:53;24289:7;24280:6;24269:9;24265:22;24244:53;:::i;:::-;24234:63;;24190:117;24346:2;24372:53;24417:7;24408:6;24397:9;24393:22;24372:53;:::i;:::-;24362:63;;24317:118;24474:2;24500:53;24545:7;24536:6;24525:9;24521:22;24500:53;:::i;:::-;24490:63;;24445:118;24630:2;24619:9;24615:18;24602:32;24661:18;24653:6;24650:30;24647:117;;;24683:79;;:::i;:::-;24647:117;24788:62;24842:7;24833:6;24822:9;24818:22;24788:62;:::i;:::-;24778:72;;24573:287;23924:943;;;;;;;:::o;24945:874::-;25104:4;25099:3;25095:14;25191:4;25184:5;25180:16;25174:23;25210:63;25267:4;25262:3;25258:14;25244:12;25210:63;:::i;:::-;25119:164;25375:4;25368:5;25364:16;25358:23;25394:61;25449:4;25444:3;25440:14;25426:12;25394:61;:::i;:::-;25293:172;25549:4;25542:5;25538:16;25532:23;25568:57;25619:4;25614:3;25610:14;25596:12;25568:57;:::i;:::-;25475:160;25722:4;25715:5;25711:16;25705:23;25741:61;25796:4;25791:3;25787:14;25773:12;25741:61;:::i;:::-;25645:167;25073:746;24945:874;;:::o;25825:347::-;25980:4;26018:3;26007:9;26003:19;25995:27;;26032:133;26162:1;26151:9;26147:17;26138:6;26032:133;:::i;:::-;25825:347;;;;:::o;26178:474::-;26246:6;26254;26303:2;26291:9;26282:7;26278:23;26274:32;26271:119;;;26309:79;;:::i;:::-;26271:119;26429:1;26454:53;26499:7;26490:6;26479:9;26475:22;26454:53;:::i;:::-;26444:63;;26400:117;26556:2;26582:53;26627:7;26618:6;26607:9;26603:22;26582:53;:::i;:::-;26572:63;;26527:118;26178:474;;;;;:::o;26658:180::-;26706:77;26703:1;26696:88;26803:4;26800:1;26793:15;26827:4;26824:1;26817:15;26844:320;26888:6;26925:1;26919:4;26915:12;26905:22;;26972:1;26966:4;26962:12;26993:18;26983:81;;27049:4;27041:6;27037:17;27027:27;;26983:81;27111:2;27103:6;27100:14;27080:18;27077:38;27074:84;;27130:18;;:::i;:::-;27074:84;26895:269;26844:320;;;:::o;27170:180::-;27218:77;27215:1;27208:88;27315:4;27312:1;27305:15;27339:4;27336:1;27329:15;27356:348;27396:7;27419:20;27437:1;27419:20;:::i;:::-;27414:25;;27453:20;27471:1;27453:20;:::i;:::-;27448:25;;27641:1;27573:66;27569:74;27566:1;27563:81;27558:1;27551:9;27544:17;27540:105;27537:131;;;27648:18;;:::i;:::-;27537:131;27696:1;27693;27689:9;27678:20;;27356:348;;;;:::o;27710:180::-;27758:77;27755:1;27748:88;27855:4;27852:1;27845:15;27879:4;27876:1;27869:15;27896:185;27936:1;27953:20;27971:1;27953:20;:::i;:::-;27948:25;;27987:20;28005:1;27987:20;:::i;:::-;27982:25;;28026:1;28016:35;;28031:18;;:::i;:::-;28016:35;28073:1;28070;28066:9;28061:14;;27896:185;;;;:::o;28087:147::-;28188:11;28225:3;28210:18;;28087:147;;;;:::o;28240:114::-;;:::o;28360:398::-;28519:3;28540:83;28621:1;28616:3;28540:83;:::i;:::-;28533:90;;28632:93;28721:3;28632:93;:::i;:::-;28750:1;28745:3;28741:11;28734:18;;28360:398;;;:::o;28764:379::-;28948:3;28970:147;29113:3;28970:147;:::i;:::-;28963:154;;29134:3;29127:10;;28764:379;;;:::o;29149:170::-;29289:22;29285:1;29277:6;29273:14;29266:46;29149:170;:::o;29325:366::-;29467:3;29488:67;29552:2;29547:3;29488:67;:::i;:::-;29481:74;;29564:93;29653:3;29564:93;:::i;:::-;29682:2;29677:3;29673:12;29666:19;;29325:366;;;:::o;29697:419::-;29863:4;29901:2;29890:9;29886:18;29878:26;;29950:9;29944:4;29940:20;29936:1;29925:9;29921:17;29914:47;29978:131;30104:4;29978:131;:::i;:::-;29970:139;;29697:419;;;:::o;30122:180::-;30170:77;30167:1;30160:88;30267:4;30264:1;30257:15;30291:4;30288:1;30281:15;30308:94;30341:8;30389:5;30385:2;30381:14;30360:35;;30308:94;;;:::o;30408:::-;30447:7;30476:20;30490:5;30476:20;:::i;:::-;30465:31;;30408:94;;;:::o;30508:100::-;30547:7;30576:26;30596:5;30576:26;:::i;:::-;30565:37;;30508:100;;;:::o;30614:157::-;30719:45;30739:24;30757:5;30739:24;:::i;:::-;30719:45;:::i;:::-;30714:3;30707:58;30614:157;;:::o;30777:256::-;30889:3;30904:75;30975:3;30966:6;30904:75;:::i;:::-;31004:2;30999:3;30995:12;30988:19;;31024:3;31017:10;;30777:256;;;;:::o;31039:173::-;31179:25;31175:1;31167:6;31163:14;31156:49;31039:173;:::o;31218:366::-;31360:3;31381:67;31445:2;31440:3;31381:67;:::i;:::-;31374:74;;31457:93;31546:3;31457:93;:::i;:::-;31575:2;31570:3;31566:12;31559:19;;31218:366;;;:::o;31590:419::-;31756:4;31794:2;31783:9;31779:18;31771:26;;31843:9;31837:4;31833:20;31829:1;31818:9;31814:17;31807:47;31871:131;31997:4;31871:131;:::i;:::-;31863:139;;31590:419;;;:::o;32015:305::-;32055:3;32074:20;32092:1;32074:20;:::i;:::-;32069:25;;32108:20;32126:1;32108:20;:::i;:::-;32103:25;;32262:1;32194:66;32190:74;32187:1;32184:81;32181:107;;;32268:18;;:::i;:::-;32181:107;32312:1;32309;32305:9;32298:16;;32015:305;;;;:::o;32326:171::-;32466:23;32462:1;32454:6;32450:14;32443:47;32326:171;:::o;32503:366::-;32645:3;32666:67;32730:2;32725:3;32666:67;:::i;:::-;32659:74;;32742:93;32831:3;32742:93;:::i;:::-;32860:2;32855:3;32851:12;32844:19;;32503:366;;;:::o;32875:419::-;33041:4;33079:2;33068:9;33064:18;33056:26;;33128:9;33122:4;33118:20;33114:1;33103:9;33099:17;33092:47;33156:131;33282:4;33156:131;:::i;:::-;33148:139;;32875:419;;;:::o;33300:170::-;33440:22;33436:1;33428:6;33424:14;33417:46;33300:170;:::o;33476:366::-;33618:3;33639:67;33703:2;33698:3;33639:67;:::i;:::-;33632:74;;33715:93;33804:3;33715:93;:::i;:::-;33833:2;33828:3;33824:12;33817:19;;33476:366;;;:::o;33848:419::-;34014:4;34052:2;34041:9;34037:18;34029:26;;34101:9;34095:4;34091:20;34087:1;34076:9;34072:17;34065:47;34129:131;34255:4;34129:131;:::i;:::-;34121:139;;33848:419;;;:::o;34273:176::-;34413:28;34409:1;34401:6;34397:14;34390:52;34273:176;:::o;34455:366::-;34597:3;34618:67;34682:2;34677:3;34618:67;:::i;:::-;34611:74;;34694:93;34783:3;34694:93;:::i;:::-;34812:2;34807:3;34803:12;34796:19;;34455:366;;;:::o;34827:419::-;34993:4;35031:2;35020:9;35016:18;35008:26;;35080:9;35074:4;35070:20;35066:1;35055:9;35051:17;35044:47;35108:131;35234:4;35108:131;:::i;:::-;35100:139;;34827:419;;;:::o;35252:181::-;35392:33;35388:1;35380:6;35376:14;35369:57;35252:181;:::o;35439:366::-;35581:3;35602:67;35666:2;35661:3;35602:67;:::i;:::-;35595:74;;35678:93;35767:3;35678:93;:::i;:::-;35796:2;35791:3;35787:12;35780:19;;35439:366;;;:::o;35811:419::-;35977:4;36015:2;36004:9;36000:18;35992:26;;36064:9;36058:4;36054:20;36050:1;36039:9;36035:17;36028:47;36092:131;36218:4;36092:131;:::i;:::-;36084:139;;35811:419;;;:::o;36236:148::-;36338:11;36375:3;36360:18;;36236:148;;;;:::o;36390:377::-;36496:3;36524:39;36557:5;36524:39;:::i;:::-;36579:89;36661:6;36656:3;36579:89;:::i;:::-;36572:96;;36677:52;36722:6;36717:3;36710:4;36703:5;36699:16;36677:52;:::i;:::-;36754:6;36749:3;36745:16;36738:23;;36500:267;36390:377;;;;:::o;36773:155::-;36913:7;36909:1;36901:6;36897:14;36890:31;36773:155;:::o;36934:400::-;37094:3;37115:84;37197:1;37192:3;37115:84;:::i;:::-;37108:91;;37208:93;37297:3;37208:93;:::i;:::-;37326:1;37321:3;37317:11;37310:18;;36934:400;;;:::o;37340:701::-;37621:3;37643:95;37734:3;37725:6;37643:95;:::i;:::-;37636:102;;37755:95;37846:3;37837:6;37755:95;:::i;:::-;37748:102;;37867:148;38011:3;37867:148;:::i;:::-;37860:155;;38032:3;38025:10;;37340:701;;;;;:::o;38047:275::-;38179:3;38201:95;38292:3;38283:6;38201:95;:::i;:::-;38194:102;;38313:3;38306:10;;38047:275;;;;:::o;38328:225::-;38468:34;38464:1;38456:6;38452:14;38445:58;38537:8;38532:2;38524:6;38520:15;38513:33;38328:225;:::o;38559:366::-;38701:3;38722:67;38786:2;38781:3;38722:67;:::i;:::-;38715:74;;38798:93;38887:3;38798:93;:::i;:::-;38916:2;38911:3;38907:12;38900:19;;38559:366;;;:::o;38931:419::-;39097:4;39135:2;39124:9;39120:18;39112:26;;39184:9;39178:4;39174:20;39170:1;39159:9;39155:17;39148:47;39212:131;39338:4;39212:131;:::i;:::-;39204:139;;38931:419;;;:::o;39356:143::-;39413:5;39444:6;39438:13;39429:22;;39460:33;39487:5;39460:33;:::i;:::-;39356:143;;;;:::o;39505:351::-;39575:6;39624:2;39612:9;39603:7;39599:23;39595:32;39592:119;;;39630:79;;:::i;:::-;39592:119;39750:1;39775:64;39831:7;39822:6;39811:9;39807:22;39775:64;:::i;:::-;39765:74;;39721:128;39505:351;;;;:::o;39862:137::-;39916:5;39947:6;39941:13;39932:22;;39963:30;39987:5;39963:30;:::i;:::-;39862:137;;;;:::o;40005:345::-;40072:6;40121:2;40109:9;40100:7;40096:23;40092:32;40089:119;;;40127:79;;:::i;:::-;40089:119;40247:1;40272:61;40325:7;40316:6;40305:9;40301:22;40272:61;:::i;:::-;40262:71;;40218:125;40005:345;;;;:::o;40356:182::-;40496:34;40492:1;40484:6;40480:14;40473:58;40356:182;:::o;40544:366::-;40686:3;40707:67;40771:2;40766:3;40707:67;:::i;:::-;40700:74;;40783:93;40872:3;40783:93;:::i;:::-;40901:2;40896:3;40892:12;40885:19;;40544:366;;;:::o;40916:419::-;41082:4;41120:2;41109:9;41105:18;41097:26;;41169:9;41163:4;41159:20;41155:1;41144:9;41140:17;41133:47;41197:131;41323:4;41197:131;:::i;:::-;41189:139;;40916:419;;;:::o;41341:229::-;41481:34;41477:1;41469:6;41465:14;41458:58;41550:12;41545:2;41537:6;41533:15;41526:37;41341:229;:::o;41576:366::-;41718:3;41739:67;41803:2;41798:3;41739:67;:::i;:::-;41732:74;;41815:93;41904:3;41815:93;:::i;:::-;41933:2;41928:3;41924:12;41917:19;;41576:366;;;:::o;41948:419::-;42114:4;42152:2;42141:9;42137:18;42129:26;;42201:9;42195:4;42191:20;42187:1;42176:9;42172:17;42165:47;42229:131;42355:4;42229:131;:::i;:::-;42221:139;;41948:419;;;:::o;42373:175::-;42513:27;42509:1;42501:6;42497:14;42490:51;42373:175;:::o;42554:366::-;42696:3;42717:67;42781:2;42776:3;42717:67;:::i;:::-;42710:74;;42793:93;42882:3;42793:93;:::i;:::-;42911:2;42906:3;42902:12;42895:19;;42554:366;;;:::o;42926:419::-;43092:4;43130:2;43119:9;43115:18;43107:26;;43179:9;43173:4;43169:20;43165:1;43154:9;43150:17;43143:47;43207:131;43333:4;43207:131;:::i;:::-;43199:139;;42926:419;;;:::o;43351:233::-;43390:3;43413:24;43431:5;43413:24;:::i;:::-;43404:33;;43459:66;43452:5;43449:77;43446:103;;43529:18;;:::i;:::-;43446:103;43576:1;43569:5;43565:13;43558:20;;43351:233;;;:::o;43590:98::-;43641:6;43675:5;43669:12;43659:22;;43590:98;;;:::o;43694:168::-;43777:11;43811:6;43806:3;43799:19;43851:4;43846:3;43842:14;43827:29;;43694:168;;;;:::o;43868:360::-;43954:3;43982:38;44014:5;43982:38;:::i;:::-;44036:70;44099:6;44094:3;44036:70;:::i;:::-;44029:77;;44115:52;44160:6;44155:3;44148:4;44141:5;44137:16;44115:52;:::i;:::-;44192:29;44214:6;44192:29;:::i;:::-;44187:3;44183:39;44176:46;;43958:270;43868:360;;;;:::o;44234:640::-;44429:4;44467:3;44456:9;44452:19;44444:27;;44481:71;44549:1;44538:9;44534:17;44525:6;44481:71;:::i;:::-;44562:72;44630:2;44619:9;44615:18;44606:6;44562:72;:::i;:::-;44644;44712:2;44701:9;44697:18;44688:6;44644:72;:::i;:::-;44763:9;44757:4;44753:20;44748:2;44737:9;44733:18;44726:48;44791:76;44862:4;44853:6;44791:76;:::i;:::-;44783:84;;44234:640;;;;;;;:::o;44880:141::-;44936:5;44967:6;44961:13;44952:22;;44983:32;45009:5;44983:32;:::i;:::-;44880:141;;;;:::o;45027:349::-;45096:6;45145:2;45133:9;45124:7;45120:23;45116:32;45113:119;;;45151:79;;:::i;:::-;45113:119;45271:1;45296:63;45351:7;45342:6;45331:9;45327:22;45296:63;:::i;:::-;45286:73;;45242:127;45027:349;;;;:::o
Swarm Source
ipfs://0f0b2e8c92bd68676389ba61e0ab06edc37b54d4075481c9825e2bd6bc3da4f6
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.