Overview
ETH Balance
0.042 ETH
Eth Value
$136.60 (@ $3,252.31/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 22 from a total of 22 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Change Mint Stat... | 15623025 | 836 days ago | IN | 0 ETH | 0.00028784 | ||||
Withdraw | 15620659 | 836 days ago | IN | 0 ETH | 0.00024061 | ||||
Withdraw | 15620382 | 836 days ago | IN | 0 ETH | 0.00134671 | ||||
Transfer From | 15612876 | 837 days ago | IN | 0 ETH | 0.00069948 | ||||
Transfer | 15612839 | 837 days ago | IN | 0.07 ETH | 0.00128604 | ||||
Safe Transfer Fr... | 15603004 | 839 days ago | IN | 0 ETH | 0.00040977 | ||||
Withdraw | 15596334 | 840 days ago | IN | 0 ETH | 0.00034818 | ||||
Set Image | 15592702 | 840 days ago | IN | 0 ETH | 0.00026986 | ||||
Set Description | 15592697 | 840 days ago | IN | 0 ETH | 0.00026314 | ||||
Set Base URI | 15592654 | 840 days ago | IN | 0 ETH | 0.00026271 | ||||
Mint Allow List | 15592483 | 840 days ago | IN | 0.05 ETH | 0.00095557 | ||||
Mint Allow List | 15590703 | 840 days ago | IN | 0.05 ETH | 0.00134423 | ||||
Withdraw | 15586110 | 841 days ago | IN | 0 ETH | 0.0008198 | ||||
Mint Public | 15580972 | 842 days ago | IN | 0.07 ETH | 0.0006175 | ||||
Change Mint Stat... | 15579418 | 842 days ago | IN | 0 ETH | 0.00013572 | ||||
Set Pre Reveal U... | 15579408 | 842 days ago | IN | 0 ETH | 0.00014447 | ||||
Set Base URI | 15579408 | 842 days ago | IN | 0 ETH | 0.00034499 | ||||
Transfer | 15579305 | 842 days ago | IN | 0.05 ETH | 0.00014039 | ||||
Change Mint Stat... | 15579042 | 842 days ago | IN | 0 ETH | 0.0003041 | ||||
Set Provenance H... | 15565993 | 844 days ago | IN | 0 ETH | 0.00068642 | ||||
Set Pre Reveal U... | 15565618 | 844 days ago | IN | 0 ETH | 0.00034483 | ||||
Transfer Ownersh... | 15483722 | 857 days ago | IN | 0 ETH | 0.00021235 |
Loading...
Loading
Contract Name:
OtherFolks
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicense // Creator: 0xYeety pragma solidity ^0.8.9; // dP dP .8888b dP dP // 88 88 88 " 88 88 // .d8888b. d8888P 88d888b. .d8888b. 88d888b. 88aaa .d8888b. 88 88 .dP .d8888b. // 88' `88 88 88' `88 88ooood8 88' `88 88 88' `88 88 88888" Y8ooooo. // 88. .88 88 88 88 88. ... 88 88 88. .88 88 88 `8b. 88 // `88888P' dP dP dP `88888P' dP dP `88888P' dP dP `YP `88888P' import "./ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract OtherFolks is ERC721, Ownable { using Address for address; using Strings for uint256; string public PROVENANCE; bool provenanceSet; mapping(address => uint256) private _numMinted; /*************************************************************************/ /*** PAYMENT VARIABLES (Start) *******************************************/ address[] public payees; mapping(address => uint256) private paymentInfo; uint256 totalReceived = 0; mapping(address => uint256) amountsWithdrawn; modifier onlyPayee() { _isPayee(); _; } function _isPayee() internal view virtual { require(paymentInfo[msg.sender] > 0, "not a payee"); } /*** PAYMENT VARIABLES (End) *******************************************/ /***********************************************************************/ address public allowListContract; mapping(uint256 => bool) public tokenIsClaimed; uint256 public mintPrice = 0.07 ether; uint256 public allowListMintPrice = 0.05 ether; enum MintStatus { NotStarted, AllowList, Public, Finished } MintStatus public mintStatus = MintStatus.NotStarted; uint256 public maxPossibleSupply; uint256 public maxMintsPerWallet; string collectionDescription = "A multi-format photo collection of 100+ images spanning 10 years of street, landscape and portrait photography, available to mint-via-ENS - a companion collection to 'Folks Genesis'"; string collectionImage = "https://bafkreifo5jgl36cydayk57ktuuo2cs5ie4ffc6bsx63sze675os7otvlz4.ipfs.nftstorage.link"; string externalLink = "https://streetphotography.eth.limo"; constructor ( string memory name_, string memory symbol_, uint256 maxPossibleSupply_, uint256 maxMintsPerWallet_, address allowListContractAddress_, address[] memory payees_, uint256[] memory basisPoints_ ) ERC721(name_, symbol_) { maxPossibleSupply = maxPossibleSupply_; maxMintsPerWallet = maxMintsPerWallet_; allowListContract = allowListContractAddress_; require(payees_.length == basisPoints_.length, "l"); payees = payees_; for (uint256 i = 0; i < payees_.length; i++) { paymentInfo[payees_[i]] = basisPoints_[i]; } } /****************************************************************************/ /*** MINT DETAILS CONTROL (Start) *******************************************/ function changeMintStatus(MintStatus newMintStatus) public onlyOwner { require(newMintStatus != MintStatus.NotStarted && mintStatus != MintStatus.Finished, "ms"); mintStatus = newMintStatus; } function setMaxPossibleSupply(uint256 newMPS) public onlyOwner { require(mintStatus == MintStatus.NotStarted, "ms"); maxPossibleSupply = newMPS; } function setMaxMintsPerWallet(uint256 newMMPW) public onlyOwner { require(mintStatus == MintStatus.NotStarted, "ms"); maxMintsPerWallet = newMMPW; } function setMintPrice(uint256 newMintPrice) public onlyOwner { require(mintStatus == MintStatus.NotStarted, "ms"); mintPrice = newMintPrice; } function setAllowListMintPrice(uint256 newAllowListMintPrice) public onlyOwner { require(mintStatus == MintStatus.NotStarted, "ms"); allowListMintPrice = newAllowListMintPrice; } function setName(string memory newName) public onlyOwner { require(mintStatus == MintStatus.NotStarted, "ms"); _setName(newName); } function setSymbol(string memory newSymbol) public onlyOwner { require(mintStatus == MintStatus.NotStarted, "ms"); _setSymbol(newSymbol); } function setDescription(string memory newDescription) public onlyOwner { collectionDescription = newDescription; } function setImage(string memory newImage) public onlyOwner { collectionImage = newImage; } /*** MINT DETAILS CONTROL (End) *******************************************/ /**************************************************************************/ function _mintMain(address _to, uint256 _quantity) private { require( _numMinted[_to] + _quantity <= maxMintsPerWallet && totalSupply() + _quantity <= maxPossibleSupply, "mmpw/mps"); _safeMint(_to, _quantity); if (totalSupply() == maxPossibleSupply) { mintStatus = MintStatus.Finished; } } function mintPublic(uint256 _quantity) public payable { require(msg.value >= (_quantity*mintPrice), "m.v"); require(mintStatus == MintStatus.Public, "ms"); totalReceived += msg.value; _mintMain(msg.sender, _quantity); } function mintAllowList(uint256[] memory tokensToClaim) public payable { uint256 _quantity = tokensToClaim.length; require(msg.value >= (_quantity*allowListMintPrice), "m.v"); require(mintStatus == MintStatus.AllowList || mintStatus == MintStatus.Public, "ms"); for (uint256 i = 0; i < _quantity; i++) { uint256 tokenToClaim = tokensToClaim[i]; require(msg.sender == ERC721(allowListContract).ownerOf(tokenToClaim), "o"); require(!tokenIsClaimed[tokenToClaim], "c"); tokenIsClaimed[tokenToClaim] = true; } totalReceived += msg.value; _mintMain(msg.sender, _quantity); } ////////// function setPreRevealURI(string memory preRevealURI_) public onlyOwner { _setPreRevealURI(preRevealURI_); } function setBaseURI(string memory baseURI_) public onlyOwner { _setBaseURI(baseURI_); } function setProvenanceHash(string memory provenanceHash) public onlyOwner { require(!provenanceSet); PROVENANCE = provenanceHash; provenanceSet = true; } function contractURI() public view returns (string memory) { return string( abi.encodePacked( "data:application/json;utf8,{\"name\":\"", name(),"\",", "\"description\":\"", collectionDescription, "\",", "\"image\":\"", collectionImage, "\",", "\"external_link\":\"", externalLink, "\",", "\"seller_fee_basis_points\":500,\"fee_recipient\":\"", "0x01A29134723ef72a968838cb1DF498BC4f910bEc", "\"}" ) ); } /*********************************************************************/ /*** PAYMENT LOGIC (Start) *******************************************/ receive() external payable { mintPublic(msg.value/mintPrice); totalReceived += msg.value; } function withdraw() public onlyPayee { uint256 totalForPayee = (totalReceived/10000)*paymentInfo[msg.sender]; uint256 toWithdraw = totalForPayee - amountsWithdrawn[msg.sender]; amountsWithdrawn[msg.sender] = totalForPayee; (bool success, ) = payable(msg.sender).call{value: toWithdraw}(""); require(success, "Payment failed!"); } function withdrawTokens(address tokenAddress) external onlyPayee() { for (uint256 i = 0; i < payees.length; i++) { IERC20(tokenAddress).transfer( payees[i], (IERC20(tokenAddress).balanceOf(address(this))/10000)*paymentInfo[payees[i]] ); } } function emergencyWithdrawTokens(address tokenAddress) external onlyOwner() { IERC20(tokenAddress).transfer(msg.sender, IERC20(tokenAddress).balanceOf(address(this))); } /*** PAYMENT LOGIC (End) *******************************************/ /*******************************************************************/ } ////////////////////////////////////////
// SPDX-License-Identifier: Unlicense // Creator: 0xYeety pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; uint256 private currentIndex = 0; // Token name string private _name; // Token symbol string private _symbol; // Base URI string private _baseURI; string private _preRevealURI; mapping(uint256 => address) private _ownerships; mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor( string memory name_, string memory symbol_ ) { _name = name_; _symbol = symbol_; } function _setCurrentIndex(uint256 _index) internal { currentIndex = _index; } /** * @dev See {IERC721Enumerable-totalSupply}. **/ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "g"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "b"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { address ownership = _ownerships[i]; if (ownership != address(0)) { currOwnershipAddr = ownership; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("u"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "0"); return uint256(_balances[owner]); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { // return ownershipOf(tokenId); require(tokenId < currentIndex, "t"); for (uint256 curr = tokenId; curr >= 0; curr--) { address ownership = _ownerships[curr]; if (ownership != address(0)) { return ownership; } } revert("o"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } function _setName(string memory name_) internal virtual { _name = name_; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } function _setSymbol(string memory symbol_) internal virtual { _symbol = symbol_; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "z"); if (bytes(_baseURI).length > 0) { return string(abi.encodePacked(_baseURI, "/", tokenId.toString(), ".json")); } else { return _preRevealURI; } } /** * @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, can be overridden in child contracts. */ function baseURI() public view virtual returns (string memory) { return _baseURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } function preRevealURI() public view virtual returns (string memory) { return _preRevealURI; } function _setPreRevealURI(string memory preRevealURI_) internal virtual { _preRevealURI = preRevealURI_; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "o"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "a" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "a"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "a"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "z" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return (tokenId < currentIndex); } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); require(_checkOnERC721Received(address(0), to, currentIndex - 1, _data), "z"); } function _mint(address to, uint256 quantity) internal { uint256 startTokenId = currentIndex; require(to != address(0), "0"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "a"); _balances[to] = _balances[to] + quantity; _ownerships[startTokenId] = to; uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); updatedIndex++; } currentIndex = updatedIndex; } /******************/ function _transfer( address from, address to, uint256 tokenId ) private { address prevOwnership = ownerOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership, _msgSender())); require(isApprovedOrOwner, "a"); require(prevOwnership == from, "o"); require(to != address(0), "0"); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership); _balances[from] -= 1; _balances[to] += 1; _ownerships[tokenId] = to; // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId] == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = prevOwnership; } } emit Transfer(from, to, tokenId); } function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /******************/ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("z"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } } ////////////////////////////////////////
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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 (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 // 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 (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/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "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":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"maxPossibleSupply_","type":"uint256"},{"internalType":"uint256","name":"maxMintsPerWallet_","type":"uint256"},{"internalType":"address","name":"allowListContractAddress_","type":"address"},{"internalType":"address[]","name":"payees_","type":"address[]"},{"internalType":"uint256[]","name":"basisPoints_","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum OtherFolks.MintStatus","name":"newMintStatus","type":"uint8"}],"name":"changeMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"emergencyWithdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPossibleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokensToClaim","type":"uint256[]"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"enum OtherFolks.MintStatus","name":"","type":"uint8"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payees","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAllowListMintPrice","type":"uint256"}],"name":"setAllowListMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newDescription","type":"string"}],"name":"setDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newImage","type":"string"}],"name":"setImage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMMPW","type":"uint256"}],"name":"setMaxMintsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMPS","type":"uint256"}],"name":"setMaxPossibleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"preRevealURI_","type":"string"}],"name":"setPreRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newSymbol","type":"string"}],"name":"setSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIsClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600080556000600f5566f8b0a10e47000060135566b1a2bc2ec500006014556000601560006101000a81548160ff021916908360038111156200004c576200004b620004db565b5b02179055506040518060e0016040528060b5815260200162005c1c60b5913960189080519060200190620000829291906200039c565b5060405180608001604052806058815260200162005cf36058913960199080519060200190620000b49291906200039c565b5060405180606001604052806022815260200162005cd160229139601a9080519060200190620000e69291906200039c565b50348015620000f457600080fd5b5060405162005d4b38038062005d4b83398181016040528101906200011a9190620008f8565b86868160019080519060200190620001349291906200039c565b5080600290805190602001906200014d9291906200039c565b5050506200017062000164620002ce60201b60201c565b620002d660201b60201c565b846016819055508360178190555082601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550805182511462000206576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001fd9062000a88565b60405180910390fd5b81600d90805190602001906200021e9291906200042d565b5060005b8251811015620002c05781818151811062000242576200024162000aaa565b5b6020026020010151600e600085848151811062000264576200026362000aaa565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080620002b79062000b08565b91505062000222565b505050505050505062000bbb565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003aa9062000b85565b90600052602060002090601f016020900481019282620003ce57600085556200041a565b82601f10620003e957805160ff19168380011785556200041a565b828001600101855582156200041a579182015b8281111562000419578251825591602001919060010190620003fc565b5b509050620004299190620004bc565b5090565b828054828255906000526020600020908101928215620004a9579160200282015b82811115620004a85782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200044e565b5b509050620004b89190620004bc565b5090565b5b80821115620004d7576000816000905550600101620004bd565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005738262000528565b810181811067ffffffffffffffff8211171562000595576200059462000539565b5b80604052505050565b6000620005aa6200050a565b9050620005b8828262000568565b919050565b600067ffffffffffffffff821115620005db57620005da62000539565b5b620005e68262000528565b9050602081019050919050565b60005b8381101562000613578082015181840152602081019050620005f6565b8381111562000623576000848401525b50505050565b6000620006406200063a84620005bd565b6200059e565b9050828152602081018484840111156200065f576200065e62000523565b5b6200066c848285620005f3565b509392505050565b600082601f8301126200068c576200068b6200051e565b5b81516200069e84826020860162000629565b91505092915050565b6000819050919050565b620006bc81620006a7565b8114620006c857600080fd5b50565b600081519050620006dc81620006b1565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200070f82620006e2565b9050919050565b620007218162000702565b81146200072d57600080fd5b50565b600081519050620007418162000716565b92915050565b600067ffffffffffffffff82111562000765576200076462000539565b5b602082029050602081019050919050565b600080fd5b6000620007926200078c8462000747565b6200059e565b90508083825260208201905060208402830185811115620007b857620007b762000776565b5b835b81811015620007e55780620007d0888262000730565b845260208401935050602081019050620007ba565b5050509392505050565b600082601f8301126200080757620008066200051e565b5b8151620008198482602086016200077b565b91505092915050565b600067ffffffffffffffff82111562000840576200083f62000539565b5b602082029050602081019050919050565b600062000868620008628462000822565b6200059e565b905080838252602082019050602084028301858111156200088e576200088d62000776565b5b835b81811015620008bb5780620008a68882620006cb565b84526020840193505060208101905062000890565b5050509392505050565b600082601f830112620008dd57620008dc6200051e565b5b8151620008ef84826020860162000851565b91505092915050565b600080600080600080600060e0888a0312156200091a576200091962000514565b5b600088015167ffffffffffffffff8111156200093b576200093a62000519565b5b620009498a828b0162000674565b975050602088015167ffffffffffffffff8111156200096d576200096c62000519565b5b6200097b8a828b0162000674565b96505060406200098e8a828b01620006cb565b9550506060620009a18a828b01620006cb565b9450506080620009b48a828b0162000730565b93505060a088015167ffffffffffffffff811115620009d857620009d762000519565b5b620009e68a828b01620007ef565b92505060c088015167ffffffffffffffff81111562000a0a5762000a0962000519565b5b62000a188a828b01620008c5565b91505092959891949750929550565b600082825260208201905092915050565b7f6c00000000000000000000000000000000000000000000000000000000000000600082015250565b600062000a7060018362000a27565b915062000a7d8262000a38565b602082019050919050565b6000602082019050818103600083015262000aa38162000a61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b1582620006a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000b4b5762000b4a62000ad9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b9e57607f821691505b6020821081141562000bb55762000bb462000b56565b5b50919050565b6150518062000bcb6000396000f3fe6080604052600436106102975760003560e01c806370a082311161015a578063b2af127c116100c1578063e985e9c51161007a578063e985e9c514610a27578063efd0cbf914610a64578063f2b3767114610a80578063f2fde38b14610aab578063f4a0a52814610ad4578063f516a2e614610afd576102cd565b8063b2af127c1461091b578063b84c824614610944578063b88d4fde1461096d578063c47f002714610996578063c87b56dd146109bf578063e8a3d485146109fc576102cd565b80638da5cb5b116101135780638da5cb5b1461081f57806390c3f38f1461084a57806395d89b4114610873578063963c35461461089e5780639da3f8fd146108c7578063a22cb465146108f2576102cd565b806370a0823114610725578063715018a61461076257806371adb5e61461077957806379b6ed36146107a25780637cac2602146107cd57806385284573146107f6576102cd565b80633ccfd60b116101fe57806363037b0c116101b757806363037b0c146105ff5780636352211e1461063c5780636373a6b1146106795780636817c76c146106a457806368855b64146106cf5780636c0360eb146106fa576102cd565b80633ccfd60b1461050757806340cbed4f1461051e57806342842e0e1461054757806349df728c146105705780634f6ccce71461059957806355f804b3146105d6576102cd565b806318160ddd1161025057806318160ddd146103e557806323b872dd146104105780632a85db55146104395780632dbb4bbf146104625780632f745c591461049f578063386b7691146104dc576102cd565b806301ffc9a7146102d257806306fdde031461030f578063081812fc1461033a578063095ea7b31461037757806310969523146103a057806310c6cfda146103c9576102cd565b366102cd576102b2601354346102ad9190613711565b610b28565b34600f60008282546102c49190613742565b92505081905550005b600080fd5b3480156102de57600080fd5b506102f960048036038101906102f49190613804565b610c14565b604051610306919061384c565b60405180910390f35b34801561031b57600080fd5b50610324610d5e565b6040516103319190613900565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c919061394e565b610df0565b60405161036e91906139bc565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613a03565b610e75565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613b78565b610f8e565b005b6103e360048036038101906103de9190613c89565b610fe5565b005b3480156103f157600080fd5b506103fa6112fa565b6040516104079190613ce1565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613cfc565b611303565b005b34801561044557600080fd5b50610460600480360381019061045b9190613b78565b611313565b005b34801561046e57600080fd5b506104896004803603810190610484919061394e565b611327565b604051610496919061384c565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613a03565b611347565b6040516104d39190613ce1565b60405180910390f35b3480156104e857600080fd5b506104f16114cb565b6040516104fe9190613ce1565b60405180910390f35b34801561051357600080fd5b5061051c6114d1565b005b34801561052a57600080fd5b506105456004803603810190610540919061394e565b61167b565b005b34801561055357600080fd5b5061056e60048036038101906105699190613cfc565b611703565b005b34801561057c57600080fd5b5061059760048036038101906105929190613d4f565b611723565b005b3480156105a557600080fd5b506105c060048036038101906105bb919061394e565b61193b565b6040516105cd9190613ce1565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f89190613b78565b61198e565b005b34801561060b57600080fd5b506106266004803603810190610621919061394e565b6119a2565b60405161063391906139bc565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e919061394e565b6119e1565b60405161067091906139bc565b60405180910390f35b34801561068557600080fd5b5061068e611aff565b60405161069b9190613900565b60405180910390f35b3480156106b057600080fd5b506106b9611b8d565b6040516106c69190613ce1565b60405180910390f35b3480156106db57600080fd5b506106e4611b93565b6040516106f19190613ce1565b60405180910390f35b34801561070657600080fd5b5061070f611b99565b60405161071c9190613900565b60405180910390f35b34801561073157600080fd5b5061074c60048036038101906107479190613d4f565b611c2b565b6040516107599190613ce1565b60405180910390f35b34801561076e57600080fd5b50610777611ce3565b005b34801561078557600080fd5b506107a0600480360381019061079b9190613b78565b611cf7565b005b3480156107ae57600080fd5b506107b7611d19565b6040516107c49190613900565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190613da1565b611dab565b005b34801561080257600080fd5b5061081d6004803603810190610818919061394e565b611e87565b005b34801561082b57600080fd5b50610834611f0f565b60405161084191906139bc565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190613b78565b611f39565b005b34801561087f57600080fd5b50610888611f5b565b6040516108959190613900565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c0919061394e565b611fed565b005b3480156108d357600080fd5b506108dc612075565b6040516108e99190613e45565b60405180910390f35b3480156108fe57600080fd5b5061091960048036038101906109149190613e8c565b612088565b005b34801561092757600080fd5b50610942600480360381019061093d9190613d4f565b612209565b005b34801561095057600080fd5b5061096b60048036038101906109669190613b78565b61232a565b005b34801561097957600080fd5b50610994600480360381019061098f9190613f6d565b6123b4565b005b3480156109a257600080fd5b506109bd60048036038101906109b89190613b78565b612410565b005b3480156109cb57600080fd5b506109e660048036038101906109e1919061394e565b61249a565b6040516109f39190613900565b60405180910390f35b348015610a0857600080fd5b50610a116125c0565b604051610a1e9190613900565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190613ff0565b6125f7565b604051610a5b919061384c565b60405180910390f35b610a7e6004803603810190610a79919061394e565b610b28565b005b348015610a8c57600080fd5b50610a9561268b565b604051610aa291906139bc565b60405180910390f35b348015610ab757600080fd5b50610ad26004803603810190610acd9190613d4f565b6126b1565b005b348015610ae057600080fd5b50610afb6004803603810190610af6919061394e565b612735565b005b348015610b0957600080fd5b50610b126127bd565b604051610b1f9190613ce1565b60405180910390f35b60135481610b369190614030565b341015610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f906140d6565b60405180910390fd5b60026003811115610b8c57610b8b613dce565b5b601560009054906101000a900460ff166003811115610bae57610bad613dce565b5b14610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590614142565b60405180910390fd5b34600f6000828254610c009190613742565b92505081905550610c1133826127c3565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cdf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d4757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d575750610d56826128bd565b5b9050919050565b606060018054610d6d90614191565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9990614191565b8015610de65780601f10610dbb57610100808354040283529160200191610de6565b820191906000526020600020905b815481529060010190602001808311610dc957829003601f168201915b5050505050905090565b6000610dfb82612927565b610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e319061420f565b60405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e80826119e1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee89061427b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f10612934565b73ffffffffffffffffffffffffffffffffffffffff161480610f3f5750610f3e81610f39612934565b6125f7565b5b610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f759061420f565b60405180910390fd5b610f8983838361293c565b505050565b610f966129ee565b600b60009054906101000a900460ff1615610fb057600080fd5b80600a9080519060200190610fc6929190613606565b506001600b60006101000a81548160ff02191690831515021790555050565b60008151905060145481610ff99190614030565b34101561103b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611032906140d6565b60405180910390fd5b6001600381111561104f5761104e613dce565b5b601560009054906101000a900460ff16600381111561107157611070613dce565b5b14806110b057506002600381111561108c5761108b613dce565b5b601560009054906101000a900460ff1660038111156110ae576110ad613dce565b5b145b6110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690614142565b60405180910390fd5b60005b818110156112d257600083828151811061110f5761110e61429b565b5b60200260200101519050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004016111749190613ce1565b60206040518083038186803b15801561118c57600080fd5b505afa1580156111a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c491906142df565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112289061427b565b60405180910390fd5b6012600082815260200190815260200160002060009054906101000a900460ff1615611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990614358565b60405180910390fd5b60016012600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505080806112ca90614378565b9150506110f2565b5034600f60008282546112e59190613742565b925050819055506112f633826127c3565b5050565b60008054905090565b61130e838383612a6c565b505050565b61131b6129ee565b61132481612e78565b50565b60126020528060005260406000206000915054906101000a900460ff1681565b600061135283611c2b565b8210611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a9061440d565b60405180910390fd5b600061139d6112fa565b905060008060005b838110156114895760006005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461141d578092505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561147557868414156114665781955050505050506114c5565b838061147190614378565b9450505b50808061148190614378565b9150506113a5565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90614479565b60405180910390fd5b92915050565b60165481565b6114d9612e92565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612710600f5461152b9190613711565b6115359190614030565b90506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826115849190614499565b905081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060003373ffffffffffffffffffffffffffffffffffffffff16826040516115f0906144fe565b60006040518083038185875af1925050503d806000811461162d576040519150601f19603f3d011682016040523d82523d6000602084013e611632565b606091505b5050905080611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d9061455f565b60405180910390fd5b505050565b6116836129ee565b6000600381111561169757611696613dce565b5b601560009054906101000a900460ff1660038111156116b9576116b8613dce565b5b146116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f090614142565b60405180910390fd5b8060168190555050565b61171e838383604051806020016040528060008152506123b4565b505050565b61172b612e92565b60005b600d80549050811015611937578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600d838154811061176b5761176a61429b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e6000600d86815481106117ae576117ad61429b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127108673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161185091906139bc565b60206040518083038186803b15801561186857600080fd5b505afa15801561187c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a09190614594565b6118aa9190613711565b6118b49190614030565b6040518363ffffffff1660e01b81526004016118d19291906145c1565b602060405180830381600087803b1580156118eb57600080fd5b505af11580156118ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192391906145ff565b50808061192f90614378565b91505061172e565b5050565b60006119456112fa565b8210611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614678565b60405180910390fd5b819050919050565b6119966129ee565b61199f81612f16565b50565b600d81815481106119b257600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080548210611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d906146e4565b60405180910390fd5b60008290505b60008110611abe5760006005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611aaa578092505050611afa565b508080611ab690614704565b915050611a2c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af19061427b565b60405180910390fd5b919050565b600a8054611b0c90614191565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3890614191565b8015611b855780601f10611b5a57610100808354040283529160200191611b85565b820191906000526020600020905b815481529060010190602001808311611b6857829003601f168201915b505050505081565b60135481565b60145481565b606060038054611ba890614191565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd490614191565b8015611c215780601f10611bf657610100808354040283529160200191611c21565b820191906000526020600020905b815481529060010190602001808311611c0457829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c939061477a565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ceb6129ee565b611cf56000612f30565b565b611cff6129ee565b8060199080519060200190611d15929190613606565b5050565b606060048054611d2890614191565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5490614191565b8015611da15780601f10611d7657610100808354040283529160200191611da1565b820191906000526020600020905b815481529060010190602001808311611d8457829003601f168201915b5050505050905090565b611db36129ee565b60006003811115611dc757611dc6613dce565b5b816003811115611dda57611dd9613dce565b5b14158015611e1b5750600380811115611df657611df5613dce565b5b601560009054906101000a900460ff166003811115611e1857611e17613dce565b5b14155b611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190614142565b60405180910390fd5b80601560006101000a81548160ff02191690836003811115611e7f57611e7e613dce565b5b021790555050565b611e8f6129ee565b60006003811115611ea357611ea2613dce565b5b601560009054906101000a900460ff166003811115611ec557611ec4613dce565b5b14611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc90614142565b60405180910390fd5b8060148190555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f416129ee565b8060189080519060200190611f57929190613606565b5050565b606060028054611f6a90614191565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9690614191565b8015611fe35780601f10611fb857610100808354040283529160200191611fe3565b820191906000526020600020905b815481529060010190602001808311611fc657829003601f168201915b5050505050905090565b611ff56129ee565b6000600381111561200957612008613dce565b5b601560009054906101000a900460ff16600381111561202b5761202a613dce565b5b1461206b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206290614142565b60405180910390fd5b8060178190555050565b601560009054906101000a900460ff1681565b612090612934565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f59061420f565b60405180910390fd5b806008600061210b612934565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121b8612934565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121fd919061384c565b60405180910390a35050565b6122116129ee565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161226791906139bc565b60206040518083038186803b15801561227f57600080fd5b505afa158015612293573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b79190614594565b6040518363ffffffff1660e01b81526004016122d49291906145c1565b602060405180830381600087803b1580156122ee57600080fd5b505af1158015612302573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061232691906145ff565b5050565b6123326129ee565b6000600381111561234657612345613dce565b5b601560009054906101000a900460ff16600381111561236857612367613dce565b5b146123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f90614142565b60405180910390fd5b6123b181612ff6565b50565b6123bf848484612a6c565b6123cb84848484613010565b61240a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612401906147e6565b60405180910390fd5b50505050565b6124186129ee565b6000600381111561242c5761242b613dce565b5b601560009054906101000a900460ff16600381111561244e5761244d613dce565b5b1461248e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248590614142565b60405180910390fd5b612497816131a7565b50565b60606124a582612927565b6124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db906147e6565b60405180910390fd5b6000600380546124f390614191565b9050111561252d576003612506836131c1565b60405160200161251792919061496e565b60405160208183030381529060405290506125bb565b6004805461253a90614191565b80601f016020809104026020016040519081016040528092919081815260200182805461256690614191565b80156125b35780601f10612588576101008083540402835291602001916125b3565b820191906000526020600020905b81548152906001019060200180831161259657829003601f168201915b505050505090505b919050565b60606125ca610d5e565b60186019601a6040516020016125e39493929190614c7a565b604051602081830303815290604052905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6126b96129ee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272090614da3565b60405180910390fd5b61273281612f30565b50565b61273d6129ee565b6000600381111561275157612750613dce565b5b601560009054906101000a900460ff16600381111561277357612772613dce565b5b146127b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127aa90614142565b60405180910390fd5b8060138190555050565b60175481565b60175481600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128119190613742565b111580156128335750601654816128266112fa565b6128309190613742565b11155b612872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286990614e0f565b60405180910390fd5b61287c8282613322565b6016546128876112fa565b14156128b9576003601560006101000a81548160ff021916908360038111156128b3576128b2613dce565b5b02179055505b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6129f6612934565b73ffffffffffffffffffffffffffffffffffffffff16612a14611f0f565b73ffffffffffffffffffffffffffffffffffffffff1614612a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6190614e7b565b60405180910390fd5b565b6000612a77826119e1565b905060008173ffffffffffffffffffffffffffffffffffffffff16612a9a612934565b73ffffffffffffffffffffffffffffffffffffffff161480612af65750612abf612934565b73ffffffffffffffffffffffffffffffffffffffff16612ade84610df0565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b0e5750612b0d82612b08612934565b6125f7565b5b905080612b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b479061420f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb59061427b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c259061477a565b60405180910390fd5b612c3a6000848461293c565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c8a9190614499565b925050819055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ce19190613742565b92505081905550836005600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600184612d499190613742565b9050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e1557612dbc81612927565b15612e1457826005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b8060049080519060200190612e8e929190613606565b5050565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0b90614ee7565b60405180910390fd5b565b8060039080519060200190612f2c929190613606565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806002908051906020019061300c929190613606565b5050565b60006130318473ffffffffffffffffffffffffffffffffffffffff16613340565b1561319a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261305a612934565b8786866040518563ffffffff1660e01b815260040161307c9493929190614f5c565b602060405180830381600087803b15801561309657600080fd5b505af19250505080156130c757506040513d601f19601f820116820180604052508101906130c49190614fbd565b60015b61314a573d80600081146130f7576040519150601f19603f3d011682016040523d82523d6000602084013e6130fc565b606091505b50600081511415613142576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613139906147e6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061319f565b600190505b949350505050565b80600190805190602001906131bd929190613606565b5050565b60606000821415613209576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061331d565b600082905060005b6000821461323b57808061322490614378565b915050600a826132349190613711565b9150613211565b60008167ffffffffffffffff81111561325757613256613a4d565b5b6040519080825280601f01601f1916602001820160405280156132895781602001600182028036833780820191505090505b5090505b60008514613316576001826132a29190614499565b9150600a856132b19190614fea565b60306132bd9190613742565b60f81b8183815181106132d3576132d261429b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561330f9190613711565b945061328d565b8093505050505b919050565b61333c828260405180602001604052806000815250613363565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b61336d83836133cc565b61338860008460016000546133829190614499565b84613010565b6133c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133be906147e6565b60405180910390fd5b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613442576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134399061477a565b60405180910390fd5b61344b81612927565b1561348b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134829061420f565b60405180910390fd5b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d69190613742565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550826005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600081905060005b838110156135f857818573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a481806135e290614378565b92505080806135f090614378565b915050613573565b508060008190555050505050565b82805461361290614191565b90600052602060002090601f016020900481019282613634576000855561367b565b82601f1061364d57805160ff191683800117855561367b565b8280016001018555821561367b579182015b8281111561367a57825182559160200191906001019061365f565b5b509050613688919061368c565b5090565b5b808211156136a557600081600090555060010161368d565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061371c826136a9565b9150613727836136a9565b925082613737576137366136b3565b5b828204905092915050565b600061374d826136a9565b9150613758836136a9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561378d5761378c6136e2565b5b828201905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137e1816137ac565b81146137ec57600080fd5b50565b6000813590506137fe816137d8565b92915050565b60006020828403121561381a576138196137a2565b5b6000613828848285016137ef565b91505092915050565b60008115159050919050565b61384681613831565b82525050565b6000602082019050613861600083018461383d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138a1578082015181840152602081019050613886565b838111156138b0576000848401525b50505050565b6000601f19601f8301169050919050565b60006138d282613867565b6138dc8185613872565b93506138ec818560208601613883565b6138f5816138b6565b840191505092915050565b6000602082019050818103600083015261391a81846138c7565b905092915050565b61392b816136a9565b811461393657600080fd5b50565b60008135905061394881613922565b92915050565b600060208284031215613964576139636137a2565b5b600061397284828501613939565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139a68261397b565b9050919050565b6139b68161399b565b82525050565b60006020820190506139d160008301846139ad565b92915050565b6139e08161399b565b81146139eb57600080fd5b50565b6000813590506139fd816139d7565b92915050565b60008060408385031215613a1a57613a196137a2565b5b6000613a28858286016139ee565b9250506020613a3985828601613939565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a85826138b6565b810181811067ffffffffffffffff82111715613aa457613aa3613a4d565b5b80604052505050565b6000613ab7613798565b9050613ac38282613a7c565b919050565b600067ffffffffffffffff821115613ae357613ae2613a4d565b5b613aec826138b6565b9050602081019050919050565b82818337600083830152505050565b6000613b1b613b1684613ac8565b613aad565b905082815260208101848484011115613b3757613b36613a48565b5b613b42848285613af9565b509392505050565b600082601f830112613b5f57613b5e613a43565b5b8135613b6f848260208601613b08565b91505092915050565b600060208284031215613b8e57613b8d6137a2565b5b600082013567ffffffffffffffff811115613bac57613bab6137a7565b5b613bb884828501613b4a565b91505092915050565b600067ffffffffffffffff821115613bdc57613bdb613a4d565b5b602082029050602081019050919050565b600080fd5b6000613c05613c0084613bc1565b613aad565b90508083825260208201905060208402830185811115613c2857613c27613bed565b5b835b81811015613c515780613c3d8882613939565b845260208401935050602081019050613c2a565b5050509392505050565b600082601f830112613c7057613c6f613a43565b5b8135613c80848260208601613bf2565b91505092915050565b600060208284031215613c9f57613c9e6137a2565b5b600082013567ffffffffffffffff811115613cbd57613cbc6137a7565b5b613cc984828501613c5b565b91505092915050565b613cdb816136a9565b82525050565b6000602082019050613cf66000830184613cd2565b92915050565b600080600060608486031215613d1557613d146137a2565b5b6000613d23868287016139ee565b9350506020613d34868287016139ee565b9250506040613d4586828701613939565b9150509250925092565b600060208284031215613d6557613d646137a2565b5b6000613d73848285016139ee565b91505092915050565b60048110613d8957600080fd5b50565b600081359050613d9b81613d7c565b92915050565b600060208284031215613db757613db66137a2565b5b6000613dc584828501613d8c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60048110613e0e57613e0d613dce565b5b50565b6000819050613e1f82613dfd565b919050565b6000613e2f82613e11565b9050919050565b613e3f81613e24565b82525050565b6000602082019050613e5a6000830184613e36565b92915050565b613e6981613831565b8114613e7457600080fd5b50565b600081359050613e8681613e60565b92915050565b60008060408385031215613ea357613ea26137a2565b5b6000613eb1858286016139ee565b9250506020613ec285828601613e77565b9150509250929050565b600067ffffffffffffffff821115613ee757613ee6613a4d565b5b613ef0826138b6565b9050602081019050919050565b6000613f10613f0b84613ecc565b613aad565b905082815260208101848484011115613f2c57613f2b613a48565b5b613f37848285613af9565b509392505050565b600082601f830112613f5457613f53613a43565b5b8135613f64848260208601613efd565b91505092915050565b60008060008060808587031215613f8757613f866137a2565b5b6000613f95878288016139ee565b9450506020613fa6878288016139ee565b9350506040613fb787828801613939565b925050606085013567ffffffffffffffff811115613fd857613fd76137a7565b5b613fe487828801613f3f565b91505092959194509250565b60008060408385031215614007576140066137a2565b5b6000614015858286016139ee565b9250506020614026858286016139ee565b9150509250929050565b600061403b826136a9565b9150614046836136a9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561407f5761407e6136e2565b5b828202905092915050565b7f6d2e760000000000000000000000000000000000000000000000000000000000600082015250565b60006140c0600383613872565b91506140cb8261408a565b602082019050919050565b600060208201905081810360008301526140ef816140b3565b9050919050565b7f6d73000000000000000000000000000000000000000000000000000000000000600082015250565b600061412c600283613872565b9150614137826140f6565b602082019050919050565b6000602082019050818103600083015261415b8161411f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141a957607f821691505b602082108114156141bd576141bc614162565b5b50919050565b7f6100000000000000000000000000000000000000000000000000000000000000600082015250565b60006141f9600183613872565b9150614204826141c3565b602082019050919050565b60006020820190508181036000830152614228816141ec565b9050919050565b7f6f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614265600183613872565b91506142708261422f565b602082019050919050565b6000602082019050818103600083015261429481614258565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506142d9816139d7565b92915050565b6000602082840312156142f5576142f46137a2565b5b6000614303848285016142ca565b91505092915050565b7f6300000000000000000000000000000000000000000000000000000000000000600082015250565b6000614342600183613872565b915061434d8261430c565b602082019050919050565b6000602082019050818103600083015261437181614335565b9050919050565b6000614383826136a9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143b6576143b56136e2565b5b600182019050919050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b60006143f7600183613872565b9150614402826143c1565b602082019050919050565b60006020820190508181036000830152614426816143ea565b9050919050565b7f7500000000000000000000000000000000000000000000000000000000000000600082015250565b6000614463600183613872565b915061446e8261442d565b602082019050919050565b6000602082019050818103600083015261449281614456565b9050919050565b60006144a4826136a9565b91506144af836136a9565b9250828210156144c2576144c16136e2565b5b828203905092915050565b600081905092915050565b50565b60006144e86000836144cd565b91506144f3826144d8565b600082019050919050565b6000614509826144db565b9150819050919050565b7f5061796d656e74206661696c6564210000000000000000000000000000000000600082015250565b6000614549600f83613872565b915061455482614513565b602082019050919050565b600060208201905081810360008301526145788161453c565b9050919050565b60008151905061458e81613922565b92915050565b6000602082840312156145aa576145a96137a2565b5b60006145b88482850161457f565b91505092915050565b60006040820190506145d660008301856139ad565b6145e36020830184613cd2565b9392505050565b6000815190506145f981613e60565b92915050565b600060208284031215614615576146146137a2565b5b6000614623848285016145ea565b91505092915050565b7f6700000000000000000000000000000000000000000000000000000000000000600082015250565b6000614662600183613872565b915061466d8261462c565b602082019050919050565b6000602082019050818103600083015261469181614655565b9050919050565b7f7400000000000000000000000000000000000000000000000000000000000000600082015250565b60006146ce600183613872565b91506146d982614698565b602082019050919050565b600060208201905081810360008301526146fd816146c1565b9050919050565b600061470f826136a9565b91506000821415614723576147226136e2565b5b600182039050919050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b6000614764600183613872565b915061476f8261472e565b602082019050919050565b6000602082019050818103600083015261479381614757565b9050919050565b7f7a00000000000000000000000000000000000000000000000000000000000000600082015250565b60006147d0600183613872565b91506147db8261479a565b602082019050919050565b600060208201905081810360008301526147ff816147c3565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461483381614191565b61483d8186614806565b9450600182166000811461485857600181146148695761489c565b60ff1983168652818601935061489c565b61487285614811565b60005b8381101561489457815481890152600182019150602081019050614875565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006148db600183614806565b91506148e6826148a5565b600182019050919050565b60006148fc82613867565b6149068185614806565b9350614916818560208601613883565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614958600583614806565b915061496382614922565b600582019050919050565b600061497a8285614826565b9150614985826148ce565b915061499182846148f1565b915061499c8261494b565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c7b226e616d60008201527f65223a2200000000000000000000000000000000000000000000000000000000602082015250565b6000614a04602483614806565b9150614a0f826149a8565b602482019050919050565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b6000614a50600283614806565b9150614a5b82614a1a565b600282019050919050565b7f226465736372697074696f6e223a220000000000000000000000000000000000600082015250565b6000614a9c600f83614806565b9150614aa782614a66565b600f82019050919050565b7f22696d616765223a220000000000000000000000000000000000000000000000600082015250565b6000614ae8600983614806565b9150614af382614ab2565b600982019050919050565b7f2265787465726e616c5f6c696e6b223a22000000000000000000000000000000600082015250565b6000614b34601183614806565b9150614b3f82614afe565b601182019050919050565b7f2273656c6c65725f6665655f62617369735f706f696e7473223a3530302c226660008201527f65655f726563697069656e74223a220000000000000000000000000000000000602082015250565b6000614ba6602f83614806565b9150614bb182614b4a565b602f82019050919050565b7f307830314132393133343732336566373261393638383338636231444634393860008201527f4243346639313062456300000000000000000000000000000000000000000000602082015250565b6000614c18602a83614806565b9150614c2382614bbc565b602a82019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b6000614c64600283614806565b9150614c6f82614c2e565b600282019050919050565b6000614c85826149f7565b9150614c9182876148f1565b9150614c9c82614a43565b9150614ca782614a8f565b9150614cb38286614826565b9150614cbe82614a43565b9150614cc982614adb565b9150614cd58285614826565b9150614ce082614a43565b9150614ceb82614b27565b9150614cf78284614826565b9150614d0282614a43565b9150614d0d82614b99565b9150614d1882614c0b565b9150614d2382614c57565b915081905095945050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d8d602683613872565b9150614d9882614d31565b604082019050919050565b60006020820190508181036000830152614dbc81614d80565b9050919050565b7f6d6d70772f6d7073000000000000000000000000000000000000000000000000600082015250565b6000614df9600883613872565b9150614e0482614dc3565b602082019050919050565b60006020820190508181036000830152614e2881614dec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614e65602083613872565b9150614e7082614e2f565b602082019050919050565b60006020820190508181036000830152614e9481614e58565b9050919050565b7f6e6f742061207061796565000000000000000000000000000000000000000000600082015250565b6000614ed1600b83613872565b9150614edc82614e9b565b602082019050919050565b60006020820190508181036000830152614f0081614ec4565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614f2e82614f07565b614f388185614f12565b9350614f48818560208601613883565b614f51816138b6565b840191505092915050565b6000608082019050614f7160008301876139ad565b614f7e60208301866139ad565b614f8b6040830185613cd2565b8181036060830152614f9d8184614f23565b905095945050505050565b600081519050614fb7816137d8565b92915050565b600060208284031215614fd357614fd26137a2565b5b6000614fe184828501614fa8565b91505092915050565b6000614ff5826136a9565b9150615000836136a9565b9250826150105761500f6136b3565b5b82820690509291505056fea26469706673582212201a0ee71929bcf6e14a604a0d01e8d22fa87f333b3a8f945ab13e106d19de45a764736f6c6343000809003341206d756c74692d666f726d61742070686f746f20636f6c6c656374696f6e206f66203130302b20696d61676573207370616e6e696e67203130207965617273206f66207374726565742c206c616e64736361706520616e6420706f7274726169742070686f746f6772617068792c20617661696c61626c6520746f206d696e742d7669612d454e53202d206120636f6d70616e696f6e20636f6c6c656374696f6e20746f2027466f6c6b732047656e657369732768747470733a2f2f73747265657470686f746f6772617068792e6574682e6c696d6f68747470733a2f2f6261666b726569666f356a676c333663796461796b35376b7475756f32637335696534666663366273783633737a653637356f73376f74766c7a342e697066732e6e667473746f726167652e6c696e6b00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000920000000000000000000000000000000000000000000000000000000000000005000000000000000000000000fb53a466c4148ffe1e778c8528e1c845986f46b2000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000b4f7468657220466f6c6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064f464f4c4b530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a29134723ef72a968838cb1df498bc4f910bec00000000000000000000000066f3794178997a12779527b36a2f042e001625af00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000007d0
Deployed Bytecode
0x6080604052600436106102975760003560e01c806370a082311161015a578063b2af127c116100c1578063e985e9c51161007a578063e985e9c514610a27578063efd0cbf914610a64578063f2b3767114610a80578063f2fde38b14610aab578063f4a0a52814610ad4578063f516a2e614610afd576102cd565b8063b2af127c1461091b578063b84c824614610944578063b88d4fde1461096d578063c47f002714610996578063c87b56dd146109bf578063e8a3d485146109fc576102cd565b80638da5cb5b116101135780638da5cb5b1461081f57806390c3f38f1461084a57806395d89b4114610873578063963c35461461089e5780639da3f8fd146108c7578063a22cb465146108f2576102cd565b806370a0823114610725578063715018a61461076257806371adb5e61461077957806379b6ed36146107a25780637cac2602146107cd57806385284573146107f6576102cd565b80633ccfd60b116101fe57806363037b0c116101b757806363037b0c146105ff5780636352211e1461063c5780636373a6b1146106795780636817c76c146106a457806368855b64146106cf5780636c0360eb146106fa576102cd565b80633ccfd60b1461050757806340cbed4f1461051e57806342842e0e1461054757806349df728c146105705780634f6ccce71461059957806355f804b3146105d6576102cd565b806318160ddd1161025057806318160ddd146103e557806323b872dd146104105780632a85db55146104395780632dbb4bbf146104625780632f745c591461049f578063386b7691146104dc576102cd565b806301ffc9a7146102d257806306fdde031461030f578063081812fc1461033a578063095ea7b31461037757806310969523146103a057806310c6cfda146103c9576102cd565b366102cd576102b2601354346102ad9190613711565b610b28565b34600f60008282546102c49190613742565b92505081905550005b600080fd5b3480156102de57600080fd5b506102f960048036038101906102f49190613804565b610c14565b604051610306919061384c565b60405180910390f35b34801561031b57600080fd5b50610324610d5e565b6040516103319190613900565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c919061394e565b610df0565b60405161036e91906139bc565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613a03565b610e75565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613b78565b610f8e565b005b6103e360048036038101906103de9190613c89565b610fe5565b005b3480156103f157600080fd5b506103fa6112fa565b6040516104079190613ce1565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613cfc565b611303565b005b34801561044557600080fd5b50610460600480360381019061045b9190613b78565b611313565b005b34801561046e57600080fd5b506104896004803603810190610484919061394e565b611327565b604051610496919061384c565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613a03565b611347565b6040516104d39190613ce1565b60405180910390f35b3480156104e857600080fd5b506104f16114cb565b6040516104fe9190613ce1565b60405180910390f35b34801561051357600080fd5b5061051c6114d1565b005b34801561052a57600080fd5b506105456004803603810190610540919061394e565b61167b565b005b34801561055357600080fd5b5061056e60048036038101906105699190613cfc565b611703565b005b34801561057c57600080fd5b5061059760048036038101906105929190613d4f565b611723565b005b3480156105a557600080fd5b506105c060048036038101906105bb919061394e565b61193b565b6040516105cd9190613ce1565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f89190613b78565b61198e565b005b34801561060b57600080fd5b506106266004803603810190610621919061394e565b6119a2565b60405161063391906139bc565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e919061394e565b6119e1565b60405161067091906139bc565b60405180910390f35b34801561068557600080fd5b5061068e611aff565b60405161069b9190613900565b60405180910390f35b3480156106b057600080fd5b506106b9611b8d565b6040516106c69190613ce1565b60405180910390f35b3480156106db57600080fd5b506106e4611b93565b6040516106f19190613ce1565b60405180910390f35b34801561070657600080fd5b5061070f611b99565b60405161071c9190613900565b60405180910390f35b34801561073157600080fd5b5061074c60048036038101906107479190613d4f565b611c2b565b6040516107599190613ce1565b60405180910390f35b34801561076e57600080fd5b50610777611ce3565b005b34801561078557600080fd5b506107a0600480360381019061079b9190613b78565b611cf7565b005b3480156107ae57600080fd5b506107b7611d19565b6040516107c49190613900565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190613da1565b611dab565b005b34801561080257600080fd5b5061081d6004803603810190610818919061394e565b611e87565b005b34801561082b57600080fd5b50610834611f0f565b60405161084191906139bc565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190613b78565b611f39565b005b34801561087f57600080fd5b50610888611f5b565b6040516108959190613900565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c0919061394e565b611fed565b005b3480156108d357600080fd5b506108dc612075565b6040516108e99190613e45565b60405180910390f35b3480156108fe57600080fd5b5061091960048036038101906109149190613e8c565b612088565b005b34801561092757600080fd5b50610942600480360381019061093d9190613d4f565b612209565b005b34801561095057600080fd5b5061096b60048036038101906109669190613b78565b61232a565b005b34801561097957600080fd5b50610994600480360381019061098f9190613f6d565b6123b4565b005b3480156109a257600080fd5b506109bd60048036038101906109b89190613b78565b612410565b005b3480156109cb57600080fd5b506109e660048036038101906109e1919061394e565b61249a565b6040516109f39190613900565b60405180910390f35b348015610a0857600080fd5b50610a116125c0565b604051610a1e9190613900565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190613ff0565b6125f7565b604051610a5b919061384c565b60405180910390f35b610a7e6004803603810190610a79919061394e565b610b28565b005b348015610a8c57600080fd5b50610a9561268b565b604051610aa291906139bc565b60405180910390f35b348015610ab757600080fd5b50610ad26004803603810190610acd9190613d4f565b6126b1565b005b348015610ae057600080fd5b50610afb6004803603810190610af6919061394e565b612735565b005b348015610b0957600080fd5b50610b126127bd565b604051610b1f9190613ce1565b60405180910390f35b60135481610b369190614030565b341015610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f906140d6565b60405180910390fd5b60026003811115610b8c57610b8b613dce565b5b601560009054906101000a900460ff166003811115610bae57610bad613dce565b5b14610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590614142565b60405180910390fd5b34600f6000828254610c009190613742565b92505081905550610c1133826127c3565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cdf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d4757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d575750610d56826128bd565b5b9050919050565b606060018054610d6d90614191565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9990614191565b8015610de65780601f10610dbb57610100808354040283529160200191610de6565b820191906000526020600020905b815481529060010190602001808311610dc957829003601f168201915b5050505050905090565b6000610dfb82612927565b610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e319061420f565b60405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e80826119e1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee89061427b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f10612934565b73ffffffffffffffffffffffffffffffffffffffff161480610f3f5750610f3e81610f39612934565b6125f7565b5b610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f759061420f565b60405180910390fd5b610f8983838361293c565b505050565b610f966129ee565b600b60009054906101000a900460ff1615610fb057600080fd5b80600a9080519060200190610fc6929190613606565b506001600b60006101000a81548160ff02191690831515021790555050565b60008151905060145481610ff99190614030565b34101561103b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611032906140d6565b60405180910390fd5b6001600381111561104f5761104e613dce565b5b601560009054906101000a900460ff16600381111561107157611070613dce565b5b14806110b057506002600381111561108c5761108b613dce565b5b601560009054906101000a900460ff1660038111156110ae576110ad613dce565b5b145b6110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690614142565b60405180910390fd5b60005b818110156112d257600083828151811061110f5761110e61429b565b5b60200260200101519050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004016111749190613ce1565b60206040518083038186803b15801561118c57600080fd5b505afa1580156111a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c491906142df565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112289061427b565b60405180910390fd5b6012600082815260200190815260200160002060009054906101000a900460ff1615611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990614358565b60405180910390fd5b60016012600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505080806112ca90614378565b9150506110f2565b5034600f60008282546112e59190613742565b925050819055506112f633826127c3565b5050565b60008054905090565b61130e838383612a6c565b505050565b61131b6129ee565b61132481612e78565b50565b60126020528060005260406000206000915054906101000a900460ff1681565b600061135283611c2b565b8210611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a9061440d565b60405180910390fd5b600061139d6112fa565b905060008060005b838110156114895760006005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461141d578092505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561147557868414156114665781955050505050506114c5565b838061147190614378565b9450505b50808061148190614378565b9150506113a5565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90614479565b60405180910390fd5b92915050565b60165481565b6114d9612e92565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612710600f5461152b9190613711565b6115359190614030565b90506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826115849190614499565b905081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060003373ffffffffffffffffffffffffffffffffffffffff16826040516115f0906144fe565b60006040518083038185875af1925050503d806000811461162d576040519150601f19603f3d011682016040523d82523d6000602084013e611632565b606091505b5050905080611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d9061455f565b60405180910390fd5b505050565b6116836129ee565b6000600381111561169757611696613dce565b5b601560009054906101000a900460ff1660038111156116b9576116b8613dce565b5b146116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f090614142565b60405180910390fd5b8060168190555050565b61171e838383604051806020016040528060008152506123b4565b505050565b61172b612e92565b60005b600d80549050811015611937578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600d838154811061176b5761176a61429b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e6000600d86815481106117ae576117ad61429b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127108673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161185091906139bc565b60206040518083038186803b15801561186857600080fd5b505afa15801561187c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a09190614594565b6118aa9190613711565b6118b49190614030565b6040518363ffffffff1660e01b81526004016118d19291906145c1565b602060405180830381600087803b1580156118eb57600080fd5b505af11580156118ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192391906145ff565b50808061192f90614378565b91505061172e565b5050565b60006119456112fa565b8210611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614678565b60405180910390fd5b819050919050565b6119966129ee565b61199f81612f16565b50565b600d81815481106119b257600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080548210611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d906146e4565b60405180910390fd5b60008290505b60008110611abe5760006005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611aaa578092505050611afa565b508080611ab690614704565b915050611a2c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af19061427b565b60405180910390fd5b919050565b600a8054611b0c90614191565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3890614191565b8015611b855780601f10611b5a57610100808354040283529160200191611b85565b820191906000526020600020905b815481529060010190602001808311611b6857829003601f168201915b505050505081565b60135481565b60145481565b606060038054611ba890614191565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd490614191565b8015611c215780601f10611bf657610100808354040283529160200191611c21565b820191906000526020600020905b815481529060010190602001808311611c0457829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c939061477a565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ceb6129ee565b611cf56000612f30565b565b611cff6129ee565b8060199080519060200190611d15929190613606565b5050565b606060048054611d2890614191565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5490614191565b8015611da15780601f10611d7657610100808354040283529160200191611da1565b820191906000526020600020905b815481529060010190602001808311611d8457829003601f168201915b5050505050905090565b611db36129ee565b60006003811115611dc757611dc6613dce565b5b816003811115611dda57611dd9613dce565b5b14158015611e1b5750600380811115611df657611df5613dce565b5b601560009054906101000a900460ff166003811115611e1857611e17613dce565b5b14155b611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190614142565b60405180910390fd5b80601560006101000a81548160ff02191690836003811115611e7f57611e7e613dce565b5b021790555050565b611e8f6129ee565b60006003811115611ea357611ea2613dce565b5b601560009054906101000a900460ff166003811115611ec557611ec4613dce565b5b14611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc90614142565b60405180910390fd5b8060148190555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f416129ee565b8060189080519060200190611f57929190613606565b5050565b606060028054611f6a90614191565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9690614191565b8015611fe35780601f10611fb857610100808354040283529160200191611fe3565b820191906000526020600020905b815481529060010190602001808311611fc657829003601f168201915b5050505050905090565b611ff56129ee565b6000600381111561200957612008613dce565b5b601560009054906101000a900460ff16600381111561202b5761202a613dce565b5b1461206b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206290614142565b60405180910390fd5b8060178190555050565b601560009054906101000a900460ff1681565b612090612934565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f59061420f565b60405180910390fd5b806008600061210b612934565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121b8612934565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121fd919061384c565b60405180910390a35050565b6122116129ee565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161226791906139bc565b60206040518083038186803b15801561227f57600080fd5b505afa158015612293573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b79190614594565b6040518363ffffffff1660e01b81526004016122d49291906145c1565b602060405180830381600087803b1580156122ee57600080fd5b505af1158015612302573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061232691906145ff565b5050565b6123326129ee565b6000600381111561234657612345613dce565b5b601560009054906101000a900460ff16600381111561236857612367613dce565b5b146123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f90614142565b60405180910390fd5b6123b181612ff6565b50565b6123bf848484612a6c565b6123cb84848484613010565b61240a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612401906147e6565b60405180910390fd5b50505050565b6124186129ee565b6000600381111561242c5761242b613dce565b5b601560009054906101000a900460ff16600381111561244e5761244d613dce565b5b1461248e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248590614142565b60405180910390fd5b612497816131a7565b50565b60606124a582612927565b6124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db906147e6565b60405180910390fd5b6000600380546124f390614191565b9050111561252d576003612506836131c1565b60405160200161251792919061496e565b60405160208183030381529060405290506125bb565b6004805461253a90614191565b80601f016020809104026020016040519081016040528092919081815260200182805461256690614191565b80156125b35780601f10612588576101008083540402835291602001916125b3565b820191906000526020600020905b81548152906001019060200180831161259657829003601f168201915b505050505090505b919050565b60606125ca610d5e565b60186019601a6040516020016125e39493929190614c7a565b604051602081830303815290604052905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6126b96129ee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272090614da3565b60405180910390fd5b61273281612f30565b50565b61273d6129ee565b6000600381111561275157612750613dce565b5b601560009054906101000a900460ff16600381111561277357612772613dce565b5b146127b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127aa90614142565b60405180910390fd5b8060138190555050565b60175481565b60175481600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128119190613742565b111580156128335750601654816128266112fa565b6128309190613742565b11155b612872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286990614e0f565b60405180910390fd5b61287c8282613322565b6016546128876112fa565b14156128b9576003601560006101000a81548160ff021916908360038111156128b3576128b2613dce565b5b02179055505b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6129f6612934565b73ffffffffffffffffffffffffffffffffffffffff16612a14611f0f565b73ffffffffffffffffffffffffffffffffffffffff1614612a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6190614e7b565b60405180910390fd5b565b6000612a77826119e1565b905060008173ffffffffffffffffffffffffffffffffffffffff16612a9a612934565b73ffffffffffffffffffffffffffffffffffffffff161480612af65750612abf612934565b73ffffffffffffffffffffffffffffffffffffffff16612ade84610df0565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b0e5750612b0d82612b08612934565b6125f7565b5b905080612b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b479061420f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb59061427b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c259061477a565b60405180910390fd5b612c3a6000848461293c565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c8a9190614499565b925050819055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ce19190613742565b92505081905550836005600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600184612d499190613742565b9050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e1557612dbc81612927565b15612e1457826005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b8060049080519060200190612e8e929190613606565b5050565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0b90614ee7565b60405180910390fd5b565b8060039080519060200190612f2c929190613606565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806002908051906020019061300c929190613606565b5050565b60006130318473ffffffffffffffffffffffffffffffffffffffff16613340565b1561319a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261305a612934565b8786866040518563ffffffff1660e01b815260040161307c9493929190614f5c565b602060405180830381600087803b15801561309657600080fd5b505af19250505080156130c757506040513d601f19601f820116820180604052508101906130c49190614fbd565b60015b61314a573d80600081146130f7576040519150601f19603f3d011682016040523d82523d6000602084013e6130fc565b606091505b50600081511415613142576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613139906147e6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061319f565b600190505b949350505050565b80600190805190602001906131bd929190613606565b5050565b60606000821415613209576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061331d565b600082905060005b6000821461323b57808061322490614378565b915050600a826132349190613711565b9150613211565b60008167ffffffffffffffff81111561325757613256613a4d565b5b6040519080825280601f01601f1916602001820160405280156132895781602001600182028036833780820191505090505b5090505b60008514613316576001826132a29190614499565b9150600a856132b19190614fea565b60306132bd9190613742565b60f81b8183815181106132d3576132d261429b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561330f9190613711565b945061328d565b8093505050505b919050565b61333c828260405180602001604052806000815250613363565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b61336d83836133cc565b61338860008460016000546133829190614499565b84613010565b6133c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133be906147e6565b60405180910390fd5b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613442576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134399061477a565b60405180910390fd5b61344b81612927565b1561348b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134829061420f565b60405180910390fd5b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d69190613742565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550826005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600081905060005b838110156135f857818573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a481806135e290614378565b92505080806135f090614378565b915050613573565b508060008190555050505050565b82805461361290614191565b90600052602060002090601f016020900481019282613634576000855561367b565b82601f1061364d57805160ff191683800117855561367b565b8280016001018555821561367b579182015b8281111561367a57825182559160200191906001019061365f565b5b509050613688919061368c565b5090565b5b808211156136a557600081600090555060010161368d565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061371c826136a9565b9150613727836136a9565b925082613737576137366136b3565b5b828204905092915050565b600061374d826136a9565b9150613758836136a9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561378d5761378c6136e2565b5b828201905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137e1816137ac565b81146137ec57600080fd5b50565b6000813590506137fe816137d8565b92915050565b60006020828403121561381a576138196137a2565b5b6000613828848285016137ef565b91505092915050565b60008115159050919050565b61384681613831565b82525050565b6000602082019050613861600083018461383d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138a1578082015181840152602081019050613886565b838111156138b0576000848401525b50505050565b6000601f19601f8301169050919050565b60006138d282613867565b6138dc8185613872565b93506138ec818560208601613883565b6138f5816138b6565b840191505092915050565b6000602082019050818103600083015261391a81846138c7565b905092915050565b61392b816136a9565b811461393657600080fd5b50565b60008135905061394881613922565b92915050565b600060208284031215613964576139636137a2565b5b600061397284828501613939565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139a68261397b565b9050919050565b6139b68161399b565b82525050565b60006020820190506139d160008301846139ad565b92915050565b6139e08161399b565b81146139eb57600080fd5b50565b6000813590506139fd816139d7565b92915050565b60008060408385031215613a1a57613a196137a2565b5b6000613a28858286016139ee565b9250506020613a3985828601613939565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a85826138b6565b810181811067ffffffffffffffff82111715613aa457613aa3613a4d565b5b80604052505050565b6000613ab7613798565b9050613ac38282613a7c565b919050565b600067ffffffffffffffff821115613ae357613ae2613a4d565b5b613aec826138b6565b9050602081019050919050565b82818337600083830152505050565b6000613b1b613b1684613ac8565b613aad565b905082815260208101848484011115613b3757613b36613a48565b5b613b42848285613af9565b509392505050565b600082601f830112613b5f57613b5e613a43565b5b8135613b6f848260208601613b08565b91505092915050565b600060208284031215613b8e57613b8d6137a2565b5b600082013567ffffffffffffffff811115613bac57613bab6137a7565b5b613bb884828501613b4a565b91505092915050565b600067ffffffffffffffff821115613bdc57613bdb613a4d565b5b602082029050602081019050919050565b600080fd5b6000613c05613c0084613bc1565b613aad565b90508083825260208201905060208402830185811115613c2857613c27613bed565b5b835b81811015613c515780613c3d8882613939565b845260208401935050602081019050613c2a565b5050509392505050565b600082601f830112613c7057613c6f613a43565b5b8135613c80848260208601613bf2565b91505092915050565b600060208284031215613c9f57613c9e6137a2565b5b600082013567ffffffffffffffff811115613cbd57613cbc6137a7565b5b613cc984828501613c5b565b91505092915050565b613cdb816136a9565b82525050565b6000602082019050613cf66000830184613cd2565b92915050565b600080600060608486031215613d1557613d146137a2565b5b6000613d23868287016139ee565b9350506020613d34868287016139ee565b9250506040613d4586828701613939565b9150509250925092565b600060208284031215613d6557613d646137a2565b5b6000613d73848285016139ee565b91505092915050565b60048110613d8957600080fd5b50565b600081359050613d9b81613d7c565b92915050565b600060208284031215613db757613db66137a2565b5b6000613dc584828501613d8c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60048110613e0e57613e0d613dce565b5b50565b6000819050613e1f82613dfd565b919050565b6000613e2f82613e11565b9050919050565b613e3f81613e24565b82525050565b6000602082019050613e5a6000830184613e36565b92915050565b613e6981613831565b8114613e7457600080fd5b50565b600081359050613e8681613e60565b92915050565b60008060408385031215613ea357613ea26137a2565b5b6000613eb1858286016139ee565b9250506020613ec285828601613e77565b9150509250929050565b600067ffffffffffffffff821115613ee757613ee6613a4d565b5b613ef0826138b6565b9050602081019050919050565b6000613f10613f0b84613ecc565b613aad565b905082815260208101848484011115613f2c57613f2b613a48565b5b613f37848285613af9565b509392505050565b600082601f830112613f5457613f53613a43565b5b8135613f64848260208601613efd565b91505092915050565b60008060008060808587031215613f8757613f866137a2565b5b6000613f95878288016139ee565b9450506020613fa6878288016139ee565b9350506040613fb787828801613939565b925050606085013567ffffffffffffffff811115613fd857613fd76137a7565b5b613fe487828801613f3f565b91505092959194509250565b60008060408385031215614007576140066137a2565b5b6000614015858286016139ee565b9250506020614026858286016139ee565b9150509250929050565b600061403b826136a9565b9150614046836136a9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561407f5761407e6136e2565b5b828202905092915050565b7f6d2e760000000000000000000000000000000000000000000000000000000000600082015250565b60006140c0600383613872565b91506140cb8261408a565b602082019050919050565b600060208201905081810360008301526140ef816140b3565b9050919050565b7f6d73000000000000000000000000000000000000000000000000000000000000600082015250565b600061412c600283613872565b9150614137826140f6565b602082019050919050565b6000602082019050818103600083015261415b8161411f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141a957607f821691505b602082108114156141bd576141bc614162565b5b50919050565b7f6100000000000000000000000000000000000000000000000000000000000000600082015250565b60006141f9600183613872565b9150614204826141c3565b602082019050919050565b60006020820190508181036000830152614228816141ec565b9050919050565b7f6f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614265600183613872565b91506142708261422f565b602082019050919050565b6000602082019050818103600083015261429481614258565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506142d9816139d7565b92915050565b6000602082840312156142f5576142f46137a2565b5b6000614303848285016142ca565b91505092915050565b7f6300000000000000000000000000000000000000000000000000000000000000600082015250565b6000614342600183613872565b915061434d8261430c565b602082019050919050565b6000602082019050818103600083015261437181614335565b9050919050565b6000614383826136a9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143b6576143b56136e2565b5b600182019050919050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b60006143f7600183613872565b9150614402826143c1565b602082019050919050565b60006020820190508181036000830152614426816143ea565b9050919050565b7f7500000000000000000000000000000000000000000000000000000000000000600082015250565b6000614463600183613872565b915061446e8261442d565b602082019050919050565b6000602082019050818103600083015261449281614456565b9050919050565b60006144a4826136a9565b91506144af836136a9565b9250828210156144c2576144c16136e2565b5b828203905092915050565b600081905092915050565b50565b60006144e86000836144cd565b91506144f3826144d8565b600082019050919050565b6000614509826144db565b9150819050919050565b7f5061796d656e74206661696c6564210000000000000000000000000000000000600082015250565b6000614549600f83613872565b915061455482614513565b602082019050919050565b600060208201905081810360008301526145788161453c565b9050919050565b60008151905061458e81613922565b92915050565b6000602082840312156145aa576145a96137a2565b5b60006145b88482850161457f565b91505092915050565b60006040820190506145d660008301856139ad565b6145e36020830184613cd2565b9392505050565b6000815190506145f981613e60565b92915050565b600060208284031215614615576146146137a2565b5b6000614623848285016145ea565b91505092915050565b7f6700000000000000000000000000000000000000000000000000000000000000600082015250565b6000614662600183613872565b915061466d8261462c565b602082019050919050565b6000602082019050818103600083015261469181614655565b9050919050565b7f7400000000000000000000000000000000000000000000000000000000000000600082015250565b60006146ce600183613872565b91506146d982614698565b602082019050919050565b600060208201905081810360008301526146fd816146c1565b9050919050565b600061470f826136a9565b91506000821415614723576147226136e2565b5b600182039050919050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b6000614764600183613872565b915061476f8261472e565b602082019050919050565b6000602082019050818103600083015261479381614757565b9050919050565b7f7a00000000000000000000000000000000000000000000000000000000000000600082015250565b60006147d0600183613872565b91506147db8261479a565b602082019050919050565b600060208201905081810360008301526147ff816147c3565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461483381614191565b61483d8186614806565b9450600182166000811461485857600181146148695761489c565b60ff1983168652818601935061489c565b61487285614811565b60005b8381101561489457815481890152600182019150602081019050614875565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006148db600183614806565b91506148e6826148a5565b600182019050919050565b60006148fc82613867565b6149068185614806565b9350614916818560208601613883565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614958600583614806565b915061496382614922565b600582019050919050565b600061497a8285614826565b9150614985826148ce565b915061499182846148f1565b915061499c8261494b565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c7b226e616d60008201527f65223a2200000000000000000000000000000000000000000000000000000000602082015250565b6000614a04602483614806565b9150614a0f826149a8565b602482019050919050565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b6000614a50600283614806565b9150614a5b82614a1a565b600282019050919050565b7f226465736372697074696f6e223a220000000000000000000000000000000000600082015250565b6000614a9c600f83614806565b9150614aa782614a66565b600f82019050919050565b7f22696d616765223a220000000000000000000000000000000000000000000000600082015250565b6000614ae8600983614806565b9150614af382614ab2565b600982019050919050565b7f2265787465726e616c5f6c696e6b223a22000000000000000000000000000000600082015250565b6000614b34601183614806565b9150614b3f82614afe565b601182019050919050565b7f2273656c6c65725f6665655f62617369735f706f696e7473223a3530302c226660008201527f65655f726563697069656e74223a220000000000000000000000000000000000602082015250565b6000614ba6602f83614806565b9150614bb182614b4a565b602f82019050919050565b7f307830314132393133343732336566373261393638383338636231444634393860008201527f4243346639313062456300000000000000000000000000000000000000000000602082015250565b6000614c18602a83614806565b9150614c2382614bbc565b602a82019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b6000614c64600283614806565b9150614c6f82614c2e565b600282019050919050565b6000614c85826149f7565b9150614c9182876148f1565b9150614c9c82614a43565b9150614ca782614a8f565b9150614cb38286614826565b9150614cbe82614a43565b9150614cc982614adb565b9150614cd58285614826565b9150614ce082614a43565b9150614ceb82614b27565b9150614cf78284614826565b9150614d0282614a43565b9150614d0d82614b99565b9150614d1882614c0b565b9150614d2382614c57565b915081905095945050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d8d602683613872565b9150614d9882614d31565b604082019050919050565b60006020820190508181036000830152614dbc81614d80565b9050919050565b7f6d6d70772f6d7073000000000000000000000000000000000000000000000000600082015250565b6000614df9600883613872565b9150614e0482614dc3565b602082019050919050565b60006020820190508181036000830152614e2881614dec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614e65602083613872565b9150614e7082614e2f565b602082019050919050565b60006020820190508181036000830152614e9481614e58565b9050919050565b7f6e6f742061207061796565000000000000000000000000000000000000000000600082015250565b6000614ed1600b83613872565b9150614edc82614e9b565b602082019050919050565b60006020820190508181036000830152614f0081614ec4565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614f2e82614f07565b614f388185614f12565b9350614f48818560208601613883565b614f51816138b6565b840191505092915050565b6000608082019050614f7160008301876139ad565b614f7e60208301866139ad565b614f8b6040830185613cd2565b8181036060830152614f9d8184614f23565b905095945050505050565b600081519050614fb7816137d8565b92915050565b600060208284031215614fd357614fd26137a2565b5b6000614fe184828501614fa8565b91505092915050565b6000614ff5826136a9565b9150615000836136a9565b9250826150105761500f6136b3565b5b82820690509291505056fea26469706673582212201a0ee71929bcf6e14a604a0d01e8d22fa87f333b3a8f945ab13e106d19de45a764736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000920000000000000000000000000000000000000000000000000000000000000005000000000000000000000000fb53a466c4148ffe1e778c8528e1c845986f46b2000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000b4f7468657220466f6c6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064f464f4c4b530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000001a29134723ef72a968838cb1df498bc4f910bec00000000000000000000000066f3794178997a12779527b36a2f042e001625af00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000007d0
-----Decoded View---------------
Arg [0] : name_ (string): Other Folks
Arg [1] : symbol_ (string): OFOLKS
Arg [2] : maxPossibleSupply_ (uint256): 146
Arg [3] : maxMintsPerWallet_ (uint256): 5
Arg [4] : allowListContractAddress_ (address): 0xFb53A466C4148Ffe1E778C8528E1C845986F46B2
Arg [5] : payees_ (address[]): 0x01A29134723ef72a968838cb1DF498BC4f910bEc,0x66F3794178997a12779527B36a2F042e001625aF
Arg [6] : basisPoints_ (uint256[]): 8000,2000
-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000092
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 000000000000000000000000fb53a466c4148ffe1e778c8528e1c845986f46b2
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [8] : 4f7468657220466f6c6b73000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [10] : 4f464f4c4b530000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 00000000000000000000000001a29134723ef72a968838cb1df498bc4f910bec
Arg [13] : 00000000000000000000000066f3794178997a12779527b36a2f042e001625af
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [15] : 0000000000000000000000000000000000000000000000000000000000001f40
Arg [16] : 00000000000000000000000000000000000000000000000000000000000007d0
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,250.41 | 0.042 | $136.52 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.