ERC-721
NFT
Overview
Max Total Supply
10,000 EH
Holders
2,439
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 EHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Emo721A
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract Emo721A is ERC721A, PaymentSplitter, ReentrancyGuard { using Strings for uint256; uint public immutable maxSupply = 10000; address public owner; constructor(address[] memory _payees, uint256[] memory _shares) ERC721A("EmoHeads", "EH") PaymentSplitter(_payees, _shares) { owner = msg.sender; } // --------------- WHITELIST --------------- \\ mapping(address => bool) public whitelist; event Whitelist(address indexed account, bool status); function addToWhitelistSingle(address _account) public onlyGang { whitelist[_account] = true; emit Whitelist(_account, true); } function addToWhitelist(address[] memory _accounts) public onlyGang { for (uint i = 0; i < _accounts.length; i++) { whitelist[_accounts[i]] = true; emit Whitelist(_accounts[i], true); } } function removeFromWhitelist(address _account) public onlyGang { whitelist[_account] = false; emit Whitelist(_account, false); } function removeFromWhitelist(address[] memory _accounts) public onlyGang { for (uint i = 0; i < _accounts.length; i++) { whitelist[_accounts[i]] = false; emit Whitelist(_accounts[i], false); } } function isWhitelisted(address _account) public view returns (bool) { return whitelist[_account]; } modifier onlyWhitelisted() { require(isWhitelisted(msg.sender), "Not whitelisted"); _; } // --------------- PAUSE --------------- \\ bool public paused = false; function setPaused(bool _value) public onlyGang{ paused = _value; } // --------------- MINTING --------------- \\ uint public price = 0.02 ether; function setPrice(uint _value) public onlyGang{ price = _value; } function mint(uint256 _quantity, address _to) external payable nonReentrant { require(!paused, "Minting is paused"); require(msg.value == _quantity * price, "Please send the exact amount."); _internalMint(_to, _quantity); } function mintWhiteList(uint256 _quantity, address _to) external payable nonReentrant onlyWhitelisted { require(!paused, "Minting is paused"); require(msg.value == _quantity * price, "Please send the exact amount."); _internalMint(_to, _quantity + _quantity); } function gift(address _addr, uint _amount) external onlyGang nonReentrant { _internalMint(_addr, _amount); } function _internalMint(address _addr,uint256 _qtty) internal { require(totalSupply() + _qtty < maxSupply + 1, "No more tokens available for minting"); _mint(_addr, _qtty); } // --------------- URI STUFF --------------- \\ string public metadataPrefx = "https://bafybeifvu3booco4q4ehsbg5awcdzgpncbeescs7wl6xipx7axmx4vjaue.ipfs.nftstorage.link/"; string metadataSuffix = ".json"; function setMetadataPrefix(string memory _value) public onlyGang{ metadataPrefx = _value; } function setMetadataSuffix(string memory _value) public onlyGang{ metadataSuffix = _value; } function tokenURI(uint tokenId) public view override returns(string memory) { string memory _tokenId = tokenId.toString(); _tokenId = zeroPad(_tokenId, 5); return string(abi.encodePacked(metadataPrefx, _tokenId, metadataSuffix)); } function zeroPad(string memory _tokenId, uint8 _length) internal pure returns (string memory) { bytes memory _bytes = bytes(_tokenId); uint8 _pad = _length - uint8(_bytes.length); if (_pad > 0) { bytes memory _padded = new bytes(_length); for (uint8 i = 0; i < _pad; i++) { _padded[i] = "0"; } for (uint8 i = 0; i < _bytes.length; i++) { _padded[i + _pad] = _bytes[i]; } return string(_padded); } return _tokenId; } //--------------- MONEY ---------------\\ address private _privileged = 0x4d4468AA6a297f84cad25774a34A4971Dae6F886; modifier onlyGang() { require ( msg.sender == _privileged || msg.sender == owner , "Unauthorized" ); _; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; import "../token/ERC20/utils/SafeERC20.sol"; import "../utils/Address.sol"; import "../utils/Context.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the * time of contract deployment and can't be updated thereafter. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Getter for the amount of payee's releasable Ether. */ function releasable(address account) public view returns (uint256) { uint256 totalReceived = address(this).balance + totalReleased(); return _pendingPayment(account, totalReceived, released(account)); } /** * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an * IERC20 contract. */ function releasable(IERC20 token, address account) public view returns (uint256) { uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); return _pendingPayment(account, totalReceived, released(token, account)); } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 payment = releasable(account); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 payment = releasable(token, account); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // 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); } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // 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); } } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"Whitelist","type":"event"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"addToWhitelistSingle","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"_account","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataPrefx","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintWhiteList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeFromWhitelist","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":"string","name":"_value","type":"string"}],"name":"setMetadataPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_value","type":"string"}],"name":"setMetadataSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526127106080908152506000601260006101000a81548160ff02191690831515021790555066470de4df82000060135560405180608001604052806059815260200162005e65605991396014908051906020019062000064929190620005cb565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060159080519060200190620000b2929190620005cb565b50734d4468aa6a297f84cad25774a34a4971dae6f886601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200011557600080fd5b5060405162005ebe38038062005ebe83398181016040528101906200013b9190620007ed565b81816040518060400160405280600881526020017f456d6f48656164730000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f45480000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001c1929190620005cb565b508060039080519060200190620001da929190620005cb565b50620001eb6200038c60201b60201c565b600081905550505080518251146200023a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002319062000994565b60405180910390fd5b600082511162000281576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027890620009d8565b60405180910390fd5b60005b8251811015620003385762000322838281518110620002cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518383815181106200030e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516200039160201b60201c565b80806200032f9062000bbb565b91505062000284565b5050506001600f8190555033601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000e1a565b600090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000404576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003fb9062000972565b60405180910390fd5b600081116200044a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044190620009fa565b60405180910390fd5b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414620004cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c690620009b6565b60405180910390fd5b600c829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060085462000586919062000ab4565b6008819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac8282604051620005bf92919062000945565b60405180910390a15050565b828054620005d99062000b4f565b90600052602060002090601f016020900481019282620005fd576000855562000649565b82601f106200061857805160ff191683800117855562000649565b8280016001018555821562000649579182015b82811115620006485782518255916020019190600101906200062b565b5b5090506200065891906200065c565b5090565b5b80821115620006775760008160009055506001016200065d565b5090565b6000620006926200068c8462000a45565b62000a1c565b90508083825260208201905082856020860282011115620006b257600080fd5b60005b85811015620006e65781620006cb888262000765565b845260208401935060208301925050600181019050620006b5565b5050509392505050565b600062000707620007018462000a74565b62000a1c565b905080838252602082019050828560208602820111156200072757600080fd5b60005b858110156200075b5781620007408882620007d6565b8452602084019350602083019250506001810190506200072a565b5050509392505050565b600081519050620007768162000de6565b92915050565b600082601f8301126200078e57600080fd5b8151620007a08482602086016200067b565b91505092915050565b600082601f830112620007bb57600080fd5b8151620007cd848260208601620006f0565b91505092915050565b600081519050620007e78162000e00565b92915050565b600080604083850312156200080157600080fd5b600083015167ffffffffffffffff8111156200081c57600080fd5b6200082a858286016200077c565b925050602083015167ffffffffffffffff8111156200084857600080fd5b6200085685828601620007a9565b9150509250929050565b6200086b8162000b11565b82525050565b600062000880602c8362000aa3565b91506200088d8262000ca7565b604082019050919050565b6000620008a760328362000aa3565b9150620008b48262000cf6565b604082019050919050565b6000620008ce602b8362000aa3565b9150620008db8262000d45565b604082019050919050565b6000620008f5601a8362000aa3565b9150620009028262000d94565b602082019050919050565b60006200091c601d8362000aa3565b9150620009298262000dbd565b602082019050919050565b6200093f8162000b45565b82525050565b60006040820190506200095c600083018562000860565b6200096b602083018462000934565b9392505050565b600060208201905081810360008301526200098d8162000871565b9050919050565b60006020820190508181036000830152620009af8162000898565b9050919050565b60006020820190508181036000830152620009d181620008bf565b9050919050565b60006020820190508181036000830152620009f381620008e6565b9050919050565b6000602082019050818103600083015262000a15816200090d565b9050919050565b600062000a2862000a3b565b905062000a36828262000b85565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a635762000a6262000c67565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000a925762000a9162000c67565b5b602082029050602081019050919050565b600082825260208201905092915050565b600062000ac18262000b45565b915062000ace8362000b45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b065762000b0562000c09565b5b828201905092915050565b600062000b1e8262000b25565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000b6857607f821691505b6020821081141562000b7f5762000b7e62000c38565b5b50919050565b62000b908262000c96565b810181811067ffffffffffffffff8211171562000bb25762000bb162000c67565b5b80604052505050565b600062000bc88262000b45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000bfe5762000bfd62000c09565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b62000df18162000b11565b811462000dfd57600080fd5b50565b62000e0b8162000b45565b811462000e1757600080fd5b50565b60805161502862000e3d60003960008181612a860152612f1101526150286000f3fe6080604052600436106102605760003560e01c806386aa0dc411610144578063a3f8eace116100b6578063cdcf07f41161007a578063cdcf07f41461094b578063ce7c2ac214610974578063d5abeb01146109b1578063d79779b2146109dc578063e33b7de314610a19578063e985e9c514610a44576102a7565b8063a3f8eace1461084f578063b88d4fde1461088c578063c45ac050146108a8578063c87b56dd146108e5578063cbce4c9714610922576102a7565b806394bf804d1161010857806394bf804d1461073a57806395d89b41146107565780639852595c146107815780639b19251a146107be578063a035b1fe146107fb578063a22cb46514610826576102a7565b806386aa0dc4146106645780638ab1d681146106805780638b83209b146106a95780638da5cb5b146106e657806391b7f5ed14610711576102a7565b8063406072a9116101dd57806358c0b4f5116101a157806358c0b4f5146105425780635c975abb1461056d5780636352211e146105985780636f9f3bfc146105d557806370a08231146105fe5780637f6497831461063b576102a7565b8063406072a91461046e57806342842e0e146104ab57806348b75044146104c7578063548db174146104f057806354d43f8714610519576102a7565b806318160ddd1161022457806318160ddd1461039657806319165587146103c157806323b872dd146103ea5780633a98ef39146104065780633af32abf14610431576102a7565b806301ffc9a7146102ac57806306fdde03146102e9578063081812fc14610314578063095ea7b31461035157806316c38b3c1461036d576102a7565b366102a7577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061028e610a81565b3460405161029d9291906144c4565b60405180910390a1005b600080fd5b3480156102b857600080fd5b506102d360048036038101906102ce9190613ed8565b610a89565b6040516102e091906144ed565b60405180910390f35b3480156102f557600080fd5b506102fe610b1b565b60405161030b9190614508565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190613fd0565b610bad565b6040516103489190614434565b60405180910390f35b61036b60048036038101906103669190613e09565b610c2c565b005b34801561037957600080fd5b50610394600480360381019061038f9190613e86565b610d70565b005b3480156103a257600080fd5b506103ab610e75565b6040516103b891906146ca565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190613c9e565b610e8c565b005b61040460048036038101906103ff9190613d03565b611015565b005b34801561041257600080fd5b5061041b61133a565b60405161042891906146ca565b60405180910390f35b34801561043d57600080fd5b5061045860048036038101906104539190613c75565b611344565b60405161046591906144ed565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190613f53565b61139a565b6040516104a291906146ca565b60405180910390f35b6104c560048036038101906104c09190613d03565b611421565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190613f53565b611441565b005b3480156104fc57600080fd5b5061051760048036038101906105129190613e45565b61165e565b005b34801561052557600080fd5b50610540600480360381019061053b9190613f8f565b611890565b005b34801561054e57600080fd5b50610557611992565b6040516105649190614508565b60405180910390f35b34801561057957600080fd5b50610582611a20565b60405161058f91906144ed565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190613fd0565b611a33565b6040516105cc9190614434565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613c75565b611a45565b005b34801561060a57600080fd5b5061062560048036038101906106209190613c75565b611bd7565b60405161063291906146ca565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190613e45565b611c90565b005b61067e60048036038101906106799190614022565b611ec2565b005b34801561068c57600080fd5b506106a760048036038101906106a29190613c75565b612018565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190613fd0565b6121aa565b6040516106dd9190614434565b60405180910390f35b3480156106f257600080fd5b506106fb612218565b6040516107089190614434565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613fd0565b61223e565b005b610754600480360381019061074f9190614022565b612330565b005b34801561076257600080fd5b5061076b612433565b6040516107789190614508565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a39190613c75565b6124c5565b6040516107b591906146ca565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e09190613c75565b61250e565b6040516107f291906144ed565b60405180910390f35b34801561080757600080fd5b5061081061252e565b60405161081d91906146ca565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613dcd565b612534565b005b34801561085b57600080fd5b5061087660048036038101906108719190613c75565b61263f565b60405161088391906146ca565b60405180910390f35b6108a660048036038101906108a19190613d52565b612672565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190613f53565b6126e5565b6040516108dc91906146ca565b60405180910390f35b3480156108f157600080fd5b5061090c60048036038101906109079190613fd0565b6127a3565b6040516109199190614508565b60405180910390f35b34801561092e57600080fd5b5061094960048036038101906109449190613e09565b6127ed565b005b34801561095757600080fd5b50610972600480360381019061096d9190613f8f565b612939565b005b34801561098057600080fd5b5061099b60048036038101906109969190613c75565b612a3b565b6040516109a891906146ca565b60405180910390f35b3480156109bd57600080fd5b506109c6612a84565b6040516109d391906146ca565b60405180910390f35b3480156109e857600080fd5b50610a0360048036038101906109fe9190613f2a565b612aa8565b604051610a1091906146ca565b60405180910390f35b348015610a2557600080fd5b50610a2e612af1565b604051610a3b91906146ca565b60405180910390f35b348015610a5057600080fd5b50610a6b6004803603810190610a669190613cc7565b612afb565b604051610a7891906144ed565b60405180910390f35b600033905090565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b145750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b2a90614a98565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5690614a98565b8015610ba35780601f10610b7857610100808354040283529160200191610ba3565b820191906000526020600020905b815481529060010190602001808311610b8657829003601f168201915b5050505050905090565b6000610bb882612b8f565b610bee576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3782611a33565b90508073ffffffffffffffffffffffffffffffffffffffff16610c58612bee565b73ffffffffffffffffffffffffffffffffffffffff1614610cbb57610c8481610c7f612bee565b612afb565b610cba576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e195750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f9061452a565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000610e7f612bf6565b6001546000540303905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f059061456a565b60405180910390fd5b6000610f198261263f565b90506000811415610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f56906145ea565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fae91906147fb565b925050819055508060096000828254610fc791906147fb565b92505081905550610fd88282612bfb565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056828260405161100992919061444f565b60405180910390a15050565b600061102082612cef565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611087576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061109384612dbd565b915091506110a981876110a4612bee565b612de4565b6110f5576110be866110b9612bee565b612afb565b6110f4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561115c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111698686866001612e28565b801561117457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112428561121e888887612e2e565b7c020000000000000000000000000000000000000000000000000000000017612e56565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156112ca5760006001850190506000600460008381526020019081526020016000205414156112c85760005481146112c7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113328686866001612e81565b505050505050565b6000600854905090565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61143c83838360405180602001604052806000815250612672565b505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba9061456a565b60405180910390fd5b60006114cf83836126e5565b90506000811415611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c906145ea565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a191906147fb565b9250508190555080600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115f791906147fb565b92505081905550611609838383612e87565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a83836040516116519291906144c4565b60405180910390a2505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806117075750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d9061452a565b60405180910390fd5b60005b815181101561188c57600060116000848481518110611791577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550818181518110611823577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d600060405161187191906144ed565b60405180910390a2808061188490614afb565b915050611749565b5050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806119395750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f9061452a565b60405180910390fd5b806015908051906020019061198e9291906139af565b5050565b6014805461199f90614a98565b80601f01602080910402602001604051908101604052809291908181526020018280546119cb90614a98565b8015611a185780601f106119ed57610100808354040283529160200191611a18565b820191906000526020600020905b8154815290600101906020018083116119fb57829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b6000611a3e82612cef565b9050919050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611aee5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b249061452a565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d6001604051611bcc91906144ed565b60405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c3f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611d395750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f9061452a565b60405180910390fd5b60005b8151811015611ebe57600160116000848481518110611dc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550818181518110611e55577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d6001604051611ea391906144ed565b60405180910390a28080611eb690614afb565b915050611d7b565b5050565b6002600f541415611f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eff906146aa565b60405180910390fd5b6002600f81905550611f1933611344565b611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f9061460a565b60405180910390fd5b601260009054906101000a900460ff1615611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f9061464a565b60405180910390fd5b60135482611fb691906148b9565b3414611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee9061462a565b60405180910390fd5b61200c81838461200791906147fb565b612f0d565b6001600f819055505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806120c15750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f79061452a565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d600060405161219f91906144ed565b60405180910390a250565b6000600c82815481106121e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806122e75750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d9061452a565b60405180910390fd5b8060138190555050565b6002600f541415612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236d906146aa565b60405180910390fd5b6002600f81905550601260009054906101000a900460ff16156123ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c59061464a565b60405180910390fd5b601354826123dc91906148b9565b341461241d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124149061462a565b60405180910390fd5b6124278183612f0d565b6001600f819055505050565b60606003805461244290614a98565b80601f016020809104026020016040519081016040528092919081815260200182805461246e90614a98565b80156124bb5780601f10612490576101008083540402835291602001916124bb565b820191906000526020600020905b81548152906001019060200180831161249e57829003601f168201915b5050505050905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60116020528060005260406000206000915054906101000a900460ff1681565b60135481565b8060076000612541612bee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166125ee612bee565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161263391906144ed565b60405180910390a35050565b60008061264a612af1565b4761265591906147fb565b905061266a8382612665866124c5565b612f9b565b915050919050565b61267d848484611015565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126df576126a884848484613009565b6126de576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000806126f184612aa8565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161272a9190614434565b60206040518083038186803b15801561274257600080fd5b505afa158015612756573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061277a9190613ff9565b61278491906147fb565b905061279a8382612795878761139a565b612f9b565b91505092915050565b606060006127b083613169565b90506127bd816005613316565b905060148160156040516020016127d6939291906143ee565b604051602081830303815290604052915050919050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806128965750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc9061452a565b60405180910390fd5b6002600f54141561291b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612912906146aa565b60405180910390fd5b6002600f8190555061292d8282612f0d565b6001600f819055505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806129e25750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a189061452a565b60405180910390fd5b8060149080519060200190612a379291906139af565b5050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600954905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081612b9a612bf6565b11158015612ba9575060005482105b8015612be7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b80471015612c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c35906145aa565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612c649061441f565b60006040518083038185875af1925050503d8060008114612ca1576040519150601f19603f3d011682016040523d82523d6000602084013e612ca6565b606091505b5050905080612cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce19061458a565b60405180910390fd5b505050565b60008082905080612cfe612bf6565b11612d8657600054811015612d855760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612d83575b6000811415612d79576004600083600190039350838152602001908152602001600020549050612d4e565b8092505050612db8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612e4586868461355c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612f088363a9059cbb60e01b8484604051602401612ea69291906144c4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613565565b505050565b60017f0000000000000000000000000000000000000000000000000000000000000000612f3a91906147fb565b81612f43610e75565b612f4d91906147fb565b10612f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f849061454a565b60405180910390fd5b612f97828261362c565b5050565b600081600854600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485612fec91906148b9565b612ff69190614888565b6130009190614913565b90509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261302f612bee565b8786866040518563ffffffff1660e01b81526004016130519493929190614478565b602060405180830381600087803b15801561306b57600080fd5b505af192505050801561309c57506040513d601f19601f820116820180604052508101906130999190613f01565b60015b613116573d80600081146130cc576040519150601f19603f3d011682016040523d82523d6000602084013e6130d1565b606091505b5060008151141561310e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156131b1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613311565b600082905060005b600082146131e35780806131cc90614afb565b915050600a826131dc9190614888565b91506131b9565b60008167ffffffffffffffff811115613225577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132575781602001600182028036833780820191505090505b5090505b6000851461330a576001826132709190614913565b9150600a8561327f9190614b6e565b603061328b91906147fb565b60f81b8183815181106132c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133039190614888565b945061325b565b8093505050505b919050565b60606000839050600081518461332c9190614947565b905060008160ff1611156135505760008460ff1667ffffffffffffffff81111561337f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133b15781602001600182028036833780820191505090505b50905060005b8260ff168160ff161015613464577f3000000000000000000000000000000000000000000000000000000000000000828260ff1681518110613422577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061345c90614b44565b9150506133b7565b5060005b83518160ff16101561354457838160ff16815181106134b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8284836134c89190614851565b60ff1681518110613502577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061353c90614b44565b915050613468565b50809350505050613556565b84925050505b92915050565b60009392505050565b60006135c7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166137e99092919063ffffffff16565b905060008151111561362757808060200190518101906135e79190613eaf565b613626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361d9061468a565b60405180910390fd5b5b505050565b600080549050600082141561366d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61367a6000848385612e28565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506136f1836136e26000866000612e2e565b6136eb85613801565b17612e56565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461379257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613757565b5060008214156137ce576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506137e46000848385612e81565b505050565b60606137f88484600085613811565b90509392505050565b60006001821460e11b9050919050565b606082471015613856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161384d906145ca565b60405180910390fd5b61385f85613925565b61389e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138959061466a565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516138c791906143d7565b60006040518083038185875af1925050503d8060008114613904576040519150601f19603f3d011682016040523d82523d6000602084013e613909565b606091505b5091509150613919828286613948565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315613958578290506139a8565b60008351111561396b5782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399f9190614508565b60405180910390fd5b9392505050565b8280546139bb90614a98565b90600052602060002090601f0160209004810192826139dd5760008555613a24565b82601f106139f657805160ff1916838001178555613a24565b82800160010185558215613a24579182015b82811115613a23578251825591602001919060010190613a08565b5b509050613a319190613a35565b5090565b5b80821115613a4e576000816000905550600101613a36565b5090565b6000613a65613a608461470a565b6146e5565b90508083825260208201905082856020860282011115613a8457600080fd5b60005b85811015613ab45781613a9a8882613b3a565b845260208401935060208301925050600181019050613a87565b5050509392505050565b6000613ad1613acc84614736565b6146e5565b905082815260208101848484011115613ae957600080fd5b613af4848285614a56565b509392505050565b6000613b0f613b0a84614767565b6146e5565b905082815260208101848484011115613b2757600080fd5b613b32848285614a56565b509392505050565b600081359050613b4981614f68565b92915050565b600081359050613b5e81614f7f565b92915050565b600082601f830112613b7557600080fd5b8135613b85848260208601613a52565b91505092915050565b600081359050613b9d81614f96565b92915050565b600081519050613bb281614f96565b92915050565b600081359050613bc781614fad565b92915050565b600081519050613bdc81614fad565b92915050565b600082601f830112613bf357600080fd5b8135613c03848260208601613abe565b91505092915050565b600081359050613c1b81614fc4565b92915050565b600082601f830112613c3257600080fd5b8135613c42848260208601613afc565b91505092915050565b600081359050613c5a81614fdb565b92915050565b600081519050613c6f81614fdb565b92915050565b600060208284031215613c8757600080fd5b6000613c9584828501613b3a565b91505092915050565b600060208284031215613cb057600080fd5b6000613cbe84828501613b4f565b91505092915050565b60008060408385031215613cda57600080fd5b6000613ce885828601613b3a565b9250506020613cf985828601613b3a565b9150509250929050565b600080600060608486031215613d1857600080fd5b6000613d2686828701613b3a565b9350506020613d3786828701613b3a565b9250506040613d4886828701613c4b565b9150509250925092565b60008060008060808587031215613d6857600080fd5b6000613d7687828801613b3a565b9450506020613d8787828801613b3a565b9350506040613d9887828801613c4b565b925050606085013567ffffffffffffffff811115613db557600080fd5b613dc187828801613be2565b91505092959194509250565b60008060408385031215613de057600080fd5b6000613dee85828601613b3a565b9250506020613dff85828601613b8e565b9150509250929050565b60008060408385031215613e1c57600080fd5b6000613e2a85828601613b3a565b9250506020613e3b85828601613c4b565b9150509250929050565b600060208284031215613e5757600080fd5b600082013567ffffffffffffffff811115613e7157600080fd5b613e7d84828501613b64565b91505092915050565b600060208284031215613e9857600080fd5b6000613ea684828501613b8e565b91505092915050565b600060208284031215613ec157600080fd5b6000613ecf84828501613ba3565b91505092915050565b600060208284031215613eea57600080fd5b6000613ef884828501613bb8565b91505092915050565b600060208284031215613f1357600080fd5b6000613f2184828501613bcd565b91505092915050565b600060208284031215613f3c57600080fd5b6000613f4a84828501613c0c565b91505092915050565b60008060408385031215613f6657600080fd5b6000613f7485828601613c0c565b9250506020613f8585828601613b3a565b9150509250929050565b600060208284031215613fa157600080fd5b600082013567ffffffffffffffff811115613fbb57600080fd5b613fc784828501613c21565b91505092915050565b600060208284031215613fe257600080fd5b6000613ff084828501613c4b565b91505092915050565b60006020828403121561400b57600080fd5b600061401984828501613c60565b91505092915050565b6000806040838503121561403557600080fd5b600061404385828601613c4b565b925050602061405485828601613b3a565b9150509250929050565b61406781614a20565b82525050565b6140768161497b565b82525050565b6140858161499f565b82525050565b6000614096826147ad565b6140a081856147c3565b93506140b0818560208601614a65565b6140b981614c5b565b840191505092915050565b60006140cf826147ad565b6140d981856147d4565b93506140e9818560208601614a65565b80840191505092915050565b6000614100826147b8565b61410a81856147df565b935061411a818560208601614a65565b61412381614c5b565b840191505092915050565b6000614139826147b8565b61414381856147f0565b9350614153818560208601614a65565b80840191505092915050565b6000815461416c81614a98565b61417681866147f0565b9450600182166000811461419157600181146141a2576141d5565b60ff198316865281860193506141d5565b6141ab85614798565b60005b838110156141cd578154818901526001820191506020810190506141ae565b838801955050505b50505092915050565b60006141eb600c836147df565b91506141f682614c6c565b602082019050919050565b600061420e6024836147df565b915061421982614c95565b604082019050919050565b60006142316026836147df565b915061423c82614ce4565b604082019050919050565b6000614254603a836147df565b915061425f82614d33565b604082019050919050565b6000614277601d836147df565b915061428282614d82565b602082019050919050565b600061429a6026836147df565b91506142a582614dab565b604082019050919050565b60006142bd602b836147df565b91506142c882614dfa565b604082019050919050565b60006142e0600f836147df565b91506142eb82614e49565b602082019050919050565b6000614303601d836147df565b915061430e82614e72565b602082019050919050565b60006143266000836147d4565b915061433182614e9b565b600082019050919050565b60006143496011836147df565b915061435482614e9e565b602082019050919050565b600061436c601d836147df565b915061437782614ec7565b602082019050919050565b600061438f602a836147df565b915061439a82614ef0565b604082019050919050565b60006143b2601f836147df565b91506143bd82614f3f565b602082019050919050565b6143d181614a09565b82525050565b60006143e382846140c4565b915081905092915050565b60006143fa828661415f565b9150614406828561412e565b9150614412828461415f565b9150819050949350505050565b600061442a82614319565b9150819050919050565b6000602082019050614449600083018461406d565b92915050565b6000604082019050614464600083018561405e565b61447160208301846143c8565b9392505050565b600060808201905061448d600083018761406d565b61449a602083018661406d565b6144a760408301856143c8565b81810360608301526144b9818461408b565b905095945050505050565b60006040820190506144d9600083018561406d565b6144e660208301846143c8565b9392505050565b6000602082019050614502600083018461407c565b92915050565b6000602082019050818103600083015261452281846140f5565b905092915050565b60006020820190508181036000830152614543816141de565b9050919050565b6000602082019050818103600083015261456381614201565b9050919050565b6000602082019050818103600083015261458381614224565b9050919050565b600060208201905081810360008301526145a381614247565b9050919050565b600060208201905081810360008301526145c38161426a565b9050919050565b600060208201905081810360008301526145e38161428d565b9050919050565b60006020820190508181036000830152614603816142b0565b9050919050565b60006020820190508181036000830152614623816142d3565b9050919050565b60006020820190508181036000830152614643816142f6565b9050919050565b600060208201905081810360008301526146638161433c565b9050919050565b600060208201905081810360008301526146838161435f565b9050919050565b600060208201905081810360008301526146a381614382565b9050919050565b600060208201905081810360008301526146c3816143a5565b9050919050565b60006020820190506146df60008301846143c8565b92915050565b60006146ef614700565b90506146fb8282614aca565b919050565b6000604051905090565b600067ffffffffffffffff82111561472557614724614c2c565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561475157614750614c2c565b5b61475a82614c5b565b9050602081019050919050565b600067ffffffffffffffff82111561478257614781614c2c565b5b61478b82614c5b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061480682614a09565b915061481183614a09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561484657614845614b9f565b5b828201905092915050565b600061485c82614a13565b915061486783614a13565b92508260ff0382111561487d5761487c614b9f565b5b828201905092915050565b600061489382614a09565b915061489e83614a09565b9250826148ae576148ad614bce565b5b828204905092915050565b60006148c482614a09565b91506148cf83614a09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561490857614907614b9f565b5b828202905092915050565b600061491e82614a09565b915061492983614a09565b92508282101561493c5761493b614b9f565b5b828203905092915050565b600061495282614a13565b915061495d83614a13565b9250828210156149705761496f614b9f565b5b828203905092915050565b6000614986826149e9565b9050919050565b6000614998826149e9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006149e28261497b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614a2b82614a32565b9050919050565b6000614a3d82614a44565b9050919050565b6000614a4f826149e9565b9050919050565b82818337600083830152505050565b60005b83811015614a83578082015181840152602081019050614a68565b83811115614a92576000848401525b50505050565b60006002820490506001821680614ab057607f821691505b60208210811415614ac457614ac3614bfd565b5b50919050565b614ad382614c5b565b810181811067ffffffffffffffff82111715614af257614af1614c2c565b5b80604052505050565b6000614b0682614a09565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b3957614b38614b9f565b5b600182019050919050565b6000614b4f82614a13565b915060ff821415614b6357614b62614b9f565b5b600182019050919050565b6000614b7982614a09565b9150614b8483614a09565b925082614b9457614b93614bce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c6520666f72206d696e60008201527f74696e6700000000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614f718161497b565b8114614f7c57600080fd5b50565b614f888161498d565b8114614f9357600080fd5b50565b614f9f8161499f565b8114614faa57600080fd5b50565b614fb6816149ab565b8114614fc157600080fd5b50565b614fcd816149d7565b8114614fd857600080fd5b50565b614fe481614a09565b8114614fef57600080fd5b5056fea2646970667358221220221d9a08a2dd8b9e13d240141b1e6c2d3195464c639500d1705f0204693ea21e64736f6c6343000804003368747470733a2f2f6261667962656966767533626f6f636f347134656873626735617763647a67706e6362656573637337776c36786970783761786d7834766a6175652e697066732e6e667473746f726167652e6c696e6b2f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000004d4468aa6a297f84cad25774a34a4971dae6f886000000000000000000000000fde10ac4933ac6beb17bd6e9898dbc15a0f419190000000000000000000000008f5635d44622631e1afc1c4afdef9fc11dd0a3cb000000000000000000000000471179cbcc19b20166f6e844888477315fb63028000000000000000000000000af7b43d7aaf9ea461389d2f6736c7831bc084e3e0000000000000000000000004c1ff8b338215ad14bcbea0f94856ffda77fce29000000000000000000000000a33ee8da1f8e8af1f189a252364bb11df5b13ac6000000000000000000000000cf51561370f0e7c1e1e1d399b85aaec2443a4a0600000000000000000000000027bc3eb61b30a729d74cfbc167bab479675dd75100000000000000000000000019e3108655ee44688e7a79293c31b7213f82bd70000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000310000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001
Deployed Bytecode
0x6080604052600436106102605760003560e01c806386aa0dc411610144578063a3f8eace116100b6578063cdcf07f41161007a578063cdcf07f41461094b578063ce7c2ac214610974578063d5abeb01146109b1578063d79779b2146109dc578063e33b7de314610a19578063e985e9c514610a44576102a7565b8063a3f8eace1461084f578063b88d4fde1461088c578063c45ac050146108a8578063c87b56dd146108e5578063cbce4c9714610922576102a7565b806394bf804d1161010857806394bf804d1461073a57806395d89b41146107565780639852595c146107815780639b19251a146107be578063a035b1fe146107fb578063a22cb46514610826576102a7565b806386aa0dc4146106645780638ab1d681146106805780638b83209b146106a95780638da5cb5b146106e657806391b7f5ed14610711576102a7565b8063406072a9116101dd57806358c0b4f5116101a157806358c0b4f5146105425780635c975abb1461056d5780636352211e146105985780636f9f3bfc146105d557806370a08231146105fe5780637f6497831461063b576102a7565b8063406072a91461046e57806342842e0e146104ab57806348b75044146104c7578063548db174146104f057806354d43f8714610519576102a7565b806318160ddd1161022457806318160ddd1461039657806319165587146103c157806323b872dd146103ea5780633a98ef39146104065780633af32abf14610431576102a7565b806301ffc9a7146102ac57806306fdde03146102e9578063081812fc14610314578063095ea7b31461035157806316c38b3c1461036d576102a7565b366102a7577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061028e610a81565b3460405161029d9291906144c4565b60405180910390a1005b600080fd5b3480156102b857600080fd5b506102d360048036038101906102ce9190613ed8565b610a89565b6040516102e091906144ed565b60405180910390f35b3480156102f557600080fd5b506102fe610b1b565b60405161030b9190614508565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190613fd0565b610bad565b6040516103489190614434565b60405180910390f35b61036b60048036038101906103669190613e09565b610c2c565b005b34801561037957600080fd5b50610394600480360381019061038f9190613e86565b610d70565b005b3480156103a257600080fd5b506103ab610e75565b6040516103b891906146ca565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190613c9e565b610e8c565b005b61040460048036038101906103ff9190613d03565b611015565b005b34801561041257600080fd5b5061041b61133a565b60405161042891906146ca565b60405180910390f35b34801561043d57600080fd5b5061045860048036038101906104539190613c75565b611344565b60405161046591906144ed565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190613f53565b61139a565b6040516104a291906146ca565b60405180910390f35b6104c560048036038101906104c09190613d03565b611421565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190613f53565b611441565b005b3480156104fc57600080fd5b5061051760048036038101906105129190613e45565b61165e565b005b34801561052557600080fd5b50610540600480360381019061053b9190613f8f565b611890565b005b34801561054e57600080fd5b50610557611992565b6040516105649190614508565b60405180910390f35b34801561057957600080fd5b50610582611a20565b60405161058f91906144ed565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190613fd0565b611a33565b6040516105cc9190614434565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613c75565b611a45565b005b34801561060a57600080fd5b5061062560048036038101906106209190613c75565b611bd7565b60405161063291906146ca565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190613e45565b611c90565b005b61067e60048036038101906106799190614022565b611ec2565b005b34801561068c57600080fd5b506106a760048036038101906106a29190613c75565b612018565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190613fd0565b6121aa565b6040516106dd9190614434565b60405180910390f35b3480156106f257600080fd5b506106fb612218565b6040516107089190614434565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613fd0565b61223e565b005b610754600480360381019061074f9190614022565b612330565b005b34801561076257600080fd5b5061076b612433565b6040516107789190614508565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a39190613c75565b6124c5565b6040516107b591906146ca565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e09190613c75565b61250e565b6040516107f291906144ed565b60405180910390f35b34801561080757600080fd5b5061081061252e565b60405161081d91906146ca565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613dcd565b612534565b005b34801561085b57600080fd5b5061087660048036038101906108719190613c75565b61263f565b60405161088391906146ca565b60405180910390f35b6108a660048036038101906108a19190613d52565b612672565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190613f53565b6126e5565b6040516108dc91906146ca565b60405180910390f35b3480156108f157600080fd5b5061090c60048036038101906109079190613fd0565b6127a3565b6040516109199190614508565b60405180910390f35b34801561092e57600080fd5b5061094960048036038101906109449190613e09565b6127ed565b005b34801561095757600080fd5b50610972600480360381019061096d9190613f8f565b612939565b005b34801561098057600080fd5b5061099b60048036038101906109969190613c75565b612a3b565b6040516109a891906146ca565b60405180910390f35b3480156109bd57600080fd5b506109c6612a84565b6040516109d391906146ca565b60405180910390f35b3480156109e857600080fd5b50610a0360048036038101906109fe9190613f2a565b612aa8565b604051610a1091906146ca565b60405180910390f35b348015610a2557600080fd5b50610a2e612af1565b604051610a3b91906146ca565b60405180910390f35b348015610a5057600080fd5b50610a6b6004803603810190610a669190613cc7565b612afb565b604051610a7891906144ed565b60405180910390f35b600033905090565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b145750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b2a90614a98565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5690614a98565b8015610ba35780601f10610b7857610100808354040283529160200191610ba3565b820191906000526020600020905b815481529060010190602001808311610b8657829003601f168201915b5050505050905090565b6000610bb882612b8f565b610bee576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3782611a33565b90508073ffffffffffffffffffffffffffffffffffffffff16610c58612bee565b73ffffffffffffffffffffffffffffffffffffffff1614610cbb57610c8481610c7f612bee565b612afb565b610cba576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e195750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f9061452a565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000610e7f612bf6565b6001546000540303905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f059061456a565b60405180910390fd5b6000610f198261263f565b90506000811415610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f56906145ea565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fae91906147fb565b925050819055508060096000828254610fc791906147fb565b92505081905550610fd88282612bfb565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056828260405161100992919061444f565b60405180910390a15050565b600061102082612cef565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611087576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061109384612dbd565b915091506110a981876110a4612bee565b612de4565b6110f5576110be866110b9612bee565b612afb565b6110f4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561115c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111698686866001612e28565b801561117457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112428561121e888887612e2e565b7c020000000000000000000000000000000000000000000000000000000017612e56565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156112ca5760006001850190506000600460008381526020019081526020016000205414156112c85760005481146112c7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113328686866001612e81565b505050505050565b6000600854905090565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61143c83838360405180602001604052806000815250612672565b505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba9061456a565b60405180910390fd5b60006114cf83836126e5565b90506000811415611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c906145ea565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a191906147fb565b9250508190555080600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115f791906147fb565b92505081905550611609838383612e87565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a83836040516116519291906144c4565b60405180910390a2505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806117075750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d9061452a565b60405180910390fd5b60005b815181101561188c57600060116000848481518110611791577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550818181518110611823577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d600060405161187191906144ed565b60405180910390a2808061188490614afb565b915050611749565b5050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806119395750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f9061452a565b60405180910390fd5b806015908051906020019061198e9291906139af565b5050565b6014805461199f90614a98565b80601f01602080910402602001604051908101604052809291908181526020018280546119cb90614a98565b8015611a185780601f106119ed57610100808354040283529160200191611a18565b820191906000526020600020905b8154815290600101906020018083116119fb57829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b6000611a3e82612cef565b9050919050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611aee5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b249061452a565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d6001604051611bcc91906144ed565b60405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c3f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611d395750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f9061452a565b60405180910390fd5b60005b8151811015611ebe57600160116000848481518110611dc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550818181518110611e55577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d6001604051611ea391906144ed565b60405180910390a28080611eb690614afb565b915050611d7b565b5050565b6002600f541415611f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eff906146aa565b60405180910390fd5b6002600f81905550611f1933611344565b611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f9061460a565b60405180910390fd5b601260009054906101000a900460ff1615611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f9061464a565b60405180910390fd5b60135482611fb691906148b9565b3414611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee9061462a565b60405180910390fd5b61200c81838461200791906147fb565b612f0d565b6001600f819055505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806120c15750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f79061452a565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d600060405161219f91906144ed565b60405180910390a250565b6000600c82815481106121e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806122e75750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d9061452a565b60405180910390fd5b8060138190555050565b6002600f541415612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236d906146aa565b60405180910390fd5b6002600f81905550601260009054906101000a900460ff16156123ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c59061464a565b60405180910390fd5b601354826123dc91906148b9565b341461241d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124149061462a565b60405180910390fd5b6124278183612f0d565b6001600f819055505050565b60606003805461244290614a98565b80601f016020809104026020016040519081016040528092919081815260200182805461246e90614a98565b80156124bb5780601f10612490576101008083540402835291602001916124bb565b820191906000526020600020905b81548152906001019060200180831161249e57829003601f168201915b5050505050905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60116020528060005260406000206000915054906101000a900460ff1681565b60135481565b8060076000612541612bee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166125ee612bee565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161263391906144ed565b60405180910390a35050565b60008061264a612af1565b4761265591906147fb565b905061266a8382612665866124c5565b612f9b565b915050919050565b61267d848484611015565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126df576126a884848484613009565b6126de576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000806126f184612aa8565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161272a9190614434565b60206040518083038186803b15801561274257600080fd5b505afa158015612756573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061277a9190613ff9565b61278491906147fb565b905061279a8382612795878761139a565b612f9b565b91505092915050565b606060006127b083613169565b90506127bd816005613316565b905060148160156040516020016127d6939291906143ee565b604051602081830303815290604052915050919050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806128965750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc9061452a565b60405180910390fd5b6002600f54141561291b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612912906146aa565b60405180910390fd5b6002600f8190555061292d8282612f0d565b6001600f819055505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806129e25750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a189061452a565b60405180910390fd5b8060149080519060200190612a379291906139af565b5050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f000000000000000000000000000000000000000000000000000000000000271081565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600954905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081612b9a612bf6565b11158015612ba9575060005482105b8015612be7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b80471015612c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c35906145aa565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612c649061441f565b60006040518083038185875af1925050503d8060008114612ca1576040519150601f19603f3d011682016040523d82523d6000602084013e612ca6565b606091505b5050905080612cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce19061458a565b60405180910390fd5b505050565b60008082905080612cfe612bf6565b11612d8657600054811015612d855760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612d83575b6000811415612d79576004600083600190039350838152602001908152602001600020549050612d4e565b8092505050612db8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612e4586868461355c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612f088363a9059cbb60e01b8484604051602401612ea69291906144c4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613565565b505050565b60017f0000000000000000000000000000000000000000000000000000000000002710612f3a91906147fb565b81612f43610e75565b612f4d91906147fb565b10612f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f849061454a565b60405180910390fd5b612f97828261362c565b5050565b600081600854600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485612fec91906148b9565b612ff69190614888565b6130009190614913565b90509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261302f612bee565b8786866040518563ffffffff1660e01b81526004016130519493929190614478565b602060405180830381600087803b15801561306b57600080fd5b505af192505050801561309c57506040513d601f19601f820116820180604052508101906130999190613f01565b60015b613116573d80600081146130cc576040519150601f19603f3d011682016040523d82523d6000602084013e6130d1565b606091505b5060008151141561310e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156131b1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613311565b600082905060005b600082146131e35780806131cc90614afb565b915050600a826131dc9190614888565b91506131b9565b60008167ffffffffffffffff811115613225577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132575781602001600182028036833780820191505090505b5090505b6000851461330a576001826132709190614913565b9150600a8561327f9190614b6e565b603061328b91906147fb565b60f81b8183815181106132c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133039190614888565b945061325b565b8093505050505b919050565b60606000839050600081518461332c9190614947565b905060008160ff1611156135505760008460ff1667ffffffffffffffff81111561337f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133b15781602001600182028036833780820191505090505b50905060005b8260ff168160ff161015613464577f3000000000000000000000000000000000000000000000000000000000000000828260ff1681518110613422577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061345c90614b44565b9150506133b7565b5060005b83518160ff16101561354457838160ff16815181106134b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8284836134c89190614851565b60ff1681518110613502577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061353c90614b44565b915050613468565b50809350505050613556565b84925050505b92915050565b60009392505050565b60006135c7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166137e99092919063ffffffff16565b905060008151111561362757808060200190518101906135e79190613eaf565b613626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361d9061468a565b60405180910390fd5b5b505050565b600080549050600082141561366d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61367a6000848385612e28565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506136f1836136e26000866000612e2e565b6136eb85613801565b17612e56565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461379257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613757565b5060008214156137ce576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506137e46000848385612e81565b505050565b60606137f88484600085613811565b90509392505050565b60006001821460e11b9050919050565b606082471015613856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161384d906145ca565b60405180910390fd5b61385f85613925565b61389e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138959061466a565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516138c791906143d7565b60006040518083038185875af1925050503d8060008114613904576040519150601f19603f3d011682016040523d82523d6000602084013e613909565b606091505b5091509150613919828286613948565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315613958578290506139a8565b60008351111561396b5782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399f9190614508565b60405180910390fd5b9392505050565b8280546139bb90614a98565b90600052602060002090601f0160209004810192826139dd5760008555613a24565b82601f106139f657805160ff1916838001178555613a24565b82800160010185558215613a24579182015b82811115613a23578251825591602001919060010190613a08565b5b509050613a319190613a35565b5090565b5b80821115613a4e576000816000905550600101613a36565b5090565b6000613a65613a608461470a565b6146e5565b90508083825260208201905082856020860282011115613a8457600080fd5b60005b85811015613ab45781613a9a8882613b3a565b845260208401935060208301925050600181019050613a87565b5050509392505050565b6000613ad1613acc84614736565b6146e5565b905082815260208101848484011115613ae957600080fd5b613af4848285614a56565b509392505050565b6000613b0f613b0a84614767565b6146e5565b905082815260208101848484011115613b2757600080fd5b613b32848285614a56565b509392505050565b600081359050613b4981614f68565b92915050565b600081359050613b5e81614f7f565b92915050565b600082601f830112613b7557600080fd5b8135613b85848260208601613a52565b91505092915050565b600081359050613b9d81614f96565b92915050565b600081519050613bb281614f96565b92915050565b600081359050613bc781614fad565b92915050565b600081519050613bdc81614fad565b92915050565b600082601f830112613bf357600080fd5b8135613c03848260208601613abe565b91505092915050565b600081359050613c1b81614fc4565b92915050565b600082601f830112613c3257600080fd5b8135613c42848260208601613afc565b91505092915050565b600081359050613c5a81614fdb565b92915050565b600081519050613c6f81614fdb565b92915050565b600060208284031215613c8757600080fd5b6000613c9584828501613b3a565b91505092915050565b600060208284031215613cb057600080fd5b6000613cbe84828501613b4f565b91505092915050565b60008060408385031215613cda57600080fd5b6000613ce885828601613b3a565b9250506020613cf985828601613b3a565b9150509250929050565b600080600060608486031215613d1857600080fd5b6000613d2686828701613b3a565b9350506020613d3786828701613b3a565b9250506040613d4886828701613c4b565b9150509250925092565b60008060008060808587031215613d6857600080fd5b6000613d7687828801613b3a565b9450506020613d8787828801613b3a565b9350506040613d9887828801613c4b565b925050606085013567ffffffffffffffff811115613db557600080fd5b613dc187828801613be2565b91505092959194509250565b60008060408385031215613de057600080fd5b6000613dee85828601613b3a565b9250506020613dff85828601613b8e565b9150509250929050565b60008060408385031215613e1c57600080fd5b6000613e2a85828601613b3a565b9250506020613e3b85828601613c4b565b9150509250929050565b600060208284031215613e5757600080fd5b600082013567ffffffffffffffff811115613e7157600080fd5b613e7d84828501613b64565b91505092915050565b600060208284031215613e9857600080fd5b6000613ea684828501613b8e565b91505092915050565b600060208284031215613ec157600080fd5b6000613ecf84828501613ba3565b91505092915050565b600060208284031215613eea57600080fd5b6000613ef884828501613bb8565b91505092915050565b600060208284031215613f1357600080fd5b6000613f2184828501613bcd565b91505092915050565b600060208284031215613f3c57600080fd5b6000613f4a84828501613c0c565b91505092915050565b60008060408385031215613f6657600080fd5b6000613f7485828601613c0c565b9250506020613f8585828601613b3a565b9150509250929050565b600060208284031215613fa157600080fd5b600082013567ffffffffffffffff811115613fbb57600080fd5b613fc784828501613c21565b91505092915050565b600060208284031215613fe257600080fd5b6000613ff084828501613c4b565b91505092915050565b60006020828403121561400b57600080fd5b600061401984828501613c60565b91505092915050565b6000806040838503121561403557600080fd5b600061404385828601613c4b565b925050602061405485828601613b3a565b9150509250929050565b61406781614a20565b82525050565b6140768161497b565b82525050565b6140858161499f565b82525050565b6000614096826147ad565b6140a081856147c3565b93506140b0818560208601614a65565b6140b981614c5b565b840191505092915050565b60006140cf826147ad565b6140d981856147d4565b93506140e9818560208601614a65565b80840191505092915050565b6000614100826147b8565b61410a81856147df565b935061411a818560208601614a65565b61412381614c5b565b840191505092915050565b6000614139826147b8565b61414381856147f0565b9350614153818560208601614a65565b80840191505092915050565b6000815461416c81614a98565b61417681866147f0565b9450600182166000811461419157600181146141a2576141d5565b60ff198316865281860193506141d5565b6141ab85614798565b60005b838110156141cd578154818901526001820191506020810190506141ae565b838801955050505b50505092915050565b60006141eb600c836147df565b91506141f682614c6c565b602082019050919050565b600061420e6024836147df565b915061421982614c95565b604082019050919050565b60006142316026836147df565b915061423c82614ce4565b604082019050919050565b6000614254603a836147df565b915061425f82614d33565b604082019050919050565b6000614277601d836147df565b915061428282614d82565b602082019050919050565b600061429a6026836147df565b91506142a582614dab565b604082019050919050565b60006142bd602b836147df565b91506142c882614dfa565b604082019050919050565b60006142e0600f836147df565b91506142eb82614e49565b602082019050919050565b6000614303601d836147df565b915061430e82614e72565b602082019050919050565b60006143266000836147d4565b915061433182614e9b565b600082019050919050565b60006143496011836147df565b915061435482614e9e565b602082019050919050565b600061436c601d836147df565b915061437782614ec7565b602082019050919050565b600061438f602a836147df565b915061439a82614ef0565b604082019050919050565b60006143b2601f836147df565b91506143bd82614f3f565b602082019050919050565b6143d181614a09565b82525050565b60006143e382846140c4565b915081905092915050565b60006143fa828661415f565b9150614406828561412e565b9150614412828461415f565b9150819050949350505050565b600061442a82614319565b9150819050919050565b6000602082019050614449600083018461406d565b92915050565b6000604082019050614464600083018561405e565b61447160208301846143c8565b9392505050565b600060808201905061448d600083018761406d565b61449a602083018661406d565b6144a760408301856143c8565b81810360608301526144b9818461408b565b905095945050505050565b60006040820190506144d9600083018561406d565b6144e660208301846143c8565b9392505050565b6000602082019050614502600083018461407c565b92915050565b6000602082019050818103600083015261452281846140f5565b905092915050565b60006020820190508181036000830152614543816141de565b9050919050565b6000602082019050818103600083015261456381614201565b9050919050565b6000602082019050818103600083015261458381614224565b9050919050565b600060208201905081810360008301526145a381614247565b9050919050565b600060208201905081810360008301526145c38161426a565b9050919050565b600060208201905081810360008301526145e38161428d565b9050919050565b60006020820190508181036000830152614603816142b0565b9050919050565b60006020820190508181036000830152614623816142d3565b9050919050565b60006020820190508181036000830152614643816142f6565b9050919050565b600060208201905081810360008301526146638161433c565b9050919050565b600060208201905081810360008301526146838161435f565b9050919050565b600060208201905081810360008301526146a381614382565b9050919050565b600060208201905081810360008301526146c3816143a5565b9050919050565b60006020820190506146df60008301846143c8565b92915050565b60006146ef614700565b90506146fb8282614aca565b919050565b6000604051905090565b600067ffffffffffffffff82111561472557614724614c2c565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561475157614750614c2c565b5b61475a82614c5b565b9050602081019050919050565b600067ffffffffffffffff82111561478257614781614c2c565b5b61478b82614c5b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061480682614a09565b915061481183614a09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561484657614845614b9f565b5b828201905092915050565b600061485c82614a13565b915061486783614a13565b92508260ff0382111561487d5761487c614b9f565b5b828201905092915050565b600061489382614a09565b915061489e83614a09565b9250826148ae576148ad614bce565b5b828204905092915050565b60006148c482614a09565b91506148cf83614a09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561490857614907614b9f565b5b828202905092915050565b600061491e82614a09565b915061492983614a09565b92508282101561493c5761493b614b9f565b5b828203905092915050565b600061495282614a13565b915061495d83614a13565b9250828210156149705761496f614b9f565b5b828203905092915050565b6000614986826149e9565b9050919050565b6000614998826149e9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006149e28261497b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614a2b82614a32565b9050919050565b6000614a3d82614a44565b9050919050565b6000614a4f826149e9565b9050919050565b82818337600083830152505050565b60005b83811015614a83578082015181840152602081019050614a68565b83811115614a92576000848401525b50505050565b60006002820490506001821680614ab057607f821691505b60208210811415614ac457614ac3614bfd565b5b50919050565b614ad382614c5b565b810181811067ffffffffffffffff82111715614af257614af1614c2c565b5b80604052505050565b6000614b0682614a09565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b3957614b38614b9f565b5b600182019050919050565b6000614b4f82614a13565b915060ff821415614b6357614b62614b9f565b5b600182019050919050565b6000614b7982614a09565b9150614b8483614a09565b925082614b9457614b93614bce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c6520666f72206d696e60008201527f74696e6700000000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614f718161497b565b8114614f7c57600080fd5b50565b614f888161498d565b8114614f9357600080fd5b50565b614f9f8161499f565b8114614faa57600080fd5b50565b614fb6816149ab565b8114614fc157600080fd5b50565b614fcd816149d7565b8114614fd857600080fd5b50565b614fe481614a09565b8114614fef57600080fd5b5056fea2646970667358221220221d9a08a2dd8b9e13d240141b1e6c2d3195464c639500d1705f0204693ea21e64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000004d4468aa6a297f84cad25774a34a4971dae6f886000000000000000000000000fde10ac4933ac6beb17bd6e9898dbc15a0f419190000000000000000000000008f5635d44622631e1afc1c4afdef9fc11dd0a3cb000000000000000000000000471179cbcc19b20166f6e844888477315fb63028000000000000000000000000af7b43d7aaf9ea461389d2f6736c7831bc084e3e0000000000000000000000004c1ff8b338215ad14bcbea0f94856ffda77fce29000000000000000000000000a33ee8da1f8e8af1f189a252364bb11df5b13ac6000000000000000000000000cf51561370f0e7c1e1e1d399b85aaec2443a4a0600000000000000000000000027bc3eb61b30a729d74cfbc167bab479675dd75100000000000000000000000019e3108655ee44688e7a79293c31b7213f82bd70000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000310000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001
-----Decoded View---------------
Arg [0] : _payees (address[]): 0x4d4468AA6a297f84cad25774a34A4971Dae6F886,0xFde10aC4933Ac6bEb17BD6e9898DBc15a0F41919,0x8f5635d44622631E1Afc1C4AFdEf9fC11DD0a3Cb,0x471179CbcC19B20166F6e844888477315fB63028,0xaf7B43D7AAf9Ea461389D2f6736C7831Bc084e3E,0x4C1ff8B338215AD14bCbea0f94856FFDA77fcE29,0xA33EE8dA1F8E8AF1F189A252364bb11dF5B13Ac6,0xCF51561370f0e7c1E1e1d399b85aAec2443a4A06,0x27bc3eb61B30a729d74cfBC167BaB479675dD751,0x19E3108655Ee44688E7a79293c31B7213f82bD70
Arg [1] : _shares (uint256[]): 49,18,10,10,5,3,2,1,1,1
-----Encoded View---------------
24 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 0000000000000000000000004d4468aa6a297f84cad25774a34a4971dae6f886
Arg [4] : 000000000000000000000000fde10ac4933ac6beb17bd6e9898dbc15a0f41919
Arg [5] : 0000000000000000000000008f5635d44622631e1afc1c4afdef9fc11dd0a3cb
Arg [6] : 000000000000000000000000471179cbcc19b20166f6e844888477315fb63028
Arg [7] : 000000000000000000000000af7b43d7aaf9ea461389d2f6736c7831bc084e3e
Arg [8] : 0000000000000000000000004c1ff8b338215ad14bcbea0f94856ffda77fce29
Arg [9] : 000000000000000000000000a33ee8da1f8e8af1f189a252364bb11df5b13ac6
Arg [10] : 000000000000000000000000cf51561370f0e7c1e1e1d399b85aaec2443a4a06
Arg [11] : 00000000000000000000000027bc3eb61b30a729d74cfbc167bab479675dd751
Arg [12] : 00000000000000000000000019e3108655ee44688e7a79293c31b7213f82bd70
Arg [13] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [16] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [17] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000001
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.