Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 24 from a total of 24 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw Value | 16729805 | 667 days ago | IN | 0 ETH | 0.00165775 | ||||
Claim | 16728481 | 667 days ago | IN | 0 ETH | 0.00250685 | ||||
Bid | 16728424 | 667 days ago | IN | 0 ETH | 0.00541106 | ||||
Bid | 16728416 | 667 days ago | IN | 0 ETH | 0.00490213 | ||||
Bid | 16728374 | 667 days ago | IN | 0 ETH | 0.0064951 | ||||
Bid | 16728369 | 667 days ago | IN | 3 ETH | 0.01031172 | ||||
Bid | 16728360 | 667 days ago | IN | 0 ETH | 0.00728512 | ||||
Bid | 16728357 | 667 days ago | IN | 0 ETH | 0.00911838 | ||||
Bid | 16728349 | 667 days ago | IN | 0 ETH | 0.00775709 | ||||
Bid | 16728342 | 667 days ago | IN | 0 ETH | 0.00911508 | ||||
Bid | 16728339 | 667 days ago | IN | 0 ETH | 0.00674788 | ||||
Bid | 16728157 | 668 days ago | IN | 0 ETH | 0.0075959 | ||||
Bid | 16717243 | 669 days ago | IN | 0 ETH | 0.00309139 | ||||
Set Ticket USD V... | 16716160 | 669 days ago | IN | 0 ETH | 0.00061426 | ||||
Bid | 16713969 | 670 days ago | IN | 7.5 ETH | 0.00288382 | ||||
Bid | 16708058 | 670 days ago | IN | 7.2 ETH | 0.00208086 | ||||
Bid | 16708035 | 670 days ago | IN | 7 ETH | 0.00216309 | ||||
Bid | 16708004 | 670 days ago | IN | 5.2 ETH | 0.00187821 | ||||
Bid | 16707987 | 670 days ago | IN | 5 ETH | 0.00206812 | ||||
Bid | 16707973 | 670 days ago | IN | 3.1 ETH | 0.0021318 | ||||
Bid | 16707934 | 670 days ago | IN | 3 ETH | 0.00273314 | ||||
Bid | 16707928 | 670 days ago | IN | 0 ETH | 0.00410697 | ||||
Start Auction | 16707919 | 670 days ago | IN | 0 ETH | 0.00153603 | ||||
Commit NFT | 16707707 | 670 days ago | IN | 0 ETH | 0.00214094 |
Loading...
Loading
Contract Name:
TicketAuction
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC165.sol"; import "@openzeppelin/contracts/interfaces/IERC721.sol"; import "@openzeppelin/contracts/interfaces/IERC721Receiver.sol"; import "@openzeppelin/contracts/interfaces/IERC1155.sol"; import "@openzeppelin/contracts/interfaces/IERC1155Receiver.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract TicketAuction is Ownable, IERC721Receiver, IERC1155Receiver, ReentrancyGuard { enum Phase { INIT, NFT_RECEIVED, AUCTION, CLAIM, DONE } Phase public currentPhase = Phase.INIT; struct BidValue { uint256 ethAmountInWei; uint256 ticketAmount; } struct Bid { address bidder; BidValue value; } Bid public currentWinningBid; uint256 public amountBids; event BidEvent(address bidder, uint256 ethAmountInWei, uint256 ticketAmount, uint256 usdValue, uint256 timestamp); event AuctionExtended(uint oldEndTime, uint newEndTime); IERC1155 public ticketContract; uint256 public ticketTokenId; IERC721 public nftContract; uint256 public nftTokenId; AggregatorV3Interface public ethUSDPriceFeed; uint256 public ticketUSDValue; address auctionBeneficiary; uint public endTime; uint public extensionTime; /** @dev ticketUSDValue should be in USD * 10^18 (wei conversion), e.g. 22 USD = 22000000000000000000 */ constructor(address ethUSDFeedAddress, uint256 _ticketUSDValue, address _ticketContract, uint256 _ticketTokenId, address _nftContract, uint256 _nftTokenId, address _auctionBeneficiary ) { ethUSDPriceFeed = AggregatorV3Interface(ethUSDFeedAddress); ticketUSDValue = _ticketUSDValue; IERC165 check1155 = IERC165(_ticketContract); require(check1155.supportsInterface(type(IERC1155).interfaceId), "Ticket Contract address must be ERC1155"); ticketContract = IERC1155(_ticketContract); ticketTokenId = _ticketTokenId; IERC165 check721 = IERC165(_nftContract); require(check721.supportsInterface(type(IERC721).interfaceId), "NFT Contract address must be ERC721"); nftContract = IERC721(_nftContract); nftTokenId = _nftTokenId; currentWinningBid = Bid(0x0000000000000000000000000000000000000000, BidValue(0, 0)); auctionBeneficiary = _auctionBeneficiary; } // Auction functions function bid(uint256 ticketAmount) external payable nonReentrant { require(msg.sender == tx.origin, "No contract bidding"); require(currentPhase == Phase.AUCTION, "Must be in auction phase"); require(block.timestamp < endTime, "Must be before auction has ended!"); require(msg.value > 0 || ticketAmount > 0, "Bid must be nonzero!"); uint256 newBidUSD = ethAndTicketsToUSD(msg.value, ticketAmount); require(newBidUSD > bidValueToUSD(currentWinningBid.value), "Must be a greater bid than the current bid!"); if (ticketAmount > 0) { ticketContract.safeTransferFrom(msg.sender, address(this), ticketTokenId, ticketAmount, "0x0"); } if (currentWinningBid.value.ticketAmount > 0) { ticketContract.safeTransferFrom(address(this), currentWinningBid.bidder, ticketTokenId, currentWinningBid.value.ticketAmount, "0x0"); } if (currentWinningBid.value.ethAmountInWei > 0) { payable(currentWinningBid.bidder).transfer(currentWinningBid.value.ethAmountInWei); } currentWinningBid = Bid(msg.sender, BidValue(msg.value, ticketAmount)); if (endTime - block.timestamp < extensionTime) { uint newEndTime = block.timestamp + extensionTime; emit AuctionExtended(endTime, newEndTime); endTime = newEndTime; } // Sanity checks require(ticketContract.balanceOf(address(this), ticketTokenId) == ticketAmount, "Ticket transfer failed"); require(address(this).balance == msg.value, "ETH transfer failed"); emit BidEvent(msg.sender, msg.value, ticketAmount, newBidUSD, block.timestamp); amountBids++; } function topupBid(uint256 ticketAmount) external payable nonReentrant { require(msg.sender == tx.origin, "No contract bidding"); require(currentPhase == Phase.AUCTION, "Must be in auction phase"); require(block.timestamp < endTime, "Must be before auction has ended!"); require(currentWinningBid.bidder == msg.sender, "Must be current winning bidder to topup bid"); require(msg.value > 0 || ticketAmount > 0, "Bid must be nonzero!"); uint256 newEthAmount = msg.value + currentWinningBid.value.ethAmountInWei; uint256 newTicketAmount = ticketAmount + currentWinningBid.value.ticketAmount; uint256 newBidUSD = ethAndTicketsToUSD(newEthAmount, newTicketAmount); if (ticketAmount > 0) { ticketContract.safeTransferFrom(msg.sender, address(this), ticketTokenId, ticketAmount, "0x0"); } currentWinningBid.value = BidValue(newEthAmount, newTicketAmount); if (endTime - block.timestamp < extensionTime) { uint newEndTime = block.timestamp + extensionTime; emit AuctionExtended(endTime, newEndTime); endTime = newEndTime; } // Sanity checks require(ticketContract.balanceOf(address(this), ticketTokenId) == newTicketAmount, "Ticket transfer failed"); require(address(this).balance == newEthAmount, "ETH transfer failed"); emit BidEvent(msg.sender, newEthAmount, newTicketAmount, newBidUSD, block.timestamp); amountBids++; } function claim() external { if (currentPhase == Phase.AUCTION && block.timestamp >= endTime) { currentPhase = Phase.CLAIM; } require(currentPhase == Phase.CLAIM, "Must be claim phase!"); require(msg.sender == currentWinningBid.bidder, "Must be the winner of the auction!"); nftContract.safeTransferFrom(address(this), msg.sender, nftTokenId); currentPhase = Phase.DONE; } // Owner Functions function commitNFT(address nftOwner) external onlyOwner { require(currentPhase == Phase.INIT); nftContract.safeTransferFrom(nftOwner, address(this), nftTokenId); } function startAuction(uint _endTime, uint _extensionTime) external onlyOwner { require(currentPhase == Phase.NFT_RECEIVED, "Must have sent the NFT to the contract!"); require(block.timestamp < _endTime, "End time must be in future"); endTime = _endTime; extensionTime = _extensionTime; currentPhase = Phase.AUCTION; } function withdrawValue() public onlyOwner { if (currentPhase == Phase.AUCTION && block.timestamp >= endTime) { currentPhase = Phase.CLAIM; } require(currentPhase == Phase.CLAIM || currentPhase == Phase.DONE, "Must withdraw in correct phase"); ticketContract.safeTransferFrom(address(this), auctionBeneficiary, ticketTokenId, ticketContract.balanceOf(address(this), ticketTokenId), "0x0"); payable(auctionBeneficiary).transfer(address(this).balance); } function ownerFinishClaim() external onlyOwner { if (currentPhase == Phase.AUCTION && block.timestamp >= endTime) { currentPhase = Phase.CLAIM; } require(currentPhase == Phase.CLAIM, "Must be claim phase!"); if (currentWinningBid.bidder == address(0)) { nftContract.safeTransferFrom(address(this), auctionBeneficiary, nftTokenId); } else { nftContract.safeTransferFrom(address(this), currentWinningBid.bidder, nftTokenId); } currentPhase = Phase.DONE; withdrawValue(); } function setExtensionTime(uint _extensionTime) external onlyOwner { extensionTime = _extensionTime; } // OnReceived function onERC721Received( address /* operator */, address /* from */, uint256 tokenId, bytes calldata /* data */ ) external returns (bytes4) { require(msg.sender == address(nftContract), "ERC721 Received must be from correct contract!"); require(tokenId == nftTokenId, "ERC721 Received must be correct token ID!"); require(currentPhase == Phase.INIT, "Phase must be INIT."); currentPhase = Phase.NFT_RECEIVED; return this.onERC721Received.selector; } function onERC1155Received( address operator, address /* from */, uint256 /* id */, uint256 /* value */, bytes calldata /* data */ ) external view returns (bytes4) { require(msg.sender == address(ticketContract), "ERC1155 Received must be from correct contract!"); require(operator == address(this), "Must be operated by this contract!"); require(currentPhase == Phase.AUCTION, "Must be in the auction phase!"); return this.onERC1155Received.selector; } function onERC1155BatchReceived( address /* operator */, address /* from */, uint256[] calldata /* ids */, uint256[] calldata /* values */, bytes calldata /* data */ ) external pure returns (bytes4) { revert("No batch receiving"); } // Views function getInfo(address user) public view returns ( Phase phase, Bid memory winningBid, uint256 tickets, bool hasApproved, uint256 auctionEndTime, bool hasAuctionEnded, uint256 topBidValue, uint256 ethUSDPrice, uint256 ticketUSDPrice, uint256 userBalance, uint256 blockHeight ) { phase = currentPhase; winningBid = currentWinningBid; if (user != address(0)) { tickets = ticketContract.balanceOf(user, ticketTokenId); hasApproved = ticketContract.isApprovedForAll(user, address(this)); userBalance = payable(user).balance; } else { tickets = 0; hasApproved = false; userBalance = 0; } auctionEndTime = endTime; hasAuctionEnded = block.timestamp >= endTime; topBidValue = bidValueToUSD(currentWinningBid.value); ethUSDPrice = getETHUSDPrice(); ticketUSDPrice = ticketUSDValue; blockHeight = block.number; } /** @dev returns in wei format (usd * 10^18) */ function getETHUSDPrice() public view returns (uint256) { (, int256 answer, , ,) = ethUSDPriceFeed.latestRoundData(); require(answer > 0, "ETH/USD Price invalid"); return uint256(answer) * 10**10; } /** @dev returns in wei format (usd * 10^18) */ function ethToUSD(uint256 amountInWei) public view returns (uint256) { return (amountInWei * getETHUSDPrice()) / 10**18; } function ethAndTicketsToUSD(uint256 ethAmountInWei, uint256 ticketAmount) public view returns (uint256) { return ethToUSD(ethAmountInWei) + (ticketAmount * ticketUSDValue); } /** @dev returns in wei format (usd * 10^18) */ function bidValueToUSD(BidValue memory bidValue) public view returns (uint256) { return ethToUSD(bidValue.ethAmountInWei) + (bidValue.ticketAmount * ticketUSDValue); } function getTopBid() public view returns (Bid memory topBid, uint256 value) { topBid = currentWinningBid; value = bidValueToUSD(currentWinningBid.value); } // Setters function setTicketUSDValue(uint256 _ticketUSDValue) external onlyOwner { ticketUSDValue = _ticketUSDValue; } // IERC165 function supportsInterface(bytes4 interfaceId) external pure returns (bool) { return interfaceId == type(IERC1155Receiver).interfaceId || interfaceId == type(IERC721Receiver).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface AggregatorV3Interface { function decimals() external view returns (uint8); function description() external view returns (string memory); function version() external view returns (uint256); function getRoundData(uint80 _roundId) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); }
// 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 v4.4.1 (interfaces/IERC1155.sol) pragma solidity ^0.8.0; import "../token/ERC1155/IERC1155.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../token/ERC1155/IERC1155Receiver.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol) pragma solidity ^0.8.0; import "../token/ERC721/IERC721.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Receiver.sol) pragma solidity ^0.8.0; import "../token/ERC721/IERC721Receiver.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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/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 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 }, "evmVersion": "london", "remappings": [], "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"ethUSDFeedAddress","type":"address"},{"internalType":"uint256","name":"_ticketUSDValue","type":"uint256"},{"internalType":"address","name":"_ticketContract","type":"address"},{"internalType":"uint256","name":"_ticketTokenId","type":"uint256"},{"internalType":"address","name":"_nftContract","type":"address"},{"internalType":"uint256","name":"_nftTokenId","type":"uint256"},{"internalType":"address","name":"_auctionBeneficiary","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldEndTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newEndTime","type":"uint256"}],"name":"AuctionExtended","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"bidder","type":"address"},{"indexed":false,"internalType":"uint256","name":"ethAmountInWei","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ticketAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"usdValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"BidEvent","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"},{"inputs":[],"name":"amountBids","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ticketAmount","type":"uint256"}],"name":"bid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"ethAmountInWei","type":"uint256"},{"internalType":"uint256","name":"ticketAmount","type":"uint256"}],"internalType":"struct TicketAuction.BidValue","name":"bidValue","type":"tuple"}],"name":"bidValueToUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftOwner","type":"address"}],"name":"commitNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentPhase","outputs":[{"internalType":"enum TicketAuction.Phase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentWinningBid","outputs":[{"internalType":"address","name":"bidder","type":"address"},{"components":[{"internalType":"uint256","name":"ethAmountInWei","type":"uint256"},{"internalType":"uint256","name":"ticketAmount","type":"uint256"}],"internalType":"struct TicketAuction.BidValue","name":"value","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethAmountInWei","type":"uint256"},{"internalType":"uint256","name":"ticketAmount","type":"uint256"}],"name":"ethAndTicketsToUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountInWei","type":"uint256"}],"name":"ethToUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethUSDPriceFeed","outputs":[{"internalType":"contract AggregatorV3Interface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extensionTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getETHUSDPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getInfo","outputs":[{"internalType":"enum TicketAuction.Phase","name":"phase","type":"uint8"},{"components":[{"internalType":"address","name":"bidder","type":"address"},{"components":[{"internalType":"uint256","name":"ethAmountInWei","type":"uint256"},{"internalType":"uint256","name":"ticketAmount","type":"uint256"}],"internalType":"struct TicketAuction.BidValue","name":"value","type":"tuple"}],"internalType":"struct TicketAuction.Bid","name":"winningBid","type":"tuple"},{"internalType":"uint256","name":"tickets","type":"uint256"},{"internalType":"bool","name":"hasApproved","type":"bool"},{"internalType":"uint256","name":"auctionEndTime","type":"uint256"},{"internalType":"bool","name":"hasAuctionEnded","type":"bool"},{"internalType":"uint256","name":"topBidValue","type":"uint256"},{"internalType":"uint256","name":"ethUSDPrice","type":"uint256"},{"internalType":"uint256","name":"ticketUSDPrice","type":"uint256"},{"internalType":"uint256","name":"userBalance","type":"uint256"},{"internalType":"uint256","name":"blockHeight","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTopBid","outputs":[{"components":[{"internalType":"address","name":"bidder","type":"address"},{"components":[{"internalType":"uint256","name":"ethAmountInWei","type":"uint256"},{"internalType":"uint256","name":"ticketAmount","type":"uint256"}],"internalType":"struct TicketAuction.BidValue","name":"value","type":"tuple"}],"internalType":"struct TicketAuction.Bid","name":"topBid","type":"tuple"},{"internalType":"uint256","name":"value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftContract","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerFinishClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_extensionTime","type":"uint256"}],"name":"setExtensionTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ticketUSDValue","type":"uint256"}],"name":"setTicketUSDValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_extensionTime","type":"uint256"}],"name":"startAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"ticketContract","outputs":[{"internalType":"contract IERC1155","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ticketTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ticketUSDValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ticketAmount","type":"uint256"}],"name":"topupBid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawValue","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600260006101000a81548160ff021916908360048111156200002d576200002c620004f9565b5b02179055503480156200003f57600080fd5b5060405162004ce738038062004ce78339818101604052810190620000659190620005cd565b62000085620000796200042d60201b60201c565b6200043560201b60201c565b6001808190555086600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085600c8190555060008590508073ffffffffffffffffffffffffffffffffffffffff166301ffc9a77fd9b67a26000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401620001349190620006bd565b602060405180830381865afa15801562000152573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000178919062000717565b620001ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b190620007d0565b60405180910390fd5b85600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460088190555060008490508073ffffffffffffffffffffffffffffffffffffffff166301ffc9a77f80ac58cd000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401620002629190620006bd565b602060405180830381865afa15801562000280573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a6919062000717565b620002e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002df9062000868565b60405180910390fd5b84600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600a819055506040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016040518060400160405280600081526020016000815250815250600360008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001016000820151816000015560208201518160010155505090505082600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050505050506200088a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200055a826200052d565b9050919050565b6200056c816200054d565b81146200057857600080fd5b50565b6000815190506200058c8162000561565b92915050565b6000819050919050565b620005a78162000592565b8114620005b357600080fd5b50565b600081519050620005c7816200059c565b92915050565b600080600080600080600060e0888a031215620005ef57620005ee62000528565b5b6000620005ff8a828b016200057b565b9750506020620006128a828b01620005b6565b9650506040620006258a828b016200057b565b9550506060620006388a828b01620005b6565b94505060806200064b8a828b016200057b565b93505060a06200065e8a828b01620005b6565b92505060c0620006718a828b016200057b565b91505092959891949750929550565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620006b78162000680565b82525050565b6000602082019050620006d46000830184620006ac565b92915050565b60008115159050919050565b620006f181620006da565b8114620006fd57600080fd5b50565b6000815190506200071181620006e6565b92915050565b60006020828403121562000730576200072f62000528565b5b6000620007408482850162000700565b91505092915050565b600082825260208201905092915050565b7f5469636b657420436f6e74726163742061646472657373206d7573742062652060008201527f4552433131353500000000000000000000000000000000000000000000000000602082015250565b6000620007b860278362000749565b9150620007c5826200075a565b604082019050919050565b60006020820190508181036000830152620007eb81620007a9565b9050919050565b7f4e465420436f6e74726163742061646472657373206d7573742062652045524360008201527f3732310000000000000000000000000000000000000000000000000000000000602082015250565b60006200085060238362000749565b91506200085d82620007f2565b604082019050919050565b60006020820190508181036000830152620008838162000841565b9050919050565b61444d806200089a6000396000f3fe6080604052600436106101ee5760003560e01c806364df80371161010d578063bf4b1990116100a0578063eeed1b261161006f578063eeed1b26146106ae578063f23a6e61146106d9578063f2fde38b14610716578063f9c9334f1461073f578063ffdd5cf11461075b576101ee565b8063bf4b199014610601578063c8f4f7691461062c578063d56d229d14610657578063e14ae9e014610682576101ee565b80638da5cb5b116100dc5780638da5cb5b146105425780639dc567471461056d578063a9d520c714610598578063bc197c81146105c4576101ee565b806364df80371461049a57806367735076146104d7578063715018a6146105005780637e83057414610517576101ee565b80631f01ca2d11610185578063454a2ab311610154578063454a2ab3146104135780634e71d92d1461042f5780634fee13fc1461044657806358a86e1d1461046f576101ee565b80631f01ca2d1461037d5780633197cbb6146103a85780633dc3e2a8146103d3578063443e4588146103ea576101ee565b8063168c6f7a116101c1578063168c6f7a146102c1578063196e609d146102d85780631a5f1d5d146103155780631c610d7f14610352576101ee565b806301ffc9a7146101f3578063055ad42e1461023057806312e9d1651461025b578063150b7a0214610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612a9d565b6107a2565b6040516102279190612ae5565b60405180910390f35b34801561023c57600080fd5b50610245610874565b6040516102529190612b77565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612bf0565b610887565b005b34801561029057600080fd5b506102ab60048036038101906102a69190612cb8565b610965565b6040516102b89190612d4f565b60405180910390f35b3480156102cd57600080fd5b506102d6610aef565b005b3480156102e457600080fd5b506102ff60048036038101906102fa9190612d6a565b610de4565b60405161030c9190612da6565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612ea2565b610e13565b6040516103499190612da6565b60405180910390f35b34801561035e57600080fd5b50610367610e45565b6040516103749190612f2e565b60405180910390f35b34801561038957600080fd5b50610392610e6b565b60405161039f9190612da6565b60405180910390f35b3480156103b457600080fd5b506103bd610e71565b6040516103ca9190612da6565b60405180910390f35b3480156103df57600080fd5b506103e8610e77565b005b3480156103f657600080fd5b50610411600480360381019061040c9190612d6a565b611168565b005b61042d60048036038101906104289190612d6a565b61117a565b005b34801561043b57600080fd5b50610444611808565b005b34801561045257600080fd5b5061046d60048036038101906104689190612f49565b611a47565b005b34801561047b57600080fd5b50610484611b43565b6040516104919190612faa565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc9190612f49565b611b69565b6040516104ce9190612da6565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612d6a565b611b94565b005b34801561050c57600080fd5b50610515611ba6565b005b34801561052357600080fd5b5061052c611bba565b6040516105399190612da6565b60405180910390f35b34801561054e57600080fd5b50610557611bc0565b6040516105649190612fd4565b60405180910390f35b34801561057957600080fd5b50610582611be9565b60405161058f9190612da6565b60405180910390f35b3480156105a457600080fd5b506105ad611bef565b6040516105bb92919061302d565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e691906130ac565b611c3f565b6040516105f89190612d4f565b60405180910390f35b34801561060d57600080fd5b50610616611c7c565b6040516106239190612da6565b60405180910390f35b34801561063857600080fd5b50610641611d70565b60405161064e9190612da6565b60405180910390f35b34801561066357600080fd5b5061066c611d76565b60405161067991906131a9565b60405180910390f35b34801561068e57600080fd5b50610697611d9c565b6040516106a5929190613231565b60405180910390f35b3480156106ba57600080fd5b506106c3611e65565b6040516106d09190612da6565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb919061325a565b611e6b565b60405161070d9190612d4f565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190612bf0565b611ff5565b005b61075960048036038101906107549190612d6a565b612078565b005b34801561076757600080fd5b50610782600480360381019061077d9190612bf0565b61258b565b6040516107999b9a999897969594939291906132f4565b60405180910390f35b60007f4e2312e0000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086d57507f150b7a02000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600260009054906101000a900460ff1681565b61088f61283f565b600060048111156108a3576108a2612b00565b5b600260009054906101000a900460ff1660048111156108c5576108c4612b00565b5b146108cf57600080fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e8230600a546040518463ffffffff1660e01b8152600401610930939291906133a1565b600060405180830381600087803b15801561094a57600080fd5b505af115801561095e573d6000803e3d6000fd5b5050505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee9061345b565b60405180910390fd5b600a548414610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a32906134ed565b60405180910390fd5b60006004811115610a4f57610a4e612b00565b5b600260009054906101000a900460ff166004811115610a7157610a70612b00565b5b14610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890613559565b60405180910390fd5b6001600260006101000a81548160ff02191690836004811115610ad757610ad6612b00565b5b021790555063150b7a0260e01b905095945050505050565b610af761283f565b60026004811115610b0b57610b0a612b00565b5b600260009054906101000a900460ff166004811115610b2d57610b2c612b00565b5b148015610b3c5750600e544210155b15610b6d576003600260006101000a81548160ff02191690836004811115610b6757610b66612b00565b5b02179055505b60036004811115610b8157610b80612b00565b5b600260009054906101000a900460ff166004811115610ba357610ba2612b00565b5b14610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda906135c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610cf657600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e30600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a546040518463ffffffff1660e01b8152600401610cbf939291906133a1565b600060405180830381600087803b158015610cd957600080fd5b505af1158015610ced573d6000803e3d6000fd5b50505050610daf565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e30600360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a546040518463ffffffff1660e01b8152600401610d7c939291906133a1565b600060405180830381600087803b158015610d9657600080fd5b505af1158015610daa573d6000803e3d6000fd5b505050505b6004600260006101000a81548160ff02191690836004811115610dd557610dd4612b00565b5b0217905550610de2610e77565b565b6000670de0b6b3a7640000610df7611c7c565b83610e029190613614565b610e0c9190613685565b9050919050565b6000600c548260200151610e279190613614565b610e348360000151610de4565b610e3e91906136b6565b9050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b600e5481565b610e7f61283f565b60026004811115610e9357610e92612b00565b5b600260009054906101000a900460ff166004811115610eb557610eb4612b00565b5b148015610ec45750600e544210155b15610ef5576003600260006101000a81548160ff02191690836004811115610eef57610eee612b00565b5b02179055505b60036004811115610f0957610f08612b00565b5b600260009054906101000a900460ff166004811115610f2b57610f2a612b00565b5b1480610f695750600480811115610f4557610f44612b00565b5b600260009054906101000a900460ff166004811115610f6757610f66612b00565b5b145b610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90613736565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a30600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600854600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e306008546040518363ffffffff1660e01b815260040161106b929190613756565b602060405180830381865afa158015611088573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ac9190613794565b6040518563ffffffff1660e01b81526004016110cb949392919061381e565b600060405180830381600087803b1580156110e557600080fd5b505af11580156110f9573d6000803e3d6000fd5b50505050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611165573d6000803e3d6000fd5b50565b61117061283f565b80600f8190555050565b6111826128bd565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e7906138c2565b60405180910390fd5b6002600481111561120457611203612b00565b5b600260009054906101000a900460ff16600481111561122657611225612b00565b5b14611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d9061392e565b60405180910390fd5b600e5442106112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a1906139c0565b60405180910390fd5b60003411806112b95750600081115b6112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90613a2c565b60405180910390fd5b60006113043483611b69565b9050611332600360010160405180604001604052908160008201548152602001600182015481525050610e13565b8111611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a90613abe565b60405180910390fd5b600082111561141257600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a3330600854866040518563ffffffff1660e01b81526004016113df949392919061381e565b600060405180830381600087803b1580156113f957600080fd5b505af115801561140d573d6000803e3d6000fd5b505050505b600060036001016001015411156114e657600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a30600360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008546003600101600101546040518563ffffffff1660e01b81526004016114b3949392919061381e565b600060405180830381600087803b1580156114cd57600080fd5b505af11580156114e1573d6000803e3d6000fd5b505050505b6000600360010160000154111561156c57600360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6003600101600001549081150290604051600060405180830381858888f1935050505015801561156a573d6000803e3d6000fd5b505b60405180604001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001604051806040016040528034815260200185815250815250600360008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160008201518160000155602082015181600101555050905050600f5442600e546116279190613ade565b1015611683576000600f544261163d91906136b6565b90507f6e912a3a9105bdd2af817ba5adc14e6c127c1035b5b648faa29ca0d58ab8ff4e600e5482604051611672929190613b12565b60405180910390a180600e81905550505b81600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e306008546040518363ffffffff1660e01b81526004016116e2929190613756565b602060405180830381865afa1580156116ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117239190613794565b14611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90613b87565b60405180910390fd5b3447146117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c90613bf3565b60405180910390fd5b7ff79aa6e80e70b02485553bb68635235152c39167ca477d25addf1eeb36aa5f5333348484426040516117dc959493929190613c13565b60405180910390a1600660008154809291906117f790613c66565b91905055505061180561290c565b50565b6002600481111561181c5761181b612b00565b5b600260009054906101000a900460ff16600481111561183e5761183d612b00565b5b14801561184d5750600e544210155b1561187e576003600260006101000a81548160ff0219169083600481111561187857611877612b00565b5b02179055505b6003600481111561189257611891612b00565b5b600260009054906101000a900460ff1660048111156118b4576118b3612b00565b5b146118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb906135c5565b60405180910390fd5b600360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90613d20565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e3033600a546040518463ffffffff1660e01b81526004016119e8939291906133a1565b600060405180830381600087803b158015611a0257600080fd5b505af1158015611a16573d6000803e3d6000fd5b505050506004600260006101000a81548160ff02191690836004811115611a4057611a3f612b00565b5b0217905550565b611a4f61283f565b60016004811115611a6357611a62612b00565b5b600260009054906101000a900460ff166004811115611a8557611a84612b00565b5b14611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90613db2565b60405180910390fd5b814210611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90613e1e565b60405180910390fd5b81600e8190555080600f8190555060028060006101000a81548160ff02191690836004811115611b3a57611b39612b00565b5b02179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c5482611b799190613614565b611b8284610de4565b611b8c91906136b6565b905092915050565b611b9c61283f565b80600c8190555050565b611bae61283f565b611bb86000612915565b565b600a5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b60038060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010160405180604001604052908160008201548152602001600182015481525050905082565b60006040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7390613e8a565b60405180910390fd5b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611cec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d109190613f22565b50505091505060008113611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5090613fe9565b60405180910390fd5b6402540be40081611d6a9190613614565b91505090565b60065481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611da46129e1565b600060036040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160405180604001604052908160008201548152602001600182015481525050815250509150611e5f600360010160405180604001604052908160008201548152602001600182015481525050610e13565b90509091565b600f5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef49061407b565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f629061410d565b60405180910390fd5b60026004811115611f7f57611f7e612b00565b5b600260009054906101000a900460ff166004811115611fa157611fa0612b00565b5b14611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd890614179565b60405180910390fd5b63f23a6e6160e01b90509695505050505050565b611ffd61283f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361206c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120639061420b565b60405180910390fd5b61207581612915565b50565b6120806128bd565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e5906138c2565b60405180910390fd5b6002600481111561210257612101612b00565b5b600260009054906101000a900460ff16600481111561212457612123612b00565b5b14612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b9061392e565b60405180910390fd5b600e5442106121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f906139c0565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461223b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122329061429d565b60405180910390fd5b600034118061224a5750600081115b612289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228090613a2c565b60405180910390fd5b60006003600101600001543461229f91906136b6565b90506000600360010160010154836122b791906136b6565b905060006122c58383611b69565b9050600084111561236657600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a3330600854886040518563ffffffff1660e01b8152600401612333949392919061381e565b600060405180830381600087803b15801561234d57600080fd5b505af1158015612361573d6000803e3d6000fd5b505050505b60405180604001604052808481526020018381525060036001016000820151816000015560208201518160010155905050600f5442600e546123a89190613ade565b1015612404576000600f54426123be91906136b6565b90507f6e912a3a9105bdd2af817ba5adc14e6c127c1035b5b648faa29ca0d58ab8ff4e600e54826040516123f3929190613b12565b60405180910390a180600e81905550505b81600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e306008546040518363ffffffff1660e01b8152600401612463929190613756565b602060405180830381865afa158015612480573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124a49190613794565b146124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db90613b87565b60405180910390fd5b824714612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90613bf3565b60405180910390fd5b7ff79aa6e80e70b02485553bb68635235152c39167ca477d25addf1eeb36aa5f53338484844260405161255d959493929190613c13565b60405180910390a16006600081548092919061257890613c66565b919050555050505061258861290c565b50565b60006125956129e1565b6000806000806000806000806000600260009054906101000a900460ff169a5060036040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160405180604001604052908160008201548152602001600182015481525050815250509950600073ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff16146127d657600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e8d6008546040518363ffffffff1660e01b81526004016126d4929190613756565b602060405180830381865afa1580156126f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127159190613794565b9850600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e985e9c58d306040518363ffffffff1660e01b81526004016127749291906142bd565b602060405180830381865afa158015612791573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127b59190614312565b97508b73ffffffffffffffffffffffffffffffffffffffff163191506127e3565b6000985060009750600091505b600e549650600e54421015955061281c600360010160405180604001604052908160008201548152602001600182015481525050610e13565b9450612826611c7c565b9350600c54925043905091939597999b90929496989a50565b6128476129d9565b73ffffffffffffffffffffffffffffffffffffffff16612865611bc0565b73ffffffffffffffffffffffffffffffffffffffff16146128bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b29061438b565b60405180910390fd5b565b600260015403612902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f9906143f7565b60405180910390fd5b6002600181905550565b60018081905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001612a11612a17565b81525090565b604051806040016040528060008152602001600081525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a7a81612a45565b8114612a8557600080fd5b50565b600081359050612a9781612a71565b92915050565b600060208284031215612ab357612ab2612a3b565b5b6000612ac184828501612a88565b91505092915050565b60008115159050919050565b612adf81612aca565b82525050565b6000602082019050612afa6000830184612ad6565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110612b4057612b3f612b00565b5b50565b6000819050612b5182612b2f565b919050565b6000612b6182612b43565b9050919050565b612b7181612b56565b82525050565b6000602082019050612b8c6000830184612b68565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bbd82612b92565b9050919050565b612bcd81612bb2565b8114612bd857600080fd5b50565b600081359050612bea81612bc4565b92915050565b600060208284031215612c0657612c05612a3b565b5b6000612c1484828501612bdb565b91505092915050565b6000819050919050565b612c3081612c1d565b8114612c3b57600080fd5b50565b600081359050612c4d81612c27565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612c7857612c77612c53565b5b8235905067ffffffffffffffff811115612c9557612c94612c58565b5b602083019150836001820283011115612cb157612cb0612c5d565b5b9250929050565b600080600080600060808688031215612cd457612cd3612a3b565b5b6000612ce288828901612bdb565b9550506020612cf388828901612bdb565b9450506040612d0488828901612c3e565b935050606086013567ffffffffffffffff811115612d2557612d24612a40565b5b612d3188828901612c62565b92509250509295509295909350565b612d4981612a45565b82525050565b6000602082019050612d646000830184612d40565b92915050565b600060208284031215612d8057612d7f612a3b565b5b6000612d8e84828501612c3e565b91505092915050565b612da081612c1d565b82525050565b6000602082019050612dbb6000830184612d97565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e0f82612dc6565b810181811067ffffffffffffffff82111715612e2e57612e2d612dd7565b5b80604052505050565b6000612e41612a31565b9050612e4d8282612e06565b919050565b600060408284031215612e6857612e67612dc1565b5b612e726040612e37565b90506000612e8284828501612c3e565b6000830152506020612e9684828501612c3e565b60208301525092915050565b600060408284031215612eb857612eb7612a3b565b5b6000612ec684828501612e52565b91505092915050565b6000819050919050565b6000612ef4612eef612eea84612b92565b612ecf565b612b92565b9050919050565b6000612f0682612ed9565b9050919050565b6000612f1882612efb565b9050919050565b612f2881612f0d565b82525050565b6000602082019050612f436000830184612f1f565b92915050565b60008060408385031215612f6057612f5f612a3b565b5b6000612f6e85828601612c3e565b9250506020612f7f85828601612c3e565b9150509250929050565b6000612f9482612efb565b9050919050565b612fa481612f89565b82525050565b6000602082019050612fbf6000830184612f9b565b92915050565b612fce81612bb2565b82525050565b6000602082019050612fe96000830184612fc5565b92915050565b612ff881612c1d565b82525050565b6040820160008201516130146000850182612fef565b5060208201516130276020850182612fef565b50505050565b60006060820190506130426000830185612fc5565b61304f6020830184612ffe565b9392505050565b60008083601f84011261306c5761306b612c53565b5b8235905067ffffffffffffffff81111561308957613088612c58565b5b6020830191508360208202830111156130a5576130a4612c5d565b5b9250929050565b60008060008060008060008060a0898b0312156130cc576130cb612a3b565b5b60006130da8b828c01612bdb565b98505060206130eb8b828c01612bdb565b975050604089013567ffffffffffffffff81111561310c5761310b612a40565b5b6131188b828c01613056565b9650965050606089013567ffffffffffffffff81111561313b5761313a612a40565b5b6131478b828c01613056565b9450945050608089013567ffffffffffffffff81111561316a57613169612a40565b5b6131768b828c01612c62565b92509250509295985092959890939650565b600061319382612efb565b9050919050565b6131a381613188565b82525050565b60006020820190506131be600083018461319a565b92915050565b6131cd81612bb2565b82525050565b6040820160008201516131e96000850182612fef565b5060208201516131fc6020850182612fef565b50505050565b60608201600082015161321860008501826131c4565b50602082015161322b60208501826131d3565b50505050565b60006080820190506132466000830185613202565b6132536060830184612d97565b9392505050565b60008060008060008060a0878903121561327757613276612a3b565b5b600061328589828a01612bdb565b965050602061329689828a01612bdb565b95505060406132a789828a01612c3e565b94505060606132b889828a01612c3e565b935050608087013567ffffffffffffffff8111156132d9576132d8612a40565b5b6132e589828a01612c62565b92509250509295509295509295565b60006101a08201905061330a600083018e612b68565b613317602083018d613202565b613324608083018c612d97565b61333160a083018b612ad6565b61333e60c083018a612d97565b61334b60e0830189612ad6565b613359610100830188612d97565b613367610120830187612d97565b613375610140830186612d97565b613383610160830185612d97565b613391610180830184612d97565b9c9b505050505050505050505050565b60006060820190506133b66000830186612fc5565b6133c36020830185612fc5565b6133d06040830184612d97565b949350505050565b600082825260208201905092915050565b7f455243373231205265636569766564206d7573742062652066726f6d20636f7260008201527f7265637420636f6e747261637421000000000000000000000000000000000000602082015250565b6000613445602e836133d8565b9150613450826133e9565b604082019050919050565b6000602082019050818103600083015261347481613438565b9050919050565b7f455243373231205265636569766564206d75737420626520636f72726563742060008201527f746f6b656e204944210000000000000000000000000000000000000000000000602082015250565b60006134d76029836133d8565b91506134e28261347b565b604082019050919050565b60006020820190508181036000830152613506816134ca565b9050919050565b7f5068617365206d75737420626520494e49542e00000000000000000000000000600082015250565b60006135436013836133d8565b915061354e8261350d565b602082019050919050565b6000602082019050818103600083015261357281613536565b9050919050565b7f4d75737420626520636c61696d20706861736521000000000000000000000000600082015250565b60006135af6014836133d8565b91506135ba82613579565b602082019050919050565b600060208201905081810360008301526135de816135a2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061361f82612c1d565b915061362a83612c1d565b925082820261363881612c1d565b9150828204841483151761364f5761364e6135e5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061369082612c1d565b915061369b83612c1d565b9250826136ab576136aa613656565b5b828204905092915050565b60006136c182612c1d565b91506136cc83612c1d565b92508282019050808211156136e4576136e36135e5565b5b92915050565b7f4d75737420776974686472617720696e20636f72726563742070686173650000600082015250565b6000613720601e836133d8565b915061372b826136ea565b602082019050919050565b6000602082019050818103600083015261374f81613713565b9050919050565b600060408201905061376b6000830185612fc5565b6137786020830184612d97565b9392505050565b60008151905061378e81612c27565b92915050565b6000602082840312156137aa576137a9612a3b565b5b60006137b88482850161377f565b91505092915050565b600082825260208201905092915050565b7f3078300000000000000000000000000000000000000000000000000000000000600082015250565b60006138086003836137c1565b9150613813826137d2565b602082019050919050565b600060a0820190506138336000830187612fc5565b6138406020830186612fc5565b61384d6040830185612d97565b61385a6060830184612d97565b818103608083015261386b816137fb565b905095945050505050565b7f4e6f20636f6e74726163742062696464696e6700000000000000000000000000600082015250565b60006138ac6013836133d8565b91506138b782613876565b602082019050919050565b600060208201905081810360008301526138db8161389f565b9050919050565b7f4d75737420626520696e2061756374696f6e2070686173650000000000000000600082015250565b60006139186018836133d8565b9150613923826138e2565b602082019050919050565b600060208201905081810360008301526139478161390b565b9050919050565b7f4d757374206265206265666f72652061756374696f6e2068617320656e64656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b60006139aa6021836133d8565b91506139b58261394e565b604082019050919050565b600060208201905081810360008301526139d98161399d565b9050919050565b7f426964206d757374206265206e6f6e7a65726f21000000000000000000000000600082015250565b6000613a166014836133d8565b9150613a21826139e0565b602082019050919050565b60006020820190508181036000830152613a4581613a09565b9050919050565b7f4d7573742062652061206772656174657220626964207468616e20746865206360008201527f757272656e742062696421000000000000000000000000000000000000000000602082015250565b6000613aa8602b836133d8565b9150613ab382613a4c565b604082019050919050565b60006020820190508181036000830152613ad781613a9b565b9050919050565b6000613ae982612c1d565b9150613af483612c1d565b9250828203905081811115613b0c57613b0b6135e5565b5b92915050565b6000604082019050613b276000830185612d97565b613b346020830184612d97565b9392505050565b7f5469636b6574207472616e73666572206661696c656400000000000000000000600082015250565b6000613b716016836133d8565b9150613b7c82613b3b565b602082019050919050565b60006020820190508181036000830152613ba081613b64565b9050919050565b7f455448207472616e73666572206661696c656400000000000000000000000000600082015250565b6000613bdd6013836133d8565b9150613be882613ba7565b602082019050919050565b60006020820190508181036000830152613c0c81613bd0565b9050919050565b600060a082019050613c286000830188612fc5565b613c356020830187612d97565b613c426040830186612d97565b613c4f6060830185612d97565b613c5c6080830184612d97565b9695505050505050565b6000613c7182612c1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ca357613ca26135e5565b5b600182019050919050565b7f4d757374206265207468652077696e6e6572206f66207468652061756374696f60008201527f6e21000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d0a6022836133d8565b9150613d1582613cae565b604082019050919050565b60006020820190508181036000830152613d3981613cfd565b9050919050565b7f4d75737420686176652073656e7420746865204e465420746f2074686520636f60008201527f6e74726163742100000000000000000000000000000000000000000000000000602082015250565b6000613d9c6027836133d8565b9150613da782613d40565b604082019050919050565b60006020820190508181036000830152613dcb81613d8f565b9050919050565b7f456e642074696d65206d75737420626520696e20667574757265000000000000600082015250565b6000613e08601a836133d8565b9150613e1382613dd2565b602082019050919050565b60006020820190508181036000830152613e3781613dfb565b9050919050565b7f4e6f20626174636820726563656976696e670000000000000000000000000000600082015250565b6000613e746012836133d8565b9150613e7f82613e3e565b602082019050919050565b60006020820190508181036000830152613ea381613e67565b9050919050565b600069ffffffffffffffffffff82169050919050565b613ec981613eaa565b8114613ed457600080fd5b50565b600081519050613ee681613ec0565b92915050565b6000819050919050565b613eff81613eec565b8114613f0a57600080fd5b50565b600081519050613f1c81613ef6565b92915050565b600080600080600060a08688031215613f3e57613f3d612a3b565b5b6000613f4c88828901613ed7565b9550506020613f5d88828901613f0d565b9450506040613f6e8882890161377f565b9350506060613f7f8882890161377f565b9250506080613f9088828901613ed7565b9150509295509295909350565b7f4554482f55534420507269636520696e76616c69640000000000000000000000600082015250565b6000613fd36015836133d8565b9150613fde82613f9d565b602082019050919050565b6000602082019050818103600083015261400281613fc6565b9050919050565b7f45524331313535205265636569766564206d7573742062652066726f6d20636f60008201527f727265637420636f6e7472616374210000000000000000000000000000000000602082015250565b6000614065602f836133d8565b915061407082614009565b604082019050919050565b6000602082019050818103600083015261409481614058565b9050919050565b7f4d757374206265206f70657261746564206279207468697320636f6e7472616360008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b60006140f76022836133d8565b91506141028261409b565b604082019050919050565b60006020820190508181036000830152614126816140ea565b9050919050565b7f4d75737420626520696e207468652061756374696f6e20706861736521000000600082015250565b6000614163601d836133d8565b915061416e8261412d565b602082019050919050565b6000602082019050818103600083015261419281614156565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141f56026836133d8565b915061420082614199565b604082019050919050565b60006020820190508181036000830152614224816141e8565b9050919050565b7f4d7573742062652063757272656e742077696e6e696e6720626964646572207460008201527f6f20746f70757020626964000000000000000000000000000000000000000000602082015250565b6000614287602b836133d8565b91506142928261422b565b604082019050919050565b600060208201905081810360008301526142b68161427a565b9050919050565b60006040820190506142d26000830185612fc5565b6142df6020830184612fc5565b9392505050565b6142ef81612aca565b81146142fa57600080fd5b50565b60008151905061430c816142e6565b92915050565b60006020828403121561432857614327612a3b565b5b6000614336848285016142fd565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143756020836133d8565b91506143808261433f565b602082019050919050565b600060208201905081810360008301526143a481614368565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006143e1601f836133d8565b91506143ec826143ab565b602082019050919050565b60006020820190508181036000830152614410816143d4565b905091905056fea2646970667358221220a86a3f9eb9696e9ddbb0fedb73d515e91b7f86bebd7a5ee625be813985cac09a64736f6c634300081100330000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419000000000000000000000000000000000000000000000001314fb370629800000000000000000000000000001386f70a946cf9f06e32190cfb2f4f4f18365b87000000000000000000000000000000000000000000000000000000000000000200000000000000000000000067a931807e871c09d1af4d3062ec85562908efcd0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000b21b7d5b3f348930ec6aa2d4135217bb6d08e860
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806364df80371161010d578063bf4b1990116100a0578063eeed1b261161006f578063eeed1b26146106ae578063f23a6e61146106d9578063f2fde38b14610716578063f9c9334f1461073f578063ffdd5cf11461075b576101ee565b8063bf4b199014610601578063c8f4f7691461062c578063d56d229d14610657578063e14ae9e014610682576101ee565b80638da5cb5b116100dc5780638da5cb5b146105425780639dc567471461056d578063a9d520c714610598578063bc197c81146105c4576101ee565b806364df80371461049a57806367735076146104d7578063715018a6146105005780637e83057414610517576101ee565b80631f01ca2d11610185578063454a2ab311610154578063454a2ab3146104135780634e71d92d1461042f5780634fee13fc1461044657806358a86e1d1461046f576101ee565b80631f01ca2d1461037d5780633197cbb6146103a85780633dc3e2a8146103d3578063443e4588146103ea576101ee565b8063168c6f7a116101c1578063168c6f7a146102c1578063196e609d146102d85780631a5f1d5d146103155780631c610d7f14610352576101ee565b806301ffc9a7146101f3578063055ad42e1461023057806312e9d1651461025b578063150b7a0214610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612a9d565b6107a2565b6040516102279190612ae5565b60405180910390f35b34801561023c57600080fd5b50610245610874565b6040516102529190612b77565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612bf0565b610887565b005b34801561029057600080fd5b506102ab60048036038101906102a69190612cb8565b610965565b6040516102b89190612d4f565b60405180910390f35b3480156102cd57600080fd5b506102d6610aef565b005b3480156102e457600080fd5b506102ff60048036038101906102fa9190612d6a565b610de4565b60405161030c9190612da6565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612ea2565b610e13565b6040516103499190612da6565b60405180910390f35b34801561035e57600080fd5b50610367610e45565b6040516103749190612f2e565b60405180910390f35b34801561038957600080fd5b50610392610e6b565b60405161039f9190612da6565b60405180910390f35b3480156103b457600080fd5b506103bd610e71565b6040516103ca9190612da6565b60405180910390f35b3480156103df57600080fd5b506103e8610e77565b005b3480156103f657600080fd5b50610411600480360381019061040c9190612d6a565b611168565b005b61042d60048036038101906104289190612d6a565b61117a565b005b34801561043b57600080fd5b50610444611808565b005b34801561045257600080fd5b5061046d60048036038101906104689190612f49565b611a47565b005b34801561047b57600080fd5b50610484611b43565b6040516104919190612faa565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc9190612f49565b611b69565b6040516104ce9190612da6565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612d6a565b611b94565b005b34801561050c57600080fd5b50610515611ba6565b005b34801561052357600080fd5b5061052c611bba565b6040516105399190612da6565b60405180910390f35b34801561054e57600080fd5b50610557611bc0565b6040516105649190612fd4565b60405180910390f35b34801561057957600080fd5b50610582611be9565b60405161058f9190612da6565b60405180910390f35b3480156105a457600080fd5b506105ad611bef565b6040516105bb92919061302d565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e691906130ac565b611c3f565b6040516105f89190612d4f565b60405180910390f35b34801561060d57600080fd5b50610616611c7c565b6040516106239190612da6565b60405180910390f35b34801561063857600080fd5b50610641611d70565b60405161064e9190612da6565b60405180910390f35b34801561066357600080fd5b5061066c611d76565b60405161067991906131a9565b60405180910390f35b34801561068e57600080fd5b50610697611d9c565b6040516106a5929190613231565b60405180910390f35b3480156106ba57600080fd5b506106c3611e65565b6040516106d09190612da6565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb919061325a565b611e6b565b60405161070d9190612d4f565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190612bf0565b611ff5565b005b61075960048036038101906107549190612d6a565b612078565b005b34801561076757600080fd5b50610782600480360381019061077d9190612bf0565b61258b565b6040516107999b9a999897969594939291906132f4565b60405180910390f35b60007f4e2312e0000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086d57507f150b7a02000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600260009054906101000a900460ff1681565b61088f61283f565b600060048111156108a3576108a2612b00565b5b600260009054906101000a900460ff1660048111156108c5576108c4612b00565b5b146108cf57600080fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e8230600a546040518463ffffffff1660e01b8152600401610930939291906133a1565b600060405180830381600087803b15801561094a57600080fd5b505af115801561095e573d6000803e3d6000fd5b5050505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee9061345b565b60405180910390fd5b600a548414610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a32906134ed565b60405180910390fd5b60006004811115610a4f57610a4e612b00565b5b600260009054906101000a900460ff166004811115610a7157610a70612b00565b5b14610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890613559565b60405180910390fd5b6001600260006101000a81548160ff02191690836004811115610ad757610ad6612b00565b5b021790555063150b7a0260e01b905095945050505050565b610af761283f565b60026004811115610b0b57610b0a612b00565b5b600260009054906101000a900460ff166004811115610b2d57610b2c612b00565b5b148015610b3c5750600e544210155b15610b6d576003600260006101000a81548160ff02191690836004811115610b6757610b66612b00565b5b02179055505b60036004811115610b8157610b80612b00565b5b600260009054906101000a900460ff166004811115610ba357610ba2612b00565b5b14610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda906135c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610cf657600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e30600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a546040518463ffffffff1660e01b8152600401610cbf939291906133a1565b600060405180830381600087803b158015610cd957600080fd5b505af1158015610ced573d6000803e3d6000fd5b50505050610daf565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e30600360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a546040518463ffffffff1660e01b8152600401610d7c939291906133a1565b600060405180830381600087803b158015610d9657600080fd5b505af1158015610daa573d6000803e3d6000fd5b505050505b6004600260006101000a81548160ff02191690836004811115610dd557610dd4612b00565b5b0217905550610de2610e77565b565b6000670de0b6b3a7640000610df7611c7c565b83610e029190613614565b610e0c9190613685565b9050919050565b6000600c548260200151610e279190613614565b610e348360000151610de4565b610e3e91906136b6565b9050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b600e5481565b610e7f61283f565b60026004811115610e9357610e92612b00565b5b600260009054906101000a900460ff166004811115610eb557610eb4612b00565b5b148015610ec45750600e544210155b15610ef5576003600260006101000a81548160ff02191690836004811115610eef57610eee612b00565b5b02179055505b60036004811115610f0957610f08612b00565b5b600260009054906101000a900460ff166004811115610f2b57610f2a612b00565b5b1480610f695750600480811115610f4557610f44612b00565b5b600260009054906101000a900460ff166004811115610f6757610f66612b00565b5b145b610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90613736565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a30600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600854600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e306008546040518363ffffffff1660e01b815260040161106b929190613756565b602060405180830381865afa158015611088573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ac9190613794565b6040518563ffffffff1660e01b81526004016110cb949392919061381e565b600060405180830381600087803b1580156110e557600080fd5b505af11580156110f9573d6000803e3d6000fd5b50505050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611165573d6000803e3d6000fd5b50565b61117061283f565b80600f8190555050565b6111826128bd565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e7906138c2565b60405180910390fd5b6002600481111561120457611203612b00565b5b600260009054906101000a900460ff16600481111561122657611225612b00565b5b14611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d9061392e565b60405180910390fd5b600e5442106112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a1906139c0565b60405180910390fd5b60003411806112b95750600081115b6112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90613a2c565b60405180910390fd5b60006113043483611b69565b9050611332600360010160405180604001604052908160008201548152602001600182015481525050610e13565b8111611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a90613abe565b60405180910390fd5b600082111561141257600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a3330600854866040518563ffffffff1660e01b81526004016113df949392919061381e565b600060405180830381600087803b1580156113f957600080fd5b505af115801561140d573d6000803e3d6000fd5b505050505b600060036001016001015411156114e657600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a30600360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008546003600101600101546040518563ffffffff1660e01b81526004016114b3949392919061381e565b600060405180830381600087803b1580156114cd57600080fd5b505af11580156114e1573d6000803e3d6000fd5b505050505b6000600360010160000154111561156c57600360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6003600101600001549081150290604051600060405180830381858888f1935050505015801561156a573d6000803e3d6000fd5b505b60405180604001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001604051806040016040528034815260200185815250815250600360008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160008201518160000155602082015181600101555050905050600f5442600e546116279190613ade565b1015611683576000600f544261163d91906136b6565b90507f6e912a3a9105bdd2af817ba5adc14e6c127c1035b5b648faa29ca0d58ab8ff4e600e5482604051611672929190613b12565b60405180910390a180600e81905550505b81600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e306008546040518363ffffffff1660e01b81526004016116e2929190613756565b602060405180830381865afa1580156116ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117239190613794565b14611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90613b87565b60405180910390fd5b3447146117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c90613bf3565b60405180910390fd5b7ff79aa6e80e70b02485553bb68635235152c39167ca477d25addf1eeb36aa5f5333348484426040516117dc959493929190613c13565b60405180910390a1600660008154809291906117f790613c66565b91905055505061180561290c565b50565b6002600481111561181c5761181b612b00565b5b600260009054906101000a900460ff16600481111561183e5761183d612b00565b5b14801561184d5750600e544210155b1561187e576003600260006101000a81548160ff0219169083600481111561187857611877612b00565b5b02179055505b6003600481111561189257611891612b00565b5b600260009054906101000a900460ff1660048111156118b4576118b3612b00565b5b146118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb906135c5565b60405180910390fd5b600360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90613d20565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e3033600a546040518463ffffffff1660e01b81526004016119e8939291906133a1565b600060405180830381600087803b158015611a0257600080fd5b505af1158015611a16573d6000803e3d6000fd5b505050506004600260006101000a81548160ff02191690836004811115611a4057611a3f612b00565b5b0217905550565b611a4f61283f565b60016004811115611a6357611a62612b00565b5b600260009054906101000a900460ff166004811115611a8557611a84612b00565b5b14611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90613db2565b60405180910390fd5b814210611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90613e1e565b60405180910390fd5b81600e8190555080600f8190555060028060006101000a81548160ff02191690836004811115611b3a57611b39612b00565b5b02179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c5482611b799190613614565b611b8284610de4565b611b8c91906136b6565b905092915050565b611b9c61283f565b80600c8190555050565b611bae61283f565b611bb86000612915565b565b600a5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b60038060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010160405180604001604052908160008201548152602001600182015481525050905082565b60006040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7390613e8a565b60405180910390fd5b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611cec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d109190613f22565b50505091505060008113611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5090613fe9565b60405180910390fd5b6402540be40081611d6a9190613614565b91505090565b60065481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611da46129e1565b600060036040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160405180604001604052908160008201548152602001600182015481525050815250509150611e5f600360010160405180604001604052908160008201548152602001600182015481525050610e13565b90509091565b600f5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef49061407b565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f629061410d565b60405180910390fd5b60026004811115611f7f57611f7e612b00565b5b600260009054906101000a900460ff166004811115611fa157611fa0612b00565b5b14611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd890614179565b60405180910390fd5b63f23a6e6160e01b90509695505050505050565b611ffd61283f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361206c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120639061420b565b60405180910390fd5b61207581612915565b50565b6120806128bd565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e5906138c2565b60405180910390fd5b6002600481111561210257612101612b00565b5b600260009054906101000a900460ff16600481111561212457612123612b00565b5b14612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b9061392e565b60405180910390fd5b600e5442106121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f906139c0565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461223b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122329061429d565b60405180910390fd5b600034118061224a5750600081115b612289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228090613a2c565b60405180910390fd5b60006003600101600001543461229f91906136b6565b90506000600360010160010154836122b791906136b6565b905060006122c58383611b69565b9050600084111561236657600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a3330600854886040518563ffffffff1660e01b8152600401612333949392919061381e565b600060405180830381600087803b15801561234d57600080fd5b505af1158015612361573d6000803e3d6000fd5b505050505b60405180604001604052808481526020018381525060036001016000820151816000015560208201518160010155905050600f5442600e546123a89190613ade565b1015612404576000600f54426123be91906136b6565b90507f6e912a3a9105bdd2af817ba5adc14e6c127c1035b5b648faa29ca0d58ab8ff4e600e54826040516123f3929190613b12565b60405180910390a180600e81905550505b81600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e306008546040518363ffffffff1660e01b8152600401612463929190613756565b602060405180830381865afa158015612480573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124a49190613794565b146124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db90613b87565b60405180910390fd5b824714612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90613bf3565b60405180910390fd5b7ff79aa6e80e70b02485553bb68635235152c39167ca477d25addf1eeb36aa5f53338484844260405161255d959493929190613c13565b60405180910390a16006600081548092919061257890613c66565b919050555050505061258861290c565b50565b60006125956129e1565b6000806000806000806000806000600260009054906101000a900460ff169a5060036040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160405180604001604052908160008201548152602001600182015481525050815250509950600073ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff16146127d657600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e8d6008546040518363ffffffff1660e01b81526004016126d4929190613756565b602060405180830381865afa1580156126f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127159190613794565b9850600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e985e9c58d306040518363ffffffff1660e01b81526004016127749291906142bd565b602060405180830381865afa158015612791573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127b59190614312565b97508b73ffffffffffffffffffffffffffffffffffffffff163191506127e3565b6000985060009750600091505b600e549650600e54421015955061281c600360010160405180604001604052908160008201548152602001600182015481525050610e13565b9450612826611c7c565b9350600c54925043905091939597999b90929496989a50565b6128476129d9565b73ffffffffffffffffffffffffffffffffffffffff16612865611bc0565b73ffffffffffffffffffffffffffffffffffffffff16146128bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b29061438b565b60405180910390fd5b565b600260015403612902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f9906143f7565b60405180910390fd5b6002600181905550565b60018081905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001612a11612a17565b81525090565b604051806040016040528060008152602001600081525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a7a81612a45565b8114612a8557600080fd5b50565b600081359050612a9781612a71565b92915050565b600060208284031215612ab357612ab2612a3b565b5b6000612ac184828501612a88565b91505092915050565b60008115159050919050565b612adf81612aca565b82525050565b6000602082019050612afa6000830184612ad6565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110612b4057612b3f612b00565b5b50565b6000819050612b5182612b2f565b919050565b6000612b6182612b43565b9050919050565b612b7181612b56565b82525050565b6000602082019050612b8c6000830184612b68565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bbd82612b92565b9050919050565b612bcd81612bb2565b8114612bd857600080fd5b50565b600081359050612bea81612bc4565b92915050565b600060208284031215612c0657612c05612a3b565b5b6000612c1484828501612bdb565b91505092915050565b6000819050919050565b612c3081612c1d565b8114612c3b57600080fd5b50565b600081359050612c4d81612c27565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612c7857612c77612c53565b5b8235905067ffffffffffffffff811115612c9557612c94612c58565b5b602083019150836001820283011115612cb157612cb0612c5d565b5b9250929050565b600080600080600060808688031215612cd457612cd3612a3b565b5b6000612ce288828901612bdb565b9550506020612cf388828901612bdb565b9450506040612d0488828901612c3e565b935050606086013567ffffffffffffffff811115612d2557612d24612a40565b5b612d3188828901612c62565b92509250509295509295909350565b612d4981612a45565b82525050565b6000602082019050612d646000830184612d40565b92915050565b600060208284031215612d8057612d7f612a3b565b5b6000612d8e84828501612c3e565b91505092915050565b612da081612c1d565b82525050565b6000602082019050612dbb6000830184612d97565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e0f82612dc6565b810181811067ffffffffffffffff82111715612e2e57612e2d612dd7565b5b80604052505050565b6000612e41612a31565b9050612e4d8282612e06565b919050565b600060408284031215612e6857612e67612dc1565b5b612e726040612e37565b90506000612e8284828501612c3e565b6000830152506020612e9684828501612c3e565b60208301525092915050565b600060408284031215612eb857612eb7612a3b565b5b6000612ec684828501612e52565b91505092915050565b6000819050919050565b6000612ef4612eef612eea84612b92565b612ecf565b612b92565b9050919050565b6000612f0682612ed9565b9050919050565b6000612f1882612efb565b9050919050565b612f2881612f0d565b82525050565b6000602082019050612f436000830184612f1f565b92915050565b60008060408385031215612f6057612f5f612a3b565b5b6000612f6e85828601612c3e565b9250506020612f7f85828601612c3e565b9150509250929050565b6000612f9482612efb565b9050919050565b612fa481612f89565b82525050565b6000602082019050612fbf6000830184612f9b565b92915050565b612fce81612bb2565b82525050565b6000602082019050612fe96000830184612fc5565b92915050565b612ff881612c1d565b82525050565b6040820160008201516130146000850182612fef565b5060208201516130276020850182612fef565b50505050565b60006060820190506130426000830185612fc5565b61304f6020830184612ffe565b9392505050565b60008083601f84011261306c5761306b612c53565b5b8235905067ffffffffffffffff81111561308957613088612c58565b5b6020830191508360208202830111156130a5576130a4612c5d565b5b9250929050565b60008060008060008060008060a0898b0312156130cc576130cb612a3b565b5b60006130da8b828c01612bdb565b98505060206130eb8b828c01612bdb565b975050604089013567ffffffffffffffff81111561310c5761310b612a40565b5b6131188b828c01613056565b9650965050606089013567ffffffffffffffff81111561313b5761313a612a40565b5b6131478b828c01613056565b9450945050608089013567ffffffffffffffff81111561316a57613169612a40565b5b6131768b828c01612c62565b92509250509295985092959890939650565b600061319382612efb565b9050919050565b6131a381613188565b82525050565b60006020820190506131be600083018461319a565b92915050565b6131cd81612bb2565b82525050565b6040820160008201516131e96000850182612fef565b5060208201516131fc6020850182612fef565b50505050565b60608201600082015161321860008501826131c4565b50602082015161322b60208501826131d3565b50505050565b60006080820190506132466000830185613202565b6132536060830184612d97565b9392505050565b60008060008060008060a0878903121561327757613276612a3b565b5b600061328589828a01612bdb565b965050602061329689828a01612bdb565b95505060406132a789828a01612c3e565b94505060606132b889828a01612c3e565b935050608087013567ffffffffffffffff8111156132d9576132d8612a40565b5b6132e589828a01612c62565b92509250509295509295509295565b60006101a08201905061330a600083018e612b68565b613317602083018d613202565b613324608083018c612d97565b61333160a083018b612ad6565b61333e60c083018a612d97565b61334b60e0830189612ad6565b613359610100830188612d97565b613367610120830187612d97565b613375610140830186612d97565b613383610160830185612d97565b613391610180830184612d97565b9c9b505050505050505050505050565b60006060820190506133b66000830186612fc5565b6133c36020830185612fc5565b6133d06040830184612d97565b949350505050565b600082825260208201905092915050565b7f455243373231205265636569766564206d7573742062652066726f6d20636f7260008201527f7265637420636f6e747261637421000000000000000000000000000000000000602082015250565b6000613445602e836133d8565b9150613450826133e9565b604082019050919050565b6000602082019050818103600083015261347481613438565b9050919050565b7f455243373231205265636569766564206d75737420626520636f72726563742060008201527f746f6b656e204944210000000000000000000000000000000000000000000000602082015250565b60006134d76029836133d8565b91506134e28261347b565b604082019050919050565b60006020820190508181036000830152613506816134ca565b9050919050565b7f5068617365206d75737420626520494e49542e00000000000000000000000000600082015250565b60006135436013836133d8565b915061354e8261350d565b602082019050919050565b6000602082019050818103600083015261357281613536565b9050919050565b7f4d75737420626520636c61696d20706861736521000000000000000000000000600082015250565b60006135af6014836133d8565b91506135ba82613579565b602082019050919050565b600060208201905081810360008301526135de816135a2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061361f82612c1d565b915061362a83612c1d565b925082820261363881612c1d565b9150828204841483151761364f5761364e6135e5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061369082612c1d565b915061369b83612c1d565b9250826136ab576136aa613656565b5b828204905092915050565b60006136c182612c1d565b91506136cc83612c1d565b92508282019050808211156136e4576136e36135e5565b5b92915050565b7f4d75737420776974686472617720696e20636f72726563742070686173650000600082015250565b6000613720601e836133d8565b915061372b826136ea565b602082019050919050565b6000602082019050818103600083015261374f81613713565b9050919050565b600060408201905061376b6000830185612fc5565b6137786020830184612d97565b9392505050565b60008151905061378e81612c27565b92915050565b6000602082840312156137aa576137a9612a3b565b5b60006137b88482850161377f565b91505092915050565b600082825260208201905092915050565b7f3078300000000000000000000000000000000000000000000000000000000000600082015250565b60006138086003836137c1565b9150613813826137d2565b602082019050919050565b600060a0820190506138336000830187612fc5565b6138406020830186612fc5565b61384d6040830185612d97565b61385a6060830184612d97565b818103608083015261386b816137fb565b905095945050505050565b7f4e6f20636f6e74726163742062696464696e6700000000000000000000000000600082015250565b60006138ac6013836133d8565b91506138b782613876565b602082019050919050565b600060208201905081810360008301526138db8161389f565b9050919050565b7f4d75737420626520696e2061756374696f6e2070686173650000000000000000600082015250565b60006139186018836133d8565b9150613923826138e2565b602082019050919050565b600060208201905081810360008301526139478161390b565b9050919050565b7f4d757374206265206265666f72652061756374696f6e2068617320656e64656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b60006139aa6021836133d8565b91506139b58261394e565b604082019050919050565b600060208201905081810360008301526139d98161399d565b9050919050565b7f426964206d757374206265206e6f6e7a65726f21000000000000000000000000600082015250565b6000613a166014836133d8565b9150613a21826139e0565b602082019050919050565b60006020820190508181036000830152613a4581613a09565b9050919050565b7f4d7573742062652061206772656174657220626964207468616e20746865206360008201527f757272656e742062696421000000000000000000000000000000000000000000602082015250565b6000613aa8602b836133d8565b9150613ab382613a4c565b604082019050919050565b60006020820190508181036000830152613ad781613a9b565b9050919050565b6000613ae982612c1d565b9150613af483612c1d565b9250828203905081811115613b0c57613b0b6135e5565b5b92915050565b6000604082019050613b276000830185612d97565b613b346020830184612d97565b9392505050565b7f5469636b6574207472616e73666572206661696c656400000000000000000000600082015250565b6000613b716016836133d8565b9150613b7c82613b3b565b602082019050919050565b60006020820190508181036000830152613ba081613b64565b9050919050565b7f455448207472616e73666572206661696c656400000000000000000000000000600082015250565b6000613bdd6013836133d8565b9150613be882613ba7565b602082019050919050565b60006020820190508181036000830152613c0c81613bd0565b9050919050565b600060a082019050613c286000830188612fc5565b613c356020830187612d97565b613c426040830186612d97565b613c4f6060830185612d97565b613c5c6080830184612d97565b9695505050505050565b6000613c7182612c1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ca357613ca26135e5565b5b600182019050919050565b7f4d757374206265207468652077696e6e6572206f66207468652061756374696f60008201527f6e21000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d0a6022836133d8565b9150613d1582613cae565b604082019050919050565b60006020820190508181036000830152613d3981613cfd565b9050919050565b7f4d75737420686176652073656e7420746865204e465420746f2074686520636f60008201527f6e74726163742100000000000000000000000000000000000000000000000000602082015250565b6000613d9c6027836133d8565b9150613da782613d40565b604082019050919050565b60006020820190508181036000830152613dcb81613d8f565b9050919050565b7f456e642074696d65206d75737420626520696e20667574757265000000000000600082015250565b6000613e08601a836133d8565b9150613e1382613dd2565b602082019050919050565b60006020820190508181036000830152613e3781613dfb565b9050919050565b7f4e6f20626174636820726563656976696e670000000000000000000000000000600082015250565b6000613e746012836133d8565b9150613e7f82613e3e565b602082019050919050565b60006020820190508181036000830152613ea381613e67565b9050919050565b600069ffffffffffffffffffff82169050919050565b613ec981613eaa565b8114613ed457600080fd5b50565b600081519050613ee681613ec0565b92915050565b6000819050919050565b613eff81613eec565b8114613f0a57600080fd5b50565b600081519050613f1c81613ef6565b92915050565b600080600080600060a08688031215613f3e57613f3d612a3b565b5b6000613f4c88828901613ed7565b9550506020613f5d88828901613f0d565b9450506040613f6e8882890161377f565b9350506060613f7f8882890161377f565b9250506080613f9088828901613ed7565b9150509295509295909350565b7f4554482f55534420507269636520696e76616c69640000000000000000000000600082015250565b6000613fd36015836133d8565b9150613fde82613f9d565b602082019050919050565b6000602082019050818103600083015261400281613fc6565b9050919050565b7f45524331313535205265636569766564206d7573742062652066726f6d20636f60008201527f727265637420636f6e7472616374210000000000000000000000000000000000602082015250565b6000614065602f836133d8565b915061407082614009565b604082019050919050565b6000602082019050818103600083015261409481614058565b9050919050565b7f4d757374206265206f70657261746564206279207468697320636f6e7472616360008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b60006140f76022836133d8565b91506141028261409b565b604082019050919050565b60006020820190508181036000830152614126816140ea565b9050919050565b7f4d75737420626520696e207468652061756374696f6e20706861736521000000600082015250565b6000614163601d836133d8565b915061416e8261412d565b602082019050919050565b6000602082019050818103600083015261419281614156565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141f56026836133d8565b915061420082614199565b604082019050919050565b60006020820190508181036000830152614224816141e8565b9050919050565b7f4d7573742062652063757272656e742077696e6e696e6720626964646572207460008201527f6f20746f70757020626964000000000000000000000000000000000000000000602082015250565b6000614287602b836133d8565b91506142928261422b565b604082019050919050565b600060208201905081810360008301526142b68161427a565b9050919050565b60006040820190506142d26000830185612fc5565b6142df6020830184612fc5565b9392505050565b6142ef81612aca565b81146142fa57600080fd5b50565b60008151905061430c816142e6565b92915050565b60006020828403121561432857614327612a3b565b5b6000614336848285016142fd565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143756020836133d8565b91506143808261433f565b602082019050919050565b600060208201905081810360008301526143a481614368565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006143e1601f836133d8565b91506143ec826143ab565b602082019050919050565b60006020820190508181036000830152614410816143d4565b905091905056fea2646970667358221220a86a3f9eb9696e9ddbb0fedb73d515e91b7f86bebd7a5ee625be813985cac09a64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419000000000000000000000000000000000000000000000001314fb370629800000000000000000000000000001386f70a946cf9f06e32190cfb2f4f4f18365b87000000000000000000000000000000000000000000000000000000000000000200000000000000000000000067a931807e871c09d1af4d3062ec85562908efcd0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000b21b7d5b3f348930ec6aa2d4135217bb6d08e860
-----Decoded View---------------
Arg [0] : ethUSDFeedAddress (address): 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419
Arg [1] : _ticketUSDValue (uint256): 22000000000000000000
Arg [2] : _ticketContract (address): 0x1386f70A946Cf9F06E32190cFB2F4F4f18365b87
Arg [3] : _ticketTokenId (uint256): 2
Arg [4] : _nftContract (address): 0x67A931807E871C09D1Af4d3062eC85562908eFcd
Arg [5] : _nftTokenId (uint256): 1
Arg [6] : _auctionBeneficiary (address): 0xb21b7D5B3f348930Ec6aa2d4135217BB6D08E860
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419
Arg [1] : 000000000000000000000000000000000000000000000001314fb37062980000
Arg [2] : 0000000000000000000000001386f70a946cf9f06e32190cfb2f4f4f18365b87
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 00000000000000000000000067a931807e871c09d1af4d3062ec85562908efcd
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 000000000000000000000000b21b7d5b3f348930ec6aa2d4135217bb6d08e860
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.