Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Collection
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-31 */ // File: contracts\CollectionProxy\ProxyBaseStorage.sol pragma solidity ^0.8.0; /////////////////////////////////////////////////////////////////////////////////////////////////// /** * @title ProxyBaseStorage * @dev Defining base storage for the proxy contract. */ /////////////////////////////////////////////////////////////////////////////////////////////////// contract ProxyBaseStorage { //////////////////////////////////////////// VARS ///////////////////////////////////////////// // maps functions to the delegate contracts that execute the functions. // funcId => delegate contract mapping(bytes4 => address) public delegates; // array of function signatures supported by the contract. bytes[] public funcSignatures; // maps each function signature to its position in the funcSignatures array. // signature => index+1 mapping(bytes => uint256) internal funcSignatureToIndex; // proxy address of itself, can be used for cross-delegate calls but also safety checking. address proxy; /////////////////////////////////////////////////////////////////////////////////////////////// } // File: 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: 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 internal _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)) public _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 1; } /** * @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 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) revert OwnerQueryForNonexistentToken(); // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = _packedOwnerships[--tokenId]; } if (packed == 0) continue; return packed; } } // Otherwise, the data exists and is not burned. We can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. return packed; } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); 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, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve( address to, uint256 tokenId, bool approvalCheck ) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck) if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _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: contracts\OpenseaStandard\IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); } // File: contracts\OpenseaStandard\lib\Constants.sol pragma solidity ^0.8.13; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File: contracts\OpenseaStandard\OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: contracts\OpenseaStandard\DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // File: contracts\NFTLimit.sol pragma solidity ^0.8.13; abstract contract NFTLimit is ERC721A, DefaultOperatorFilterer { mapping(address => bool) public isTransferAllowed; mapping(uint256 => bool) public nftLock; modifier onlyTransferAllowed(address from) { require(isTransferAllowed[from],"ERC721: transfer not allowed"); _; } modifier isNFTLock(uint256 tokenId) { require(!nftLock[tokenId],"ERC721: NFT is locked"); _; } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { require(isTransferAllowed[operator],"ERC721: transfer not allowed"); super.setApprovalForAll(operator, approved); } // OpenSea Enforcer functions function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { require(isTransferAllowed[msg.sender],"ERC721: transfer not allowed"); require(!nftLock[tokenId],"ERC721: NFT is locked"); super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { require(isTransferAllowed[msg.sender],"ERC721: transfer not allowed"); require(!nftLock[tokenId],"ERC721: NFT is locked"); super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { require(isTransferAllowed[msg.sender],"ERC721: transfer not allowed"); require(!nftLock[tokenId],"ERC721: NFT is locked"); super.safeTransferFrom(from, to, tokenId, data); } } // File: contracts\CollectionProxy\CollectionStorage.sol pragma solidity ^0.8.13; contract CollectionStorage { // Counters.Counter tokenIds; string public baseURI; mapping(address => bool) public _allowAddress; mapping(uint256 => bytes32) internal whiteListRoot; uint256 internal MaxSupply; uint256 public status; uint256 internal mainPrice; address internal seller; uint256 internal royalty; uint256 public bundleId; uint256 public perPurchaseNFTToMint; uint256[] rarity; struct SaleDetail { uint256 startTime; uint256 endTime; uint256 price; } mapping (uint256=>SaleDetail) internal _saleDetails; mapping(address => mapping(uint256 => uint256)) internal userBought; mapping(uint256 => bool) internal isReserveWhitelist; mapping(uint256 => uint256) public reservedNFT; uint256 public perTransactionLimit; address internal gasCollector; } // 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: contracts\CollectionProxy\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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) internal { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin\contracts\utils\Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin\contracts\utils\Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin\contracts\utils\math\SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: contracts\MerkleProof.sol pragma solidity ^0.8.13; library MerkleProof { function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: contracts\Collection.sol pragma solidity ^0.8.13; /** > Collection @notice this contract is standard ERC721 to used as xanalia user's collection managing his NFTs */ contract Collection is ProxyBaseStorage, NFTLimit, Ownable, CollectionStorage{ using Strings for uint256; using SafeMath for uint256; using Address for address; using Strings for address; constructor() ERC721A("BDNABI", "BDN") { _setOwner(msg.sender); _allowAddress[msg.sender] = true; setAuthor(msg.sender); setTransferAllowed(msg.sender, true); baseURI = "https://testapi.xanalia.com/xanalia/get-nft-meta?tokenId="; } modifier isValid() { require(_allowAddress[msg.sender], "not authorize"); _; } function getUserBoughtCount( address _add, uint256 whitelistType) public view returns(uint256) { return userBought[_add][whitelistType]; } function isWhitelisted(address account, bytes32[] calldata proof, uint256 quantity, uint256 whiteListType) public view returns (bool) { return _verify(_leaf(account, quantity), proof, whiteListRoot[whiteListType]); } function _leaf(address account, uint256 quantity) public pure returns (bytes32) { return keccak256(abi.encode(account, quantity)); } function _verify(bytes32 leaf,bytes32[] memory proof,bytes32 root) internal pure returns (bool) { return MerkleProof.verify(proof, root, leaf); } /** @notice function resposible of minting new NFTs of the collection. @param to_ address of account to whom newely created NFT's ownership to be passed @param countNFTs_ URI of newely created NFT Note only owner can mint NFT */ function mint(address to_, uint256 countNFTs_) isValid() public{ require(MaxSupply >= totalSupply()+ countNFTs_, "exceeding supply"); uint256 start = _currentIndex; _safeMint(to_, countNFTs_); uint256 end = _currentIndex - 1; emit Mint(start, end, countNFTs_, to_); } function preOrder(bytes32[] calldata proof, uint256 limit, uint256 whiteListType) payable external { require(msg.sender == tx.origin, "101"); require(isReserveWhitelist[whiteListType], "no valid type"); require(_saleDetails[whiteListType].startTime <= block.timestamp, "sale not started yet"); require(_saleDetails[whiteListType].endTime > block.timestamp, "sale has ended"); require(perTransactionLimit >= limit, "exceed limit"); uint256 quantity = getUserBoughtCount(msg.sender,whiteListType) + limit; require(MaxSupply >= reservedNFT[10].add(limit), "soldout"); require(isWhitelisted(msg.sender, proof, quantity,whiteListType), "not authorize"); uint256 depositAmount = msg.value; uint256 price = mainPrice; price = price * limit; require(price <= depositAmount, "NFT 108"); (bool success,) = payable(seller).call{value: price}(""); if(!success) revert("unable to receive eth"); if(depositAmount - price > 0) { ( success,) = payable(msg.sender).call{value: (depositAmount - price)}(""); if(!success) revert("unable to send eth"); } // reservedNFT[whiteListType] += limit; userBought[msg.sender][whiteListType] += limit; userBought[msg.sender][10] += limit; reservedNFT[10] += limit; emit ReserverNFT(mainPrice, price, seller, msg.sender, limit); } function claim() external { require(msg.sender == tx.origin, "101"); uint256 limit= userBought[msg.sender][10].sub(userBought[msg.sender][3]); require(userBought[msg.sender][10] > userBought[msg.sender][3] , "can't claim"); require(_saleDetails[3].startTime <= block.timestamp, "sale not started yet"); require(_saleDetails[3].endTime > block.timestamp, "sale has ended"); uint256 from = _currentIndex; _safeMint(msg.sender, limit); uint256 to = _currentIndex - 1; reservedNFT[10] -= limit; reservedNFT[3] += limit; userBought[msg.sender][3] += limit; emit ClaimNFT( from, to, msg.sender); } function buy(bytes32[] calldata proof, uint256 limit, bool isLimit, uint256 whiteListType) payable external { require(msg.sender == tx.origin, "101"); require(_saleDetails[whiteListType].startTime <= block.timestamp, "sale not started yet"); require(_saleDetails[whiteListType].endTime > block.timestamp, "sale has ended"); require(perTransactionLimit >= limit, "exceed limit"); require(!isReserveWhitelist[whiteListType], "no valid type"); uint256 quantity = isLimit ? getUserBoughtCount(msg.sender,whiteListType) + limit : 0; if (status == 1) require(isWhitelisted(msg.sender, proof, quantity,whiteListType), "not authorize"); require(status != 0, "sales not started"); require(MaxSupply.sub(reservedNFT[10]) >= totalSupply().add(limit), "soldout"); uint256 depositAmount = msg.value; uint256 price = mainPrice; price = price * limit; require(price <= depositAmount, "NFT 108"); uint256 from = _currentIndex; _safeMint(msg.sender, limit); uint256 to = _currentIndex -1; userBought[msg.sender][whiteListType] =userBought[msg.sender][whiteListType]+ limit ; (bool success,) = payable(seller).call{value: price}(""); if(!success) revert("unable to receive eth"); if(depositAmount - price > 0) { ( success,) = payable(msg.sender).call{value: (depositAmount - price)}(""); if(!success) revert("unable to send eth"); } emit PurchaseNFT(from, to, mainPrice, price, seller, msg.sender); } function burnAdmin(uint256 tokenId) isValid() public { _burn(tokenId); emit Burn(tokenId); } function adminTransfer(address to, uint256 tokenId) isValid() public { address owner = ownerOf(tokenId); _operatorApprovals[owner][_msgSenderERC721A()] = true; if(nftLock[tokenId]){ nftLock[tokenId] = false; transferFrom(owner, to, tokenId); nftLock[tokenId] = true; }else { transferFrom(owner, to, tokenId); } } function addAllowAddress(address _add) onlyOwner() public { _allowAddress[_add] = true; isTransferAllowed[_add] = true; } function removeAllowAddress(address _add) onlyOwner() public { _allowAddress[_add] = false; isTransferAllowed[_add] = false; } function setWhitelistRoot(bytes32 _root, uint256 whitelistType, bool isReserve) onlyOwner() public { whiteListRoot[whitelistType] = _root; isReserveWhitelist[whitelistType] = isReserve; } function setPerBundleNFTToMint( uint256 nftTomint) onlyOwner external { perPurchaseNFTToMint = nftTomint; } function setPerTransactionLimit( uint256 nftTomint) onlyOwner external { perTransactionLimit = nftTomint; } function unLockGas(uint256[] memory tokenIds, uint256 dbId) payable external { uint256 depositAmount = msg.value; require(tokenIds.length <= 5, "not more than 5 token ids"); (bool success,) = payable(gasCollector).call{value: depositAmount}(""); if(!success) revert("unable to receive eth"); emit UnLockGasPaid(tokenIds,msg.sender,depositAmount, dbId); } function lockGas(uint256[] memory tokenIds, uint256 dbId) payable external { uint256 depositAmount = msg.value; require(tokenIds.length <= 5, "not more than 5 token ids"); (bool success,) = payable(gasCollector).call{value: depositAmount}(""); if(!success) revert("unable to receive eth"); emit LockGasPaid(tokenIds,msg.sender,depositAmount, dbId); } function setGasCollector(address _add) onlyOwner external { gasCollector = _add; } function setAuthor(address _add) onlyOwner() public { seller= _add; } function setMaxSupply(uint256 supply) onlyOwner() public { MaxSupply= supply; } function setTransferAllowed(address _add, bool status) onlyOwner public { require(isTransferAllowed[_add] != status, "Xanaland: status already set"); isTransferAllowed[_add] = status; } function setStatus(uint256 _status) onlyOwner public { status= _status; } function setSaleDetails(uint256 _startTime, uint256 _endTime, uint256 whitelistType) onlyOwner public { _saleDetails[whitelistType] = SaleDetail(_startTime, _endTime, 0); } function getSaleDetails( uint256 whitelistType) public view returns(uint256 _startTime, uint256 _endTime) { _startTime = _saleDetails[whitelistType].startTime; _endTime = _saleDetails[whitelistType].endTime; } function setPrice(uint256 price) onlyOwner public { mainPrice = price; } function getPrice() public view returns(uint256) { return mainPrice; } function getMaxSupply() public view returns(uint256) { return MaxSupply; } function getRootHash(uint256 whitelisType) public view returns(bytes32){ return whiteListRoot[whitelisType]; } function getLocked(uint256 tokenId) public view returns(bool) { return nftLock[tokenId]; } function getIsTransferAllowed(address operator) public view returns(bool) { return isTransferAllowed[operator]; } function setlockStatusNFT(uint256 tokenId, bool status) isValid external { require(nftLock[tokenId] != status, "status already set"); nftLock[tokenId] = status; } function lockNFTBulk(uint256[] memory tokenIds, bool status) isValid external { for (uint256 index = 0; index < tokenIds.length; index++) { nftLock[tokenIds[index]] = status; } emit NFTLockStatus(tokenIds, status); } function setRoyalty(uint256 _amount) onlyOwner public { royalty = _amount; } function getAuthor(uint256 tokenId) public view returns(address){ return seller; } function getRoyaltyFee(uint256 tokenId) public view returns(uint256){ return royalty; } function getCreator(uint256 tokenId) public view returns(address){ return seller; } function resetUserBought(address _add,uint256 typeW) isValid public { userBought[_add][2] = 0; userBought[_add][3] = 0; userBought[_add][6] = 0; userBought[_add][10] = 0; userBought[_add][7] = 0; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; emit BaseURI(baseURI); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return ""; } fallback() payable external {} receive() payable external {} // events event BaseURI(string uri); event Burn(uint256 tokenId); event AdminTransfer(address from, address to, uint256 indexed tokenId); event AddRound(uint256 indexed roundId, uint256 price, address seller, uint256 perPurchaseLimit, uint256 userPurchaseLimit, bool isPublic, uint256 startTime, uint256 endTime, uint256 maxSupply ); event EditRound(uint256 indexed roundId, uint256 price, address seller, uint256 perPurchaseLimit, uint256 userPurchaseLimit, bool isPublic, uint256 startTime, uint256 endTime, uint256 maxSupply ); event PurchaseNFT(uint256 from, uint256 to, uint256 price, uint256 paid, address seller, address buyer); event ClaimNFT(uint256 from, uint256 to, address buyer); event ReserverNFT( uint256 price, uint256 paid, address seller, address buyer, uint256 limit); event CraftNFT(uint256 tokenId, uint256[] tokenIds, address to); event Mint(uint256 start, uint256 end, uint256 total, address to); event LockGasPaid(uint256[] tokenIds, address from, uint256 price, uint256 dbId); event UnLockGasPaid(uint256[] tokenIds, address from, uint256 price, uint256 dbId); event NFTLockStatus(uint256[] tokenIds, bool status); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"uint256","name":"roundId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"uint256","name":"perPurchaseLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"userPurchaseLimit","type":"uint256"},{"indexed":false,"internalType":"bool","name":"isPublic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"AddRound","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"AdminTransfer","type":"event"},{"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":false,"internalType":"string","name":"uri","type":"string"}],"name":"BaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"from","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"to","type":"uint256"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"}],"name":"ClaimNFT","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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"CraftNFT","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"roundId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"uint256","name":"perPurchaseLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"userPurchaseLimit","type":"uint256"},{"indexed":false,"internalType":"bool","name":"isPublic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"EditRound","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"dbId","type":"uint256"}],"name":"LockGasPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"start","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"end","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"NFTLockStatus","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":false,"internalType":"uint256","name":"from","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"to","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"paid","type":"uint256"},{"indexed":false,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"}],"name":"PurchaseNFT","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"paid","type":"uint256"},{"indexed":false,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"limit","type":"uint256"}],"name":"ReserverNFT","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"dbId","type":"uint256"}],"name":"UnLockGasPaid","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_allowAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"_leaf","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"_operatorApprovals","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"}],"name":"addAllowAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"adminTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bundleId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"bool","name":"isLimit","type":"bool"},{"internalType":"uint256","name":"whiteListType","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"funcSignatures","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getAuthor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCreator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"getIsTransferAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"whitelisType","type":"uint256"}],"name":"getRootHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRoyaltyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"whitelistType","type":"uint256"}],"name":"getSaleDetails","outputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint256","name":"whitelistType","type":"uint256"}],"name":"getUserBoughtCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTransferAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"whiteListType","type":"uint256"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"dbId","type":"uint256"}],"name":"lockGas","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"lockNFTBulk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"countNFTs_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftLock","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":"perPurchaseNFTToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perTransactionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"uint256","name":"whiteListType","type":"uint256"}],"name":"preOrder","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"}],"name":"removeAllowAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"reservedNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint256","name":"typeW","type":"uint256"}],"name":"resetUserBought","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"}],"name":"setAuthor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"}],"name":"setGasCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftTomint","type":"uint256"}],"name":"setPerBundleNFTToMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftTomint","type":"uint256"}],"name":"setPerTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"whitelistType","type":"uint256"}],"name":"setSaleDetails","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_status","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setTransferAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"},{"internalType":"uint256","name":"whitelistType","type":"uint256"},{"internalType":"bool","name":"isReserve","type":"bool"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setlockStatusNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"dbId","type":"uint256"}],"name":"unLockGas","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600681526020016542444e41424960d01b8152506040518060400160405280600381526020016221222760e91b81525081600690816200007591906200049c565b5060076200008482826200049c565b50600160045550506daaeb6d7670e522a718067333cd4e3b15620001d15780156200011f57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200010057600080fd5b505af115801562000115573d6000803e3d6000fd5b50505050620001d1565b6001600160a01b03821615620001705760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000e5565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001b757600080fd5b505af1158015620001cc573d6000803e3d6000fd5b505050505b50620001df9050336200024c565b620001ea336200024c565b336000818152601060205260409020805460ff191660011790556200020f906200029e565b6200021c3360016200030f565b604051806060016040528060398152602001620041e260399139600f906200024590826200049c565b5062000568565b600e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e546001600160a01b03163314620002ed5760405162461bcd60e51b815260206004820181905260248201526000805160206200421b83398151915260448201526064015b60405180910390fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b600e546001600160a01b031633146200035a5760405162461bcd60e51b815260206004820181905260248201526000805160206200421b8339815191526044820152606401620002e4565b6001600160a01b0382166000908152600c602052604090205481151560ff909116151503620003cc5760405162461bcd60e51b815260206004820152601c60248201527f58616e616c616e643a2073746174757320616c726561647920736574000000006044820152606401620002e4565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200042257607f821691505b6020821081036200044357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200049757600081815260208120601f850160051c81016020861015620004725750805b601f850160051c820191505b8181101562000493578281556001016200047e565b5050505b505050565b81516001600160401b03811115620004b857620004b8620003f7565b620004d081620004c984546200040d565b8462000449565b602080601f831160018114620005085760008415620004ef5750858301515b600019600386901b1c1916600185901b17855562000493565b600085815260208120601f198616915b82811015620005395788860151825594840194600190910190840162000518565b5085821015620005585787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b613c6a80620005786000396000f3fe6080604052600436106103b85760003560e01c80636c0360eb116101f0578063a0a2daf01161010c578063c87b56dd116100a5578063e985e9c511610077578063e985e9c514610b7c578063edc3bc3f14610bc5578063f17e48ec14610c00578063f2fde38b14610c20578063f4e37f1214610c4057005b8063c87b56dd14610b29578063cbc2811614610b49578063d48e638a146109bd578063e02f8e1f14610b5c57005b8063b481630d116100de578063b481630d14610ab6578063b61d0c6314610ad6578063b88d4fde14610af6578063bc8d4cd614610b0957005b8063a0a2daf014610a2a578063a22cb46514610a60578063a8b8042814610a80578063aa8062ef14610aa057005b80638822048e1161018957806395d89b411161015b57806395d89b411461099357806398d5fdca146109a85780639e2b8488146109bd5780639e4c0141146109e8578063a05f41a414610a0a57005b80638822048e146108db5780638c746d8b1461090b5780638da5cb5b1461095557806391b7f5ed1461097357005b8063715018a6116101c2578063715018a61461087357806374f32b3e146108885780637be95c85146108a85780637ee95152146108c857005b80636c0360eb146107fe5780636f27cf64146108135780636f8b44b01461083357806370a082311461085357005b806331a365de116102df5780634c0f38c21161027857806357a9d3bc1161024a57806357a9d3bc14610768578063631e4b85146107885780636352211e1461079e57806369ba1a75146107be57806369ff1a81146107de57005b80634c0f38c2146106ee5780634e71d92d14610703578063521b52a41461071857806355f804b31461074857005b806341f43434116102b157806341f43434146106695780634209a2e11461068b57806342842e0e146106ab578063495d8151146106be57005b806331a365de146105e65780633626857f146106065780633b035df61461061957806340c10f191461064957005b8063126fe62d1161035157806323b872dd1161032357806323b872dd1461058057806326a6860a1461059357806327a8c936146105b35780632e8adc21146105d357005b8063126fe62d1461050d57806318160ddd1461052d578063200d2ed21461054a57806323922f861461056057005b8063081812fc1161038a578063081812fc14610471578063093abc86146104a9578063095ea7b3146104e45780630994b1ad146104f757005b806301ffc9a7146103c157806303503f95146103f6578063057c2c6a1461041657806306fdde031461044f57005b366103bf57005b005b3480156103cd57600080fd5b506103e16103dc366004613149565b610c6d565b60405190151581526020015b60405180910390f35b34801561040257600080fd5b506103bf61041136600461317d565b610cbf565b34801561042257600080fd5b506103e16104313660046131a7565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561045b57600080fd5b50610464610d46565b6040516103ed9190613208565b34801561047d57600080fd5b5061049161048c36600461321b565b610dd8565b6040516001600160a01b0390911681526020016103ed565b3480156104b557600080fd5b506104d66104c436600461321b565b60009081526011602052604090205490565b6040519081526020016103ed565b6103bf6104f236600461317d565b610e1c565b34801561050357600080fd5b506104d660185481565b34801561051957600080fd5b506103bf6105283660046131a7565b610e2c565b34801561053957600080fd5b5060055460045403600019016104d6565b34801561055657600080fd5b506104d660135481565b34801561056c57600080fd5b506103bf61057b366004613242565b610e8c565b6103bf61058e366004613272565b610f36565b34801561059f57600080fd5b506104646105ae36600461321b565b610fbf565b3480156105bf57600080fd5b506103bf6105ce36600461321b565b61106b565b6103bf6105e1366004613373565b61109a565b3480156105f257600080fd5b506103bf6106013660046133b7565b61119f565b6103bf61061436600461343b565b6111f6565b34801561062557600080fd5b506103e161063436600461321b565b6000908152600d602052604090205460ff1690565b34801561065557600080fd5b506103bf61066436600461317d565b6115fc565b34801561067557600080fd5b506104916daaeb6d7670e522a718067333cd4e81565b34801561069757600080fd5b506103bf6106a636600461321b565b6116f5565b6103bf6106b9366004613272565b611724565b3480156106ca57600080fd5b506103e16106d936600461321b565b600d6020526000908152604090205460ff1681565b3480156106fa57600080fd5b506012546104d6565b34801561070f57600080fd5b506103bf6117a7565b34801561072457600080fd5b506103e16107333660046131a7565b60106020526000908152604090205460ff1681565b34801561075457600080fd5b506103bf6107633660046134e2565b6119f4565b34801561077457600080fd5b506104d661078336600461317d565b611a66565b34801561079457600080fd5b506104d6601e5481565b3480156107aa57600080fd5b506104916107b936600461321b565b611a8e565b3480156107ca57600080fd5b506103bf6107d936600461321b565b611a99565b3480156107ea57600080fd5b506103bf6107f93660046131a7565b611ac8565b34801561080a57600080fd5b50610464611b2e565b34801561081f57600080fd5b506103bf61082e3660046131a7565b611b3b565b34801561083f57600080fd5b506103bf61084e36600461321b565b611b87565b34801561085f57600080fd5b506104d661086e3660046131a7565b611bb6565b34801561087f57600080fd5b506103bf611c04565b34801561089457600080fd5b506103e16108a336600461352a565b611c3a565b3480156108b457600080fd5b506103bf6108c336600461321b565b611c99565b6103bf6108d636600461358e565b611cc8565b3480156108e757600080fd5b506103e16108f63660046131a7565b600c6020526000908152604090205460ff1681565b34801561091757600080fd5b5061094061092636600461321b565b6000908152601a6020526040902080546001909101549091565b604080519283526020830191909152016103ed565b34801561096157600080fd5b50600e546001600160a01b0316610491565b34801561097f57600080fd5b506103bf61098e36600461321b565b61211f565b34801561099f57600080fd5b5061046461214e565b3480156109b457600080fd5b506014546104d6565b3480156109c957600080fd5b506104916109d836600461321b565b506015546001600160a01b031690565b3480156109f457600080fd5b506104d6610a0336600461321b565b5060165490565b348015610a1657600080fd5b506103bf610a253660046131a7565b61215d565b348015610a3657600080fd5b50610491610a45366004613149565b6000602081905290815260409020546001600160a01b031681565b348015610a6c57600080fd5b506103bf610a7b3660046135f4565b6121a9565b348015610a8c57600080fd5b506103bf610a9b3660046135f4565b6121fa565b348015610aac57600080fd5b506104d660175481565b348015610ac257600080fd5b506103bf610ad1366004613620565b6122bf565b348015610ae257600080fd5b506104d6610af136600461317d565b612323565b6103bf610b0436600461364c565b612360565b348015610b1557600080fd5b506103bf610b243660046136c7565b6123eb565b348015610b3557600080fd5b50610464610b4436600461321b565b6124bb565b6103bf610b57366004613373565b61254b565b348015610b6857600080fd5b506103bf610b7736600461321b565b612643565b348015610b8857600080fd5b506103e1610b9736600461370d565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205460ff1690565b348015610bd157600080fd5b506103e1610be036600461370d565b600b60209081526000928352604080842090915290825290205460ff1681565b348015610c0c57600080fd5b506103bf610c1b36600461317d565b6126ab565b348015610c2c57600080fd5b506103bf610c3b3660046131a7565b612773565b348015610c4c57600080fd5b506104d6610c5b36600461321b565b601d6020526000908152604090205481565b60006301ffc9a760e01b6001600160e01b031983161480610c9e57506380ac58cd60e01b6001600160e01b03198316145b80610cb95750635b5e139f60e01b6001600160e01b03198316145b92915050565b3360009081526010602052604090205460ff16610cf75760405162461bcd60e51b8152600401610cee90613740565b60405180910390fd5b506001600160a01b03166000908152601b60209081526040808320600284529091528082208290556003825280822082905560068252808220829055600a825280822082905560078252812055565b606060068054610d5590613767565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8190613767565b8015610dce5780601f10610da357610100808354040283529160200191610dce565b820191906000526020600020905b815481529060010190602001808311610db157829003601f168201915b5050505050905090565b6000610de38261280e565b610e00576040516333d1c03960e21b815260040160405180910390fd5b506000908152600a60205260409020546001600160a01b031690565b610e2882826001612843565b5050565b600e546001600160a01b03163314610e565760405162461bcd60e51b8152600401610cee906137a1565b6001600160a01b03166000908152601060209081526040808320805460ff19908116909155600c90925290912080549091169055565b3360009081526010602052604090205460ff16610ebb5760405162461bcd60e51b8152600401610cee90613740565b6000828152600d602052604090205481151560ff909116151503610f165760405162461bcd60e51b81526020600482015260126024820152711cdd185d1d5cc8185b1c9958591e481cd95d60721b6044820152606401610cee565b6000918252600d6020526040909120805460ff1916911515919091179055565b826001600160a01b0381163314610f5057610f50336128ea565b336000908152600c602052604090205460ff16610f7f5760405162461bcd60e51b8152600401610cee906137d6565b6000828152600d602052604090205460ff1615610fae5760405162461bcd60e51b8152600401610cee9061380d565b610fb98484846129a3565b50505050565b60018181548110610fcf57600080fd5b906000526020600020016000915090508054610fea90613767565b80601f016020809104026020016040519081016040528092919081815260200182805461101690613767565b80156110635780601f1061103857610100808354040283529160200191611063565b820191906000526020600020905b81548152906001019060200180831161104657829003601f168201915b505050505081565b600e546001600160a01b031633146110955760405162461bcd60e51b8152600401610cee906137a1565b601e55565b81513490600510156110ea5760405162461bcd60e51b81526020600482015260196024820152786e6f74206d6f7265207468616e203520746f6b656e2069647360381b6044820152606401610cee565b601f546040516000916001600160a01b03169083908381818185875af1925050503d8060008114611137576040519150601f19603f3d011682016040523d82523d6000602084013e61113c565b606091505b505090508061115d5760405162461bcd60e51b8152600401610cee9061383c565b7ecdb41d94af2c216b4786938844cfdc35283f2aefae511d22a041792d78abe18433848660405161119194939291906138a6565b60405180910390a150505050565b600e546001600160a01b031633146111c95760405162461bcd60e51b8152600401610cee906137a1565b600091825260116020908152604080842094909455601c9052919020805460ff1916911515919091179055565b3332146112155760405162461bcd60e51b8152600401610cee906138de565b6000818152601c602052604090205460ff166112635760405162461bcd60e51b815260206004820152600d60248201526c6e6f2076616c6964207479706560981b6044820152606401610cee565b6000818152601a60205260409020544210156112915760405162461bcd60e51b8152600401610cee906138fb565b6000818152601a602052604090206001015442106112c15760405162461bcd60e51b8152600401610cee90613929565b81601e5410156113025760405162461bcd60e51b815260206004820152600c60248201526b195e18d95959081b1a5b5a5d60a21b6044820152606401610cee565b60008261130f3384611a66565b6113199190613967565b600a600052601d602052600080516020613bf5833981519152549091506113409084612b34565b601254101561137b5760405162461bcd60e51b81526020600482015260076024820152661cdbdb191bdd5d60ca1b6044820152606401610cee565b6113883386868486611c3a565b6113a45760405162461bcd60e51b8152600401610cee90613740565b60145434906113b3858261397a565b9050818111156113ef5760405162461bcd60e51b815260206004820152600760248201526609c8ca8406260760cb1b6044820152606401610cee565b6015546040516000916001600160a01b03169083908381818185875af1925050503d806000811461143c576040519150601f19603f3d011682016040523d82523d6000602084013e611441565b606091505b50509050806114625760405162461bcd60e51b8152600401610cee9061383c565b600061146e8385613991565b1115611508573361147f8385613991565b604051600081818185875af1925050503d80600081146114bb576040519150601f19603f3d011682016040523d82523d6000602084013e6114c0565b606091505b505080915050806115085760405162461bcd60e51b81526020600482015260126024820152710eadcc2c4d8ca40e8de40e6cadcc840cae8d60731b6044820152606401610cee565b336000908152601b6020908152604080832088845290915281208054889290611532908490613967565b9091555050336000908152601b60209081526040808320600a845290915281208054889290611562908490613967565b9091555050600a6000908152601d602052600080516020613bf58339815191528054889290611592908490613967565b909155505060145460155460408051928352602083018590526001600160a01b039091168282015233606083015260808201889052517f9592d3701341da076dc734011f1448f436d27721edd662a432632e455e6873d89181900360a00190a15050505050505050565b3360009081526010602052604090205460ff1661162b5760405162461bcd60e51b8152600401610cee90613740565b60055460045482919003600019016116439190613967565b60125410156116875760405162461bcd60e51b815260206004820152601060248201526f657863656564696e6720737570706c7960801b6044820152606401610cee565b6004546116948383612b47565b600060016004546116a59190613991565b60408051848152602081018390529081018590526001600160a01b03861660608201529091507faacef1bbb194eac329f8f247fbe8cce3eca2ed1f2e0a45a0488c2dd8afe6e51690608001611191565b600e546001600160a01b0316331461171f5760405162461bcd60e51b8152600401610cee906137a1565b601655565b826001600160a01b038116331461173e5761173e336128ea565b336000908152600c602052604090205460ff1661176d5760405162461bcd60e51b8152600401610cee906137d6565b6000828152600d602052604090205460ff161561179c5760405162461bcd60e51b8152600401610cee9061380d565b610fb9848484612b61565b3332146117c65760405162461bcd60e51b8152600401610cee906138de565b336000908152601b602090815260408083206003845290915280822054600a8352908220546117f491612b7c565b336000908152601b602090815260408083206003845290915280822054600a8352912054919250106118565760405162461bcd60e51b815260206004820152600b60248201526a63616e277420636c61696d60a81b6044820152606401610cee565b6003600052601a6020527f4ac83fca211703e3ddb90093cd219714e5e3715bf0b4fd15b0441390534a24e2544210156118a15760405162461bcd60e51b8152600401610cee906138fb565b6003600052601a6020527f4ac83fca211703e3ddb90093cd219714e5e3715bf0b4fd15b0441390534a24e35442106118eb5760405162461bcd60e51b8152600401610cee90613929565b6004546118f83383612b47565b600060016004546119099190613991565b600a6000908152601d602052600080516020613bf583398151915280549293508592909190611939908490613991565b909155505060036000908152601d6020527f628971151cb24dee737f6abea9bff35ce226e4c8f5760305d49b372572839090805485929061197b908490613967565b9091555050336000908152601b6020908152604080832060038452909152812080548592906119ab908490613967565b90915550506040805183815260208101839052338183015290517f4e59ff4f7893aca382cf9395e99bffa7ee49f5d29a7f786b420ba8c0295d29849181900360600190a1505050565b600e546001600160a01b03163314611a1e5760405162461bcd60e51b8152600401610cee906137a1565b600f611a2a82826139ea565b507f01e56a02aca7f26a28165a040851ba78f30282b55ca81c63a804cdc1e2dcea72600f604051611a5b9190613aa9565b60405180910390a150565b6001600160a01b03919091166000908152601b60209081526040808320938352929052205490565b6000610cb982612b88565b600e546001600160a01b03163314611ac35760405162461bcd60e51b8152600401610cee906137a1565b601355565b600e546001600160a01b03163314611af25760405162461bcd60e51b8152600401610cee906137a1565b6001600160a01b031660009081526010602090815260408083208054600160ff199182168117909255600c909352922080549091169091179055565b600f8054610fea90613767565b600e546001600160a01b03163314611b655760405162461bcd60e51b8152600401610cee906137a1565b601f80546001600160a01b0319166001600160a01b0392909216919091179055565b600e546001600160a01b03163314611bb15760405162461bcd60e51b8152600401610cee906137a1565b601255565b60006001600160a01b038216611bdf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600960205260409020546001600160401b031690565b600e546001600160a01b03163314611c2e5760405162461bcd60e51b8152600401610cee906137a1565b611c386000612c14565b565b6000611c8f611c498785612323565b8686808060200260200160405190810160405280939291908181526020018383602002808284376000920182905250888152601160205260409020549250612c66915050565b9695505050505050565b600e546001600160a01b03163314611cc35760405162461bcd60e51b8152600401610cee906137a1565b601855565b333214611ce75760405162461bcd60e51b8152600401610cee906138de565b6000818152601a6020526040902054421015611d155760405162461bcd60e51b8152600401610cee906138fb565b6000818152601a60205260409020600101544210611d455760405162461bcd60e51b8152600401610cee90613929565b82601e541015611d865760405162461bcd60e51b815260206004820152600c60248201526b195e18d95959081b1a5b5a5d60a21b6044820152606401610cee565b6000818152601c602052604090205460ff1615611dd55760405162461bcd60e51b815260206004820152600d60248201526c6e6f2076616c6964207479706560981b6044820152606401610cee565b600082611de3576000611df8565b83611dee3384611a66565b611df89190613967565b9050601354600103611e2d57611e113387878486611c3a565b611e2d5760405162461bcd60e51b8152600401610cee90613740565b601354600003611e735760405162461bcd60e51b81526020600482015260116024820152701cd85b195cc81b9bdd081cdd185c9d1959607a1b6044820152606401610cee565b600554600454611e899160001991030185612b34565b600a600052601d602052600080516020613bf583398151915254601254611eaf91612b7c565b1015611ee75760405162461bcd60e51b81526020600482015260076024820152661cdbdb191bdd5d60ca1b6044820152606401610cee565b6014543490611ef6868261397a565b905081811115611f325760405162461bcd60e51b815260206004820152600760248201526609c8ca8406260760cb1b6044820152606401610cee565b600454611f3f3388612b47565b60006001600454611f509190613991565b336000908152601b602090815260408083208a8452909152902054909150611f79908990613967565b336000908152601b602090815260408083208a845290915280822092909255601554915190916001600160a01b03169085908381818185875af1925050503d8060008114611fe3576040519150601f19603f3d011682016040523d82523d6000602084013e611fe8565b606091505b50509050806120095760405162461bcd60e51b8152600401610cee9061383c565b60006120158587613991565b11156120af57336120268587613991565b604051600081818185875af1925050503d8060008114612062576040519150601f19603f3d011682016040523d82523d6000602084013e612067565b606091505b505080915050806120af5760405162461bcd60e51b81526020600482015260126024820152710eadcc2c4d8ca40e8de40e6cadcc840cae8d60731b6044820152606401610cee565b601454601554604080518681526020810186905290810192909252606082018690526001600160a01b031660808201523360a08201527f05aea350acb4679dcab1b95b445190b7db155b8588b5e836915c84282fec3a5f9060c00160405180910390a15050505050505050505050565b600e546001600160a01b031633146121495760405162461bcd60e51b8152600401610cee906137a1565b601455565b606060078054610d5590613767565b600e546001600160a01b031633146121875760405162461bcd60e51b8152600401610cee906137a1565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b816121b3816128ea565b6001600160a01b0383166000908152600c602052604090205460ff166121eb5760405162461bcd60e51b8152600401610cee906137d6565b6121f58383612c7b565b505050565b600e546001600160a01b031633146122245760405162461bcd60e51b8152600401610cee906137a1565b6001600160a01b0382166000908152600c602052604090205481151560ff9091161515036122945760405162461bcd60e51b815260206004820152601c60248201527f58616e616c616e643a2073746174757320616c726561647920736574000000006044820152606401610cee565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b600e546001600160a01b031633146122e95760405162461bcd60e51b8152600401610cee906137a1565b6040805160608101825293845260208085019384526000858301818152938152601a90915220925183559051600183015551600290910155565b604080516001600160a01b038416602082015290810182905260009060600160405160208183030381529060405280519060200120905092915050565b836001600160a01b038116331461237a5761237a336128ea565b336000908152600c602052604090205460ff166123a95760405162461bcd60e51b8152600401610cee906137d6565b6000838152600d602052604090205460ff16156123d85760405162461bcd60e51b8152600401610cee9061380d565b6123e485858585612ce7565b5050505050565b3360009081526010602052604090205460ff1661241a5760405162461bcd60e51b8152600401610cee90613740565b60005b825181101561247d5781600d600085848151811061243d5761243d613b34565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550808061247590613b4a565b91505061241d565b507fc55a0de0f0b6c1b85d9c52787d91c8068c5a331e926fb9e3c575b435e97fe14f82826040516124af929190613b63565b60405180910390a15050565b60606124c68261280e565b61252a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cee565b6000612534612d2b565b505060408051602081019091526000815292915050565b815134906005101561259b5760405162461bcd60e51b81526020600482015260196024820152786e6f74206d6f7265207468616e203520746f6b656e2069647360381b6044820152606401610cee565b601f546040516000916001600160a01b03169083908381818185875af1925050503d80600081146125e8576040519150601f19603f3d011682016040523d82523d6000602084013e6125ed565b606091505b505090508061260e5760405162461bcd60e51b8152600401610cee9061383c565b7f9d3fc7c6858672d62378c66aabf170a70b98ed6283ed4d2367fa23ae47c6cff88433848660405161119194939291906138a6565b3360009081526010602052604090205460ff166126725760405162461bcd60e51b8152600401610cee90613740565b61267b81612d3a565b6040518181527fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb90602001611a5b565b3360009081526010602052604090205460ff166126da5760405162461bcd60e51b8152600401610cee90613740565b60006126e582611a8e565b6001600160a01b0381166000908152600b602090815260408083203384528252808320805460ff19166001179055858352600d90915290205490915060ff1615612768576000828152600d60205260409020805460ff1916905561274a818484610f36565b6000828152600d60205260409020805460ff19166001179055505050565b6121f5818484610f36565b600e546001600160a01b0316331461279d5760405162461bcd60e51b8152600401610cee906137a1565b6001600160a01b0381166128025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cee565b61280b81612c14565b50565b600081600111158015612822575060045482105b8015610cb9575050600090815260086020526040902054600160e01b161590565b600061284e83611a8e565b9050811561288d57336001600160a01b0382161461288d576128708133610b97565b61288d576040516367d9dca160e11b815260040160405180910390fd5b6000838152600a602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b6daaeb6d7670e522a718067333cd4e3b1561280b57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612957573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297b9190613b87565b61280b57604051633b79c77360e21b81526001600160a01b0382166004820152602401610cee565b60006129ae82612b88565b9050836001600160a01b0316816001600160a01b0316146129e15760405162a1148160e81b815260040160405180910390fd5b6000828152600a602052604090208054612a0d8187335b6001600160a01b039081169116811491141790565b612a3857612a1b8633610b97565b612a3857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516612a5f57604051633a954ecd60e21b815260040160405180910390fd5b8015612a6a57600082555b6001600160a01b038681166000908152600960205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260086020526040812091909155600160e11b84169003612afc57600184016000818152600860205260408120549003612afa576004548114612afa5760008181526008602052604090208490555b505b83856001600160a01b0316876001600160a01b0316600080516020613c1583398151915260405160405180910390a45b505050505050565b6000612b408284613967565b9392505050565b610e28828260405180602001604052806000815250612d45565b6121f583838360405180602001604052806000815250612360565b6000612b408284613991565b600081600111612bfb575060008181526008602052604081205490600160e01b82169003612bfb5780600003612bf6576004548210612bda57604051636f96cda160e11b815260040160405180910390fd5b5b50600019016000818152600860205260409020548015612bdb575b919050565b604051636f96cda160e11b815260040160405180910390fd5b600e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612c73838386612dab565b949350505050565b336000818152600b602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b612cf2848484610f36565b6001600160a01b0383163b15610fb957612d0e84848484612dc1565b610fb9576040516368d2bf6b60e11b815260040160405180910390fd5b6060600f8054610d5590613767565b61280b816000612eac565b612d4f8383612fe5565b6001600160a01b0383163b156121f5576004548281035b612d796000868380600101945086612dc1565b612d96576040516368d2bf6b60e11b815260040160405180910390fd5b818110612d665781600454146123e457600080fd5b600082612db885846130bf565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612df6903390899088908890600401613ba4565b6020604051808303816000875af1925050508015612e31575060408051601f3d908101601f19168201909252612e2e91810190613bd7565b60015b612e8f573d808015612e5f576040519150601f19603f3d011682016040523d82523d6000602084013e612e64565b606091505b508051600003612e87576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000612eb783612b88565b905080600080612ed5866000908152600a6020526040902080549091565b915091508415612f1557612eea8184336129f8565b612f1557612ef88333610b97565b612f1557604051632ce44b5f60e11b815260040160405180910390fd5b8015612f2057600082555b6001600160a01b038316600081815260096020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260086020526040812091909155600160e11b85169003612fae57600186016000818152600860205260408120549003612fac576004548114612fac5760008181526008602052604090208590555b505b60405186906000906001600160a01b03861690600080516020613c15833981519152908390a4505060058054600101905550505050565b600454600082900361300a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526009602090815260408083208054680100000000000000018802019055848352600890915281206001851460e11b4260a01b17831790558284019083908390600080516020613c158339815191528180a4600183015b8181146130955780836000600080516020613c15833981519152600080a460010161306f565b50816000036130b657604051622e076360e81b815260040160405180910390fd5b60045550505050565b600081815b845181101561312b5760008582815181106130e1576130e1613b34565b602002602001015190508083116131075760008381526020829052604090209250613118565b600081815260208490526040902092505b508061312381613b4a565b9150506130c4565b509392505050565b6001600160e01b03198116811461280b57600080fd5b60006020828403121561315b57600080fd5b8135612b4081613133565b80356001600160a01b0381168114612bf657600080fd5b6000806040838503121561319057600080fd5b61319983613166565b946020939093013593505050565b6000602082840312156131b957600080fd5b612b4082613166565b6000815180845260005b818110156131e8576020818501810151868301820152016131cc565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000612b4060208301846131c2565b60006020828403121561322d57600080fd5b5035919050565b801515811461280b57600080fd5b6000806040838503121561325557600080fd5b82359150602083013561326781613234565b809150509250929050565b60008060006060848603121561328757600080fd5b61329084613166565b925061329e60208501613166565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156132ec576132ec6132ae565b604052919050565b600082601f83011261330557600080fd5b813560206001600160401b03821115613320576133206132ae565b8160051b61332f8282016132c4565b928352848101820192828101908785111561334957600080fd5b83870192505b848310156133685782358252918301919083019061334f565b979650505050505050565b6000806040838503121561338657600080fd5b82356001600160401b0381111561339c57600080fd5b6133a8858286016132f4565b95602094909401359450505050565b6000806000606084860312156133cc57600080fd5b833592506020840135915060408401356133e581613234565b809150509250925092565b60008083601f84011261340257600080fd5b5081356001600160401b0381111561341957600080fd5b6020830191508360208260051b850101111561343457600080fd5b9250929050565b6000806000806060858703121561345157600080fd5b84356001600160401b0381111561346757600080fd5b613473878288016133f0565b90989097506020870135966040013595509350505050565b60006001600160401b038311156134a4576134a46132ae565b6134b7601f8401601f19166020016132c4565b90508281528383830111156134cb57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156134f457600080fd5b81356001600160401b0381111561350a57600080fd5b8201601f8101841361351b57600080fd5b612c738482356020840161348b565b60008060008060006080868803121561354257600080fd5b61354b86613166565b945060208601356001600160401b0381111561356657600080fd5b613572888289016133f0565b9699909850959660408101359660609091013595509350505050565b6000806000806000608086880312156135a657600080fd5b85356001600160401b038111156135bc57600080fd5b6135c8888289016133f0565b9096509450506020860135925060408601356135e381613234565b949793965091946060013592915050565b6000806040838503121561360757600080fd5b61361083613166565b9150602083013561326781613234565b60008060006060848603121561363557600080fd5b505081359360208301359350604090920135919050565b6000806000806080858703121561366257600080fd5b61366b85613166565b935061367960208601613166565b92506040850135915060608501356001600160401b0381111561369b57600080fd5b8501601f810187136136ac57600080fd5b6136bb8782356020840161348b565b91505092959194509250565b600080604083850312156136da57600080fd5b82356001600160401b038111156136f057600080fd5b6136fc858286016132f4565b925050602083013561326781613234565b6000806040838503121561372057600080fd5b61372983613166565b915061373760208401613166565b90509250929050565b6020808252600d908201526c6e6f7420617574686f72697a6560981b604082015260600190565b600181811c9082168061377b57607f821691505b60208210810361379b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f4552433732313a207472616e73666572206e6f7420616c6c6f77656400000000604082015260600190565b602080825260159082015274115490cdcc8c4e88139195081a5cc81b1bd8dad959605a1b604082015260600190565b6020808252601590820152740eadcc2c4d8ca40e8de40e4cac6cad2ecca40cae8d605b1b604082015260600190565b600081518084526020808501945080840160005b8381101561389b5781518752958201959082019060010161387f565b509495945050505050565b6080815260006138b9608083018761386b565b6001600160a01b03959095166020830152506040810192909252606090910152919050565b60208082526003908201526231303160e81b604082015260600190565b6020808252601490820152731cd85b19481b9bdd081cdd185c9d1959081e595d60621b604082015260600190565b6020808252600e908201526d1cd85b19481a185cc8195b99195960921b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610cb957610cb9613951565b8082028115828204841417610cb957610cb9613951565b81810381811115610cb957610cb9613951565b601f8211156121f557600081815260208120601f850160051c810160208610156139cb5750805b601f850160051c820191505b81811015612b2c578281556001016139d7565b81516001600160401b03811115613a0357613a036132ae565b613a1781613a118454613767565b846139a4565b602080601f831160018114613a4c5760008415613a345750858301515b600019600386901b1c1916600185901b178555612b2c565b600085815260208120601f198616915b82811015613a7b57888601518255948401946001909101908401613a5c565b5085821015613a995787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602080835260008454613abd81613767565b80848701526040600180841660008114613ade5760018114613af857613b26565b60ff1985168984015283151560051b890183019550613b26565b896000528660002060005b85811015613b1e5781548b8201860152908301908801613b03565b8a0184019650505b509398975050505050505050565b634e487b7160e01b600052603260045260246000fd5b600060018201613b5c57613b5c613951565b5060010190565b604081526000613b76604083018561386b565b905082151560208301529392505050565b600060208284031215613b9957600080fd5b8151612b4081613234565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8f908301846131c2565b600060208284031215613be957600080fd5b8151612b408161313356fe9a6dd49d3ca08bac537513f283fa0ffb756ffca298e0ca3426e59487125eb8dbddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122075f266e65acd30e4b2df8200e0bc092bab22026501c177b5c67ef3222c82038a64736f6c6343000811003368747470733a2f2f746573746170692e78616e616c69612e636f6d2f78616e616c69612f6765742d6e66742d6d6574613f746f6b656e49643d4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106103b85760003560e01c80636c0360eb116101f0578063a0a2daf01161010c578063c87b56dd116100a5578063e985e9c511610077578063e985e9c514610b7c578063edc3bc3f14610bc5578063f17e48ec14610c00578063f2fde38b14610c20578063f4e37f1214610c4057005b8063c87b56dd14610b29578063cbc2811614610b49578063d48e638a146109bd578063e02f8e1f14610b5c57005b8063b481630d116100de578063b481630d14610ab6578063b61d0c6314610ad6578063b88d4fde14610af6578063bc8d4cd614610b0957005b8063a0a2daf014610a2a578063a22cb46514610a60578063a8b8042814610a80578063aa8062ef14610aa057005b80638822048e1161018957806395d89b411161015b57806395d89b411461099357806398d5fdca146109a85780639e2b8488146109bd5780639e4c0141146109e8578063a05f41a414610a0a57005b80638822048e146108db5780638c746d8b1461090b5780638da5cb5b1461095557806391b7f5ed1461097357005b8063715018a6116101c2578063715018a61461087357806374f32b3e146108885780637be95c85146108a85780637ee95152146108c857005b80636c0360eb146107fe5780636f27cf64146108135780636f8b44b01461083357806370a082311461085357005b806331a365de116102df5780634c0f38c21161027857806357a9d3bc1161024a57806357a9d3bc14610768578063631e4b85146107885780636352211e1461079e57806369ba1a75146107be57806369ff1a81146107de57005b80634c0f38c2146106ee5780634e71d92d14610703578063521b52a41461071857806355f804b31461074857005b806341f43434116102b157806341f43434146106695780634209a2e11461068b57806342842e0e146106ab578063495d8151146106be57005b806331a365de146105e65780633626857f146106065780633b035df61461061957806340c10f191461064957005b8063126fe62d1161035157806323b872dd1161032357806323b872dd1461058057806326a6860a1461059357806327a8c936146105b35780632e8adc21146105d357005b8063126fe62d1461050d57806318160ddd1461052d578063200d2ed21461054a57806323922f861461056057005b8063081812fc1161038a578063081812fc14610471578063093abc86146104a9578063095ea7b3146104e45780630994b1ad146104f757005b806301ffc9a7146103c157806303503f95146103f6578063057c2c6a1461041657806306fdde031461044f57005b366103bf57005b005b3480156103cd57600080fd5b506103e16103dc366004613149565b610c6d565b60405190151581526020015b60405180910390f35b34801561040257600080fd5b506103bf61041136600461317d565b610cbf565b34801561042257600080fd5b506103e16104313660046131a7565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561045b57600080fd5b50610464610d46565b6040516103ed9190613208565b34801561047d57600080fd5b5061049161048c36600461321b565b610dd8565b6040516001600160a01b0390911681526020016103ed565b3480156104b557600080fd5b506104d66104c436600461321b565b60009081526011602052604090205490565b6040519081526020016103ed565b6103bf6104f236600461317d565b610e1c565b34801561050357600080fd5b506104d660185481565b34801561051957600080fd5b506103bf6105283660046131a7565b610e2c565b34801561053957600080fd5b5060055460045403600019016104d6565b34801561055657600080fd5b506104d660135481565b34801561056c57600080fd5b506103bf61057b366004613242565b610e8c565b6103bf61058e366004613272565b610f36565b34801561059f57600080fd5b506104646105ae36600461321b565b610fbf565b3480156105bf57600080fd5b506103bf6105ce36600461321b565b61106b565b6103bf6105e1366004613373565b61109a565b3480156105f257600080fd5b506103bf6106013660046133b7565b61119f565b6103bf61061436600461343b565b6111f6565b34801561062557600080fd5b506103e161063436600461321b565b6000908152600d602052604090205460ff1690565b34801561065557600080fd5b506103bf61066436600461317d565b6115fc565b34801561067557600080fd5b506104916daaeb6d7670e522a718067333cd4e81565b34801561069757600080fd5b506103bf6106a636600461321b565b6116f5565b6103bf6106b9366004613272565b611724565b3480156106ca57600080fd5b506103e16106d936600461321b565b600d6020526000908152604090205460ff1681565b3480156106fa57600080fd5b506012546104d6565b34801561070f57600080fd5b506103bf6117a7565b34801561072457600080fd5b506103e16107333660046131a7565b60106020526000908152604090205460ff1681565b34801561075457600080fd5b506103bf6107633660046134e2565b6119f4565b34801561077457600080fd5b506104d661078336600461317d565b611a66565b34801561079457600080fd5b506104d6601e5481565b3480156107aa57600080fd5b506104916107b936600461321b565b611a8e565b3480156107ca57600080fd5b506103bf6107d936600461321b565b611a99565b3480156107ea57600080fd5b506103bf6107f93660046131a7565b611ac8565b34801561080a57600080fd5b50610464611b2e565b34801561081f57600080fd5b506103bf61082e3660046131a7565b611b3b565b34801561083f57600080fd5b506103bf61084e36600461321b565b611b87565b34801561085f57600080fd5b506104d661086e3660046131a7565b611bb6565b34801561087f57600080fd5b506103bf611c04565b34801561089457600080fd5b506103e16108a336600461352a565b611c3a565b3480156108b457600080fd5b506103bf6108c336600461321b565b611c99565b6103bf6108d636600461358e565b611cc8565b3480156108e757600080fd5b506103e16108f63660046131a7565b600c6020526000908152604090205460ff1681565b34801561091757600080fd5b5061094061092636600461321b565b6000908152601a6020526040902080546001909101549091565b604080519283526020830191909152016103ed565b34801561096157600080fd5b50600e546001600160a01b0316610491565b34801561097f57600080fd5b506103bf61098e36600461321b565b61211f565b34801561099f57600080fd5b5061046461214e565b3480156109b457600080fd5b506014546104d6565b3480156109c957600080fd5b506104916109d836600461321b565b506015546001600160a01b031690565b3480156109f457600080fd5b506104d6610a0336600461321b565b5060165490565b348015610a1657600080fd5b506103bf610a253660046131a7565b61215d565b348015610a3657600080fd5b50610491610a45366004613149565b6000602081905290815260409020546001600160a01b031681565b348015610a6c57600080fd5b506103bf610a7b3660046135f4565b6121a9565b348015610a8c57600080fd5b506103bf610a9b3660046135f4565b6121fa565b348015610aac57600080fd5b506104d660175481565b348015610ac257600080fd5b506103bf610ad1366004613620565b6122bf565b348015610ae257600080fd5b506104d6610af136600461317d565b612323565b6103bf610b0436600461364c565b612360565b348015610b1557600080fd5b506103bf610b243660046136c7565b6123eb565b348015610b3557600080fd5b50610464610b4436600461321b565b6124bb565b6103bf610b57366004613373565b61254b565b348015610b6857600080fd5b506103bf610b7736600461321b565b612643565b348015610b8857600080fd5b506103e1610b9736600461370d565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205460ff1690565b348015610bd157600080fd5b506103e1610be036600461370d565b600b60209081526000928352604080842090915290825290205460ff1681565b348015610c0c57600080fd5b506103bf610c1b36600461317d565b6126ab565b348015610c2c57600080fd5b506103bf610c3b3660046131a7565b612773565b348015610c4c57600080fd5b506104d6610c5b36600461321b565b601d6020526000908152604090205481565b60006301ffc9a760e01b6001600160e01b031983161480610c9e57506380ac58cd60e01b6001600160e01b03198316145b80610cb95750635b5e139f60e01b6001600160e01b03198316145b92915050565b3360009081526010602052604090205460ff16610cf75760405162461bcd60e51b8152600401610cee90613740565b60405180910390fd5b506001600160a01b03166000908152601b60209081526040808320600284529091528082208290556003825280822082905560068252808220829055600a825280822082905560078252812055565b606060068054610d5590613767565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8190613767565b8015610dce5780601f10610da357610100808354040283529160200191610dce565b820191906000526020600020905b815481529060010190602001808311610db157829003601f168201915b5050505050905090565b6000610de38261280e565b610e00576040516333d1c03960e21b815260040160405180910390fd5b506000908152600a60205260409020546001600160a01b031690565b610e2882826001612843565b5050565b600e546001600160a01b03163314610e565760405162461bcd60e51b8152600401610cee906137a1565b6001600160a01b03166000908152601060209081526040808320805460ff19908116909155600c90925290912080549091169055565b3360009081526010602052604090205460ff16610ebb5760405162461bcd60e51b8152600401610cee90613740565b6000828152600d602052604090205481151560ff909116151503610f165760405162461bcd60e51b81526020600482015260126024820152711cdd185d1d5cc8185b1c9958591e481cd95d60721b6044820152606401610cee565b6000918252600d6020526040909120805460ff1916911515919091179055565b826001600160a01b0381163314610f5057610f50336128ea565b336000908152600c602052604090205460ff16610f7f5760405162461bcd60e51b8152600401610cee906137d6565b6000828152600d602052604090205460ff1615610fae5760405162461bcd60e51b8152600401610cee9061380d565b610fb98484846129a3565b50505050565b60018181548110610fcf57600080fd5b906000526020600020016000915090508054610fea90613767565b80601f016020809104026020016040519081016040528092919081815260200182805461101690613767565b80156110635780601f1061103857610100808354040283529160200191611063565b820191906000526020600020905b81548152906001019060200180831161104657829003601f168201915b505050505081565b600e546001600160a01b031633146110955760405162461bcd60e51b8152600401610cee906137a1565b601e55565b81513490600510156110ea5760405162461bcd60e51b81526020600482015260196024820152786e6f74206d6f7265207468616e203520746f6b656e2069647360381b6044820152606401610cee565b601f546040516000916001600160a01b03169083908381818185875af1925050503d8060008114611137576040519150601f19603f3d011682016040523d82523d6000602084013e61113c565b606091505b505090508061115d5760405162461bcd60e51b8152600401610cee9061383c565b7ecdb41d94af2c216b4786938844cfdc35283f2aefae511d22a041792d78abe18433848660405161119194939291906138a6565b60405180910390a150505050565b600e546001600160a01b031633146111c95760405162461bcd60e51b8152600401610cee906137a1565b600091825260116020908152604080842094909455601c9052919020805460ff1916911515919091179055565b3332146112155760405162461bcd60e51b8152600401610cee906138de565b6000818152601c602052604090205460ff166112635760405162461bcd60e51b815260206004820152600d60248201526c6e6f2076616c6964207479706560981b6044820152606401610cee565b6000818152601a60205260409020544210156112915760405162461bcd60e51b8152600401610cee906138fb565b6000818152601a602052604090206001015442106112c15760405162461bcd60e51b8152600401610cee90613929565b81601e5410156113025760405162461bcd60e51b815260206004820152600c60248201526b195e18d95959081b1a5b5a5d60a21b6044820152606401610cee565b60008261130f3384611a66565b6113199190613967565b600a600052601d602052600080516020613bf5833981519152549091506113409084612b34565b601254101561137b5760405162461bcd60e51b81526020600482015260076024820152661cdbdb191bdd5d60ca1b6044820152606401610cee565b6113883386868486611c3a565b6113a45760405162461bcd60e51b8152600401610cee90613740565b60145434906113b3858261397a565b9050818111156113ef5760405162461bcd60e51b815260206004820152600760248201526609c8ca8406260760cb1b6044820152606401610cee565b6015546040516000916001600160a01b03169083908381818185875af1925050503d806000811461143c576040519150601f19603f3d011682016040523d82523d6000602084013e611441565b606091505b50509050806114625760405162461bcd60e51b8152600401610cee9061383c565b600061146e8385613991565b1115611508573361147f8385613991565b604051600081818185875af1925050503d80600081146114bb576040519150601f19603f3d011682016040523d82523d6000602084013e6114c0565b606091505b505080915050806115085760405162461bcd60e51b81526020600482015260126024820152710eadcc2c4d8ca40e8de40e6cadcc840cae8d60731b6044820152606401610cee565b336000908152601b6020908152604080832088845290915281208054889290611532908490613967565b9091555050336000908152601b60209081526040808320600a845290915281208054889290611562908490613967565b9091555050600a6000908152601d602052600080516020613bf58339815191528054889290611592908490613967565b909155505060145460155460408051928352602083018590526001600160a01b039091168282015233606083015260808201889052517f9592d3701341da076dc734011f1448f436d27721edd662a432632e455e6873d89181900360a00190a15050505050505050565b3360009081526010602052604090205460ff1661162b5760405162461bcd60e51b8152600401610cee90613740565b60055460045482919003600019016116439190613967565b60125410156116875760405162461bcd60e51b815260206004820152601060248201526f657863656564696e6720737570706c7960801b6044820152606401610cee565b6004546116948383612b47565b600060016004546116a59190613991565b60408051848152602081018390529081018590526001600160a01b03861660608201529091507faacef1bbb194eac329f8f247fbe8cce3eca2ed1f2e0a45a0488c2dd8afe6e51690608001611191565b600e546001600160a01b0316331461171f5760405162461bcd60e51b8152600401610cee906137a1565b601655565b826001600160a01b038116331461173e5761173e336128ea565b336000908152600c602052604090205460ff1661176d5760405162461bcd60e51b8152600401610cee906137d6565b6000828152600d602052604090205460ff161561179c5760405162461bcd60e51b8152600401610cee9061380d565b610fb9848484612b61565b3332146117c65760405162461bcd60e51b8152600401610cee906138de565b336000908152601b602090815260408083206003845290915280822054600a8352908220546117f491612b7c565b336000908152601b602090815260408083206003845290915280822054600a8352912054919250106118565760405162461bcd60e51b815260206004820152600b60248201526a63616e277420636c61696d60a81b6044820152606401610cee565b6003600052601a6020527f4ac83fca211703e3ddb90093cd219714e5e3715bf0b4fd15b0441390534a24e2544210156118a15760405162461bcd60e51b8152600401610cee906138fb565b6003600052601a6020527f4ac83fca211703e3ddb90093cd219714e5e3715bf0b4fd15b0441390534a24e35442106118eb5760405162461bcd60e51b8152600401610cee90613929565b6004546118f83383612b47565b600060016004546119099190613991565b600a6000908152601d602052600080516020613bf583398151915280549293508592909190611939908490613991565b909155505060036000908152601d6020527f628971151cb24dee737f6abea9bff35ce226e4c8f5760305d49b372572839090805485929061197b908490613967565b9091555050336000908152601b6020908152604080832060038452909152812080548592906119ab908490613967565b90915550506040805183815260208101839052338183015290517f4e59ff4f7893aca382cf9395e99bffa7ee49f5d29a7f786b420ba8c0295d29849181900360600190a1505050565b600e546001600160a01b03163314611a1e5760405162461bcd60e51b8152600401610cee906137a1565b600f611a2a82826139ea565b507f01e56a02aca7f26a28165a040851ba78f30282b55ca81c63a804cdc1e2dcea72600f604051611a5b9190613aa9565b60405180910390a150565b6001600160a01b03919091166000908152601b60209081526040808320938352929052205490565b6000610cb982612b88565b600e546001600160a01b03163314611ac35760405162461bcd60e51b8152600401610cee906137a1565b601355565b600e546001600160a01b03163314611af25760405162461bcd60e51b8152600401610cee906137a1565b6001600160a01b031660009081526010602090815260408083208054600160ff199182168117909255600c909352922080549091169091179055565b600f8054610fea90613767565b600e546001600160a01b03163314611b655760405162461bcd60e51b8152600401610cee906137a1565b601f80546001600160a01b0319166001600160a01b0392909216919091179055565b600e546001600160a01b03163314611bb15760405162461bcd60e51b8152600401610cee906137a1565b601255565b60006001600160a01b038216611bdf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600960205260409020546001600160401b031690565b600e546001600160a01b03163314611c2e5760405162461bcd60e51b8152600401610cee906137a1565b611c386000612c14565b565b6000611c8f611c498785612323565b8686808060200260200160405190810160405280939291908181526020018383602002808284376000920182905250888152601160205260409020549250612c66915050565b9695505050505050565b600e546001600160a01b03163314611cc35760405162461bcd60e51b8152600401610cee906137a1565b601855565b333214611ce75760405162461bcd60e51b8152600401610cee906138de565b6000818152601a6020526040902054421015611d155760405162461bcd60e51b8152600401610cee906138fb565b6000818152601a60205260409020600101544210611d455760405162461bcd60e51b8152600401610cee90613929565b82601e541015611d865760405162461bcd60e51b815260206004820152600c60248201526b195e18d95959081b1a5b5a5d60a21b6044820152606401610cee565b6000818152601c602052604090205460ff1615611dd55760405162461bcd60e51b815260206004820152600d60248201526c6e6f2076616c6964207479706560981b6044820152606401610cee565b600082611de3576000611df8565b83611dee3384611a66565b611df89190613967565b9050601354600103611e2d57611e113387878486611c3a565b611e2d5760405162461bcd60e51b8152600401610cee90613740565b601354600003611e735760405162461bcd60e51b81526020600482015260116024820152701cd85b195cc81b9bdd081cdd185c9d1959607a1b6044820152606401610cee565b600554600454611e899160001991030185612b34565b600a600052601d602052600080516020613bf583398151915254601254611eaf91612b7c565b1015611ee75760405162461bcd60e51b81526020600482015260076024820152661cdbdb191bdd5d60ca1b6044820152606401610cee565b6014543490611ef6868261397a565b905081811115611f325760405162461bcd60e51b815260206004820152600760248201526609c8ca8406260760cb1b6044820152606401610cee565b600454611f3f3388612b47565b60006001600454611f509190613991565b336000908152601b602090815260408083208a8452909152902054909150611f79908990613967565b336000908152601b602090815260408083208a845290915280822092909255601554915190916001600160a01b03169085908381818185875af1925050503d8060008114611fe3576040519150601f19603f3d011682016040523d82523d6000602084013e611fe8565b606091505b50509050806120095760405162461bcd60e51b8152600401610cee9061383c565b60006120158587613991565b11156120af57336120268587613991565b604051600081818185875af1925050503d8060008114612062576040519150601f19603f3d011682016040523d82523d6000602084013e612067565b606091505b505080915050806120af5760405162461bcd60e51b81526020600482015260126024820152710eadcc2c4d8ca40e8de40e6cadcc840cae8d60731b6044820152606401610cee565b601454601554604080518681526020810186905290810192909252606082018690526001600160a01b031660808201523360a08201527f05aea350acb4679dcab1b95b445190b7db155b8588b5e836915c84282fec3a5f9060c00160405180910390a15050505050505050505050565b600e546001600160a01b031633146121495760405162461bcd60e51b8152600401610cee906137a1565b601455565b606060078054610d5590613767565b600e546001600160a01b031633146121875760405162461bcd60e51b8152600401610cee906137a1565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b816121b3816128ea565b6001600160a01b0383166000908152600c602052604090205460ff166121eb5760405162461bcd60e51b8152600401610cee906137d6565b6121f58383612c7b565b505050565b600e546001600160a01b031633146122245760405162461bcd60e51b8152600401610cee906137a1565b6001600160a01b0382166000908152600c602052604090205481151560ff9091161515036122945760405162461bcd60e51b815260206004820152601c60248201527f58616e616c616e643a2073746174757320616c726561647920736574000000006044820152606401610cee565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b600e546001600160a01b031633146122e95760405162461bcd60e51b8152600401610cee906137a1565b6040805160608101825293845260208085019384526000858301818152938152601a90915220925183559051600183015551600290910155565b604080516001600160a01b038416602082015290810182905260009060600160405160208183030381529060405280519060200120905092915050565b836001600160a01b038116331461237a5761237a336128ea565b336000908152600c602052604090205460ff166123a95760405162461bcd60e51b8152600401610cee906137d6565b6000838152600d602052604090205460ff16156123d85760405162461bcd60e51b8152600401610cee9061380d565b6123e485858585612ce7565b5050505050565b3360009081526010602052604090205460ff1661241a5760405162461bcd60e51b8152600401610cee90613740565b60005b825181101561247d5781600d600085848151811061243d5761243d613b34565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550808061247590613b4a565b91505061241d565b507fc55a0de0f0b6c1b85d9c52787d91c8068c5a331e926fb9e3c575b435e97fe14f82826040516124af929190613b63565b60405180910390a15050565b60606124c68261280e565b61252a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cee565b6000612534612d2b565b505060408051602081019091526000815292915050565b815134906005101561259b5760405162461bcd60e51b81526020600482015260196024820152786e6f74206d6f7265207468616e203520746f6b656e2069647360381b6044820152606401610cee565b601f546040516000916001600160a01b03169083908381818185875af1925050503d80600081146125e8576040519150601f19603f3d011682016040523d82523d6000602084013e6125ed565b606091505b505090508061260e5760405162461bcd60e51b8152600401610cee9061383c565b7f9d3fc7c6858672d62378c66aabf170a70b98ed6283ed4d2367fa23ae47c6cff88433848660405161119194939291906138a6565b3360009081526010602052604090205460ff166126725760405162461bcd60e51b8152600401610cee90613740565b61267b81612d3a565b6040518181527fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb90602001611a5b565b3360009081526010602052604090205460ff166126da5760405162461bcd60e51b8152600401610cee90613740565b60006126e582611a8e565b6001600160a01b0381166000908152600b602090815260408083203384528252808320805460ff19166001179055858352600d90915290205490915060ff1615612768576000828152600d60205260409020805460ff1916905561274a818484610f36565b6000828152600d60205260409020805460ff19166001179055505050565b6121f5818484610f36565b600e546001600160a01b0316331461279d5760405162461bcd60e51b8152600401610cee906137a1565b6001600160a01b0381166128025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cee565b61280b81612c14565b50565b600081600111158015612822575060045482105b8015610cb9575050600090815260086020526040902054600160e01b161590565b600061284e83611a8e565b9050811561288d57336001600160a01b0382161461288d576128708133610b97565b61288d576040516367d9dca160e11b815260040160405180910390fd5b6000838152600a602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b6daaeb6d7670e522a718067333cd4e3b1561280b57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612957573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297b9190613b87565b61280b57604051633b79c77360e21b81526001600160a01b0382166004820152602401610cee565b60006129ae82612b88565b9050836001600160a01b0316816001600160a01b0316146129e15760405162a1148160e81b815260040160405180910390fd5b6000828152600a602052604090208054612a0d8187335b6001600160a01b039081169116811491141790565b612a3857612a1b8633610b97565b612a3857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516612a5f57604051633a954ecd60e21b815260040160405180910390fd5b8015612a6a57600082555b6001600160a01b038681166000908152600960205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260086020526040812091909155600160e11b84169003612afc57600184016000818152600860205260408120549003612afa576004548114612afa5760008181526008602052604090208490555b505b83856001600160a01b0316876001600160a01b0316600080516020613c1583398151915260405160405180910390a45b505050505050565b6000612b408284613967565b9392505050565b610e28828260405180602001604052806000815250612d45565b6121f583838360405180602001604052806000815250612360565b6000612b408284613991565b600081600111612bfb575060008181526008602052604081205490600160e01b82169003612bfb5780600003612bf6576004548210612bda57604051636f96cda160e11b815260040160405180910390fd5b5b50600019016000818152600860205260409020548015612bdb575b919050565b604051636f96cda160e11b815260040160405180910390fd5b600e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612c73838386612dab565b949350505050565b336000818152600b602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b612cf2848484610f36565b6001600160a01b0383163b15610fb957612d0e84848484612dc1565b610fb9576040516368d2bf6b60e11b815260040160405180910390fd5b6060600f8054610d5590613767565b61280b816000612eac565b612d4f8383612fe5565b6001600160a01b0383163b156121f5576004548281035b612d796000868380600101945086612dc1565b612d96576040516368d2bf6b60e11b815260040160405180910390fd5b818110612d665781600454146123e457600080fd5b600082612db885846130bf565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612df6903390899088908890600401613ba4565b6020604051808303816000875af1925050508015612e31575060408051601f3d908101601f19168201909252612e2e91810190613bd7565b60015b612e8f573d808015612e5f576040519150601f19603f3d011682016040523d82523d6000602084013e612e64565b606091505b508051600003612e87576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000612eb783612b88565b905080600080612ed5866000908152600a6020526040902080549091565b915091508415612f1557612eea8184336129f8565b612f1557612ef88333610b97565b612f1557604051632ce44b5f60e11b815260040160405180910390fd5b8015612f2057600082555b6001600160a01b038316600081815260096020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260086020526040812091909155600160e11b85169003612fae57600186016000818152600860205260408120549003612fac576004548114612fac5760008181526008602052604090208590555b505b60405186906000906001600160a01b03861690600080516020613c15833981519152908390a4505060058054600101905550505050565b600454600082900361300a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526009602090815260408083208054680100000000000000018802019055848352600890915281206001851460e11b4260a01b17831790558284019083908390600080516020613c158339815191528180a4600183015b8181146130955780836000600080516020613c15833981519152600080a460010161306f565b50816000036130b657604051622e076360e81b815260040160405180910390fd5b60045550505050565b600081815b845181101561312b5760008582815181106130e1576130e1613b34565b602002602001015190508083116131075760008381526020829052604090209250613118565b600081815260208490526040902092505b508061312381613b4a565b9150506130c4565b509392505050565b6001600160e01b03198116811461280b57600080fd5b60006020828403121561315b57600080fd5b8135612b4081613133565b80356001600160a01b0381168114612bf657600080fd5b6000806040838503121561319057600080fd5b61319983613166565b946020939093013593505050565b6000602082840312156131b957600080fd5b612b4082613166565b6000815180845260005b818110156131e8576020818501810151868301820152016131cc565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000612b4060208301846131c2565b60006020828403121561322d57600080fd5b5035919050565b801515811461280b57600080fd5b6000806040838503121561325557600080fd5b82359150602083013561326781613234565b809150509250929050565b60008060006060848603121561328757600080fd5b61329084613166565b925061329e60208501613166565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156132ec576132ec6132ae565b604052919050565b600082601f83011261330557600080fd5b813560206001600160401b03821115613320576133206132ae565b8160051b61332f8282016132c4565b928352848101820192828101908785111561334957600080fd5b83870192505b848310156133685782358252918301919083019061334f565b979650505050505050565b6000806040838503121561338657600080fd5b82356001600160401b0381111561339c57600080fd5b6133a8858286016132f4565b95602094909401359450505050565b6000806000606084860312156133cc57600080fd5b833592506020840135915060408401356133e581613234565b809150509250925092565b60008083601f84011261340257600080fd5b5081356001600160401b0381111561341957600080fd5b6020830191508360208260051b850101111561343457600080fd5b9250929050565b6000806000806060858703121561345157600080fd5b84356001600160401b0381111561346757600080fd5b613473878288016133f0565b90989097506020870135966040013595509350505050565b60006001600160401b038311156134a4576134a46132ae565b6134b7601f8401601f19166020016132c4565b90508281528383830111156134cb57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156134f457600080fd5b81356001600160401b0381111561350a57600080fd5b8201601f8101841361351b57600080fd5b612c738482356020840161348b565b60008060008060006080868803121561354257600080fd5b61354b86613166565b945060208601356001600160401b0381111561356657600080fd5b613572888289016133f0565b9699909850959660408101359660609091013595509350505050565b6000806000806000608086880312156135a657600080fd5b85356001600160401b038111156135bc57600080fd5b6135c8888289016133f0565b9096509450506020860135925060408601356135e381613234565b949793965091946060013592915050565b6000806040838503121561360757600080fd5b61361083613166565b9150602083013561326781613234565b60008060006060848603121561363557600080fd5b505081359360208301359350604090920135919050565b6000806000806080858703121561366257600080fd5b61366b85613166565b935061367960208601613166565b92506040850135915060608501356001600160401b0381111561369b57600080fd5b8501601f810187136136ac57600080fd5b6136bb8782356020840161348b565b91505092959194509250565b600080604083850312156136da57600080fd5b82356001600160401b038111156136f057600080fd5b6136fc858286016132f4565b925050602083013561326781613234565b6000806040838503121561372057600080fd5b61372983613166565b915061373760208401613166565b90509250929050565b6020808252600d908201526c6e6f7420617574686f72697a6560981b604082015260600190565b600181811c9082168061377b57607f821691505b60208210810361379b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f4552433732313a207472616e73666572206e6f7420616c6c6f77656400000000604082015260600190565b602080825260159082015274115490cdcc8c4e88139195081a5cc81b1bd8dad959605a1b604082015260600190565b6020808252601590820152740eadcc2c4d8ca40e8de40e4cac6cad2ecca40cae8d605b1b604082015260600190565b600081518084526020808501945080840160005b8381101561389b5781518752958201959082019060010161387f565b509495945050505050565b6080815260006138b9608083018761386b565b6001600160a01b03959095166020830152506040810192909252606090910152919050565b60208082526003908201526231303160e81b604082015260600190565b6020808252601490820152731cd85b19481b9bdd081cdd185c9d1959081e595d60621b604082015260600190565b6020808252600e908201526d1cd85b19481a185cc8195b99195960921b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610cb957610cb9613951565b8082028115828204841417610cb957610cb9613951565b81810381811115610cb957610cb9613951565b601f8211156121f557600081815260208120601f850160051c810160208610156139cb5750805b601f850160051c820191505b81811015612b2c578281556001016139d7565b81516001600160401b03811115613a0357613a036132ae565b613a1781613a118454613767565b846139a4565b602080601f831160018114613a4c5760008415613a345750858301515b600019600386901b1c1916600185901b178555612b2c565b600085815260208120601f198616915b82811015613a7b57888601518255948401946001909101908401613a5c565b5085821015613a995787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602080835260008454613abd81613767565b80848701526040600180841660008114613ade5760018114613af857613b26565b60ff1985168984015283151560051b890183019550613b26565b896000528660002060005b85811015613b1e5781548b8201860152908301908801613b03565b8a0184019650505b509398975050505050505050565b634e487b7160e01b600052603260045260246000fd5b600060018201613b5c57613b5c613951565b5060010190565b604081526000613b76604083018561386b565b905082151560208301529392505050565b600060208284031215613b9957600080fd5b8151612b4081613234565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8f908301846131c2565b600060208284031215613be957600080fd5b8151612b408161313356fe9a6dd49d3ca08bac537513f283fa0ffb756ffca298e0ca3426e59487125eb8dbddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122075f266e65acd30e4b2df8200e0bc092bab22026501c177b5c67ef3222c82038a64736f6c63430008110033
Deployed Bytecode Sourcemap
90290:12030:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19571:639;;;;;;;;;;-1:-1:-1;19571:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;19571:639:0;;;;;;;;100252:236;;;;;;;;;;-1:-1:-1;100252:236:0;;;;;:::i;:::-;;:::i;99297:123::-;;;;;;;;;;-1:-1:-1;99297:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;99387:27:0;99365:4;99387:27;;;:17;:27;;;;;;;;;99297:123;20473:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26873:218::-;;;;;;;;;;-1:-1:-1;26873:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2222:32:1;;;2204:51;;2192:2;2177:18;26873:218:0;2058:203:1;99064:121:0;;;;;;;;;;-1:-1:-1;99064:121:0;;;;;:::i;:::-;99128:7;99152:27;;;:13;:27;;;;;;;99064:121;;;;2412:25:1;;;2400:2;2385:18;99064:121:0;2266:177:1;26590:124:0;;;;;;:::i;:::-;;:::i;67163:35::-;;;;;;;;;;;;;;;;96422:139;;;;;;;;;;-1:-1:-1;96422:139:0;;;;;:::i;:::-;;:::i;16224:323::-;;;;;;;;;;-1:-1:-1;16498:12:0;;16482:13;;:28;-1:-1:-1;;16482:46:0;16224:323;;67019:21;;;;;;;;;;;;;;;;99426:175;;;;;;;;;;-1:-1:-1;99426:175:0;;;;;:::i;:::-;;:::i;65693:313::-;;;;;;:::i;:::-;;:::i;750:29::-;;;;;;;;;;-1:-1:-1;750:29:0;;;;;:::i;:::-;;:::i;96902:123::-;;;;;;;;;;-1:-1:-1;96902:123:0;;;;;:::i;:::-;;:::i;97425:378::-;;;;;;:::i;:::-;;:::i;96567:200::-;;;;;;;;;;-1:-1:-1;96567:200:0;;;;;:::i;:::-;;:::i;92114:1382::-;;;;;;:::i;:::-;;:::i;99191:100::-;;;;;;;;;;-1:-1:-1;99191:100:0;;;;;:::i;:::-;99247:4;99269:16;;;:7;:16;;;;;;;;;99191:100;91800:296;;;;;;;;;;-1:-1:-1;91800:296:0;;;;;:::i;:::-;;:::i;61535:143::-;;;;;;;;;;;;60340:42;61535:143;;99858:86;;;;;;;;;;-1:-1:-1;99858:86:0;;;;;:::i;:::-;;:::i;66014:322::-;;;;;;:::i;:::-;;:::i;65074:39::-;;;;;;;;;;-1:-1:-1;65074:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;98976:82;;;;;;;;;;-1:-1:-1;99043:9:0;;98976:82;;93500:662;;;;;;;;;;;;;:::i;66878:45::-;;;;;;;;;;-1:-1:-1;66878:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;100500:122;;;;;;;;;;-1:-1:-1;100500:122:0;;;;;:::i;:::-;;:::i;90860:142::-;;;;;;;;;;-1:-1:-1;90860:142:0;;;;;:::i;:::-;;:::i;67557:34::-;;;;;;;;;;;;;;;;21866:152;;;;;;;;;;-1:-1:-1;21866:152:0;;;;;:::i;:::-;;:::i;98300:81::-;;;;;;;;;;-1:-1:-1;98300:81:0;;;;;:::i;:::-;;:::i;96284:134::-;;;;;;;;;;-1:-1:-1;96284:134:0;;;;;:::i;:::-;;:::i;66854:21::-;;;;;;;;;;;;;:::i;97808:92::-;;;;;;;;;;-1:-1:-1;97808:92:0;;;;;:::i;:::-;;:::i;97991:87::-;;;;;;;;;;-1:-1:-1;97991:87:0;;;;;:::i;:::-;;:::i;17408:233::-;;;;;;;;;;-1:-1:-1;17408:233:0;;;;;:::i;:::-;;:::i;70168:94::-;;;;;;;;;;;;;:::i;91004:230::-;;;;;;;;;;-1:-1:-1;91004:230:0;;;;;:::i;:::-;;:::i;96773:123::-;;;;;;;;;;-1:-1:-1;96773:123:0;;;;;:::i;:::-;;:::i;94169:1578::-;;;;;;:::i;:::-;;:::i;65018:49::-;;;;;;;;;;-1:-1:-1;65018:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;98573:223;;;;;;;;;;-1:-1:-1;98573:223:0;;;;;:::i;:::-;98642:18;98700:27;;;:12;:27;;;;;:37;;98755:35;;;;;98700:37;;98573:223;;;;;9148:25:1;;;9204:2;9189:18;;9182:34;;;;9121:18;98573:223:0;8974:248:1;69517:87:0;;;;;;;;;;-1:-1:-1;69590:6:0;;-1:-1:-1;;;;;69590:6:0;69517:87;;98802:82;;;;;;;;;;-1:-1:-1;98802:82:0;;;;;:::i;:::-;;:::i;20649:104::-;;;;;;;;;;;;;:::i;98890:80::-;;;;;;;;;;-1:-1:-1;98955:9:0;;98890:80;;99950:92;;;;;;;;;;-1:-1:-1;99950:92:0;;;;;:::i;:::-;-1:-1:-1;100030:6:0;;-1:-1:-1;;;;;100030:6:0;;99950:92;100048:97;;;;;;;;;;-1:-1:-1;100048:97:0;;;;;:::i;:::-;-1:-1:-1;100132:7:0;;;100048:97;97908:77;;;;;;;;;;-1:-1:-1;97908:77:0;;;;;:::i;:::-;;:::i;634:43::-;;;;;;;;;;-1:-1:-1;634:43:0;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;634:43:0;;;65396:255;;;;;;;;;;-1:-1:-1;65396:255:0;;;;;:::i;:::-;;:::i;98084:208::-;;;;;;;;;;-1:-1:-1;98084:208:0;;;;;:::i;:::-;;:::i;67136:23::-;;;;;;;;;;;;;;;;98387:180;;;;;;;;;;-1:-1:-1;98387:180:0;;;;;:::i;:::-;;:::i;91240:146::-;;;;;;;;;;-1:-1:-1;91240:146:0;;;;;:::i;:::-;;:::i;66344:346::-;;;;;;:::i;:::-;;:::i;99611:241::-;;;;;;;;;;-1:-1:-1;99611:241:0;;;;;:::i;:::-;;:::i;100801:251::-;;;;;;;;;;-1:-1:-1;100801:251:0;;;;;:::i;:::-;;:::i;97037:382::-;;;;;;:::i;:::-;;:::i;95759:105::-;;;;;;;;;;-1:-1:-1;95759:105:0;;;;;:::i;:::-;;:::i;27822:164::-;;;;;;;;;;-1:-1:-1;27822:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27943:25:0;;;27919:4;27943:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27822:164;14980:70;;;;;;;;;;-1:-1:-1;14980:70:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;95870:403;;;;;;;;;;-1:-1:-1;95870:403:0;;;;;:::i;:::-;;:::i;70417:192::-;;;;;;;;;;-1:-1:-1;70417:192:0;;;;;:::i;:::-;;:::i;67507:46::-;;;;;;;;;;-1:-1:-1;67507:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;19571:639;19656:4;-1:-1:-1;;;;;;;;;19980:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;20057:25:0;;;19980:102;:179;;;-1:-1:-1;;;;;;;;;;20134:25:0;;;19980:179;19960:199;19571:639;-1:-1:-1;;19571:639:0:o;100252:236::-;90802:10;90788:25;;;;:13;:25;;;;;;;;90780:51;;;;-1:-1:-1;;;90780:51:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;100330:16:0::1;100352:1;100330:16:::0;;;:10:::1;:16;::::0;;;;;;;100347:1:::1;100330:19:::0;;;;;;;;:23;;;100379:1:::1;100362:19:::0;;;;;:23;;;100411:1:::1;100394:19:::0;;;;;:23;;;100443:2:::1;100426:20:::0;;;;;:24;;;100476:1:::1;100459:19:::0;;;;:23;100252:236::o;20473:100::-;20527:13;20560:5;20553:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20473:100;:::o;26873:218::-;26949:7;26974:16;26982:7;26974;:16::i;:::-;26969:64;;26999:34;;-1:-1:-1;;;26999:34:0;;;;;;;;;;;26969:64;-1:-1:-1;27053:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;27053:30:0;;26873:218::o;26590:124::-;26679:27;26688:2;26692:7;26701:4;26679:8;:27::i;:::-;26590:124;;:::o;96422:139::-;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;96490:19:0::1;96512:5;96490:19:::0;;;:13:::1;:19;::::0;;;;;;;:27;;-1:-1:-1;;96490:27:0;;::::1;::::0;;;96524:17:::1;:23:::0;;;;;;:31;;;;::::1;::::0;;96422:139::o;99426:175::-;90802:10;90788:25;;;;:13;:25;;;;;;;;90780:51;;;;-1:-1:-1;;;90780:51:0;;;;;;;:::i;:::-;99514:16:::1;::::0;;;:7:::1;:16;::::0;;;;;:26;::::1;;:16;::::0;;::::1;:26;;::::0;99506:57:::1;;;::::0;-1:-1:-1;;;99506:57:0;;12577:2:1;99506:57:0::1;::::0;::::1;12559:21:1::0;12616:2;12596:18;;;12589:30;-1:-1:-1;;;12635:18:1;;;12628:48;12693:18;;99506:57:0::1;12375:342:1::0;99506:57:0::1;99570:16;::::0;;;:7:::1;:16;::::0;;;;;:25;;-1:-1:-1;;99570:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;99426:175::o;65693:313::-;65802:4;-1:-1:-1;;;;;63043:18:0;;63051:10;63043:18;63039:83;;63078:32;63099:10;63078:20;:32::i;:::-;65846:10:::1;65828:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;65820:69;;;;-1:-1:-1::0;;;65820:69:0::1;;;;;;;:::i;:::-;65909:16;::::0;;;:7:::1;:16;::::0;;;;;::::1;;65908:17;65900:50;;;;-1:-1:-1::0;;;65900:50:0::1;;;;;;;:::i;:::-;65961:37;65980:4;65986:2;65990:7;65961:18;:37::i;:::-;65693:313:::0;;;;:::o;750:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;96902:123::-;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;96982:19:::1;:31:::0;96902:123::o;97425:378::-;97555:15;;97531:9;;97574:1;-1:-1:-1;97555:20:0;97547:58;;;;-1:-1:-1;;;97547:58:0;;13631:2:1;97547:58:0;;;13613:21:1;13670:2;13650:18;;;13643:30;-1:-1:-1;;;13689:18:1;;;13682:55;13754:18;;97547:58:0;13429:349:1;97547:58:0;97638:12;;97630:52;;97613:12;;-1:-1:-1;;;;;97638:12:0;;97664:13;;97613:12;97630:52;97613:12;97630:52;97664:13;97638:12;97630:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97612:70;;;97693:7;97689:44;;97702:31;;-1:-1:-1;;;97702:31:0;;;;;;;:::i;97689:44::-;97745:52;97757:8;97766:10;97777:13;97792:4;97745:52;;;;;;;;;:::i;:::-;;;;;;;;97500:303;;97425:378;;:::o;96567:200::-;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;96673:28:::1;::::0;;;:13:::1;:28;::::0;;;;;;;:36;;;;96716:18:::1;:33:::0;;;;;:45;;-1:-1:-1;;96716:45:0::1;::::0;::::1;;::::0;;;::::1;::::0;;96567:200::o;92114:1382::-;92229:10;92243:9;92229:23;92221:39;;;;-1:-1:-1;;;92221:39:0;;;;;;;:::i;:::-;92275:33;;;;:18;:33;;;;;;;;92267:59;;;;-1:-1:-1;;;92267:59:0;;15823:2:1;92267:59:0;;;15805:21:1;15862:2;15842:18;;;15835:30;-1:-1:-1;;;15881:18:1;;;15874:43;15934:18;;92267:59:0;15621:337:1;92267:59:0;92341:27;;;;:12;:27;;;;;:37;92382:15;-1:-1:-1;92341:56:0;92333:89;;;;-1:-1:-1;;;92333:89:0;;;;;;;:::i;:::-;92437:27;;;;:12;:27;;;;;:35;;;92475:15;-1:-1:-1;92429:80:0;;;;-1:-1:-1;;;92429:80:0;;;;;;;:::i;:::-;92547:5;92524:19;;:28;;92516:53;;;;-1:-1:-1;;;92516:53:0;;16857:2:1;92516:53:0;;;16839:21:1;16896:2;16876:18;;;16869:30;-1:-1:-1;;;16915:18:1;;;16908:42;16967:18;;92516:53:0;16655:336:1;92516:53:0;92576:16;92643:5;92596:44;92615:10;92626:13;92596:18;:44::i;:::-;:52;;;;:::i;:::-;92688:2;92676:15;;:11;:15;;-1:-1:-1;;;;;;;;;;;92676:15:0;92576:72;;-1:-1:-1;92676:26:0;;92696:5;92676:19;:26::i;:::-;92663:9;;:39;;92655:59;;;;-1:-1:-1;;;92655:59:0;;17460:2:1;92655:59:0;;;17442:21:1;17499:1;17479:18;;;17472:29;-1:-1:-1;;;17517:18:1;;;17510:37;17564:18;;92655:59:0;17258:330:1;92655:59:0;92729:56;92743:10;92755:5;;92762:8;92771:13;92729;:56::i;:::-;92721:82;;;;-1:-1:-1;;;92721:82:0;;;;;;;:::i;:::-;92866:9;;92834;;92890:13;92898:5;92866:9;92890:13;:::i;:::-;92882:21;;92927:13;92918:5;:22;;92910:42;;;;-1:-1:-1;;;92910:42:0;;17968:2:1;92910:42:0;;;17950:21:1;18007:1;17987:18;;;17980:29;-1:-1:-1;;;18025:18:1;;;18018:37;18072:18;;92910:42:0;17766:330:1;92910:42:0;92985:6;;92977:38;;92960:12;;-1:-1:-1;;;;;92985:6:0;;93005:5;;92960:12;92977:38;92960:12;92977:38;93005:5;92985:6;92977:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92959:56;;;93026:7;93022:44;;93035:31;;-1:-1:-1;;;93035:31:0;;;;;;;:::i;93022:44::-;93100:1;93076:21;93092:5;93076:13;:21;:::i;:::-;:25;93073:175;;;93136:10;93161:21;93177:5;93161:13;:21;:::i;:::-;93128:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93114:74;;;;;93203:7;93199:41;;93212:28;;-1:-1:-1;;;93212:28:0;;18436:2:1;93212:28:0;;;18418:21:1;18475:2;18455:18;;;18448:30;-1:-1:-1;;;18494:18:1;;;18487:48;18552:18;;93212:28:0;18234:342:1;93199:41:0;93311:10;93300:22;;;;:10;:22;;;;;;;;:37;;;;;;;;:46;;93341:5;;93300:22;:46;;93341:5;;93300:46;:::i;:::-;;;;-1:-1:-1;;93364:10:0;93353:22;;;;:10;:22;;;;;;;;93376:2;93353:26;;;;;;;:35;;93383:5;;93353:22;:35;;93383:5;;93353:35;:::i;:::-;;;;-1:-1:-1;;93408:2:0;93396:15;;;;:11;:15;;-1:-1:-1;;;;;;;;;;;93396:24:0;;93415:5;;93396:15;:24;;93415:5;;93396:24;:::i;:::-;;;;-1:-1:-1;;93444:9:0;;93462:6;;93432:56;;;18840:25:1;;;18896:2;18881:18;;18874:34;;;-1:-1:-1;;;;;93462:6:0;;;18962:18:1;;;18955:43;93470:10:0;19029:2:1;19014:18;;19007:43;19081:3;19066:19;;19059:35;;;93432:56:0;;;;;;18827:3:1;93432:56:0;;;92214:1282;;;;92114:1382;;;;:::o;91800:296::-;90802:10;90788:25;;;;:13;:25;;;;;;;;90780:51;;;;-1:-1:-1;;;90780:51:0;;;;;;;:::i;:::-;16498:12;;16482:13;;91906:10;;16482:28;;-1:-1:-1;;16482:46:0;91891:25:::1;;;;:::i;:::-;91878:9;;:38;;91870:67;;;::::0;-1:-1:-1;;;91870:67:0;;19307:2:1;91870:67:0::1;::::0;::::1;19289:21:1::0;19346:2;19326:18;;;19319:30;-1:-1:-1;;;19365:18:1;;;19358:46;19421:18;;91870:67:0::1;19105:340:1::0;91870:67:0::1;91960:13;::::0;91981:26:::1;91991:3:::0;91996:10;91981:9:::1;:26::i;:::-;92014:11;92044:1;92028:13;;:17;;;;:::i;:::-;92057:33;::::0;;19681:25:1;;;19737:2;19722:18;;19715:34;;;19765:18;;;19758:34;;;-1:-1:-1;;;;;19828:32:1;;19823:2;19808:18;;19801:60;92014:31:0;;-1:-1:-1;92057:33:0::1;::::0;19668:3:1;19653:19;92057:33:0::1;19450:417:1::0;99858:86:0;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;99921:7:::1;:17:::0;99858:86::o;66014:322::-;66127:4;-1:-1:-1;;;;;63043:18:0;;63051:10;63043:18;63039:83;;63078:32;63099:10;63078:20;:32::i;:::-;66172:10:::1;66154:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;66146:69;;;;-1:-1:-1::0;;;66146:69:0::1;;;;;;;:::i;:::-;66235:16;::::0;;;:7:::1;:16;::::0;;;;;::::1;;66234:17;66226:50;;;;-1:-1:-1::0;;;66226:50:0::1;;;;;;;:::i;:::-;66287:41;66310:4;66316:2;66320:7;66287:22;:41::i;93500:662::-:0;93541:10;93555:9;93541:23;93533:39;;;;-1:-1:-1;;;93533:39:0;;;;;;;:::i;:::-;93637:10;93579:13;93626:22;;;:10;:22;;;;;;;;93649:1;93626:25;;;;;;;;;93618:2;93595:26;;;;;;:57;;:30;:57::i;:::-;93708:10;93697:22;;;;:10;:22;;;;;;;;93720:1;93697:25;;;;;;;;;93690:2;93667:26;;;;;93579:73;;-1:-1:-1;;93659:80:0;;;;-1:-1:-1;;;93659:80:0;;20074:2:1;93659:80:0;;;20056:21:1;20113:2;20093:18;;;20086:30;-1:-1:-1;;;20132:18:1;;;20125:41;20183:18;;93659:80:0;19872:335:1;93659:80:0;93768:1;93755:15;;:12;:15;;;:25;93784:15;-1:-1:-1;93755:44:0;93747:77;;;;-1:-1:-1;;;93747:77:0;;;;;;;:::i;:::-;93852:1;93839:15;;:12;:15;;:23;;93865:15;-1:-1:-1;93831:68:0;;;;-1:-1:-1;;;93831:68:0;;;;;;;:::i;:::-;93921:13;;93942:28;93952:10;93964:5;93942:9;:28::i;:::-;93977:10;94006:1;93990:13;;:17;;;;:::i;:::-;94026:2;94014:15;;;;:11;:15;;-1:-1:-1;;;;;;;;;;;94014:24:0;;93977:30;;-1:-1:-1;94033:5:0;;94014:15;;;:24;;94033:5;;94014:24;:::i;:::-;;;;-1:-1:-1;;94057:1:0;94045:14;;;;:11;:14;;;:23;;94063:5;;94045:14;:23;;94063:5;;94045:23;:::i;:::-;;;;-1:-1:-1;;94086:10:0;94075:22;;;;:10;:22;;;;;;;;94098:1;94075:25;;;;;;;:34;;94104:5;;94075:22;:34;;94104:5;;94075:34;:::i;:::-;;;;-1:-1:-1;;94122:34:0;;;20414:25:1;;;20470:2;20455:18;;20448:34;;;94145:10:0;20498:18:1;;;20491:60;94122:34:0;;;;;;;20402:2:1;94122:34:0;;;93526:636;;;93500:662::o;100500:122::-;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;100570:7:::1;:18;100580:8:::0;100570:7;:18:::1;:::i;:::-;;100600:16;100608:7;100600:16;;;;;;:::i;:::-;;;;;;;;100500:122:::0;:::o;90860:142::-;-1:-1:-1;;;;;90967:16:0;;;;90946:7;90967:16;;;:10;:16;;;;;;;;:31;;;;;;;;;90860:142::o;21866:152::-;21938:7;21981:27;22000:7;21981:18;:27::i;98300:81::-;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;98360:6:::1;:15:::0;98300:81::o;96284:134::-;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;96349:19:0::1;;::::0;;;:13:::1;:19;::::0;;;;;;;:26;;96371:4:::1;-1:-1:-1::0;;96349:26:0;;::::1;::::0;::::1;::::0;;;96382:17:::1;:23:::0;;;;;:30;;;;::::1;::::0;;::::1;::::0;;96284:134::o;66854:21::-;;;;;;;:::i;97808:92::-;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;97875:12:::1;:19:::0;;-1:-1:-1;;;;;;97875:19:0::1;-1:-1:-1::0;;;;;97875:19:0;;;::::1;::::0;;;::::1;::::0;;97808:92::o;97991:87::-;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;98055:9:::1;:17:::0;97991:87::o;17408:233::-;17480:7;-1:-1:-1;;;;;17504:19:0;;17500:60;;17532:28;;-1:-1:-1;;;17532:28:0;;;;;;;;;;;17500:60;-1:-1:-1;;;;;;17578:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;17578:55:0;;17408:233::o;70168:94::-;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;70233:21:::1;70251:1;70233:9;:21::i;:::-;70168:94::o:0;91004:230::-;91132:4;91156:70;91164:24;91170:7;91179:8;91164:5;:24::i;:::-;91190:5;;91156:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;91197:28:0;;;:13;:28;;;;;;;-1:-1:-1;91156:7:0;;-1:-1:-1;;91156:70:0:i;:::-;91149:77;91004:230;-1:-1:-1;;;;;;91004:230:0:o;96773:123::-;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;96852:20:::1;:32:::0;96773:123::o;94169:1578::-;94293:10;94307:9;94293:23;94285:39;;;;-1:-1:-1;;;94285:39:0;;;;;;;:::i;:::-;94339:27;;;;:12;:27;;;;;:37;94380:15;-1:-1:-1;94339:56:0;94331:89;;;;-1:-1:-1;;;94331:89:0;;;;;;;:::i;:::-;94435:27;;;;:12;:27;;;;;:35;;;94473:15;-1:-1:-1;94427:80:0;;;;-1:-1:-1;;;94427:80:0;;;;;;;:::i;:::-;94545:5;94522:19;;:28;;94514:53;;;;-1:-1:-1;;;94514:53:0;;16857:2:1;94514:53:0;;;16839:21:1;16896:2;16876:18;;;16869:30;-1:-1:-1;;;16915:18:1;;;16908:42;16967:18;;94514:53:0;16655:336:1;94514:53:0;94583:33;;;;:18;:33;;;;;;;;94582:34;94574:60;;;;-1:-1:-1;;;94574:60:0;;15823:2:1;94574:60:0;;;15805:21:1;15862:2;15842:18;;;15835:30;-1:-1:-1;;;15881:18:1;;;15874:43;15934:18;;94574:60:0;15621:337:1;94574:60:0;94641:16;94660:7;:66;;94725:1;94660:66;;;94717:5;94670:44;94689:10;94700:13;94670:18;:44::i;:::-;:52;;;;:::i;:::-;94641:85;;94737:6;;94747:1;94737:11;94733:99;;94758:56;94772:10;94784:5;;94791:8;94800:13;94758;:56::i;:::-;94750:82;;;;-1:-1:-1;;;94750:82:0;;;;;;;:::i;:::-;94847:6;;94857:1;94847:11;94839:41;;;;-1:-1:-1;;;94839:41:0;;23936:2:1;94839:41:0;;;23918:21:1;23975:2;23955:18;;;23948:30;-1:-1:-1;;;23994:18:1;;;23987:47;24051:18;;94839:41:0;23734:341:1;94839:41:0;16498:12;;16482:13;;94939:24;;-1:-1:-1;;16482:28:0;;:46;94957:5;94939:17;:24::i;:::-;94929:2;94917:15;;:11;:15;;-1:-1:-1;;;;;;;;;;;94917:15:0;94903:9;;:30;;:13;:30::i;:::-;:60;;94895:80;;;;-1:-1:-1;;;94895:80:0;;17460:2:1;94895:80:0;;;17442:21:1;17499:1;17479:18;;;17472:29;-1:-1:-1;;;17517:18:1;;;17510:37;17564:18;;94895:80:0;17258:330:1;94895:80:0;95040:9;;95008;;95064:13;95072:5;95040:9;95064:13;:::i;:::-;95056:21;;95101:13;95092:5;:22;;95084:42;;;;-1:-1:-1;;;95084:42:0;;17968:2:1;95084:42:0;;;17950:21:1;18007:1;17987:18;;;17980:29;-1:-1:-1;;;18025:18:1;;;18018:37;18072:18;;95084:42:0;17766:330:1;95084:42:0;95160:13;;95181:28;95191:10;95203:5;95181:9;:28::i;:::-;95216:10;95244:1;95229:13;;:16;;;;:::i;:::-;95316:10;95305:22;;;;:10;:22;;;;;;;;:37;;;;;;;;;95216:29;;-1:-1:-1;95305:44:0;;95344:5;;95305:44;:::i;:::-;95277:10;95266:22;;;;:10;:22;;;;;;;;:37;;;;;;;;;:83;;;;95387:6;;95379:38;;95266:22;;-1:-1:-1;;;;;95387:6:0;;95407:5;;95266:22;95379:38;95266:22;95379:38;95407:5;95387:6;95379:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95361:56;;;95432:7;95428:44;;95441:31;;-1:-1:-1;;;95441:31:0;;;;;;;:::i;95428:44::-;95510:1;95486:21;95502:5;95486:13;:21;:::i;:::-;:25;95483:187;;;95550:10;95575:21;95591:5;95575:13;:21;:::i;:::-;95542:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95528:74;;;;;95621:7;95617:41;;95630:28;;-1:-1:-1;;;95630:28:0;;18436:2:1;95630:28:0;;;18418:21:1;18475:2;18455:18;;;18448:30;-1:-1:-1;;;18494:18:1;;;18487:48;18552:18;;95630:28:0;18234:342:1;95617:41:0;95704:9;;95722:6;;95682:59;;;24367:25:1;;;24423:2;24408:18;;24401:34;;;24451:18;;;24444:34;;;;24509:2;24494:18;;24487:34;;;-1:-1:-1;;;;;95722:6:0;24590:3:1;24575:19;;24568:44;95730:10:0;24548:3:1;24628:19;;24621:44;95682:59:0;;24354:3:1;24339:19;95682:59:0;;;;;;;94278:1469;;;;;;94169:1578;;;;;:::o;98802:82::-;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;98861:9:::1;:17:::0;98802:82::o;20649:104::-;20705:13;20738:7;20731:14;;;;;:::i;97908:77::-;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;97967:6:::1;:12:::0;;-1:-1:-1;;;;;;97967:12:0::1;-1:-1:-1::0;;;;;97967:12:0;;;::::1;::::0;;;::::1;::::0;;97908:77::o;65396:255::-;65500:8;63317:30;63338:8;63317:20;:30::i;:::-;-1:-1:-1;;;;;65530:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;65522:67;;;;-1:-1:-1::0;;;65522:67:0::1;;;;;;;:::i;:::-;65600:43;65624:8;65634;65600:23;:43::i;:::-;65396:255:::0;;;:::o;98084:208::-;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;98175:23:0;::::1;;::::0;;;:17:::1;:23;::::0;;;;;:33;::::1;;:23;::::0;;::::1;:33;;::::0;98167:74:::1;;;::::0;-1:-1:-1;;;98167:74:0;;24878:2:1;98167:74:0::1;::::0;::::1;24860:21:1::0;24917:2;24897:18;;;24890:30;24956;24936:18;;;24929:58;25004:18;;98167:74:0::1;24676:352:1::0;98167:74:0::1;-1:-1:-1::0;;;;;98252:23:0;;;::::1;;::::0;;;:17:::1;:23;::::0;;;;:32;;-1:-1:-1;;98252:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;98084:208::o;98387:180::-;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;98526:35:::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;-1:-1:-1;98526:35:0;;;;;;98496:27;;;:12:::1;:27:::0;;;;:65;;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;98387:180::o;91240:146::-;91348:29;;;-1:-1:-1;;;;;25225:32:1;;91348:29:0;;;25207:51:1;25274:18;;;25267:34;;;91311:7:0;;25180:18:1;;91348:29:0;;;;;;;;;;;;91338:40;;;;;;91331:47;;91240:146;;;;:::o;66344:346::-;66476:4;-1:-1:-1;;;;;63043:18:0;;63051:10;63043:18;63039:83;;63078:32;63099:10;63078:20;:32::i;:::-;66520:10:::1;66502:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;66494:69;;;;-1:-1:-1::0;;;66494:69:0::1;;;;;;;:::i;:::-;66583:16;::::0;;;:7:::1;:16;::::0;;;;;::::1;;66582:17;66574:50;;;;-1:-1:-1::0;;;66574:50:0::1;;;;;;;:::i;:::-;66635:47;66658:4;66664:2;66668:7;66677:4;66635:22;:47::i;:::-;66344:346:::0;;;;;:::o;99611:241::-;90802:10;90788:25;;;;:13;:25;;;;;;;;90780:51;;;;-1:-1:-1;;;90780:51:0;;;;;;;:::i;:::-;99701:13:::1;99696:108;99728:8;:15;99720:5;:23;99696:108;;;99790:6;99763:7;:24;99771:8;99780:5;99771:15;;;;;;;;:::i;:::-;;;;;;;99763:24;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;99745:7;;;;;:::i;:::-;;;;99696:108;;;;99815:31;99829:8;99839:6;99815:31;;;;;;;:::i;:::-;;;;;;;;99611:241:::0;;:::o;100801:251::-;100874:13;100908:16;100916:7;100908;:16::i;:::-;100900:76;;;;-1:-1:-1;;;100900:76:0;;26133:2:1;100900:76:0;;;26115:21:1;26172:2;26152:18;;;26145:30;26211:34;26191:18;;;26184:62;-1:-1:-1;;;26262:18:1;;;26255:45;26317:19;;100900:76:0;25931:411:1;100900:76:0;100989:21;101013:10;:8;:10::i;:::-;-1:-1:-1;;101034:10:0;;;;;;;;;-1:-1:-1;101034:10:0;;;100801:251;-1:-1:-1;;100801:251:0:o;97037:382::-;97169:15;;97145:9;;97188:1;-1:-1:-1;97169:20:0;97161:58;;;;-1:-1:-1;;;97161:58:0;;13631:2:1;97161:58:0;;;13613:21:1;13670:2;13650:18;;;13643:30;-1:-1:-1;;;13689:18:1;;;13682:55;13754:18;;97161:58:0;13429:349:1;97161:58:0;97252:12;;97244:52;;97227:12;;-1:-1:-1;;;;;97252:12:0;;97278:13;;97227:12;97244:52;97227:12;97244:52;97278:13;97252:12;97244:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97226:70;;;97307:7;97303:44;;97316:31;;-1:-1:-1;;;97316:31:0;;;;;;;:::i;97303:44::-;97359:54;97373:8;97382:10;97393:13;97408:4;97359:54;;;;;;;;;:::i;95759:105::-;90802:10;90788:25;;;;:13;:25;;;;;;;;90780:51;;;;-1:-1:-1;;;90780:51:0;;;;;;;:::i;:::-;95819:14:::1;95825:7;95819:5;:14::i;:::-;95845:13;::::0;2412:25:1;;;95845:13:0::1;::::0;2400:2:1;2385:18;95845:13:0::1;2266:177:1::0;95870:403:0;90802:10;90788:25;;;;:13;:25;;;;;;;;90780:51;;;;-1:-1:-1;;;90780:51:0;;;;;;;:::i;:::-;95948:13:::1;95964:16;95972:7;95964;:16::i;:::-;-1:-1:-1::0;;;;;95990:25:0;::::1;;::::0;;;:18:::1;:25;::::0;;;;;;;68394:10;95990:46;;;;;;;:53;;-1:-1:-1;;95990:53:0::1;96039:4;95990:53;::::0;;96055:16;;;:7:::1;:16:::0;;;;;;95990:25;;-1:-1:-1;95990:53:0::1;96055:16;96052:208;;;96104:5;96085:16:::0;;;:7:::1;:16;::::0;;;;:24;;-1:-1:-1;;96085:24:0::1;::::0;;96122:32:::1;96135:5:::0;96142:2;96093:7;96122:12:::1;:32::i;:::-;96167:16;::::0;;;:7:::1;:16;::::0;;;;:23;;-1:-1:-1;;96167:23:0::1;96186:4;96167:23;::::0;;65396:255;;;:::o;96052:208::-:1;96218:32;96231:5;96238:2;96242:7;96218:12;:32::i;70417:192::-:0;69590:6;;-1:-1:-1;;;;;69590:6:0;68394:10;69737:23;69729:68;;;;-1:-1:-1;;;69729:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;70506:22:0;::::1;70498:73;;;::::0;-1:-1:-1;;;70498:73:0;;26549:2:1;70498:73:0::1;::::0;::::1;26531:21:1::0;26588:2;26568:18;;;26561:30;26627:34;26607:18;;;26600:62;-1:-1:-1;;;26678:18:1;;;26671:36;26724:19;;70498:73:0::1;26347:402:1::0;70498:73:0::1;70582:19;70592:8;70582:9;:19::i;:::-;70417:192:::0;:::o;28244:282::-;28309:4;28365:7;15823:1;28346:26;;:66;;;;;28399:13;;28389:7;:23;28346:66;:153;;;;-1:-1:-1;;28450:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;28450:44:0;:49;;28244:282::o;45302:492::-;45431:13;45447:16;45455:7;45447;:16::i;:::-;45431:32;;45480:13;45476:219;;;68394:10;-1:-1:-1;;;;;45512:28:0;;;45508:187;;45564:44;45581:5;68394:10;27822:164;:::i;45564:44::-;45559:136;;45640:35;;-1:-1:-1;;;45640:35:0;;;;;;;;;;;45559:136;45707:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;45707:35:0;-1:-1:-1;;;;;45707:35:0;;;;;;;;;45758:28;;45707:24;;45758:28;;;;;;;45420:374;45302:492;;;:::o;63460:647::-;60340:42;63651:45;:49;63647:453;;63950:67;;-1:-1:-1;;;63950:67:0;;64001:4;63950:67;;;26966:34:1;-1:-1:-1;;;;;27036:15:1;;27016:18;;;27009:43;60340:42:0;;63950;;26901:18:1;;63950:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63945:144;;64045:28;;-1:-1:-1;;;64045:28:0;;-1:-1:-1;;;;;2222:32:1;;64045:28:0;;;2204:51:1;2177:18;;64045:28:0;2058:203:1;30512:2825:0;30654:27;30684;30703:7;30684:18;:27::i;:::-;30654:57;;30769:4;-1:-1:-1;;;;;30728:45:0;30744:19;-1:-1:-1;;;;;30728:45:0;;30724:86;;30782:28;;-1:-1:-1;;;30782:28:0;;;;;;;;;;;30724:86;30824:27;29620:24;;;:15;:24;;;;;29848:26;;31015:68;29848:26;31057:4;68394:10;31063:19;-1:-1:-1;;;;;29094:32:0;;;28938:28;;29223:20;;29245:30;;29220:56;;28635:659;31015:68;31010:180;;31103:43;31120:4;68394:10;27822:164;:::i;31103:43::-;31098:92;;31155:35;;-1:-1:-1;;;31155:35:0;;;;;;;;;;;31098:92;-1:-1:-1;;;;;31207:16:0;;31203:52;;31232:23;;-1:-1:-1;;;31232:23:0;;;;;;;;;;;31203:52;31404:15;31401:160;;;31544:1;31523:19;31516:30;31401:160;-1:-1:-1;;;;;31941:24:0;;;;;;;:18;:24;;;;;;31939:26;;-1:-1:-1;;31939:26:0;;;32010:22;;;;;;;;;32008:24;;-1:-1:-1;32008:24:0;;;25692:11;25667:23;25663:41;25650:63;-1:-1:-1;;;25650:63:0;32303:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;32598:47:0;;:52;;32594:627;;32703:1;32693:11;;32671:19;32826:30;;;:17;:30;;;;;;:35;;32822:384;;32964:13;;32949:11;:28;32945:242;;33111:30;;;;:17;:30;;;;;:52;;;32945:242;32652:569;32594:627;33268:7;33264:2;-1:-1:-1;;;;;33249:27:0;33258:4;-1:-1:-1;;;;;33249:27:0;-1:-1:-1;;;;;;;;;;;33249:27:0;;;;;;;;;33287:42;30643:2694;;;30512:2825;;;:::o;84724:98::-;84782:7;84809:5;84813:1;84809;:5;:::i;:::-;84802:12;84724:98;-1:-1:-1;;;84724:98:0:o;44384:112::-;44461:27;44471:2;44475:8;44461:27;;;;;;;;;;;;:9;:27::i;33433:193::-;33579:39;33596:4;33602:2;33606:7;33579:39;;;;;;;;;;;;:16;:39::i;85105:98::-;85163:7;85190:5;85194:1;85190;:5;:::i;23021:1712::-;23088:14;23138:7;15823:1;23119:26;23115:1562;;-1:-1:-1;23171:26:0;;;;:17;:26;;;;;;;-1:-1:-1;;;23247:24:0;;:29;;23243:1423;;23386:6;23396:1;23386:11;23382:981;;23437:13;;23426:7;:24;23422:68;;23459:31;;-1:-1:-1;;;23459:31:0;;;;;;;;;;;23422:68;24087:257;-1:-1:-1;;;24191:9:0;24173:28;;;;:17;:28;;;;;;24255:25;;24087:257;24255:25;;23021:1712;;;:::o;23243:1423::-;24694:31;;-1:-1:-1;;;24694:31:0;;;;;;;;;;;70617:174;70693:6;;;-1:-1:-1;;;;;70710:17:0;;;-1:-1:-1;;;;;;70710:17:0;;;;;;;70743:40;;70693:6;;;70710:17;70693:6;;70743:40;;70674:16;;70743:40;70663:128;70617:174;:::o;91392:159::-;91482:4;91506:37;91525:5;91532:4;91538;91506:18;:37::i;:::-;91499:44;91392:159;-1:-1:-1;;;;91392:159:0:o;27431:234::-;68394:10;27526:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;27526:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;27526:60:0;;;;;;;;;;27602:55;;540:41:1;;;27526:49:0;;68394:10;27602:55;;513:18:1;27602:55:0;;;;;;;27431:234;;:::o;34224:407::-;34399:31;34412:4;34418:2;34422:7;34399:12;:31::i;:::-;-1:-1:-1;;;;;34445:14:0;;;:19;34441:183;;34484:56;34515:4;34521:2;34525:7;34534:5;34484:30;:56::i;:::-;34479:145;;34568:40;;-1:-1:-1;;;34568:40:0;;;;;;;;;;;100627:106;100687:13;100718:7;100711:14;;;;;:::i;46061:89::-;46121:21;46127:7;46136:5;46121;:21::i;43611:689::-;43742:19;43748:2;43752:8;43742:5;:19::i;:::-;-1:-1:-1;;;;;43803:14:0;;;:19;43799:483;;43857:13;;43905:14;;;43938:233;43969:62;44008:1;44012:2;44016:7;;;;;;44025:5;43969:30;:62::i;:::-;43964:167;;44067:40;;-1:-1:-1;;;44067:40:0;;;;;;;;;;;43964:167;44166:3;44158:5;:11;43938:233;;44253:3;44236:13;;:20;44232:34;;44258:8;;;88992:190;89117:4;89170;89141:25;89154:5;89161:4;89141:12;:25::i;:::-;:33;;88992:190;-1:-1:-1;;;;88992:190:0:o;36715:716::-;36899:88;;-1:-1:-1;;;36899:88:0;;36878:4;;-1:-1:-1;;;;;36899:45:0;;;;;:88;;68394:10;;36966:4;;36972:7;;36981:5;;36899:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36899:88:0;;;;;;;;-1:-1:-1;;36899:88:0;;;;;;;;;;;;:::i;:::-;;;36895:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37182:6;:13;37199:1;37182:18;37178:235;;37228:40;;-1:-1:-1;;;37228:40:0;;;;;;;;;;;37178:235;37371:6;37365:13;37356:6;37352:2;37348:15;37341:38;36895:529;-1:-1:-1;;;;;;37058:64:0;-1:-1:-1;;;37058:64:0;;-1:-1:-1;36715:716:0;;;;;;:::o;46379:3081::-;46459:27;46489;46508:7;46489:18;:27::i;:::-;46459:57;-1:-1:-1;46459:57:0;46529:12;;46651:35;46678:7;29509:27;29620:24;;;:15;:24;;;;;29848:26;;29620:24;;29407:485;46651:35;46594:92;;;;46703:13;46699:316;;;46824:68;46849:15;46866:4;68394:10;46872:19;68314:98;46824:68;46819:184;;46916:43;46933:4;68394:10;27822:164;:::i;46916:43::-;46911:92;;46968:35;;-1:-1:-1;;;46968:35:0;;;;;;;;;;;46911:92;47171:15;47168:160;;;47311:1;47290:19;47283:30;47168:160;-1:-1:-1;;;;;47930:24:0;;;;;;:18;:24;;;;;:60;;47958:32;47930:60;;;25692:11;25667:23;25663:41;25650:63;-1:-1:-1;;;25650:63:0;48228:26;;;;:17;:26;;;;;:205;;;;-1:-1:-1;;;48553:47:0;;:52;;48549:627;;48658:1;48648:11;;48626:19;48781:30;;;:17;:30;;;;;;:35;;48777:384;;48919:13;;48904:11;:28;48900:242;;49066:30;;;;:17;:30;;;;;:52;;;48900:242;48607:569;48549:627;49204:35;;49231:7;;49227:1;;-1:-1:-1;;;;;49204:35:0;;;-1:-1:-1;;;;;;;;;;;49204:35:0;49227:1;;49204:35;-1:-1:-1;;49427:12:0;:14;;;;;;-1:-1:-1;;;;46379:3081:0:o;37893:2966::-;37989:13;;37966:20;38017:13;;;38013:44;;38039:18;;-1:-1:-1;;;38039:18:0;;;;;;;;;;;38013:44;-1:-1:-1;;;;;38545:22:0;;;;;;:18;:22;;;;11705:2;38545:22;;;:71;;38583:32;38571:45;;38545:71;;;38859:31;;;:17;:31;;;;;-1:-1:-1;26123:15:0;;26097:24;26093:46;25692:11;25667:23;25663:41;25660:52;25650:63;;38859:173;;39094:23;;;;38859:31;;38545:22;;-1:-1:-1;;;;;;;;;;;38545:22:0;;39712:335;40373:1;40359:12;40355:20;40313:346;40414:3;40405:7;40402:16;40313:346;;40632:7;40622:8;40619:1;-1:-1:-1;;;;;;;;;;;40589:1:0;40586;40581:59;40467:1;40454:15;40313:346;;;40317:77;40692:8;40704:1;40692:13;40688:45;;40714:19;;-1:-1:-1;;;40714:19:0;;;;;;;;;;;40688:45;40750:13;:19;-1:-1:-1;65396:255:0;;;:::o;89190:675::-;89273:7;89316:4;89273:7;89331:497;89355:5;:12;89351:1;:16;89331:497;;;89389:20;89412:5;89418:1;89412:8;;;;;;;;:::i;:::-;;;;;;;89389:31;;89455:12;89439;:28;89435:382;;89941:13;89991:15;;;90027:4;90020:15;;;90074:4;90058:21;;89567:57;;89435:382;;;89941:13;89991:15;;;90027:4;90020:15;;;90074:4;90058:21;;89744:57;;89435:382;-1:-1:-1;89369:3:0;;;;:::i;:::-;;;;89331:497;;;-1:-1:-1;89845:12:0;89190:675;-1:-1:-1;;;89190:675:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;770:254;838:6;846;899:2;887:9;878:7;874:23;870:32;867:52;;;915:1;912;905:12;867:52;938:29;957:9;938:29;:::i;:::-;928:39;1014:2;999:18;;;;986:32;;-1:-1:-1;;;770:254:1:o;1029:186::-;1088:6;1141:2;1129:9;1120:7;1116:23;1112:32;1109:52;;;1157:1;1154;1147:12;1109:52;1180:29;1199:9;1180:29;:::i;1220:423::-;1262:3;1300:5;1294:12;1327:6;1322:3;1315:19;1352:1;1362:162;1376:6;1373:1;1370:13;1362:162;;;1438:4;1494:13;;;1490:22;;1484:29;1466:11;;;1462:20;;1455:59;1391:12;1362:162;;;1366:3;1569:1;1562:4;1553:6;1548:3;1544:16;1540:27;1533:38;1632:4;1625:2;1621:7;1616:2;1608:6;1604:15;1600:29;1595:3;1591:39;1587:50;1580:57;;;1220:423;;;;:::o;1648:220::-;1797:2;1786:9;1779:21;1760:4;1817:45;1858:2;1847:9;1843:18;1835:6;1817:45;:::i;1873:180::-;1932:6;1985:2;1973:9;1964:7;1960:23;1956:32;1953:52;;;2001:1;1998;1991:12;1953:52;-1:-1:-1;2024:23:1;;1873:180;-1:-1:-1;1873:180:1:o;2630:118::-;2716:5;2709:13;2702:21;2695:5;2692:32;2682:60;;2738:1;2735;2728:12;2753:309;2818:6;2826;2879:2;2867:9;2858:7;2854:23;2850:32;2847:52;;;2895:1;2892;2885:12;2847:52;2931:9;2918:23;2908:33;;2991:2;2980:9;2976:18;2963:32;3004:28;3026:5;3004:28;:::i;:::-;3051:5;3041:15;;;2753:309;;;;;:::o;3067:328::-;3144:6;3152;3160;3213:2;3201:9;3192:7;3188:23;3184:32;3181:52;;;3229:1;3226;3219:12;3181:52;3252:29;3271:9;3252:29;:::i;:::-;3242:39;;3300:38;3334:2;3323:9;3319:18;3300:38;:::i;:::-;3290:48;;3385:2;3374:9;3370:18;3357:32;3347:42;;3067:328;;;;;:::o;3623:127::-;3684:10;3679:3;3675:20;3672:1;3665:31;3715:4;3712:1;3705:15;3739:4;3736:1;3729:15;3755:275;3826:2;3820:9;3891:2;3872:13;;-1:-1:-1;;3868:27:1;3856:40;;-1:-1:-1;;;;;3911:34:1;;3947:22;;;3908:62;3905:88;;;3973:18;;:::i;:::-;4009:2;4002:22;3755:275;;-1:-1:-1;3755:275:1:o;4035:712::-;4089:5;4142:3;4135:4;4127:6;4123:17;4119:27;4109:55;;4160:1;4157;4150:12;4109:55;4196:6;4183:20;4222:4;-1:-1:-1;;;;;4241:2:1;4238:26;4235:52;;;4267:18;;:::i;:::-;4313:2;4310:1;4306:10;4336:28;4360:2;4356;4352:11;4336:28;:::i;:::-;4398:15;;;4468;;;4464:24;;;4429:12;;;;4500:15;;;4497:35;;;4528:1;4525;4518:12;4497:35;4564:2;4556:6;4552:15;4541:26;;4576:142;4592:6;4587:3;4584:15;4576:142;;;4658:17;;4646:30;;4609:12;;;;4696;;;;4576:142;;;4736:5;4035:712;-1:-1:-1;;;;;;;4035:712:1:o;4752:416::-;4845:6;4853;4906:2;4894:9;4885:7;4881:23;4877:32;4874:52;;;4922:1;4919;4912:12;4874:52;4962:9;4949:23;-1:-1:-1;;;;;4987:6:1;4984:30;4981:50;;;5027:1;5024;5017:12;4981:50;5050:61;5103:7;5094:6;5083:9;5079:22;5050:61;:::i;:::-;5040:71;5158:2;5143:18;;;;5130:32;;-1:-1:-1;;;;4752:416:1:o;5173:377::-;5247:6;5255;5263;5316:2;5304:9;5295:7;5291:23;5287:32;5284:52;;;5332:1;5329;5322:12;5284:52;5368:9;5355:23;5345:33;;5425:2;5414:9;5410:18;5397:32;5387:42;;5479:2;5468:9;5464:18;5451:32;5492:28;5514:5;5492:28;:::i;:::-;5539:5;5529:15;;;5173:377;;;;;:::o;5555:367::-;5618:8;5628:6;5682:3;5675:4;5667:6;5663:17;5659:27;5649:55;;5700:1;5697;5690:12;5649:55;-1:-1:-1;5723:20:1;;-1:-1:-1;;;;;5755:30:1;;5752:50;;;5798:1;5795;5788:12;5752:50;5835:4;5827:6;5823:17;5811:29;;5895:3;5888:4;5878:6;5875:1;5871:14;5863:6;5859:27;5855:38;5852:47;5849:67;;;5912:1;5909;5902:12;5849:67;5555:367;;;;;:::o;5927:573::-;6031:6;6039;6047;6055;6108:2;6096:9;6087:7;6083:23;6079:32;6076:52;;;6124:1;6121;6114:12;6076:52;6164:9;6151:23;-1:-1:-1;;;;;6189:6:1;6186:30;6183:50;;;6229:1;6226;6219:12;6183:50;6268:70;6330:7;6321:6;6310:9;6306:22;6268:70;:::i;:::-;6357:8;;6242:96;;-1:-1:-1;6439:2:1;6424:18;;6411:32;;6490:2;6475:18;6462:32;;-1:-1:-1;5927:573:1;-1:-1:-1;;;;5927:573:1:o;6745:407::-;6810:5;-1:-1:-1;;;;;6836:6:1;6833:30;6830:56;;;6866:18;;:::i;:::-;6904:57;6949:2;6928:15;;-1:-1:-1;;6924:29:1;6955:4;6920:40;6904:57;:::i;:::-;6895:66;;6984:6;6977:5;6970:21;7024:3;7015:6;7010:3;7006:16;7003:25;7000:45;;;7041:1;7038;7031:12;7000:45;7090:6;7085:3;7078:4;7071:5;7067:16;7054:43;7144:1;7137:4;7128:6;7121:5;7117:18;7113:29;7106:40;6745:407;;;;;:::o;7157:451::-;7226:6;7279:2;7267:9;7258:7;7254:23;7250:32;7247:52;;;7295:1;7292;7285:12;7247:52;7335:9;7322:23;-1:-1:-1;;;;;7360:6:1;7357:30;7354:50;;;7400:1;7397;7390:12;7354:50;7423:22;;7476:4;7468:13;;7464:27;-1:-1:-1;7454:55:1;;7505:1;7502;7495:12;7454:55;7528:74;7594:7;7589:2;7576:16;7571:2;7567;7563:11;7528:74;:::i;7613:648::-;7726:6;7734;7742;7750;7758;7811:3;7799:9;7790:7;7786:23;7782:33;7779:53;;;7828:1;7825;7818:12;7779:53;7851:29;7870:9;7851:29;:::i;:::-;7841:39;;7931:2;7920:9;7916:18;7903:32;-1:-1:-1;;;;;7950:6:1;7947:30;7944:50;;;7990:1;7987;7980:12;7944:50;8029:70;8091:7;8082:6;8071:9;8067:22;8029:70;:::i;:::-;7613:648;;8118:8;;-1:-1:-1;8003:96:1;;8200:2;8185:18;;8172:32;;8251:2;8236:18;;;8223:32;;-1:-1:-1;7613:648:1;-1:-1:-1;;;;7613:648:1:o;8266:703::-;8376:6;8384;8392;8400;8408;8461:3;8449:9;8440:7;8436:23;8432:33;8429:53;;;8478:1;8475;8468:12;8429:53;8518:9;8505:23;-1:-1:-1;;;;;8543:6:1;8540:30;8537:50;;;8583:1;8580;8573:12;8537:50;8622:70;8684:7;8675:6;8664:9;8660:22;8622:70;:::i;:::-;8711:8;;-1:-1:-1;8596:96:1;-1:-1:-1;;8793:2:1;8778:18;;8765:32;;-1:-1:-1;8847:2:1;8832:18;;8819:32;8860:28;8819:32;8860:28;:::i;:::-;8266:703;;;;-1:-1:-1;8266:703:1;;8959:2;8944:18;8931:32;;8266:703;-1:-1:-1;;8266:703:1:o;9227:315::-;9292:6;9300;9353:2;9341:9;9332:7;9328:23;9324:32;9321:52;;;9369:1;9366;9359:12;9321:52;9392:29;9411:9;9392:29;:::i;:::-;9382:39;;9471:2;9460:9;9456:18;9443:32;9484:28;9506:5;9484:28;:::i;9547:316::-;9624:6;9632;9640;9693:2;9681:9;9672:7;9668:23;9664:32;9661:52;;;9709:1;9706;9699:12;9661:52;-1:-1:-1;;9732:23:1;;;9802:2;9787:18;;9774:32;;-1:-1:-1;9853:2:1;9838:18;;;9825:32;;9547:316;-1:-1:-1;9547:316:1:o;9868:667::-;9963:6;9971;9979;9987;10040:3;10028:9;10019:7;10015:23;10011:33;10008:53;;;10057:1;10054;10047:12;10008:53;10080:29;10099:9;10080:29;:::i;:::-;10070:39;;10128:38;10162:2;10151:9;10147:18;10128:38;:::i;:::-;10118:48;;10213:2;10202:9;10198:18;10185:32;10175:42;;10268:2;10257:9;10253:18;10240:32;-1:-1:-1;;;;;10287:6:1;10284:30;10281:50;;;10327:1;10324;10317:12;10281:50;10350:22;;10403:4;10395:13;;10391:27;-1:-1:-1;10381:55:1;;10432:1;10429;10422:12;10381:55;10455:74;10521:7;10516:2;10503:16;10498:2;10494;10490:11;10455:74;:::i;:::-;10445:84;;;9868:667;;;;;;;:::o;10540:477::-;10630:6;10638;10691:2;10679:9;10670:7;10666:23;10662:32;10659:52;;;10707:1;10704;10697:12;10659:52;10747:9;10734:23;-1:-1:-1;;;;;10772:6:1;10769:30;10766:50;;;10812:1;10809;10802:12;10766:50;10835:61;10888:7;10879:6;10868:9;10864:22;10835:61;:::i;:::-;10825:71;;;10946:2;10935:9;10931:18;10918:32;10959:28;10981:5;10959:28;:::i;11022:260::-;11090:6;11098;11151:2;11139:9;11130:7;11126:23;11122:32;11119:52;;;11167:1;11164;11157:12;11119:52;11190:29;11209:9;11190:29;:::i;:::-;11180:39;;11238:38;11272:2;11261:9;11257:18;11238:38;:::i;:::-;11228:48;;11022:260;;;;;:::o;11287:337::-;11489:2;11471:21;;;11528:2;11508:18;;;11501:30;-1:-1:-1;;;11562:2:1;11547:18;;11540:43;11615:2;11600:18;;11287:337::o;11629:380::-;11708:1;11704:12;;;;11751;;;11772:61;;11826:4;11818:6;11814:17;11804:27;;11772:61;11879:2;11871:6;11868:14;11848:18;11845:38;11842:161;;11925:10;11920:3;11916:20;11913:1;11906:31;11960:4;11957:1;11950:15;11988:4;11985:1;11978:15;11842:161;;11629:380;;;:::o;12014:356::-;12216:2;12198:21;;;12235:18;;;12228:30;12294:34;12289:2;12274:18;;12267:62;12361:2;12346:18;;12014:356::o;12722:352::-;12924:2;12906:21;;;12963:2;12943:18;;;12936:30;13002;12997:2;12982:18;;12975:58;13065:2;13050:18;;12722:352::o;13079:345::-;13281:2;13263:21;;;13320:2;13300:18;;;13293:30;-1:-1:-1;;;13354:2:1;13339:18;;13332:51;13415:2;13400:18;;13079:345::o;13993:::-;14195:2;14177:21;;;14234:2;14214:18;;;14207:30;-1:-1:-1;;;14268:2:1;14253:18;;14246:51;14329:2;14314:18;;13993:345::o;14343:435::-;14396:3;14434:5;14428:12;14461:6;14456:3;14449:19;14487:4;14516:2;14511:3;14507:12;14500:19;;14553:2;14546:5;14542:14;14574:1;14584:169;14598:6;14595:1;14592:13;14584:169;;;14659:13;;14647:26;;14693:12;;;;14728:15;;;;14620:1;14613:9;14584:169;;;-1:-1:-1;14769:3:1;;14343:435;-1:-1:-1;;;;;14343:435:1:o;14783:502::-;15046:3;15035:9;15028:22;15009:4;15067:57;15119:3;15108:9;15104:19;15096:6;15067:57;:::i;:::-;-1:-1:-1;;;;;15160:32:1;;;;15155:2;15140:18;;15133:60;-1:-1:-1;15224:2:1;15209:18;;15202:34;;;;15267:2;15252:18;;;15245:34;15059:65;14783:502;-1:-1:-1;14783:502:1:o;15290:326::-;15492:2;15474:21;;;15531:1;15511:18;;;15504:29;-1:-1:-1;;;15564:2:1;15549:18;;15542:33;15607:2;15592:18;;15290:326::o;15963:344::-;16165:2;16147:21;;;16204:2;16184:18;;;16177:30;-1:-1:-1;;;16238:2:1;16223:18;;16216:50;16298:2;16283:18;;15963:344::o;16312:338::-;16514:2;16496:21;;;16553:2;16533:18;;;16526:30;-1:-1:-1;;;16587:2:1;16572:18;;16565:44;16641:2;16626:18;;16312:338::o;16996:127::-;17057:10;17052:3;17048:20;17045:1;17038:31;17088:4;17085:1;17078:15;17112:4;17109:1;17102:15;17128:125;17193:9;;;17214:10;;;17211:36;;;17227:18;;:::i;17593:168::-;17666:9;;;17697;;17714:15;;;17708:22;;17694:37;17684:71;;17735:18;;:::i;18101:128::-;18168:9;;;18189:11;;;18186:37;;;18203:18;;:::i;20688:545::-;20790:2;20785:3;20782:11;20779:448;;;20826:1;20851:5;20847:2;20840:17;20896:4;20892:2;20882:19;20966:2;20954:10;20950:19;20947:1;20943:27;20937:4;20933:38;21002:4;20990:10;20987:20;20984:47;;;-1:-1:-1;21025:4:1;20984:47;21080:2;21075:3;21071:12;21068:1;21064:20;21058:4;21054:31;21044:41;;21135:82;21153:2;21146:5;21143:13;21135:82;;;21198:17;;;21179:1;21168:13;21135:82;;21409:1352;21535:3;21529:10;-1:-1:-1;;;;;21554:6:1;21551:30;21548:56;;;21584:18;;:::i;:::-;21613:97;21703:6;21663:38;21695:4;21689:11;21663:38;:::i;:::-;21657:4;21613:97;:::i;:::-;21765:4;;21829:2;21818:14;;21846:1;21841:663;;;;22548:1;22565:6;22562:89;;;-1:-1:-1;22617:19:1;;;22611:26;22562:89;-1:-1:-1;;21366:1:1;21362:11;;;21358:24;21354:29;21344:40;21390:1;21386:11;;;21341:57;22664:81;;21811:944;;21841:663;20635:1;20628:14;;;20672:4;20659:18;;-1:-1:-1;;21877:20:1;;;21995:236;22009:7;22006:1;22003:14;21995:236;;;22098:19;;;22092:26;22077:42;;22190:27;;;;22158:1;22146:14;;;;22025:19;;21995:236;;;21999:3;22259:6;22250:7;22247:19;22244:201;;;22320:19;;;22314:26;-1:-1:-1;;22403:1:1;22399:14;;;22415:3;22395:24;22391:37;22387:42;22372:58;22357:74;;22244:201;-1:-1:-1;;;;;22491:1:1;22475:14;;;22471:22;22458:36;;-1:-1:-1;21409:1352:1:o;22766:963::-;22875:4;22904:2;22933;22922:9;22915:21;22956:1;22989:6;22983:13;23019:36;23045:9;23019:36;:::i;:::-;23091:6;23086:2;23075:9;23071:18;23064:34;23117:2;23138:1;23170:2;23159:9;23155:18;23187:1;23182:158;;;;23354:1;23349:354;;;;23148:555;;23182:158;-1:-1:-1;;23230:24:1;;23210:18;;;23203:52;23308:14;;23301:22;23298:1;23294:30;23279:46;;23275:55;;;-1:-1:-1;23182:158:1;;23349:354;23380:6;23377:1;23370:17;23428:2;23425:1;23415:16;23453:1;23467:180;23481:6;23478:1;23475:13;23467:180;;;23574:14;;23550:17;;;23546:26;;23539:50;23617:16;;;;23496:10;;23467:180;;;23671:17;;23667:26;;;-1:-1:-1;;23148:555:1;-1:-1:-1;23720:3:1;;22766:963;-1:-1:-1;;;;;;;;22766:963:1:o;25312:127::-;25373:10;25368:3;25364:20;25361:1;25354:31;25404:4;25401:1;25394:15;25428:4;25425:1;25418:15;25444:135;25483:3;25504:17;;;25501:43;;25524:18;;:::i;:::-;-1:-1:-1;25571:1:1;25560:13;;25444:135::o;25584:342::-;25785:2;25774:9;25767:21;25748:4;25805:56;25857:2;25846:9;25842:18;25834:6;25805:56;:::i;:::-;25797:64;;25911:6;25904:14;25897:22;25892:2;25881:9;25877:18;25870:50;25584:342;;;;;:::o;27063:245::-;27130:6;27183:2;27171:9;27162:7;27158:23;27154:32;27151:52;;;27199:1;27196;27189:12;27151:52;27231:9;27225:16;27250:28;27272:5;27250:28;:::i;27313:489::-;-1:-1:-1;;;;;27582:15:1;;;27564:34;;27634:15;;27629:2;27614:18;;27607:43;27681:2;27666:18;;27659:34;;;27729:3;27724:2;27709:18;;27702:31;;;27507:4;;27750:46;;27776:19;;27768:6;27750:46;:::i;27807:249::-;27876:6;27929:2;27917:9;27908:7;27904:23;27900:32;27897:52;;;27945:1;27942;27935:12;27897:52;27977:9;27971:16;27996:30;28020:5;27996:30;:::i
Swarm Source
ipfs://75f266e65acd30e4b2df8200e0bc092bab22026501c177b5c67ef3222c82038a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.