More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 611 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Buy Tokens With ... | 18491121 | 442 days ago | IN | 1.09 ETH | 0.00259749 | ||||
Buy Tokens With ... | 18490372 | 442 days ago | IN | 0.345 ETH | 0.00350325 | ||||
Buy Tokens With ... | 18490348 | 442 days ago | IN | 0.189 ETH | 0.00336961 | ||||
Buy Tokens With ... | 18490315 | 442 days ago | IN | 0.03 ETH | 0.00355216 | ||||
Buy Tokens With ... | 18489999 | 442 days ago | IN | 0.0764 ETH | 0.00178847 | ||||
Buy Tokens With ... | 18489985 | 442 days ago | IN | 0.0924 ETH | 0.00179962 | ||||
Buy Tokens With ... | 18489029 | 443 days ago | IN | 0.34 ETH | 0.00191616 | ||||
Buy Tokens With ... | 18489016 | 443 days ago | IN | 0.13 ETH | 0.00200378 | ||||
Buy Tokens With ... | 18489005 | 443 days ago | IN | 0.068 ETH | 0.00167538 | ||||
Buy Tokens With ... | 18488891 | 443 days ago | IN | 0.06 ETH | 0.00178377 | ||||
Buy Tokens With ... | 18486311 | 443 days ago | IN | 0.323 ETH | 0.00374438 | ||||
Buy Tokens With ... | 18485480 | 443 days ago | IN | 0.2075 ETH | 0.00573452 | ||||
Buy Tokens With ... | 18485121 | 443 days ago | IN | 0.73 ETH | 0.00478602 | ||||
Buy Tokens With ... | 18485114 | 443 days ago | IN | 0.169 ETH | 0.00501543 | ||||
Buy Tokens With ... | 18483777 | 443 days ago | IN | 0.255 ETH | 0.00228057 | ||||
Buy Tokens With ... | 18483692 | 443 days ago | IN | 0.314 ETH | 0.00251759 | ||||
Buy Tokens With ... | 18483681 | 443 days ago | IN | 0.754 ETH | 0.00258242 | ||||
Buy Tokens With ... | 18483396 | 443 days ago | IN | 0.334 ETH | 0.00274612 | ||||
Buy Tokens With ... | 18482724 | 443 days ago | IN | 0.6355 ETH | 0.00211805 | ||||
Buy Tokens With ... | 18482017 | 444 days ago | IN | 0.08 ETH | 0.00285071 | ||||
Buy Tokens With ... | 18482004 | 444 days ago | IN | 0.26 ETH | 0.00281257 | ||||
Buy Tokens With ... | 18479896 | 444 days ago | IN | 0.027 ETH | 0.00570686 | ||||
Buy Tokens With ... | 18479831 | 444 days ago | IN | 0.078 ETH | 0.00780983 | ||||
Buy Tokens With ... | 18479689 | 444 days ago | IN | 0.022 ETH | 0.00844003 | ||||
Buy Tokens With ... | 18479670 | 444 days ago | IN | 0.55 ETH | 0.00928446 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
18491121 | 442 days ago | 1.09 ETH | ||||
18490372 | 442 days ago | 0.345 ETH | ||||
18490348 | 442 days ago | 0.189 ETH | ||||
18490315 | 442 days ago | 0.03 ETH | ||||
18489999 | 442 days ago | 0.0764 ETH | ||||
18489985 | 442 days ago | 0.0924 ETH | ||||
18489029 | 443 days ago | 0.34 ETH | ||||
18489016 | 443 days ago | 0.13 ETH | ||||
18489005 | 443 days ago | 0.068 ETH | ||||
18488891 | 443 days ago | 0.06 ETH | ||||
18486311 | 443 days ago | 0.323 ETH | ||||
18485480 | 443 days ago | 0.2075 ETH | ||||
18485121 | 443 days ago | 0.73 ETH | ||||
18485114 | 443 days ago | 0.169 ETH | ||||
18483777 | 443 days ago | 0.255 ETH | ||||
18483692 | 443 days ago | 0.314 ETH | ||||
18483681 | 443 days ago | 0.754 ETH | ||||
18483396 | 443 days ago | 0.334 ETH | ||||
18482724 | 443 days ago | 0.6355 ETH | ||||
18482017 | 444 days ago | 0.08 ETH | ||||
18482004 | 444 days ago | 0.26 ETH | ||||
18479896 | 444 days ago | 0.027 ETH | ||||
18479831 | 444 days ago | 0.078 ETH | ||||
18479689 | 444 days ago | 0.022 ETH | ||||
18479670 | 444 days ago | 0.55 ETH |
Loading...
Loading
Contract Name:
GarbageSale
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; import "./IGarbageSale.sol"; import "./IGarbageVesting.sol"; contract GarbageSale is Pausable, AccessControl, IGarbageSale { using SafeERC20 for IERC20; struct Stage { uint256 tokensToSale; // Amount of tokens to sale uint256 tokensSold; // Sold tokens amount uint256 priceInUSD; // Price in USD with 8 decimals } Stage[] public stages; // Array with stages and their info IERC20 public garbageToken; // Token for sale IERC20 public usdt; // USDT token for garbage token purchasing IGarbageVesting public vestingContract; // Address of vesting contract address public treasury; // Address to receive funds uint256 public maxClaimableAmountInUSD; // Max amount of garbage tokens in USD (8 decimals) which can bought without vesting. Any amount of garbage above this limit will be vested. uint256 public currentStage; // Current stage uint256 public saleStartDate; // Date when garbage token sale starts uint256 public saleDeadline; // Deadline for garbage token sale uint256 public claimDate; // Date when users can claim their tokens uint256 public bloggerRewardPercent; // Reward percent for referrers-blogger uint256 public userRewardPercent; // Reward percent for referrers-user uint256 public totalTokensToBeDistributed; // Total amount of tokens to be distributed (sum of initial garbage tokens amount from all stages) uint256 public totalTokensSold; // Total amount of tokens sold uint256 public totalTokensClaimed; // Total amount of tokens claimed by users uint256 public totalRewardsClaimedEth; // Total amount of ETH claimed by referrers uint256 public totalRewardsClaimedUsdt; // Total amount of USDT claimed by referrers uint256 public totalRewardsEth; // Total amount of ETH received by referrers uint256 public totalRewardsUsdt; // Total amount of USDT received by referrers uint256 public constant PERCENT_DENOMINATOR = 10000; // so, 10% -> 1000, 5% -> 500 bytes32 public constant WERT_ROLE = keccak256("WERT_ROLE"); // Role for wert wallet bytes32 public constant BLOGGER_ROLE = keccak256("BLOGGER_ROLE"); // Role for referrers-blogger bytes32 public constant REFERRER_ROLE = keccak256("REFERRER_ROLE"); // Role for referrers-user bytes32 public constant AFFILIATE_ADMIN_ROLE = keccak256("AFFILIATE_ADMIN_ROLE"); // Role for affiliate admin bytes32 public constant MEME_ADMIN_ROLE = keccak256("MEME_ADMIN_ROLE"); // Role for meme admin mapping(address => uint256) public referralRewardsEth; // Amount of ETH received by referrers mapping(address => uint256) public referralRewardsUsdt; // Amount of USDT received by referrers mapping(address => uint256) public claimableTokens; // Amount of garbage tokens claimable by users mapping(address => uint256) public totalGarbageBoughtInUSD; // Total amount of garbage tokens bought by user in USD (8 decimals). Needed to calculate vesting amount. AggregatorV3Interface public priceFeedUsdt; // Chainlink price feed for USDT AggregatorV3Interface public priceFeedEth; // Chainlink price feed for ETH event ClaimDateExtended(uint256 newClaimDate); event DeadlineExtended(uint256 newDeadline); event GarbageTokenChanged(address newGarbageToken); event PriceFeedEthChanged(address newPriceFeedEth); event PriceFeedUsdtChanged(address newPriceFeedUsdt); event RewardCalculated(uint256 reward, address referrer); event RewardPaid(address referrer, uint256 amountEth, uint256 amountUsdt); event RewardPercentChanged(uint256 bloggerRewardPercent, uint256 userRewardPercent); event RemainderWithdrawn(address treasury, uint256 amountWithdrawn); event StageAdded(uint256 tokens, uint256 priceInUSD); event TokensBought(address buyer, uint256 amount); event TokensClaimed(address claimer, uint256 amount); event TreasuryChanged(address newTreasury); event UsdtChanged(address newUsdt); event VestingContractChanged(address newVestingContract); error AllStagesCompleted(); error CallerIsNotAdmin(); error CallerIsNotAffiliateAdmin(); error ClaimDateNotReached(); error ContractPaused(); error DeadlineNotReached(); error NewDeadlineIsInPast(); error NotEnoughTokensInLastStage(); error NotEnoughTokensInNextStage(); error NotEnoughTokensInStageToDistribute(); error PercentEqualOrGreaterThanDenominator(); error ReferrerIsNotRegistered(); error ReferrerIsSender(); error SaleIsStarted(); error SaleIsNotStarted(); error TokenSaleEnded(); error TransferFailed(); error ZeroAddress(); error ZeroAmount(); modifier nonZeroAddress(address addr) { if (addr == address(0)) revert ZeroAddress(); _; } modifier nonZeroAmount(uint256 amount) { if (amount == 0) revert ZeroAmount(); _; } modifier whenActive() { if (saleStartDate > block.timestamp) { revert SaleIsNotStarted(); } if (block.timestamp >= saleDeadline) revert TokenSaleEnded(); if (currentStage >= stages.length) revert AllStagesCompleted(); if (paused()) revert ContractPaused(); _; } modifier beforeSaleStart() { if (block.timestamp > saleStartDate) { revert SaleIsStarted(); } _; } constructor( IERC20 _token, IERC20 _usdt, IGarbageVesting _vestingContract, address _priceFeedEth, address _priceFeedUsdt, address _treasury ) { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); setMaxClaimableAmountInUSD(50_000 * 1e8); // 50k USD setSaleStartDate(1698168600); // Tue Oct 24 2023 17:30:00 GMT+0000 setSaleDeadline(saleStartDate + 4 * 30 days); setClaimDate(saleDeadline + 1825 days); setVestingContract(_vestingContract); setTreasury(_treasury); setUsdt(_usdt); bloggerRewardPercent = 1000; userRewardPercent = 500; setPriceFeedEth(_priceFeedEth); setPriceFeedUsdt(_priceFeedUsdt); _addStages(); setGarbageToken(_token); _setupRole(AFFILIATE_ADMIN_ROLE, msg.sender); _setRoleAdmin(BLOGGER_ROLE, AFFILIATE_ADMIN_ROLE); _setRoleAdmin(REFERRER_ROLE, AFFILIATE_ADMIN_ROLE); } receive() external payable {} ///@notice Pause contract ///@dev Only admin can pause contract function pause() public onlyRole(DEFAULT_ADMIN_ROLE) { _pause(); } ///@notice Unpause contract ///@dev Only admin can unpause contract function unpause() public onlyRole(DEFAULT_ADMIN_ROLE) { _unpause(); } /// @notice Buy garbage tokens with ETH /// @param referrer Referrer address /// @dev There is no purchase itself. Users collect their tokens in the claimTokens() function /// @dev Perform calculation of how many tokens the user is entitled to via _buyTokens() function /// @dev Transfer ETH to the treasury /// @dev Reward to the referrer is kept on the contract function buyTokensWithEth(address referrer) public payable whenActive nonZeroAmount(msg.value) { uint256 reward = _calculateRewardReferral(referrer, msg.sender, msg.value, true); uint256 remaining = msg.value - reward; _buyTokens(msg.value, true, msg.sender); (bool success, ) = payable(treasury).call{value: remaining}(""); if (!success) revert TransferFailed(); } /// @notice Buy garbage tokens with USDT /// @param usdtAmount Amount of USDT - 6 decimals /// @param referrer Referrer address /// @dev There is no purchase itself. Users collect their tokens in the claimTokens() function /// @dev Perform calculation of how many tokens the user is entitled to via _buyTokens() function /// @dev Transfer USDT to the treasury /// @dev Reward to the referrer is kept on the contract function buyTokensWithUsdt(uint256 usdtAmount, address referrer) public whenActive nonZeroAmount(usdtAmount) { uint256 reward = _calculateRewardReferral(referrer, msg.sender, usdtAmount, false); uint256 remaining = usdtAmount - reward; usdt.safeTransferFrom(msg.sender, treasury, remaining); usdt.safeTransferFrom(msg.sender, address(this), reward); _buyTokens(usdtAmount, false, msg.sender); } /// @notice Version of the buyTokensWithEth() function for Wert ramp. /// @param referrer Referrer address /// @param user User address for whom tokens are bought function buyTokensWithEthWert(address referrer, address user) public payable whenActive onlyRole(WERT_ROLE) nonZeroAmount(msg.value) { uint256 reward = _calculateRewardReferral(referrer, user, msg.value, true); uint256 remaining = msg.value - reward; _buyTokens(msg.value, true, user); (bool success, ) = payable(treasury).call{value: remaining}(""); if (!success) revert TransferFailed(); } ///@notice Claim garbage tokens by user ///@dev Users can claim their tokens after the claim date ///@dev Tokens are transferred to the user's wallet ///@dev Calculation of user's garbage token amount is performed in the _buyTokens() function function claimTokens() external { if (block.timestamp < claimDate) { revert ClaimDateNotReached(); } uint256 amount = claimableTokens[msg.sender]; claimableTokens[msg.sender] = 0; totalTokensClaimed += amount; garbageToken.safeTransfer(msg.sender, amount); emit TokensClaimed(msg.sender, amount); } ///@notice Claim reward in USDT/ETH by referrer ///@dev Referrers can claim their reward without restrictions ///@dev Reward is transferred to the referrer's wallet function claimReferralReward() external { uint256 amountEth = referralRewardsEth[msg.sender]; if (amountEth != 0) { referralRewardsEth[msg.sender] = 0; totalRewardsClaimedEth += amountEth; (bool success, ) = payable(msg.sender).call{value: amountEth}(""); if (!success) revert TransferFailed(); } uint256 amountUsdt = referralRewardsUsdt[msg.sender]; if (amountUsdt != 0) { referralRewardsUsdt[msg.sender] = 0; totalRewardsClaimedUsdt += amountUsdt; usdt.safeTransfer(msg.sender, amountUsdt); } emit RewardPaid(msg.sender, amountEth, amountUsdt); } ///@notice Withdraw remainder of garbage tokens ///@dev Only admin can withdraw remainder of garbage tokens ///@dev Remainder of garbage tokens after token sale is transferred to the treasury ///@dev Possible to withdraw only after token sale is ended function withdrawRemainder(uint256 amount) external onlyRole(DEFAULT_ADMIN_ROLE) { if (block.timestamp < saleDeadline || currentStage < stages.length) { revert DeadlineNotReached(); } garbageToken.safeTransfer(treasury, amount); emit RemainderWithdrawn(treasury, amount); } /// @notice Calculate garbage token amount entitled to user /// @param amount Amount of ETH or USDT - 18 or 6 decimals /// @param isEth True if amount is in ETH, false if amount is in USDT /// @param user User address /* If user wants to buy more tokens than there are left in the current stage, the missing amount is taken from the next stage at the price specified in the new stage. Example: a user wants to buy 100 tokens from stage 0 at the price of 0.01, but there are only 50 tokens left in stage 0. The shortage, i.e. 100 - 50 = 50, will be sold to the user at the new price, 0.0125, which is specified in stage 1. */ function _buyTokens( uint256 amount, bool isEth, address user ) internal { uint256 alreadyBoughtInUSD = totalGarbageBoughtInUSD[user]; uint256 amountInUSD = getCurrencyInUSD(amount, isEth); totalGarbageBoughtInUSD[user] += amountInUSD; if (alreadyBoughtInUSD >= maxClaimableAmountInUSD) { _vestTokens(amount, isEth, user); return; } uint256 claimableAmount = amount; if (alreadyBoughtInUSD + amountInUSD > maxClaimableAmountInUSD) { uint256 amountToVestInUSD = alreadyBoughtInUSD + amountInUSD - maxClaimableAmountInUSD; uint256 amountToVest = getUSDinCurrency(amountToVestInUSD, isEth); _vestTokens(amountToVest, isEth, user); claimableAmount = amount - amountToVest; } (uint256 currentStageTokens, uint256 tokensNextStage) = _calculateTokenAmountFromCurrencyAmount( claimableAmount, isEth ); _subtractTokensFromCurrentStage(currentStageTokens); if (tokensNextStage > 0) { // stage is changed in the previous distribute call _subtractTokensFromCurrentStage(tokensNextStage); } claimableTokens[user] += currentStageTokens + tokensNextStage; emit TokensBought(user, currentStageTokens + tokensNextStage); } ///@notice Vest garbage tokens, adding amount for vesting in GarbageVesting contract. ///@param amount Amount of ETH or USDT - 18 or 6 decimals ///@param isEth True if amount is in ETH, false if amount is in USDT ///@param user User address function _vestTokens( uint256 amount, bool isEth, address user ) internal { (uint256 currentStageTokens, uint256 tokensNextStage) = _calculateTokenAmountFromCurrencyAmount(amount, isEth); _subtractTokensFromCurrentStage(currentStageTokens); if (tokensNextStage > 0) { // stage is changed in the previous distribute call _subtractTokensFromCurrentStage(tokensNextStage); } garbageToken.approve(address(vestingContract), currentStageTokens + tokensNextStage); vestingContract.addAmountToBeneficiary(user, currentStageTokens + tokensNextStage); emit TokensBought(user, currentStageTokens + tokensNextStage); } ///@notice Calculate rate in currency function _getRateInCurrency(uint256 stageId, bool isEth) internal view returns (uint256) { Stage storage stage = stages[stageId]; // price in 18 decimals uint256 currentPrice = (isEth ? _getEthPrice() : _getUsdtPrice()) * 1e10; uint256 priceInUSDDecimals = 1e8; uint256 rateInCurrency = (priceInUSDDecimals * currentPrice) / stage.priceInUSD; // calculate the number of tokens in 1 unit of the selected currency based on its current price (USDT or ETH) return rateInCurrency; } ///@notice Validate and calculate tokens distribution for current stage. When current stage is finished, move to the next. function _subtractTokensFromCurrentStage(uint256 tokens) internal { Stage storage stage = stages[currentStage]; if (stage.tokensToSale - stage.tokensSold < tokens) revert NotEnoughTokensInStageToDistribute(); stage.tokensSold += tokens; totalTokensSold += tokens; if (stage.tokensSold == stage.tokensToSale) { currentStage++; } } /// @notice Calculate reward for referrer /// @param referrer Referrer address /// @param amount Amount of ETH or USDT - 18 or 6 decimals /// @param isEth True if amount is in ETH, false if amount is in USDT /// @return reward Reward amount in ETH or USDT - 18 or 6 decimals /// @dev Reward is calculated based on the amount of ETH or USDT sent by the user /// @dev Blogger referrers receive 10% of the amount sent by the user and user referrers receive 5% function _calculateRewardReferral( address referrer, address user, uint256 amount, bool isEth ) internal returns (uint256 reward) { if (referrer == user) revert ReferrerIsSender(); if (referrer != address(0)) { if (!hasRole(REFERRER_ROLE, referrer) && !hasRole(BLOGGER_ROLE, referrer)) revert ReferrerIsNotRegistered(); bool isBlogger = hasRole(BLOGGER_ROLE, referrer); uint256 rewardPercent = isBlogger ? bloggerRewardPercent : userRewardPercent; reward = (amount * rewardPercent) / PERCENT_DENOMINATOR; if (isEth) { referralRewardsEth[referrer] += reward; totalRewardsEth += reward; } else { referralRewardsUsdt[referrer] += reward; totalRewardsUsdt += reward; } } emit RewardCalculated(reward, referrer); return reward; } ///@notice Add all stages with tokens and price in USD function _addStages() internal { _addStage(51_282_051, 1950000); _addStage(47_483_381, 2106000); _addStage(43_966_093, 2274480); _addStage(40_709_346, 2456438); _addStage(36_874_407, 2711908); _addStage(32_923_578, 3037337); _addStage(29_396_052, 3401817); _addStage(26_014_205, 3844054); _addStage(22_819_478, 4382221); _addStage(18_531_329, 5396267); } ///@notice Add stage with tokens and price in USD function _addStage(uint256 tokensToSale, uint256 priceInUSD) internal { uint256 tokensToSaleWithDecimals = tokensToSale * 10**18; stages.push(Stage(tokensToSaleWithDecimals, 0, priceInUSD)); totalTokensToBeDistributed += tokensToSaleWithDecimals; emit StageAdded(tokensToSale, priceInUSD); } ///@notice Set new treasury address ///@param _treasury New treasury address ///@dev Only admin can set new treasury address function setTreasury(address _treasury) public onlyRole(DEFAULT_ADMIN_ROLE) nonZeroAddress(_treasury) { treasury = _treasury; emit TreasuryChanged(_treasury); } ///@notice Set new garbage token address ///@param _token New garbage token address ///@dev Only admin can set new garbage token address function setGarbageToken(IERC20 _token) public beforeSaleStart onlyRole(DEFAULT_ADMIN_ROLE) nonZeroAddress(address(_token)) { garbageToken = _token; emit GarbageTokenChanged(address(_token)); } ///@notice Set new USDT address ///@param _usdt New USDT address ///@dev Only admin can set new USDT address function setUsdt(IERC20 _usdt) public onlyRole(DEFAULT_ADMIN_ROLE) nonZeroAddress(address(_usdt)) { usdt = _usdt; emit UsdtChanged(address(_usdt)); } ///@notice Set new price feed for ETH ///@param _priceFeedEth New price feed for ETH ///@dev Only admin can set new price feed for ETH function setPriceFeedEth(address _priceFeedEth) public onlyRole(DEFAULT_ADMIN_ROLE) nonZeroAddress(_priceFeedEth) { priceFeedEth = AggregatorV3Interface(_priceFeedEth); emit PriceFeedEthChanged(_priceFeedEth); } ///@notice Set new price feed for USDT ///@param _priceFeedUsdt New price feed for USDT ///@dev Only admin can set new price feed for USDT function setPriceFeedUsdt(address _priceFeedUsdt) public onlyRole(DEFAULT_ADMIN_ROLE) nonZeroAddress(_priceFeedUsdt) { priceFeedUsdt = AggregatorV3Interface(_priceFeedUsdt); emit PriceFeedUsdtChanged(_priceFeedUsdt); } ///@notice Set new sale start date ///@param _saleStartDate New sale start date ///@dev Only admin can set new sale start date function setSaleStartDate(uint256 _saleStartDate) public onlyRole(DEFAULT_ADMIN_ROLE) { if (_saleStartDate < block.timestamp) { revert NewDeadlineIsInPast(); } if (block.timestamp > saleStartDate && saleStartDate > 0) { revert SaleIsStarted(); } saleStartDate = _saleStartDate; } ///@notice Set new claim date ///@param _claimDate New claim date ///@dev Only admin can set new claim date function setClaimDate(uint256 _claimDate) public onlyRole(DEFAULT_ADMIN_ROLE) { if (_claimDate < block.timestamp) { revert NewDeadlineIsInPast(); } claimDate = _claimDate; emit ClaimDateExtended(_claimDate); } ///@notice Set new sale deadline ///@param newDeadline New sale deadline ///@dev Only admin can set new sale deadline function setSaleDeadline(uint256 newDeadline) public onlyRole(DEFAULT_ADMIN_ROLE) { if (newDeadline < block.timestamp || newDeadline < saleDeadline) { revert NewDeadlineIsInPast(); } saleDeadline = newDeadline; emit DeadlineExtended(newDeadline); } ///@notice Set new max amount of garbage tokens in USD (8 decimals) which can be bought without vesting. function setMaxClaimableAmountInUSD(uint256 _maxClaimableAmountInUSD) public onlyRole(DEFAULT_ADMIN_ROLE) { maxClaimableAmountInUSD = _maxClaimableAmountInUSD; } ///@notice Set new address of vesting contract. function setVestingContract(IGarbageVesting _vestingContract) public beforeSaleStart onlyRole(DEFAULT_ADMIN_ROLE) nonZeroAddress(address(_vestingContract)) { vestingContract = _vestingContract; emit VestingContractChanged(address(_vestingContract)); } ///@notice Return stages quantity function getStagesLength() external view returns (uint256) { return stages.length; } ///@notice Return current stage info ///@return tokensToSale Amount of tokens to sale ///@return tokensSold Sold tokens amount ///@return priceInUSD Price in USD with 8 decimals ///@return _currentStage Current stage ///@return nextStagePriceInUsd Price in USD with 8 decimals for next stage function getCurrentStageInfo() external view returns ( uint256 tokensToSale, uint256 tokensSold, uint256 priceInUSD, uint256 _currentStage, uint256 nextStagePriceInUsd ) { uint256 stageId = currentStage; nextStagePriceInUsd = stageId == stages.length - 1 ? 0 : stages[stageId + 1].priceInUSD; return ( stages[stageId].tokensToSale, stages[stageId].tokensSold, stages[stageId].priceInUSD, currentStage, nextStagePriceInUsd ); } ///@notice Return rewards amount in USDT and ETH for specified referrer function getRewardsForReferrer(address referrer) external view returns (uint256, uint256) { return (referralRewardsEth[referrer], referralRewardsUsdt[referrer]); } ///@notice Return user's balances in garbage token, USDT and ETH function getUserBalances(address user) external view returns ( uint256 garbageBalance, uint256 usdtBalance, uint256 ethBalance ) { garbageBalance = garbageToken.balanceOf(user); usdtBalance = usdt.balanceOf(user); ethBalance = address(user).balance; } ///@notice Calculate and return token amount from provided currency amount ///@param amount Amount of ETH or USDT - 18 or 6 decimals function getTokenAmountFromCurrencyAmount(uint256 amount, bool isEth) public view returns (uint256 tokens) { (uint256 currentStageTokens, uint256 nextStageTokens) = _calculateTokenAmountFromCurrencyAmount(amount, isEth); return currentStageTokens + nextStageTokens; } ///@notice Calculate currency price in USD ///@return priceInUSD Price in USD with 8 decimals function getCurrencyInUSD(uint256 currencyAmount, bool isEth) public view returns (uint256) { uint256 currentPrice = (isEth ? _getEthPrice() : _getUsdtPrice()); uint256 currencyDecimals = isEth ? 1e18 : 1e6; uint256 usdValue = (currencyAmount * currentPrice) / currencyDecimals; return usdValue; } /// @notice Calculate currency amount from provided USD amount /// @param usdAmount Amount of USD - 8 decimals function getUSDinCurrency(uint256 usdAmount, bool isEth) public view returns (uint256) { uint256 currentPrice = (isEth ? _getEthPrice() : _getUsdtPrice()); uint256 currencyDecimals = isEth ? 1e18 : 1e6; uint256 currencyValue = (usdAmount * currencyDecimals) / currentPrice; return currencyValue; } ///@notice Calculate and return token amount from provided currency amount ///@param amount Amount of ETH or USDT - 18 or 6 decimals ///@param isEth True if amount is in ETH, false if amount is in USDT function _calculateTokenAmountFromCurrencyAmount(uint256 amount, bool isEth) internal view returns (uint256 tokensAmount, uint256 tokensAmountNextStage) { Stage storage stage = stages[currentStage]; uint256 _currentStage = currentStage; uint256 rateInCurrency = _getRateInCurrency(_currentStage, isEth); // calculate the number of tokens in 1 unit of the selected currency based on its current price (USDT or ETH) uint256 tokens = (amount * rateInCurrency) / (isEth ? 1e18 : 1e6); // calculate the number of tokens based on the passed amount of currency if (stage.tokensToSale - stage.tokensSold >= tokens) { return (tokens, 0); } _currentStage++; uint256 remainingTokens = stage.tokensToSale - stage.tokensSold; uint256 usedAmount = (remainingTokens * (isEth ? 1e18 : 1e6)) / rateInCurrency; uint256 excessAmount = amount - usedAmount; if (excessAmount == 0) return (remainingTokens, 0); if (_currentStage >= stages.length) { uint256 checkGarbageAmount = (excessAmount * rateInCurrency) / (isEth ? 1e18 : 1e6); if (checkGarbageAmount <= 1 ether) { return (remainingTokens, 0); } else { revert NotEnoughTokensInLastStage(); } } Stage storage nextStage = stages[_currentStage]; uint256 nextRateInCurrency = _getRateInCurrency(_currentStage, isEth); uint256 nextTokens = (excessAmount * nextRateInCurrency) / (isEth ? 1e18 : 1e6); if (nextTokens > nextStage.tokensToSale) revert NotEnoughTokensInNextStage(); return (remainingTokens, nextTokens); } ///@notice Calculate and return currency amount from provided token amount ///@param tokens Amount of garbage tokens ///@param isEth True if amount to return is in ETH, false if amount to return is in USDT function getCurrencyAmountFromTokenAmount(uint256 tokens, bool isEth) external view returns (uint256 amount) { Stage storage stage = stages[currentStage]; uint256 rateInCurrency = _getRateInCurrency(currentStage, isEth); // calculate the number of tokens in 1 unit of the selected currency based on its current price (USDT or ETH) if (stage.tokensToSale - stage.tokensSold >= tokens) { amount = (tokens * (isEth ? 1e18 : 1e6)) / rateInCurrency; // calculate the amount of currency based on the passed number of tokens return amount; } uint256 _currentStage = currentStage; uint256 remainingTokens = stage.tokensToSale - stage.tokensSold; uint256 usedAmount = (remainingTokens * (isEth ? 1e18 : 1e6)) / rateInCurrency; uint256 excessTokens = tokens - remainingTokens; _currentStage++; if (_currentStage >= stages.length) { if (excessTokens > 1 ether) { revert NotEnoughTokensInLastStage(); } else { amount = (tokens * (isEth ? 1e18 : 1e6)) / rateInCurrency; // calculate the amount of currency based on the passed number of tokens return amount; } } // Calculate the amount of currency needed to buy tokens from the next stage Stage storage nextStage = stages[_currentStage]; uint256 nextRateInCurrency = _getRateInCurrency(_currentStage, isEth); uint256 nextAmount = (excessTokens * (isEth ? 1e18 : 1e6)) / nextRateInCurrency; if (excessTokens > nextStage.tokensToSale) revert NotEnoughTokensInNextStage(); amount = usedAmount + nextAmount; } ///@notice Return ETH price from Chainlink function _getEthPrice() internal view returns (uint256) { (, int256 price, , , ) = priceFeedEth.latestRoundData(); return uint256(price); } ///@notice Return USDT price from Chainlink function _getUsdtPrice() internal view returns (uint256) { (, int256 price, , , ) = priceFeedUsdt.latestRoundData(); return uint256(price); } }
pragma solidity 0.8.18; interface IGarbageVesting { function addAmountToBeneficiary(address _beneficiary, uint256 _amount) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IGarbageSale { function garbageToken() external view returns (IERC20); function usdt() external view returns (IERC20); function treasury() external view returns (address); function currentStage() external view returns (uint256); function saleDeadline() external view returns (uint256); function claimDate() external view returns (uint256); function bloggerRewardPercent() external view returns (uint256); function userRewardPercent() external view returns (uint256); function totalTokensToBeDistributed() external view returns (uint256); function totalTokensSold() external view returns (uint256); function totalTokensClaimed() external view returns (uint256); function referralRewardsEth(address referrer) external view returns (uint256); function referralRewardsUsdt(address referrer) external view returns (uint256); function claimableTokens(address claimer) external view returns (uint256); function getStagesLength() external view returns (uint256); function getCurrentStageInfo() external view returns ( uint256, uint256, uint256, uint256, uint256 ); function getCurrencyAmountFromTokenAmount(uint256 tokens, bool isEth) external view returns (uint256 amount); function getTokenAmountFromCurrencyAmount(uint256 amount, bool isEth) external view returns (uint256 tokens); function buyTokensWithEth(address referrer) external payable; function buyTokensWithUsdt(uint256 amount, address referrer) external; function setSaleDeadline(uint256 newDeadline) external; function claimTokens() external; function pause() external; function unpause() external; function withdrawRemainder(uint256 amount) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT 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 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 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"contract IERC20","name":"_usdt","type":"address"},{"internalType":"contract IGarbageVesting","name":"_vestingContract","type":"address"},{"internalType":"address","name":"_priceFeedEth","type":"address"},{"internalType":"address","name":"_priceFeedUsdt","type":"address"},{"internalType":"address","name":"_treasury","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllStagesCompleted","type":"error"},{"inputs":[],"name":"CallerIsNotAdmin","type":"error"},{"inputs":[],"name":"CallerIsNotAffiliateAdmin","type":"error"},{"inputs":[],"name":"ClaimDateNotReached","type":"error"},{"inputs":[],"name":"ContractPaused","type":"error"},{"inputs":[],"name":"DeadlineNotReached","type":"error"},{"inputs":[],"name":"NewDeadlineIsInPast","type":"error"},{"inputs":[],"name":"NotEnoughTokensInLastStage","type":"error"},{"inputs":[],"name":"NotEnoughTokensInNextStage","type":"error"},{"inputs":[],"name":"NotEnoughTokensInStageToDistribute","type":"error"},{"inputs":[],"name":"PercentEqualOrGreaterThanDenominator","type":"error"},{"inputs":[],"name":"ReferrerIsNotRegistered","type":"error"},{"inputs":[],"name":"ReferrerIsSender","type":"error"},{"inputs":[],"name":"SaleIsNotStarted","type":"error"},{"inputs":[],"name":"SaleIsStarted","type":"error"},{"inputs":[],"name":"TokenSaleEnded","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"inputs":[],"name":"ZeroAmount","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newClaimDate","type":"uint256"}],"name":"ClaimDateExtended","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDeadline","type":"uint256"}],"name":"DeadlineExtended","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newGarbageToken","type":"address"}],"name":"GarbageTokenChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newPriceFeedEth","type":"address"}],"name":"PriceFeedEthChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newPriceFeedUsdt","type":"address"}],"name":"PriceFeedUsdtChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"treasury","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountWithdrawn","type":"uint256"}],"name":"RemainderWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"},{"indexed":false,"internalType":"address","name":"referrer","type":"address"}],"name":"RewardCalculated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"referrer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountEth","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountUsdt","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"bloggerRewardPercent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"userRewardPercent","type":"uint256"}],"name":"RewardPercentChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"priceInUSD","type":"uint256"}],"name":"StageAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"claimer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newTreasury","type":"address"}],"name":"TreasuryChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newUsdt","type":"address"}],"name":"UsdtChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newVestingContract","type":"address"}],"name":"VestingContractChanged","type":"event"},{"inputs":[],"name":"AFFILIATE_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BLOGGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MEME_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERCENT_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REFERRER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WERT_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bloggerRewardPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"referrer","type":"address"}],"name":"buyTokensWithEth","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"referrer","type":"address"},{"internalType":"address","name":"user","type":"address"}],"name":"buyTokensWithEthWert","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"usdtAmount","type":"uint256"},{"internalType":"address","name":"referrer","type":"address"}],"name":"buyTokensWithUsdt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimReferralReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimableTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentStage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"garbageToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bool","name":"isEth","type":"bool"}],"name":"getCurrencyAmountFromTokenAmount","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"currencyAmount","type":"uint256"},{"internalType":"bool","name":"isEth","type":"bool"}],"name":"getCurrencyInUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentStageInfo","outputs":[{"internalType":"uint256","name":"tokensToSale","type":"uint256"},{"internalType":"uint256","name":"tokensSold","type":"uint256"},{"internalType":"uint256","name":"priceInUSD","type":"uint256"},{"internalType":"uint256","name":"_currentStage","type":"uint256"},{"internalType":"uint256","name":"nextStagePriceInUsd","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"referrer","type":"address"}],"name":"getRewardsForReferrer","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStagesLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"isEth","type":"bool"}],"name":"getTokenAmountFromCurrencyAmount","outputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"usdAmount","type":"uint256"},{"internalType":"bool","name":"isEth","type":"bool"}],"name":"getUSDinCurrency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserBalances","outputs":[{"internalType":"uint256","name":"garbageBalance","type":"uint256"},{"internalType":"uint256","name":"usdtBalance","type":"uint256"},{"internalType":"uint256","name":"ethBalance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxClaimableAmountInUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceFeedEth","outputs":[{"internalType":"contract AggregatorV3Interface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceFeedUsdt","outputs":[{"internalType":"contract AggregatorV3Interface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"referralRewardsEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"referralRewardsUsdt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStartDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimDate","type":"uint256"}],"name":"setClaimDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"setGarbageToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxClaimableAmountInUSD","type":"uint256"}],"name":"setMaxClaimableAmountInUSD","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_priceFeedEth","type":"address"}],"name":"setPriceFeedEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_priceFeedUsdt","type":"address"}],"name":"setPriceFeedUsdt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDeadline","type":"uint256"}],"name":"setSaleDeadline","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStartDate","type":"uint256"}],"name":"setSaleStartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_usdt","type":"address"}],"name":"setUsdt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IGarbageVesting","name":"_vestingContract","type":"address"}],"name":"setVestingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stages","outputs":[{"internalType":"uint256","name":"tokensToSale","type":"uint256"},{"internalType":"uint256","name":"tokensSold","type":"uint256"},{"internalType":"uint256","name":"priceInUSD","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalGarbageBoughtInUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRewardsClaimedEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRewardsClaimedUsdt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRewardsEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRewardsUsdt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensToBeDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usdt","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"userRewardPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingContract","outputs":[{"internalType":"contract IGarbageVesting","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawRemainder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003f7438038062003f74833981016040819052620000349162000b97565b6000805460ff191681556200004a90336200019a565b6200005b65048c27395000620001aa565b6200006a636537ff18620001bd565b62000087600954629e340062000081919062000c41565b62000225565b620000a5600a5463096601806200009f919062000c41565b6200029e565b620000b08462000303565b620000bb81620003b4565b620000c68562000439565b6103e8600c556101f4600d55620000dd83620004be565b620000e88262000543565b620000f2620005c8565b620000fd8662000688565b6200011860008051602062003f54833981519152336200019a565b620001537f26e71ca4ebbe2ad7a241ad6ee71933b9dc517e7e17183658d1481a0e529332b960008051602062003f5483398151915262000731565b6200018e7fe00fc2961631f2e419a1f77b354a70792e583ec1a56bcf6658345db5fc19966360008051602062003f5483398151915262000731565b50505050505062000d8b565b620001a682826200077e565b5050565b6000620001b781620007ec565b50600755565b6000620001ca81620007ec565b42821015620001ec57604051630259fe9960e31b815260040160405180910390fd5b600954421180156200020057506000600954115b156200021f57604051633a40cba560e01b815260040160405180910390fd5b50600955565b60006200023281620007ec565b42821080620002425750600a5482105b156200026157604051630259fe9960e31b815260040160405180910390fd5b600a8290556040518281527fc7f2746aefc0d137a95df385581a90d8b73240b3e6724f8ecb10b58e88f0fb8b906020015b60405180910390a15050565b6000620002ab81620007ec565b42821015620002cd57604051630259fe9960e31b815260040160405180910390fd5b600b8290556040518281527f1a66a9a718e2565946ebf4c2bcbc4d656a6b4608789d037ac0982ea10b5e28a59060200162000292565b6009544211156200032757604051633a40cba560e01b815260040160405180910390fd5b60006200033481620007ec565b816001600160a01b0381166200035d5760405163d92e233d60e01b815260040160405180910390fd5b600580546001600160a01b0319166001600160a01b0385169081179091556040519081527f5dff00aa253c8624dbbbd26ea7b6b161327e629f5ed7a0cde6ff3c66cceb909f906020015b60405180910390a1505050565b6000620003c181620007ec565b816001600160a01b038116620003ea5760405163d92e233d60e01b815260040160405180910390fd5b600680546001600160a01b0319166001600160a01b0385169081179091556040519081527fc714d22a2f08b695f81e7c707058db484aa5b4d6b4c9fd64beb10fe85832f60890602001620003a7565b60006200044681620007ec565b816001600160a01b0381166200046f5760405163d92e233d60e01b815260040160405180910390fd5b600480546001600160a01b0319166001600160a01b0385169081179091556040519081527face9c845c72ee50f604af432a638f2ce8e5569081d2f9ebf55f9249e8d1cb16b90602001620003a7565b6000620004cb81620007ec565b816001600160a01b038116620004f45760405163d92e233d60e01b815260040160405180910390fd5b601a80546001600160a01b0319166001600160a01b0385169081179091556040519081527fbc5f7de1382947006f88b9949ee812f6e548cf626d05f05ec1f89d53431ed77390602001620003a7565b60006200055081620007ec565b816001600160a01b038116620005795760405163d92e233d60e01b815260040160405180910390fd5b601980546001600160a01b0319166001600160a01b0385169081179091556040519081527f289bbae0ea70335cbf65fe6b98fb2accecc8e05d472b305215b3777016b77c8290602001620003a7565b620005db63030e8083621dc130620007fb565b620005ee6302d489f562202290620007fb565b6200060163029ede8d6222b4b0620007fb565b6200061463026d2ce262257b76620007fb565b62000627630232a8a762296164620007fb565b6200063a6301f65fba622e5899620007fb565b6200064d6301c08c546233e859620007fb565b6200066063018cf1fd623aa7d6620007fb565b6200067363015c32966242de0d620007fb565b6200068663011ac4016252572b620007fb565b565b600954421115620006ac57604051633a40cba560e01b815260040160405180910390fd5b6000620006b981620007ec565b816001600160a01b038116620006e25760405163d92e233d60e01b815260040160405180910390fd5b600380546001600160a01b0319166001600160a01b0385169081179091556040519081527ff4d3c017881f423ae1b90356aa82340e58fc69ef9d5f62b8173ab37efd82cda690602001620003a7565b6000828152600160208190526040808320909101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6200078a828262000908565b620001a65760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b620007f8813362000935565b50565b60006200081183670de0b6b3a764000062000c57565b604080516060810182528281526000602082018181529282018681526002805460018101825590835292517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace60039094029384015592517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf83015591517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad090910155600e80549293508392909190620008cc90849062000c41565b909155505060408051848152602081018490527ff382796e364390252f3f83b5ea0665e8b666280c818091e2fb4b807c3e229b619101620003a7565b60008281526001602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b62000941828262000908565b620001a65762000967816001600160a01b03166014620009c160201b62001dd71760201c565b6200097d83602062001dd7620009c1821b17811c565b6040516020016200099092919062000c97565b60408051601f198184030181529082905262461bcd60e51b8252620009b89160040162000d10565b60405180910390fd5b60606000620009d283600262000c57565b620009df90600262000c41565b6001600160401b03811115620009f957620009f962000d45565b6040519080825280601f01601f19166020018201604052801562000a24576020820181803683370190505b509050600360fc1b8160008151811062000a425762000a4262000d5b565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062000a745762000a7462000d5b565b60200101906001600160f81b031916908160001a905350600062000a9a84600262000c57565b62000aa790600162000c41565b90505b600181111562000b29576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062000adf5762000adf62000d5b565b1a60f81b82828151811062000af85762000af862000d5b565b60200101906001600160f81b031916908160001a90535060049490941c9362000b218162000d71565b905062000aaa565b50831562000b7a5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401620009b8565b9392505050565b6001600160a01b0381168114620007f857600080fd5b60008060008060008060c0878903121562000bb157600080fd5b865162000bbe8162000b81565b602088015190965062000bd18162000b81565b604088015190955062000be48162000b81565b606088015190945062000bf78162000b81565b608088015190935062000c0a8162000b81565b60a088015190925062000c1d8162000b81565b809150509295509295509295565b634e487b7160e01b600052601160045260246000fd5b808201808211156200092f576200092f62000c2b565b80820281158282048414176200092f576200092f62000c2b565b60005b8381101562000c8e57818101518382015260200162000c74565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162000cd181601785016020880162000c71565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162000d0481602884016020880162000c71565b01602801949350505050565b602081526000825180602084015262000d3181604085016020870162000c71565b601f01601f19169190910160400192915050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008162000d835762000d8362000c2b565b506000190190565b6131b98062000d9b6000396000f3fe6080604052600436106103d25760003560e01c806374991569116101fd5780639e6c295911610118578063c0cdc40b116100ab578063d547741f1161007a578063d547741f14610bdc578063da28cef714610bfc578063de9ed18014610c11578063f0f4426014610c27578063f40f4a2414610c4757600080fd5b8063c0cdc40b14610b4f578063c83cdd3d14610b83578063c9882a7814610b99578063c9ed5d7914610baf57600080fd5b8063ab447007116100e7578063ab44700714610ad9578063abd3f61214610af9578063b1a5056b14610b19578063b5030d9d14610b3957600080fd5b80639e6c295914610a61578063a217fddf14610a77578063a530eee914610a8c578063a8f6b7dd14610aac57600080fd5b8063888ea12011610190578063932adad71161015f578063932adad7146109ec5780639675e1f514610a025780639b4b2c9c14610a365780639d3d53a514610a4b57600080fd5b8063888ea120146109805780638973123c146109965780638b137deb146109ac57806391d14854146109cc57600080fd5b8063845ddcb2116101cc578063845ddcb2146108c457806384d24226146108ff5780638590fb521461092c578063862a8e451461096057600080fd5b8063749915691461084f5780637ff081a21461086f578063842c201e1461088f5780638456cb59146108af57600080fd5b8063340f3af6116102ed5780635bce515a1161028057806361d027b31161024f57806361d027b3146107cc57806363b20117146107ec57806368fe5090146108025780637291066e1461082257600080fd5b80635bce515a1461075e5780635bf5d54c1461077e5780635c975abb146107945780635e6f6045146107ac57600080fd5b8063408012c6116102bc578063408012c6146106f357806348c54b9d1461071357806358979bfe146107285780635912c0461461074857600080fd5b8063340f3af61461067e57806336568abe1461069e5780633e68f7d2146106be5780633f4ba83a146106de57600080fd5b8063206b79a31161036557806326d070991161033457806326d07099146105eb57806328010118146106285780632f2ff15d1461063e5780632f48ab7d1461065e57600080fd5b8063206b79a31461052e57806321b23e341461056257806321c880ae14610582578063248a9ca3146105ba57600080fd5b80630b7017fb116103a15780630b7017fb146104c25780630db4bad0146104d85780631b9aa425146104ee5780631f5ae8b81461050e57600080fd5b806301ffc9a7146103de57806303811d7d14610413578063078902631461046b5780630b51b9e7146104ad57600080fd5b366103d957005b600080fd5b3480156103ea57600080fd5b506103fe6103f9366004612e1f565b610c5a565b60405190151581526020015b60405180910390f35b34801561041f57600080fd5b5061045661042e366004612e5e565b6001600160a01b03166000908152601560209081526040808320546016909252909120549091565b6040805192835260208301919091520161040a565b34801561047757600080fd5b5061049f7f37d939d3e74b5b71e0cc8bd1b0441b84c6178d5327650d34256f5ae6dd04e7da81565b60405190815260200161040a565b6104c06104bb366004612e7b565b610c91565b005b3480156104ce57600080fd5b5061049f600d5481565b3480156104e457600080fd5b5061049f600b5481565b3480156104fa57600080fd5b5061049f610509366004612ec2565b610e15565b34801561051a57600080fd5b506104c0610529366004612e5e565b611038565b34801561053a57600080fd5b5061049f7fe00fc2961631f2e419a1f77b354a70792e583ec1a56bcf6658345db5fc19966381565b34801561056e57600080fd5b506104c061057d366004612e5e565b6110e5565b34801561058e57600080fd5b50601a546105a2906001600160a01b031681565b6040516001600160a01b03909116815260200161040a565b3480156105c657600080fd5b5061049f6105d5366004612ee7565b6000908152600160208190526040909120015490565b3480156105f757600080fd5b50610600611166565b604080519586526020860194909452928401919091526060830152608082015260a00161040a565b34801561063457600080fd5b5061049f60075481565b34801561064a57600080fd5b506104c0610659366004612f00565b611247565b34801561066a57600080fd5b506004546105a2906001600160a01b031681565b34801561068a57600080fd5b506019546105a2906001600160a01b031681565b3480156106aa57600080fd5b506104c06106b9366004612f00565b611272565b3480156106ca57600080fd5b506104c06106d9366004612ee7565b6112f5565b3480156106ea57600080fd5b506104c061136a565b3480156106ff57600080fd5b5061049f61070e366004612ec2565b611380565b34801561071f57600080fd5b506104c06113a7565b34801561073457600080fd5b506104c0610743366004612e5e565b61144a565b34801561075457600080fd5b5061049f60105481565b34801561076a57600080fd5b5061049f610779366004612ec2565b6114cb565b34801561078a57600080fd5b5061049f60085481565b3480156107a057600080fd5b5060005460ff166103fe565b3480156107b857600080fd5b506005546105a2906001600160a01b031681565b3480156107d857600080fd5b506006546105a2906001600160a01b031681565b3480156107f857600080fd5b5061049f600f5481565b34801561080e57600080fd5b506003546105a2906001600160a01b031681565b34801561082e57600080fd5b5061049f61083d366004612e5e565b60186020526000908152604090205481565b34801561085b57600080fd5b506104c061086a366004612e5e565b611531565b34801561087b57600080fd5b506104c061088a366004612ee7565b6115d5565b34801561089b57600080fd5b506104c06108aa366004612ee7565b611638565b3480156108bb57600080fd5b506104c06116d4565b3480156108d057600080fd5b506108e46108df366004612ee7565b6116e7565b6040805193845260208401929092529082015260600161040a565b34801561090b57600080fd5b5061049f61091a366004612e5e565b60176020526000908152604090205481565b34801561093857600080fd5b5061049f7f26e71ca4ebbe2ad7a241ad6ee71933b9dc517e7e17183658d1481a0e529332b981565b34801561096c57600080fd5b506104c061097b366004612e5e565b61171a565b34801561098c57600080fd5b5061049f600a5481565b3480156109a257600080fd5b5061049f60095481565b3480156109b857600080fd5b506104c06109c7366004612f00565b61179b565b3480156109d857600080fd5b506103fe6109e7366004612f00565b6118b7565b3480156109f857600080fd5b5061049f60115481565b348015610a0e57600080fd5b5061049f7f57e4e247b12ee5912158e65fd38c875b821462f9b4443e84dfcbd215f6b6ac4f81565b348015610a4257600080fd5b506104c06118e2565b348015610a5757600080fd5b5061049f600e5481565b348015610a6d57600080fd5b5061049f61271081565b348015610a8357600080fd5b5061049f600081565b348015610a9857600080fd5b5061049f610aa7366004612ec2565b611a20565b348015610ab857600080fd5b5061049f610ac7366004612e5e565b60156020526000908152604090205481565b348015610ae557600080fd5b506104c0610af4366004612ee7565b611a72565b348015610b0557600080fd5b506108e4610b14366004612e5e565b611ad3565b348015610b2557600080fd5b506104c0610b34366004612ee7565b611bce565b348015610b4557600080fd5b5061049f60135481565b348015610b5b57600080fd5b5061049f7f5a0d83767d4126552394eb2329da90473e586fc5aba8bb65fa0a89eab7b7ed9681565b348015610b8f57600080fd5b5061049f60125481565b348015610ba557600080fd5b5061049f600c5481565b348015610bbb57600080fd5b5061049f610bca366004612e5e565b60166020526000908152604090205481565b348015610be857600080fd5b506104c0610bf7366004612f00565b611bdf565b348015610c0857600080fd5b5060025461049f565b348015610c1d57600080fd5b5061049f60145481565b348015610c3357600080fd5b506104c0610c42366004612e5e565b611c05565b6104c0610c55366004612e5e565b611c86565b60006001600160e01b03198216637965db0b60e01b1480610c8b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b426009541115610cb45760405163107923a760e31b815260040160405180910390fd5b600a544210610cd657604051631345387760e21b815260040160405180910390fd5b60025460085410610cfd57604051600162610ef560e01b0319815260040160405180910390fd5b60005460ff1615610d215760405163ab35696f60e01b815260040160405180910390fd5b7f37d939d3e74b5b71e0cc8bd1b0441b84c6178d5327650d34256f5ae6dd04e7da610d4b81611f7a565b3480600003610d6d57604051631f2a200560e01b815260040160405180910390fd5b6000610d7c8585346001611f84565b90506000610d8a8234612f3b565b9050610d9834600187612184565b6006546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610de5576040519150601f19603f3d011682016040523d82523d6000602084013e610dea565b606091505b5050905080610e0c576040516312171d8360e31b815260040160405180910390fd5b50505050505050565b600080600260085481548110610e2d57610e2d612f4e565b906000526020600020906003020190506000610e4b60085485612300565b90508482600101548360000154610e629190612f3b565b10610ea7578084610e7657620f4240610e80565b670de0b6b3a76400005b610e949067ffffffffffffffff1687612f64565b610e9e9190612f7b565b92505050610c8b565b60085460018301548354600091610ebd91612f3b565b905060008387610ed057620f4240610eda565b670de0b6b3a76400005b610eee9067ffffffffffffffff1684612f64565b610ef89190612f7b565b90506000610f06838a612f3b565b905083610f1281612f9d565b60025490955085109050610f8d57670de0b6b3a7640000811115610f495760405163f5bc32b960e01b815260040160405180910390fd5b8488610f5857620f4240610f62565b670de0b6b3a76400005b610f769067ffffffffffffffff168b612f64565b610f809190612f7b565b9650505050505050610c8b565b600060028581548110610fa257610fa2612f4e565b906000526020600020906003020190506000610fbe868b612300565b90506000818b610fd157620f4240610fdb565b670de0b6b3a76400005b610fef9067ffffffffffffffff1686612f64565b610ff99190612f7b565b835490915084111561101e576040516319673efb60e01b815260040160405180910390fd5b6110288186612fb6565b9c9b505050505050505050505050565b60095442111561105b57604051633a40cba560e01b815260040160405180910390fd5b600061106681611f7a565b816001600160a01b03811661108e5760405163d92e233d60e01b815260040160405180910390fd5b600380546001600160a01b0319166001600160a01b0385169081179091556040519081527ff4d3c017881f423ae1b90356aa82340e58fc69ef9d5f62b8173ab37efd82cda6906020015b60405180910390a1505050565b60006110f081611f7a565b816001600160a01b0381166111185760405163d92e233d60e01b815260040160405180910390fd5b601980546001600160a01b0319166001600160a01b0385169081179091556040519081527f289bbae0ea70335cbf65fe6b98fb2accecc8e05d472b305215b3777016b77c82906020016110d8565b600080600080600080600854905060016002805490506111869190612f3b565b81146111c0576002611199826001612fb6565b815481106111a9576111a9612f4e565b9060005260206000209060030201600201546111c3565b60005b9150600281815481106111d8576111d8612f4e565b906000526020600020906003020160000154600282815481106111fd576111fd612f4e565b9060005260206000209060030201600101546002838154811061122257611222612f4e565b9060005260206000209060030201600201546008549550955095509550509091929394565b6000828152600160208190526040909120015461126381611f7a565b61126d8383612381565b505050565b6001600160a01b03811633146112e75760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6112f182826123ec565b5050565b600061130081611f7a565b4282108061130f5750600a5482105b1561132d57604051630259fe9960e31b815260040160405180910390fd5b600a8290556040518281527fc7f2746aefc0d137a95df385581a90d8b73240b3e6724f8ecb10b58e88f0fb8b906020015b60405180910390a15050565b600061137581611f7a565b61137d612453565b50565b600080600061138f85856124a5565b909250905061139e8183612fb6565b95945050505050565b600b544210156113ca57604051631476ab8f60e21b815260040160405180910390fd5b33600090815260176020526040812080549082905560108054919283926113f2908490612fb6565b909155505060035461140e906001600160a01b031633836126ef565b60408051338152602081018390527f896e034966eaaf1adc54acc0f257056febbd300c9e47182cf761982cf1f5e430910160405180910390a150565b600061145581611f7a565b816001600160a01b03811661147d5760405163d92e233d60e01b815260040160405180910390fd5b600480546001600160a01b0319166001600160a01b0385169081179091556040519081527face9c845c72ee50f604af432a638f2ce8e5569081d2f9ebf55f9249e8d1cb16b906020016110d8565b600080826114e0576114db612752565b6114e8565b6114e86127d7565b90506000836114fa57620f4240611504565b670de0b6b3a76400005b67ffffffffffffffff16905060008261151d8388612f64565b6115279190612f7b565b9695505050505050565b60095442111561155457604051633a40cba560e01b815260040160405180910390fd5b600061155f81611f7a565b816001600160a01b0381166115875760405163d92e233d60e01b815260040160405180910390fd5b600580546001600160a01b0319166001600160a01b0385169081179091556040519081527f5dff00aa253c8624dbbbd26ea7b6b161327e629f5ed7a0cde6ff3c66cceb909f906020016110d8565b60006115e081611f7a565b4282101561160157604051630259fe9960e31b815260040160405180910390fd5b6009544211801561161457506000600954115b1561163257604051633a40cba560e01b815260040160405180910390fd5b50600955565b600061164381611f7a565b600a544210806116565750600254600854105b1561167457604051633376277360e11b815260040160405180910390fd5b600654600354611691916001600160a01b039182169116846126ef565b600654604080516001600160a01b039092168252602082018490527f9888ee435d83f5dd1c4078939976257b04d549d49c55b83ae02b8d0db27cffe5910161135e565b60006116df81611f7a565b61137d61282d565b600281815481106116f757600080fd5b600091825260209091206003909102018054600182015460029092015490925083565b600061172581611f7a565b816001600160a01b03811661174d5760405163d92e233d60e01b815260040160405180910390fd5b601a80546001600160a01b0319166001600160a01b0385169081179091556040519081527fbc5f7de1382947006f88b9949ee812f6e548cf626d05f05ec1f89d53431ed773906020016110d8565b4260095411156117be5760405163107923a760e31b815260040160405180910390fd5b600a5442106117e057604051631345387760e21b815260040160405180910390fd5b6002546008541061180757604051600162610ef560e01b0319815260040160405180910390fd5b60005460ff161561182b5760405163ab35696f60e01b815260040160405180910390fd5b818060000361184d57604051631f2a200560e01b815260040160405180910390fd5b600061185c8333866000611f84565b9050600061186a8286612f3b565b60065460045491925061188c916001600160a01b03908116913391168461286a565b6004546118a4906001600160a01b031633308561286a565b6118b085600033612184565b5050505050565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b33600090815260156020526040902054801561198c573360009081526015602052604081208190556011805483929061191c908490612fb6565b9091555050604051600090339083908381818185875af1925050503d8060008114611963576040519150601f19603f3d011682016040523d82523d6000602084013e611968565b606091505b505090508061198a576040516312171d8360e31b815260040160405180910390fd5b505b3360009081526016602052604090205480156119e257336000908152601660205260408120819055601280548392906119c6908490612fb6565b90915550506004546119e2906001600160a01b031633836126ef565b60408051338152602081018490529081018290527fd6f2c8500df5b44f11e9e48b91ff9f1b9d81bc496d55570c2b1b75bf65243f519060600161135e565b60008082611a3557611a30612752565b611a3d565b611a3d6127d7565b9050600083611a4f57620f4240611a59565b670de0b6b3a76400005b67ffffffffffffffff16905060008161151d8488612f64565b6000611a7d81611f7a565b42821015611a9e57604051630259fe9960e31b815260040160405180910390fd5b600b8290556040518281527f1a66a9a718e2565946ebf4c2bcbc4d656a6b4608789d037ac0982ea10b5e28a59060200161135e565b6003546040516370a0823160e01b81526001600160a01b03838116600483015260009283928392909116906370a0823190602401602060405180830381865afa158015611b24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b489190612fc9565b600480546040516370a0823160e01b81526001600160a01b038881169382019390935292955016906370a0823190602401602060405180830381865afa158015611b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bba9190612fc9565b929492936001600160a01b03163192915050565b6000611bd981611f7a565b50600755565b60008281526001602081905260409091200154611bfb81611f7a565b61126d83836123ec565b6000611c1081611f7a565b816001600160a01b038116611c385760405163d92e233d60e01b815260040160405180910390fd5b600680546001600160a01b0319166001600160a01b0385169081179091556040519081527fc714d22a2f08b695f81e7c707058db484aa5b4d6b4c9fd64beb10fe85832f608906020016110d8565b426009541115611ca95760405163107923a760e31b815260040160405180910390fd5b600a544210611ccb57604051631345387760e21b815260040160405180910390fd5b60025460085410611cf257604051600162610ef560e01b0319815260040160405180910390fd5b60005460ff1615611d165760405163ab35696f60e01b815260040160405180910390fd5b3480600003611d3857604051631f2a200560e01b815260040160405180910390fd5b6000611d478333346001611f84565b90506000611d558234612f3b565b9050611d6334600133612184565b6006546040516000916001600160a01b03169083908381818185875af1925050503d8060008114611db0576040519150601f19603f3d011682016040523d82523d6000602084013e611db5565b606091505b50509050806118b0576040516312171d8360e31b815260040160405180910390fd5b60606000611de6836002612f64565b611df1906002612fb6565b67ffffffffffffffff811115611e0957611e09612fe2565b6040519080825280601f01601f191660200182016040528015611e33576020820181803683370190505b509050600360fc1b81600081518110611e4e57611e4e612f4e565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e7d57611e7d612f4e565b60200101906001600160f81b031916908160001a9053506000611ea1846002612f64565b611eac906001612fb6565b90505b6001811115611f24576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611ee057611ee0612f4e565b1a60f81b828281518110611ef657611ef6612f4e565b60200101906001600160f81b031916908160001a90535060049490941c93611f1d81612ff8565b9050611eaf565b508315611f735760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016112de565b9392505050565b61137d81336128a8565b6000836001600160a01b0316856001600160a01b031603611fb857604051630eea526d60e11b815260040160405180910390fd5b6001600160a01b0385161561213b57611ff17fe00fc2961631f2e419a1f77b354a70792e583ec1a56bcf6658345db5fc199663866118b7565b15801561202557506120237f26e71ca4ebbe2ad7a241ad6ee71933b9dc517e7e17183658d1481a0e529332b9866118b7565b155b156120435760405163e80568eb60e01b815260040160405180910390fd5b600061206f7f26e71ca4ebbe2ad7a241ad6ee71933b9dc517e7e17183658d1481a0e529332b9876118b7565b905060008161208057600d54612084565b600c545b90506127106120938287612f64565b61209d9190612f7b565b925083156120f1576001600160a01b038716600090815260156020526040812080548592906120cd908490612fb6565b9250508190555082601360008282546120e69190612fb6565b909155506121389050565b6001600160a01b03871660009081526016602052604081208054859290612119908490612fb6565b9250508190555082601460008282546121329190612fb6565b90915550505b50505b604080518281526001600160a01b03871660208201527f8461b2ab6ae0c1da6f05d11a1ab44788dd560b0fb10e8c5d91b3accb50ca584b910160405180910390a1949350505050565b6001600160a01b038116600090815260186020526040812054906121a88585611a20565b6001600160a01b0384166000908152601860205260408120805492935083929091906121d5908490612fb6565b909155505060075482106121ee576118b085858561290c565b60075485906121fd8385612fb6565b1115612247576007546000906122138486612fb6565b61221d9190612f3b565b9050600061222b82886114cb565b905061223881888861290c565b6122428189612f3b565b925050505b60008061225483886124a5565b9150915061226182612a99565b80156122705761227081612a99565b61227a8183612fb6565b6001600160a01b038716600090815260176020526040812080549091906122a2908490612fb6565b909155507f745f661b8143944fb883f50694ebed3a871e43c451d9d4bf4648a9d551d7e47a9050866122d48385612fb6565b604080516001600160a01b03909316835260208301919091520160405180910390a15050505050505050565b6000806002848154811061231657612316612f4e565b9060005260206000209060030201905060008361233a57612335612752565b612342565b6123426127d7565b612351906402540be400612f64565b60028301549091506305f5e1009060009061236c8484612f64565b6123769190612f7b565b979650505050505050565b61238b82826118b7565b6112f15760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6123f682826118b7565b156112f15760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61245b612b4b565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60008060006002600854815481106124bf576124bf612f4e565b6000918252602082206008546003909202019250906124de8287612300565b90506000866124f057620f42406124fa565b670de0b6b3a76400005b67ffffffffffffffff1661250e838a612f64565b6125189190612f7b565b9050808460010154856000015461252f9190612f3b565b10612543579450600093506126e892505050565b8261254d81612f9d565b600186015486549195506000925061256491612f3b565b90506000838961257757620f4240612581565b670de0b6b3a76400005b6125959067ffffffffffffffff1684612f64565b61259f9190612f7b565b905060006125ad828c612f3b565b9050806000036125ca5782600098509850505050505050506126e8565b60025486106126495760008a6125e357620f42406125ed565b670de0b6b3a76400005b67ffffffffffffffff166126018784612f64565b61260b9190612f7b565b9050670de0b6b3a76400008111612630578360009950995050505050505050506126e8565b60405163f5bc32b960e01b815260040160405180910390fd5b60006002878154811061265e5761265e612f4e565b90600052602060002090600302019050600061267a888d612300565b905060008c61268c57620f4240612696565b670de0b6b3a76400005b67ffffffffffffffff166126aa8386612f64565b6126b49190612f7b565b83549091508111156126d9576040516319673efb60e01b815260040160405180910390fd5b949a5093985050505050505050505b9250929050565b6040516001600160a01b03831660248201526044810182905261126d90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612b96565b600080601960009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156127a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127cc919061302e565b509195945050505050565b600080601a60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156127a8573d6000803e3d6000fd5b612835612c68565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124883390565b6040516001600160a01b03808516602483015283166044820152606481018290526128a29085906323b872dd60e01b9060840161271b565b50505050565b6128b282826118b7565b6112f1576128ca816001600160a01b03166014611dd7565b6128d5836020611dd7565b6040516020016128e69291906130a2565b60408051601f198184030181529082905262461bcd60e51b82526112de91600401613117565b60008061291985856124a5565b9150915061292682612a99565b80156129355761293581612a99565b6003546005546001600160a01b039182169163095ea7b391166129588486612fb6565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156129a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129c7919061314a565b506005546001600160a01b031663deec5a8e846129e48486612fb6565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612a2a57600080fd5b505af1158015612a3e573d6000803e3d6000fd5b505050507f745f661b8143944fb883f50694ebed3a871e43c451d9d4bf4648a9d551d7e47a838284612a709190612fb6565b604080516001600160a01b03909316835260208301919091520160405180910390a15050505050565b6000600260085481548110612ab057612ab0612f4e565b906000526020600020906003020190508181600101548260000154612ad59190612f3b565b1015612af457604051636707edbb60e01b815260040160405180910390fd5b81816001016000828254612b089190612fb6565b9250508190555081600f6000828254612b219190612fb6565b909155505080546001820154036112f15760088054906000612b4283612f9d565b91905055505050565b60005460ff16612b945760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016112de565b565b6000612beb826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612cae9092919063ffffffff16565b80519091501561126d5780806020019051810190612c09919061314a565b61126d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016112de565b60005460ff1615612b945760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016112de565b6060612cbd8484600085612cc5565b949350505050565b606082471015612d265760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016112de565b6001600160a01b0385163b612d7d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016112de565b600080866001600160a01b03168587604051612d999190613167565b60006040518083038185875af1925050503d8060008114612dd6576040519150601f19603f3d011682016040523d82523d6000602084013e612ddb565b606091505b509150915061237682828660608315612df5575081611f73565b825115612e055782518084602001fd5b8160405162461bcd60e51b81526004016112de9190613117565b600060208284031215612e3157600080fd5b81356001600160e01b031981168114611f7357600080fd5b6001600160a01b038116811461137d57600080fd5b600060208284031215612e7057600080fd5b8135611f7381612e49565b60008060408385031215612e8e57600080fd5b8235612e9981612e49565b91506020830135612ea981612e49565b809150509250929050565b801515811461137d57600080fd5b60008060408385031215612ed557600080fd5b823591506020830135612ea981612eb4565b600060208284031215612ef957600080fd5b5035919050565b60008060408385031215612f1357600080fd5b823591506020830135612ea981612e49565b634e487b7160e01b600052601160045260246000fd5b81810381811115610c8b57610c8b612f25565b634e487b7160e01b600052603260045260246000fd5b8082028115828204841417610c8b57610c8b612f25565b600082612f9857634e487b7160e01b600052601260045260246000fd5b500490565b600060018201612faf57612faf612f25565b5060010190565b80820180821115610c8b57610c8b612f25565b600060208284031215612fdb57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b60008161300757613007612f25565b506000190190565b805169ffffffffffffffffffff8116811461302957600080fd5b919050565b600080600080600060a0868803121561304657600080fd5b61304f8661300f565b94506020860151935060408601519250606086015191506130726080870161300f565b90509295509295909350565b60005b83811015613099578181015183820152602001613081565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516130da81601785016020880161307e565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161310b81602884016020880161307e565b01602801949350505050565b602081526000825180602084015261313681604085016020870161307e565b601f01601f19169190910160400192915050565b60006020828403121561315c57600080fd5b8151611f7381612eb4565b6000825161317981846020870161307e565b919091019291505056fea2646970667358221220f46ddf62afd8b94c1f04e956df3f70035449484685876c5a638e7e5aa23ddaf164736f6c634300081200335a0d83767d4126552394eb2329da90473e586fc5aba8bb65fa0a89eab7b7ed96000000000000000000000000ad9c91e521c50e98ba457c47b0ddd785fa8f022a000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000092a451708e1542fe5f8be9a6cf6a7a96c01238cd0000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b84190000000000000000000000003e7d1eab13ad0104d2750b8863b489d65364e32d0000000000000000000000008bd5124e003e8734c978a2e6aa492345c4586ab4
Deployed Bytecode
0x6080604052600436106103d25760003560e01c806374991569116101fd5780639e6c295911610118578063c0cdc40b116100ab578063d547741f1161007a578063d547741f14610bdc578063da28cef714610bfc578063de9ed18014610c11578063f0f4426014610c27578063f40f4a2414610c4757600080fd5b8063c0cdc40b14610b4f578063c83cdd3d14610b83578063c9882a7814610b99578063c9ed5d7914610baf57600080fd5b8063ab447007116100e7578063ab44700714610ad9578063abd3f61214610af9578063b1a5056b14610b19578063b5030d9d14610b3957600080fd5b80639e6c295914610a61578063a217fddf14610a77578063a530eee914610a8c578063a8f6b7dd14610aac57600080fd5b8063888ea12011610190578063932adad71161015f578063932adad7146109ec5780639675e1f514610a025780639b4b2c9c14610a365780639d3d53a514610a4b57600080fd5b8063888ea120146109805780638973123c146109965780638b137deb146109ac57806391d14854146109cc57600080fd5b8063845ddcb2116101cc578063845ddcb2146108c457806384d24226146108ff5780638590fb521461092c578063862a8e451461096057600080fd5b8063749915691461084f5780637ff081a21461086f578063842c201e1461088f5780638456cb59146108af57600080fd5b8063340f3af6116102ed5780635bce515a1161028057806361d027b31161024f57806361d027b3146107cc57806363b20117146107ec57806368fe5090146108025780637291066e1461082257600080fd5b80635bce515a1461075e5780635bf5d54c1461077e5780635c975abb146107945780635e6f6045146107ac57600080fd5b8063408012c6116102bc578063408012c6146106f357806348c54b9d1461071357806358979bfe146107285780635912c0461461074857600080fd5b8063340f3af61461067e57806336568abe1461069e5780633e68f7d2146106be5780633f4ba83a146106de57600080fd5b8063206b79a31161036557806326d070991161033457806326d07099146105eb57806328010118146106285780632f2ff15d1461063e5780632f48ab7d1461065e57600080fd5b8063206b79a31461052e57806321b23e341461056257806321c880ae14610582578063248a9ca3146105ba57600080fd5b80630b7017fb116103a15780630b7017fb146104c25780630db4bad0146104d85780631b9aa425146104ee5780631f5ae8b81461050e57600080fd5b806301ffc9a7146103de57806303811d7d14610413578063078902631461046b5780630b51b9e7146104ad57600080fd5b366103d957005b600080fd5b3480156103ea57600080fd5b506103fe6103f9366004612e1f565b610c5a565b60405190151581526020015b60405180910390f35b34801561041f57600080fd5b5061045661042e366004612e5e565b6001600160a01b03166000908152601560209081526040808320546016909252909120549091565b6040805192835260208301919091520161040a565b34801561047757600080fd5b5061049f7f37d939d3e74b5b71e0cc8bd1b0441b84c6178d5327650d34256f5ae6dd04e7da81565b60405190815260200161040a565b6104c06104bb366004612e7b565b610c91565b005b3480156104ce57600080fd5b5061049f600d5481565b3480156104e457600080fd5b5061049f600b5481565b3480156104fa57600080fd5b5061049f610509366004612ec2565b610e15565b34801561051a57600080fd5b506104c0610529366004612e5e565b611038565b34801561053a57600080fd5b5061049f7fe00fc2961631f2e419a1f77b354a70792e583ec1a56bcf6658345db5fc19966381565b34801561056e57600080fd5b506104c061057d366004612e5e565b6110e5565b34801561058e57600080fd5b50601a546105a2906001600160a01b031681565b6040516001600160a01b03909116815260200161040a565b3480156105c657600080fd5b5061049f6105d5366004612ee7565b6000908152600160208190526040909120015490565b3480156105f757600080fd5b50610600611166565b604080519586526020860194909452928401919091526060830152608082015260a00161040a565b34801561063457600080fd5b5061049f60075481565b34801561064a57600080fd5b506104c0610659366004612f00565b611247565b34801561066a57600080fd5b506004546105a2906001600160a01b031681565b34801561068a57600080fd5b506019546105a2906001600160a01b031681565b3480156106aa57600080fd5b506104c06106b9366004612f00565b611272565b3480156106ca57600080fd5b506104c06106d9366004612ee7565b6112f5565b3480156106ea57600080fd5b506104c061136a565b3480156106ff57600080fd5b5061049f61070e366004612ec2565b611380565b34801561071f57600080fd5b506104c06113a7565b34801561073457600080fd5b506104c0610743366004612e5e565b61144a565b34801561075457600080fd5b5061049f60105481565b34801561076a57600080fd5b5061049f610779366004612ec2565b6114cb565b34801561078a57600080fd5b5061049f60085481565b3480156107a057600080fd5b5060005460ff166103fe565b3480156107b857600080fd5b506005546105a2906001600160a01b031681565b3480156107d857600080fd5b506006546105a2906001600160a01b031681565b3480156107f857600080fd5b5061049f600f5481565b34801561080e57600080fd5b506003546105a2906001600160a01b031681565b34801561082e57600080fd5b5061049f61083d366004612e5e565b60186020526000908152604090205481565b34801561085b57600080fd5b506104c061086a366004612e5e565b611531565b34801561087b57600080fd5b506104c061088a366004612ee7565b6115d5565b34801561089b57600080fd5b506104c06108aa366004612ee7565b611638565b3480156108bb57600080fd5b506104c06116d4565b3480156108d057600080fd5b506108e46108df366004612ee7565b6116e7565b6040805193845260208401929092529082015260600161040a565b34801561090b57600080fd5b5061049f61091a366004612e5e565b60176020526000908152604090205481565b34801561093857600080fd5b5061049f7f26e71ca4ebbe2ad7a241ad6ee71933b9dc517e7e17183658d1481a0e529332b981565b34801561096c57600080fd5b506104c061097b366004612e5e565b61171a565b34801561098c57600080fd5b5061049f600a5481565b3480156109a257600080fd5b5061049f60095481565b3480156109b857600080fd5b506104c06109c7366004612f00565b61179b565b3480156109d857600080fd5b506103fe6109e7366004612f00565b6118b7565b3480156109f857600080fd5b5061049f60115481565b348015610a0e57600080fd5b5061049f7f57e4e247b12ee5912158e65fd38c875b821462f9b4443e84dfcbd215f6b6ac4f81565b348015610a4257600080fd5b506104c06118e2565b348015610a5757600080fd5b5061049f600e5481565b348015610a6d57600080fd5b5061049f61271081565b348015610a8357600080fd5b5061049f600081565b348015610a9857600080fd5b5061049f610aa7366004612ec2565b611a20565b348015610ab857600080fd5b5061049f610ac7366004612e5e565b60156020526000908152604090205481565b348015610ae557600080fd5b506104c0610af4366004612ee7565b611a72565b348015610b0557600080fd5b506108e4610b14366004612e5e565b611ad3565b348015610b2557600080fd5b506104c0610b34366004612ee7565b611bce565b348015610b4557600080fd5b5061049f60135481565b348015610b5b57600080fd5b5061049f7f5a0d83767d4126552394eb2329da90473e586fc5aba8bb65fa0a89eab7b7ed9681565b348015610b8f57600080fd5b5061049f60125481565b348015610ba557600080fd5b5061049f600c5481565b348015610bbb57600080fd5b5061049f610bca366004612e5e565b60166020526000908152604090205481565b348015610be857600080fd5b506104c0610bf7366004612f00565b611bdf565b348015610c0857600080fd5b5060025461049f565b348015610c1d57600080fd5b5061049f60145481565b348015610c3357600080fd5b506104c0610c42366004612e5e565b611c05565b6104c0610c55366004612e5e565b611c86565b60006001600160e01b03198216637965db0b60e01b1480610c8b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b426009541115610cb45760405163107923a760e31b815260040160405180910390fd5b600a544210610cd657604051631345387760e21b815260040160405180910390fd5b60025460085410610cfd57604051600162610ef560e01b0319815260040160405180910390fd5b60005460ff1615610d215760405163ab35696f60e01b815260040160405180910390fd5b7f37d939d3e74b5b71e0cc8bd1b0441b84c6178d5327650d34256f5ae6dd04e7da610d4b81611f7a565b3480600003610d6d57604051631f2a200560e01b815260040160405180910390fd5b6000610d7c8585346001611f84565b90506000610d8a8234612f3b565b9050610d9834600187612184565b6006546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610de5576040519150601f19603f3d011682016040523d82523d6000602084013e610dea565b606091505b5050905080610e0c576040516312171d8360e31b815260040160405180910390fd5b50505050505050565b600080600260085481548110610e2d57610e2d612f4e565b906000526020600020906003020190506000610e4b60085485612300565b90508482600101548360000154610e629190612f3b565b10610ea7578084610e7657620f4240610e80565b670de0b6b3a76400005b610e949067ffffffffffffffff1687612f64565b610e9e9190612f7b565b92505050610c8b565b60085460018301548354600091610ebd91612f3b565b905060008387610ed057620f4240610eda565b670de0b6b3a76400005b610eee9067ffffffffffffffff1684612f64565b610ef89190612f7b565b90506000610f06838a612f3b565b905083610f1281612f9d565b60025490955085109050610f8d57670de0b6b3a7640000811115610f495760405163f5bc32b960e01b815260040160405180910390fd5b8488610f5857620f4240610f62565b670de0b6b3a76400005b610f769067ffffffffffffffff168b612f64565b610f809190612f7b565b9650505050505050610c8b565b600060028581548110610fa257610fa2612f4e565b906000526020600020906003020190506000610fbe868b612300565b90506000818b610fd157620f4240610fdb565b670de0b6b3a76400005b610fef9067ffffffffffffffff1686612f64565b610ff99190612f7b565b835490915084111561101e576040516319673efb60e01b815260040160405180910390fd5b6110288186612fb6565b9c9b505050505050505050505050565b60095442111561105b57604051633a40cba560e01b815260040160405180910390fd5b600061106681611f7a565b816001600160a01b03811661108e5760405163d92e233d60e01b815260040160405180910390fd5b600380546001600160a01b0319166001600160a01b0385169081179091556040519081527ff4d3c017881f423ae1b90356aa82340e58fc69ef9d5f62b8173ab37efd82cda6906020015b60405180910390a1505050565b60006110f081611f7a565b816001600160a01b0381166111185760405163d92e233d60e01b815260040160405180910390fd5b601980546001600160a01b0319166001600160a01b0385169081179091556040519081527f289bbae0ea70335cbf65fe6b98fb2accecc8e05d472b305215b3777016b77c82906020016110d8565b600080600080600080600854905060016002805490506111869190612f3b565b81146111c0576002611199826001612fb6565b815481106111a9576111a9612f4e565b9060005260206000209060030201600201546111c3565b60005b9150600281815481106111d8576111d8612f4e565b906000526020600020906003020160000154600282815481106111fd576111fd612f4e565b9060005260206000209060030201600101546002838154811061122257611222612f4e565b9060005260206000209060030201600201546008549550955095509550509091929394565b6000828152600160208190526040909120015461126381611f7a565b61126d8383612381565b505050565b6001600160a01b03811633146112e75760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6112f182826123ec565b5050565b600061130081611f7a565b4282108061130f5750600a5482105b1561132d57604051630259fe9960e31b815260040160405180910390fd5b600a8290556040518281527fc7f2746aefc0d137a95df385581a90d8b73240b3e6724f8ecb10b58e88f0fb8b906020015b60405180910390a15050565b600061137581611f7a565b61137d612453565b50565b600080600061138f85856124a5565b909250905061139e8183612fb6565b95945050505050565b600b544210156113ca57604051631476ab8f60e21b815260040160405180910390fd5b33600090815260176020526040812080549082905560108054919283926113f2908490612fb6565b909155505060035461140e906001600160a01b031633836126ef565b60408051338152602081018390527f896e034966eaaf1adc54acc0f257056febbd300c9e47182cf761982cf1f5e430910160405180910390a150565b600061145581611f7a565b816001600160a01b03811661147d5760405163d92e233d60e01b815260040160405180910390fd5b600480546001600160a01b0319166001600160a01b0385169081179091556040519081527face9c845c72ee50f604af432a638f2ce8e5569081d2f9ebf55f9249e8d1cb16b906020016110d8565b600080826114e0576114db612752565b6114e8565b6114e86127d7565b90506000836114fa57620f4240611504565b670de0b6b3a76400005b67ffffffffffffffff16905060008261151d8388612f64565b6115279190612f7b565b9695505050505050565b60095442111561155457604051633a40cba560e01b815260040160405180910390fd5b600061155f81611f7a565b816001600160a01b0381166115875760405163d92e233d60e01b815260040160405180910390fd5b600580546001600160a01b0319166001600160a01b0385169081179091556040519081527f5dff00aa253c8624dbbbd26ea7b6b161327e629f5ed7a0cde6ff3c66cceb909f906020016110d8565b60006115e081611f7a565b4282101561160157604051630259fe9960e31b815260040160405180910390fd5b6009544211801561161457506000600954115b1561163257604051633a40cba560e01b815260040160405180910390fd5b50600955565b600061164381611f7a565b600a544210806116565750600254600854105b1561167457604051633376277360e11b815260040160405180910390fd5b600654600354611691916001600160a01b039182169116846126ef565b600654604080516001600160a01b039092168252602082018490527f9888ee435d83f5dd1c4078939976257b04d549d49c55b83ae02b8d0db27cffe5910161135e565b60006116df81611f7a565b61137d61282d565b600281815481106116f757600080fd5b600091825260209091206003909102018054600182015460029092015490925083565b600061172581611f7a565b816001600160a01b03811661174d5760405163d92e233d60e01b815260040160405180910390fd5b601a80546001600160a01b0319166001600160a01b0385169081179091556040519081527fbc5f7de1382947006f88b9949ee812f6e548cf626d05f05ec1f89d53431ed773906020016110d8565b4260095411156117be5760405163107923a760e31b815260040160405180910390fd5b600a5442106117e057604051631345387760e21b815260040160405180910390fd5b6002546008541061180757604051600162610ef560e01b0319815260040160405180910390fd5b60005460ff161561182b5760405163ab35696f60e01b815260040160405180910390fd5b818060000361184d57604051631f2a200560e01b815260040160405180910390fd5b600061185c8333866000611f84565b9050600061186a8286612f3b565b60065460045491925061188c916001600160a01b03908116913391168461286a565b6004546118a4906001600160a01b031633308561286a565b6118b085600033612184565b5050505050565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b33600090815260156020526040902054801561198c573360009081526015602052604081208190556011805483929061191c908490612fb6565b9091555050604051600090339083908381818185875af1925050503d8060008114611963576040519150601f19603f3d011682016040523d82523d6000602084013e611968565b606091505b505090508061198a576040516312171d8360e31b815260040160405180910390fd5b505b3360009081526016602052604090205480156119e257336000908152601660205260408120819055601280548392906119c6908490612fb6565b90915550506004546119e2906001600160a01b031633836126ef565b60408051338152602081018490529081018290527fd6f2c8500df5b44f11e9e48b91ff9f1b9d81bc496d55570c2b1b75bf65243f519060600161135e565b60008082611a3557611a30612752565b611a3d565b611a3d6127d7565b9050600083611a4f57620f4240611a59565b670de0b6b3a76400005b67ffffffffffffffff16905060008161151d8488612f64565b6000611a7d81611f7a565b42821015611a9e57604051630259fe9960e31b815260040160405180910390fd5b600b8290556040518281527f1a66a9a718e2565946ebf4c2bcbc4d656a6b4608789d037ac0982ea10b5e28a59060200161135e565b6003546040516370a0823160e01b81526001600160a01b03838116600483015260009283928392909116906370a0823190602401602060405180830381865afa158015611b24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b489190612fc9565b600480546040516370a0823160e01b81526001600160a01b038881169382019390935292955016906370a0823190602401602060405180830381865afa158015611b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bba9190612fc9565b929492936001600160a01b03163192915050565b6000611bd981611f7a565b50600755565b60008281526001602081905260409091200154611bfb81611f7a565b61126d83836123ec565b6000611c1081611f7a565b816001600160a01b038116611c385760405163d92e233d60e01b815260040160405180910390fd5b600680546001600160a01b0319166001600160a01b0385169081179091556040519081527fc714d22a2f08b695f81e7c707058db484aa5b4d6b4c9fd64beb10fe85832f608906020016110d8565b426009541115611ca95760405163107923a760e31b815260040160405180910390fd5b600a544210611ccb57604051631345387760e21b815260040160405180910390fd5b60025460085410611cf257604051600162610ef560e01b0319815260040160405180910390fd5b60005460ff1615611d165760405163ab35696f60e01b815260040160405180910390fd5b3480600003611d3857604051631f2a200560e01b815260040160405180910390fd5b6000611d478333346001611f84565b90506000611d558234612f3b565b9050611d6334600133612184565b6006546040516000916001600160a01b03169083908381818185875af1925050503d8060008114611db0576040519150601f19603f3d011682016040523d82523d6000602084013e611db5565b606091505b50509050806118b0576040516312171d8360e31b815260040160405180910390fd5b60606000611de6836002612f64565b611df1906002612fb6565b67ffffffffffffffff811115611e0957611e09612fe2565b6040519080825280601f01601f191660200182016040528015611e33576020820181803683370190505b509050600360fc1b81600081518110611e4e57611e4e612f4e565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e7d57611e7d612f4e565b60200101906001600160f81b031916908160001a9053506000611ea1846002612f64565b611eac906001612fb6565b90505b6001811115611f24576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611ee057611ee0612f4e565b1a60f81b828281518110611ef657611ef6612f4e565b60200101906001600160f81b031916908160001a90535060049490941c93611f1d81612ff8565b9050611eaf565b508315611f735760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016112de565b9392505050565b61137d81336128a8565b6000836001600160a01b0316856001600160a01b031603611fb857604051630eea526d60e11b815260040160405180910390fd5b6001600160a01b0385161561213b57611ff17fe00fc2961631f2e419a1f77b354a70792e583ec1a56bcf6658345db5fc199663866118b7565b15801561202557506120237f26e71ca4ebbe2ad7a241ad6ee71933b9dc517e7e17183658d1481a0e529332b9866118b7565b155b156120435760405163e80568eb60e01b815260040160405180910390fd5b600061206f7f26e71ca4ebbe2ad7a241ad6ee71933b9dc517e7e17183658d1481a0e529332b9876118b7565b905060008161208057600d54612084565b600c545b90506127106120938287612f64565b61209d9190612f7b565b925083156120f1576001600160a01b038716600090815260156020526040812080548592906120cd908490612fb6565b9250508190555082601360008282546120e69190612fb6565b909155506121389050565b6001600160a01b03871660009081526016602052604081208054859290612119908490612fb6565b9250508190555082601460008282546121329190612fb6565b90915550505b50505b604080518281526001600160a01b03871660208201527f8461b2ab6ae0c1da6f05d11a1ab44788dd560b0fb10e8c5d91b3accb50ca584b910160405180910390a1949350505050565b6001600160a01b038116600090815260186020526040812054906121a88585611a20565b6001600160a01b0384166000908152601860205260408120805492935083929091906121d5908490612fb6565b909155505060075482106121ee576118b085858561290c565b60075485906121fd8385612fb6565b1115612247576007546000906122138486612fb6565b61221d9190612f3b565b9050600061222b82886114cb565b905061223881888861290c565b6122428189612f3b565b925050505b60008061225483886124a5565b9150915061226182612a99565b80156122705761227081612a99565b61227a8183612fb6565b6001600160a01b038716600090815260176020526040812080549091906122a2908490612fb6565b909155507f745f661b8143944fb883f50694ebed3a871e43c451d9d4bf4648a9d551d7e47a9050866122d48385612fb6565b604080516001600160a01b03909316835260208301919091520160405180910390a15050505050505050565b6000806002848154811061231657612316612f4e565b9060005260206000209060030201905060008361233a57612335612752565b612342565b6123426127d7565b612351906402540be400612f64565b60028301549091506305f5e1009060009061236c8484612f64565b6123769190612f7b565b979650505050505050565b61238b82826118b7565b6112f15760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6123f682826118b7565b156112f15760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61245b612b4b565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60008060006002600854815481106124bf576124bf612f4e565b6000918252602082206008546003909202019250906124de8287612300565b90506000866124f057620f42406124fa565b670de0b6b3a76400005b67ffffffffffffffff1661250e838a612f64565b6125189190612f7b565b9050808460010154856000015461252f9190612f3b565b10612543579450600093506126e892505050565b8261254d81612f9d565b600186015486549195506000925061256491612f3b565b90506000838961257757620f4240612581565b670de0b6b3a76400005b6125959067ffffffffffffffff1684612f64565b61259f9190612f7b565b905060006125ad828c612f3b565b9050806000036125ca5782600098509850505050505050506126e8565b60025486106126495760008a6125e357620f42406125ed565b670de0b6b3a76400005b67ffffffffffffffff166126018784612f64565b61260b9190612f7b565b9050670de0b6b3a76400008111612630578360009950995050505050505050506126e8565b60405163f5bc32b960e01b815260040160405180910390fd5b60006002878154811061265e5761265e612f4e565b90600052602060002090600302019050600061267a888d612300565b905060008c61268c57620f4240612696565b670de0b6b3a76400005b67ffffffffffffffff166126aa8386612f64565b6126b49190612f7b565b83549091508111156126d9576040516319673efb60e01b815260040160405180910390fd5b949a5093985050505050505050505b9250929050565b6040516001600160a01b03831660248201526044810182905261126d90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612b96565b600080601960009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156127a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127cc919061302e565b509195945050505050565b600080601a60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156127a8573d6000803e3d6000fd5b612835612c68565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124883390565b6040516001600160a01b03808516602483015283166044820152606481018290526128a29085906323b872dd60e01b9060840161271b565b50505050565b6128b282826118b7565b6112f1576128ca816001600160a01b03166014611dd7565b6128d5836020611dd7565b6040516020016128e69291906130a2565b60408051601f198184030181529082905262461bcd60e51b82526112de91600401613117565b60008061291985856124a5565b9150915061292682612a99565b80156129355761293581612a99565b6003546005546001600160a01b039182169163095ea7b391166129588486612fb6565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156129a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129c7919061314a565b506005546001600160a01b031663deec5a8e846129e48486612fb6565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612a2a57600080fd5b505af1158015612a3e573d6000803e3d6000fd5b505050507f745f661b8143944fb883f50694ebed3a871e43c451d9d4bf4648a9d551d7e47a838284612a709190612fb6565b604080516001600160a01b03909316835260208301919091520160405180910390a15050505050565b6000600260085481548110612ab057612ab0612f4e565b906000526020600020906003020190508181600101548260000154612ad59190612f3b565b1015612af457604051636707edbb60e01b815260040160405180910390fd5b81816001016000828254612b089190612fb6565b9250508190555081600f6000828254612b219190612fb6565b909155505080546001820154036112f15760088054906000612b4283612f9d565b91905055505050565b60005460ff16612b945760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016112de565b565b6000612beb826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612cae9092919063ffffffff16565b80519091501561126d5780806020019051810190612c09919061314a565b61126d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016112de565b60005460ff1615612b945760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016112de565b6060612cbd8484600085612cc5565b949350505050565b606082471015612d265760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016112de565b6001600160a01b0385163b612d7d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016112de565b600080866001600160a01b03168587604051612d999190613167565b60006040518083038185875af1925050503d8060008114612dd6576040519150601f19603f3d011682016040523d82523d6000602084013e612ddb565b606091505b509150915061237682828660608315612df5575081611f73565b825115612e055782518084602001fd5b8160405162461bcd60e51b81526004016112de9190613117565b600060208284031215612e3157600080fd5b81356001600160e01b031981168114611f7357600080fd5b6001600160a01b038116811461137d57600080fd5b600060208284031215612e7057600080fd5b8135611f7381612e49565b60008060408385031215612e8e57600080fd5b8235612e9981612e49565b91506020830135612ea981612e49565b809150509250929050565b801515811461137d57600080fd5b60008060408385031215612ed557600080fd5b823591506020830135612ea981612eb4565b600060208284031215612ef957600080fd5b5035919050565b60008060408385031215612f1357600080fd5b823591506020830135612ea981612e49565b634e487b7160e01b600052601160045260246000fd5b81810381811115610c8b57610c8b612f25565b634e487b7160e01b600052603260045260246000fd5b8082028115828204841417610c8b57610c8b612f25565b600082612f9857634e487b7160e01b600052601260045260246000fd5b500490565b600060018201612faf57612faf612f25565b5060010190565b80820180821115610c8b57610c8b612f25565b600060208284031215612fdb57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b60008161300757613007612f25565b506000190190565b805169ffffffffffffffffffff8116811461302957600080fd5b919050565b600080600080600060a0868803121561304657600080fd5b61304f8661300f565b94506020860151935060408601519250606086015191506130726080870161300f565b90509295509295909350565b60005b83811015613099578181015183820152602001613081565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516130da81601785016020880161307e565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161310b81602884016020880161307e565b01602801949350505050565b602081526000825180602084015261313681604085016020870161307e565b601f01601f19169190910160400192915050565b60006020828403121561315c57600080fd5b8151611f7381612eb4565b6000825161317981846020870161307e565b919091019291505056fea2646970667358221220f46ddf62afd8b94c1f04e956df3f70035449484685876c5a638e7e5aa23ddaf164736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ad9c91e521c50e98ba457c47b0ddd785fa8f022a000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000092a451708e1542fe5f8be9a6cf6a7a96c01238cd0000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b84190000000000000000000000003e7d1eab13ad0104d2750b8863b489d65364e32d0000000000000000000000008bd5124e003e8734c978a2e6aa492345c4586ab4
-----Decoded View---------------
Arg [0] : _token (address): 0xAD9c91e521c50E98Ba457c47B0dDd785FA8F022a
Arg [1] : _usdt (address): 0xdAC17F958D2ee523a2206206994597C13D831ec7
Arg [2] : _vestingContract (address): 0x92a451708e1542fe5f8Be9a6CF6a7a96C01238Cd
Arg [3] : _priceFeedEth (address): 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419
Arg [4] : _priceFeedUsdt (address): 0x3E7d1eAB13ad0104d2750B8863b489D65364e32D
Arg [5] : _treasury (address): 0x8Bd5124E003E8734C978a2e6aA492345C4586AB4
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000ad9c91e521c50e98ba457c47b0ddd785fa8f022a
Arg [1] : 000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7
Arg [2] : 00000000000000000000000092a451708e1542fe5f8be9a6cf6a7a96c01238cd
Arg [3] : 0000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419
Arg [4] : 0000000000000000000000003e7d1eab13ad0104d2750b8863b489d65364e32d
Arg [5] : 0000000000000000000000008bd5124e003e8734c978a2e6aa492345c4586ab4
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BASE | 100.00% | $3,298.22 | 0.00107311 | $3.54 |
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.