Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 ERC20 ***
Holders
84
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
6,976.335304501 ERC20 ***Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GOODAI
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.17; // SPDX-License-Identifier: Apache-2.0 import "./SafeMath.sol"; import "./Address.sol"; import "./RewardsToken.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Router.sol"; import "./IUniswapV2Pair.sol"; import "./IRewardsTracker.sol"; contract GOODAI is RewardsToken { using SafeMath for uint256; using Address for address; uint256 private constant REWARDS_TRACKER_IDENTIFIER = 1; uint256 private constant TOTAL_SUPPLY = 1000000 * (10**9); uint256 public maxTxAmount = TOTAL_SUPPLY.mul(2).div(1000); uint256 private platformFee = 0; uint256 private _previousPlatformFee = platformFee; uint256 public devFee = 0; uint256 public sellDevFee = 0; uint256 private _previousDevFee = devFee; uint256 public rewardsFee = 0; uint256 public sellRewardsFee = 0; uint256 private _previousRewardsFee = rewardsFee; uint256 public launchSellFee = 0; uint256 private _previousLaunchSellFee = launchSellFee; uint256 public burnFee = 0; uint256 public sellburnFee = 0; uint256 private _previousBurnFee = burnFee; mapping(address => bool) public uniswapv2contracts; address payable private _platformWalletAddress = payable(0xa3840EB5aaF97e86C58BA2AfaC18F70B0b0987dC); address payable private _devWalletAddress = payable(0xacBC29FdbcF63ACe46F6B7503285b2481721D377); uint256 public blacklistDeadline = 0; uint256 public launchSellFeeDeadline = 0; IRewardsTracker private _rewardsTracker; bool public useGenericTransfer = true; bool private preparedForLaunch = false; mapping(address => bool) public isBlacklisted; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isExcludedFromMaxTx; mapping(address => bool) private burnAddresses; IUniswapV2Router public uniswapV2Router; address public uniswapV2Pair; bool currentlySwapping; bool public swapAndRedirectEthFeesEnabled = true; uint256 private minTokensBeforeSwap = 1000 * 10**9; // Events and modifiers // Events and modifiers event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndRedirectEthFeesUpdated(bool enabled); event OnSwapAndRedirectEthFees( uint256 tokensSwapped, uint256 ethToDevWallet ); event MaxTxAmountUpdated(uint256 maxTxAmount); event GenericTransferChanged(bool useGenericTransfer); event ExcludeFromFees(address wallet); event IncludeInFees(address wallet); event DevWalletUpdated(address newDevWallet); event RewardsTrackerUpdated(address newRewardsTracker); event RouterUpdated(address newRouterAddress); event FeesChanged( uint256 newDevFee, uint256 newSellDevFee, uint256 newRewardsFee, uint256 newSellRewardsFee, uint256 newburnFee, uint256 newSellburnFee ); event LaunchFeeUpdated(uint256 newLaunchSellFee); modifier lockTheSwap() { currentlySwapping = true; _; currentlySwapping = false; } constructor() ERC20("Good Idea AI", "GoodAI") { IUniswapV2Router _uniswapV2Router = IUniswapV2Router( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; // mint supply _mint(owner(), TOTAL_SUPPLY); // exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; // internal exclude from max tx _isExcludedFromMaxTx[owner()] = true; _isExcludedFromMaxTx[address(this)] = true; // exclude from rewards excludeFromRewards(address(this)); excludeFromRewards(address(0xdead)); excludeFromRewards(uniswapV2Pair); //Add main Pair to mapping uniswapv2contracts[uniswapV2Pair] = true; } function decimals() public view virtual override returns (uint8) { return 9; } function _transfer( address from, address to, uint256 amount ) internal virtual override { // launch preparation require(preparedForLaunch || _msgSender() == owner(), "Contract has not been prepared for launch and user is not owner"); // blacklist require( !isBlacklisted[from] && !isBlacklisted[to], "Blacklisted address" ); if(useGenericTransfer){ super._transfer(from, to, amount); return; } if (!uniswapv2contracts[from] && !uniswapv2contracts[to] && !burnAddresses[to]) { super._transfer(from, to, amount); return; } if ( !_isExcludedFromMaxTx[from] && !_isExcludedFromMaxTx[to] ) { require( amount <= maxTxAmount, "Transfer amount exceeds the maxTxAmount" ); } // sell fees uint256 baseRewardsFee = rewardsFee; uint256 baseDevFee = devFee; uint256 baseBurnFee = burnFee; if (to == uniswapV2Pair) { devFee = sellDevFee; rewardsFee = sellRewardsFee; burnFee = sellburnFee; if (launchSellFeeDeadline >= block.timestamp) { devFee = devFee.add(launchSellFee); } } // start swap to ETH uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap; if ( overMinTokenBalance && !currentlySwapping && from != uniswapV2Pair && swapAndRedirectEthFeesEnabled ) { // add dev fee swapAndRedirectEthFees(contractTokenBalance); } if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { removeAllFee(); } //this is the transferfunction (uint256 tTransferAmount, uint256 tFee) = _getValues(amount); _balances[from] = _balances[from].sub(amount); _balances[to] = _balances[to].add(tTransferAmount); _takeFee(tFee); //This is to calculate how many tokens should be burned. This is separate from the 'calculateFees' function because this mixes all of it into 1 single fee amount. if(trueBurn){ uint256 burnFeeTotal = calculateBurnFee(amount); _burn(address(this), burnFeeTotal); } if(burnAddresses[to]){ uint256 burnamount = tTransferAmount - 1; _burn(to, burnamount); } if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { restoreAllFee(); } // restore fees devFee = baseDevFee; rewardsFee = baseRewardsFee; burnFee = baseBurnFee; emit Transfer(from, to, tTransferAmount); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _getValues(uint256 tAmount) private view returns (uint256, uint256) { uint256 tFee = calculateFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _takeFee(uint256 fee) private { _balances[address(this)] = _balances[address(this)].add(fee); } function calculateFee(uint256 _amount) private view returns (uint256) { uint256 totalFee = devFee.add(rewardsFee).add(platformFee).add(burnFee); return _amount.mul(totalFee).div(10000); } function removeAllFee() private { if (devFee == 0 && rewardsFee == 0 && platformFee == 0 && burnFee == 0) return; _previousPlatformFee = platformFee; _previousDevFee = devFee; _previousRewardsFee = rewardsFee; _previousBurnFee = burnFee; platformFee = 0; devFee = 0; rewardsFee = 0; burnFee = 0; } function restoreAllFee() private { platformFee = _previousPlatformFee; devFee = _previousDevFee; rewardsFee = _previousRewardsFee; burnFee = _previousBurnFee; } function swapAndRedirectEthFees(uint256 contractTokenBalance) private lockTheSwap { uint256 totalRedirectFee = devFee.add(rewardsFee).add(platformFee); if (totalRedirectFee == 0) return; // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the fee events include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(contractTokenBalance); uint256 newBalance = address(this).balance.sub(initialBalance); if (newBalance > 0) { // send to platform wallet uint256 platformBalance = newBalance.mul(platformFee).div(totalRedirectFee); sendEthToWallet(_platformWalletAddress, platformBalance); // // send to rewards wallet // uint256 rewardsBalance = newBalance.mul(rewardsFee).div(totalRedirectFee); if (rewardsBalance > 0 && address(_rewardsTracker) != address(0)) { try _rewardsTracker.addAllocation{value: rewardsBalance}(REWARDS_TRACKER_IDENTIFIER) {} catch {} } // // send to dev wallet // uint256 devBalance = newBalance.mul(devFee).div(totalRedirectFee); sendEthToWallet(_devWalletAddress, devBalance); emit OnSwapAndRedirectEthFees(contractTokenBalance, newBalance); } } function sendEthToWallet(address wallet, uint256 amount) private { if (amount > 0) { payable(wallet).transfer(amount); } } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function prepareForLaunch() external onlyOwner { require(!preparedForLaunch, "Already prepared for launch"); preparedForLaunch = true; blacklistDeadline = block.timestamp + 1 hours; launchSellFeeDeadline = block.timestamp + 1 days; } function setUseGenericTransfer(bool genericTransfer) external onlyOwner { useGenericTransfer = genericTransfer; emit GenericTransferChanged(genericTransfer); } function blacklistAddress(address account, bool value) public onlyOwner { if (value) { require(block.timestamp < blacklistDeadline, "The ability to blacklist accounts has been disabled."); } isBlacklisted[account] = value; } // for 0.5% input 5, for 1% input 10 function setMaxTxPercent(uint256 newMaxTx) external onlyOwner { require(newMaxTx >= 5, "Max TX should be above 0.5%"); maxTxAmount = TOTAL_SUPPLY.mul(newMaxTx).div(1000); emit MaxTxAmountUpdated(maxTxAmount); } function isExcludedFromFee(address account) external view returns (bool) { return _isExcludedFromFee[account]; } function excludeFromFee(address account) external onlyOwner { _isExcludedFromFee[account] = true; emit ExcludeFromFees(account); } function includeInFee(address account) external onlyOwner { _isExcludedFromFee[account] = false; emit IncludeInFees(account); } function setFees( uint256 newDevFee, uint256 newSellDevFee, uint256 newRewardsFee, uint256 newSellRewardsFee, uint256 newburnFee, uint256 newSellburnFee ) external onlyOwner { require( newDevFee <= 10000 && newSellDevFee <= 10000 && newRewardsFee <= 10000 && newSellRewardsFee <= 10000 && newburnFee <= 10000 && newSellburnFee <= 10000, "Fees exceed maximum allowed value" ); devFee = newDevFee; sellDevFee = newSellDevFee; rewardsFee = newRewardsFee; sellRewardsFee = newSellRewardsFee; burnFee = newburnFee; sellburnFee = newSellburnFee; emit FeesChanged(newDevFee, newSellDevFee, newRewardsFee, newSellRewardsFee, newburnFee, newSellburnFee); } function setLaunchSellFee(uint256 newLaunchSellFee) external onlyOwner { require(newLaunchSellFee <= 2500, "Maximum launch sell fee is 25%"); launchSellFee = newLaunchSellFee; emit LaunchFeeUpdated(newLaunchSellFee); } function setDevWallet(address payable newDevWallet) external onlyOwner { _devWalletAddress = newDevWallet; emit DevWalletUpdated(newDevWallet); } function setRewardsTracker(address payable newRewardsTracker) external onlyOwner { _rewardsTracker = IRewardsTracker(newRewardsTracker); emit RewardsTrackerUpdated(newRewardsTracker); } function setRouterAddress(address newRouter) external onlyOwner { IUniswapV2Router _newUniswapRouter = IUniswapV2Router(newRouter); uniswapV2Pair = IUniswapV2Factory(_newUniswapRouter.factory()) .createPair(address(this), _newUniswapRouter.WETH()); uniswapV2Router = _newUniswapRouter; } function setSwapAndRedirectEthFeesEnabled(bool enabled) external onlyOwner { swapAndRedirectEthFeesEnabled = enabled; emit SwapAndRedirectEthFeesUpdated(enabled); } function setMinTokensBeforeSwap(uint256 minTokens) external onlyOwner { minTokensBeforeSwap = minTokens * 10**9; emit MinTokensBeforeSwapUpdated(minTokens); } // emergency claim functions function manualSwap() external onlyOwner { uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualSend() external onlyOwner { uint256 contractEthBalance = address(this).balance; sendEthToWallet(_devWalletAddress, contractEthBalance); } //Burn Functions // bool public trueBurn = false; //mgiht want to switch to private function calculateBurnFee(uint256 _amount) internal view returns(uint256) { return _amount.mul(burnFee).div(10000); } function changeTrueBurn(bool value) public onlyOwner{ trueBurn = value; } //Adding Address to list of pairs function addPairAddress(address _newPair, bool value) public onlyOwner{ uniswapv2contracts[_newPair] = value; } //Adding Address to list of burn contract function addBurnAddress(address _wallet, bool value) public onlyOwner{ burnAddresses[_wallet] = value; } }
pragma solidity ^0.8.4; // SPDX-License-Identifier: Apache-2.0 interface IRewardsTracker { function addAllocation(uint identifier) external payable; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT interface IUniswapV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; }
pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); }
pragma solidity ^0.8.17; // SPDX-License-Identifier: Apache-2.0 import "./ERC20.sol"; import "./Ownable.sol"; abstract contract RewardsToken is ERC20, Ownable { address[] private excludedFromRewards; mapping(address => bool) private isAddressExcluded; event ExcludeFromRewards(address wallet); event IncludeInRewards(address wallet); function deleteExcluded(uint index) internal { require(index < excludedFromRewards.length, "Index is greater than array length"); excludedFromRewards[index] = excludedFromRewards[excludedFromRewards.length - 1]; excludedFromRewards.pop(); } function getExcludedBalances() internal view returns (uint256) { uint256 totalExcludedHoldings = 0; for (uint i = 0; i < excludedFromRewards.length; i++) { totalExcludedHoldings += balanceOf(excludedFromRewards[i]); } return totalExcludedHoldings; } function excludeFromRewards(address wallet) public onlyOwner { require(!isAddressExcluded[wallet], "Address is already excluded from rewards"); excludedFromRewards.push(wallet); isAddressExcluded[wallet] = true; emit ExcludeFromRewards(wallet); } function includeInRewards(address wallet) external onlyOwner { require(isAddressExcluded[wallet], "Address is not excluded from rewards"); for (uint i = 0; i < excludedFromRewards.length; i++) { if (excludedFromRewards[i] == wallet) { isAddressExcluded[wallet] = false; deleteExcluded(i); break; } } emit IncludeInRewards(wallet); } function isExcludedFromRewards(address wallet) external view returns (bool) { return isAddressExcluded[wallet]; } function getAllExcludedFromRewards() external view returns (address[] memory) { return excludedFromRewards; } function getRewardsSupply() public view returns (uint256) { return _totalSupply - getExcludedBalances(); } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}( data ); 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() external virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) external virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.sol"; import "./SafeMath.sol"; import "./Address.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; using Address for address; mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 internal _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newDevWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellDevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRewardsFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellRewardsFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newburnFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellburnFee","type":"uint256"}],"name":"FeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"useGenericTransfer","type":"bool"}],"name":"GenericTransferChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"LaunchFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethToDevWallet","type":"uint256"}],"name":"OnSwapAndRedirectEthFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRewardsTracker","type":"address"}],"name":"RewardsTrackerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRouterAddress","type":"address"}],"name":"RouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndRedirectEthFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"addBurnAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"addPairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"changeTrueBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"excludeFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllExcludedFromRewards","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRewardsSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"includeInRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFeeDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prepareForLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellburnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newDevWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDevFee","type":"uint256"},{"internalType":"uint256","name":"newSellDevFee","type":"uint256"},{"internalType":"uint256","name":"newRewardsFee","type":"uint256"},{"internalType":"uint256","name":"newSellRewardsFee","type":"uint256"},{"internalType":"uint256","name":"newburnFee","type":"uint256"},{"internalType":"uint256","name":"newSellburnFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"setLaunchSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokens","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newRewardsTracker","type":"address"}],"name":"setRewardsTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndRedirectEthFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"genericTransfer","type":"bool"}],"name":"setUseGenericTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndRedirectEthFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"trueBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"uniswapv2contracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useGenericTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052620000266103e86200001f66038d7ea4c68000600262000472565b9062000505565b6008555f6009819055600a819055600b819055600c819055600d819055600e819055600f819055601081905560118190556012819055601381905560148190556015819055601780546001600160a01b031990811673a3840eb5aaf97e86c58ba2afac18f70b0b0987dc179091556018805490911673acbc29fdbcf63ace46f6b7503285b2481721d3771790556019819055601a55601b805461ffff60a01b1916600160a01b1790556021805460ff60a81b1916600160a81b17905564e8d4a510006022556023805460ff1916905534801562000101575f80fd5b506040518060400160405280600c81526020016b476f6f64204964656120414960a01b81525060405180604001604052806006815260200165476f6f64414960d01b8152508160039081620001579190620008e4565b506004620001668282620008e4565b5050505f6200017a6200054e60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3505f737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200021c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002429190620009ac565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002b49190620009ac565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620002ff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003259190620009ac565b602180546001600160a01b03199081166001600160a01b03938416179091556020805490911683831617905560055462000368911666038d7ea4c6800062000552565b6001601d5f620003806005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081015f908120805494151560ff19958616179055308152601d909252812080549092166001908117909255601e90620003d86005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081015f908120805494151560ff1995861617905530808252601e909352208054909216600117909155620004239062000634565b6200043061dead62000634565b60215462000447906001600160a01b031662000634565b506021546001600160a01b03165f908152601660205260409020805460ff1916600117905562000a85565b5f825f036200048357505f620004ff565b5f620004908385620009e8565b9050826200049f858362000a02565b14620004fc5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b90505b92915050565b5f620004fc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620007a460201b60201c565b3390565b6001600160a01b038216620005aa5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004f3565b600254620005b99082620007e3565b6002556001600160a01b0382165f90815260208190526040902054620005e09082620007e3565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006905760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620004f3565b6001600160a01b0381165f9081526007602052604090205460ff16156200070b5760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b6064820152608401620004f3565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b0384169081179091555f81815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd6910160405180910390a150565b5f8183620007c75760405162461bcd60e51b8152600401620004f3919062000a22565b505f620007d5848662000a02565b95945050505050565b505050565b5f80620007f1838562000a6f565b905083811015620004fc5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004f3565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200086e57607f821691505b6020821081036200088d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620007de575f81815260208120601f850160051c81016020861015620008bb5750805b601f850160051c820191505b81811015620008dc57828155600101620008c7565b505050505050565b81516001600160401b0381111562000900576200090062000845565b620009188162000911845462000859565b8462000893565b602080601f8311600181146200094e575f8415620009365750858301515b5f19600386901b1c1916600185901b178555620008dc565b5f85815260208120601f198616915b828110156200097e578886015182559484019460019091019084016200095d565b50858210156200099c57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620009bd575f80fd5b81516001600160a01b0381168114620004fc575f80fd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620004ff57620004ff620009d4565b5f8262000a1d57634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020808352835180828501525f5b8181101562000a4f5785810183015185820160400152820162000a31565b505f604082860101526040601f19601f8301168501019250505092915050565b80820180821115620004ff57620004ff620009d4565b612f1b8062000a935f395ff3fe608060405260043610610344575f3560e01c8063715018a6116101bd578063af01f2b2116100f2578063e89bcca211610092578063f42938901161006d578063f42938901461099f578063fce589d8146109b3578063fe575a87146109c8578063fffa1dd9146109f6575f80fd5b8063e89bcca214610942578063ea2f0b3714610961578063f2fde38b14610980575f80fd5b8063bb8d5131116100cd578063bb8d5131146108b5578063cf0c018b146108ca578063d543dbeb146108df578063dd62ed3e146108fe575f80fd5b8063af01f2b214610862578063b609995e14610877578063ba385abb14610896575f80fd5b806395d89b411161015d578063a1ab19a311610138578063a1ab19a3146107ef578063a457c2d714610803578063a9059cbb14610822578063ada46d0a14610841575f80fd5b806395d89b41146107a657806398850b64146107ba578063a0d82dc5146107da575f80fd5b806386f6c3c11161019857806386f6c3c1146107365780638c0b5e22146107555780638da5cb5b1461076a578063903cdec014610787575f80fd5b8063715018a6146106e457806373e7714a146106f85780638421b50714610717575f80fd5b8063313ce5671161029357806348a46473116102335780635342acb41161020e5780635342acb41461064f57806354959363146106865780636827e7641461069b57806370a08231146106b0575f80fd5b806348a46473146105fd57806349bd5a5e1461061c57806351bc3c851461063b575f80fd5b806341cb87fc1161026e57806341cb87fc146105725780634337ac5b14610591578063437823ec146105bf578063455a4396146105de575f80fd5b8063313ce56714610519578063393344b6146105345780633950935114610553575f80fd5b80631694505e116102fe57806323b872dd116102d957806323b872dd146104ad57806326b6308d146104cc57806328ba35e2146104eb5780632bb14e1d14610504575f80fd5b80631694505e1461044357806318160ddd1461047a5780631f53ac021461048e575f80fd5b806306fdde031461034f578063095ea7b3146103795780630e832273146103a8578063111e0376146103df578063113201fa1461040057806312ee302d14610420575f80fd5b3661034b57005b5f80fd5b34801561035a575f80fd5b50610363610a0a565b6040516103709190612ac0565b60405180910390f35b348015610384575f80fd5b50610398610393366004612b1f565b610a9a565b6040519015158152602001610370565b3480156103b3575f80fd5b506103986103c2366004612b49565b6001600160a01b03165f9081526007602052604090205460ff1690565b3480156103ea575f80fd5b506103fe6103f9366004612b49565b610ab0565b005b34801561040b575f80fd5b5060215461039890600160a81b900460ff1681565b34801561042b575f80fd5b5061043560145481565b604051908152602001610370565b34801561044e575f80fd5b50602054610462906001600160a01b031681565b6040516001600160a01b039091168152602001610370565b348015610485575f80fd5b50600254610435565b348015610499575f80fd5b506103fe6104a8366004612b49565b610bf6565b3480156104b8575f80fd5b506103986104c7366004612b64565b610c6e565b3480156104d7575f80fd5b506103fe6104e6366004612bb6565b610cd5565b3480156104f6575f80fd5b506023546103989060ff1681565b34801561050f575f80fd5b50610435600e5481565b348015610524575f80fd5b5060405160098152602001610370565b34801561053f575f80fd5b506103fe61054e366004612bcf565b610d4c565b34801561055e575f80fd5b5061039861056d366004612b1f565b610da0565b34801561057d575f80fd5b506103fe61058c366004612b49565b610dd5565b34801561059c575f80fd5b506103986105ab366004612b49565b60166020525f908152604090205460ff1681565b3480156105ca575f80fd5b506103fe6105d9366004612b49565b610f72565b3480156105e9575f80fd5b506103fe6105f8366004612bcf565b610fef565b348015610608575f80fd5b506103fe610617366004612c02565b6110b7565b348015610627575f80fd5b50602154610462906001600160a01b031681565b348015610646575f80fd5b506103fe611122565b34801561065a575f80fd5b50610398610669366004612b49565b6001600160a01b03165f908152601d602052604090205460ff1690565b348015610691575f80fd5b5061043560115481565b3480156106a6575f80fd5b50610435600b5481565b3480156106bb575f80fd5b506104356106ca366004612b49565b6001600160a01b03165f9081526020819052604090205490565b3480156106ef575f80fd5b506103fe611167565b348015610703575f80fd5b506103fe610712366004612bb6565b6111da565b348015610722575f80fd5b506103fe610731366004612c02565b611217565b348015610741575f80fd5b506103fe610750366004612c19565b6112c8565b348015610760575f80fd5b5061043560085481565b348015610775575f80fd5b506005546001600160a01b0316610462565b348015610792575f80fd5b506103fe6107a1366004612bcf565b611410565b3480156107b1575f80fd5b50610363611464565b3480156107c5575f80fd5b50601b5461039890600160a01b900460ff1681565b3480156107e5575f80fd5b50610435600c5481565b3480156107fa575f80fd5b506103fe611473565b34801561080e575f80fd5b5061039861081d366004612b1f565b61152b565b34801561082d575f80fd5b5061039861083c366004612b1f565b611578565b34801561084c575f80fd5b50610855611584565b6040516103709190612c9a565b34801561086d575f80fd5b50610435601a5481565b348015610882575f80fd5b506103fe610891366004612b49565b6115e3565b3480156108a1575f80fd5b506103fe6108b0366004612b49565b61173b565b3480156108c0575f80fd5b50610435600f5481565b3480156108d5575f80fd5b5061043560195481565b3480156108ea575f80fd5b506103fe6108f9366004612c02565b6117b3565b348015610909575f80fd5b50610435610918366004612cac565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561094d575f80fd5b506103fe61095c366004612bb6565b611880565b34801561096c575f80fd5b506103fe61097b366004612b49565b6118f7565b34801561098b575f80fd5b506103fe61099a366004612b49565b611971565b3480156109aa575f80fd5b506103fe611a5b565b3480156109be575f80fd5b5061043560135481565b3480156109d3575f80fd5b506103986109e2366004612b49565b601c6020525f908152604090205460ff1681565b348015610a01575f80fd5b50610435611a9d565b606060038054610a1990612ce3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4590612ce3565b8015610a905780601f10610a6757610100808354040283529160200191610a90565b820191905f5260205f20905b815481529060010190602001808311610a7357829003601f168201915b5050505050905090565b5f610aa6338484611ab8565b5060015b92915050565b6005546001600160a01b03163314610ae35760405162461bcd60e51b8152600401610ada90612d15565b60405180910390fd5b6001600160a01b0381165f9081526007602052604090205460ff1615610b5c5760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b6064820152608401610ada565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b0384169081179091555f81815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691015b60405180910390a150565b6005546001600160a01b03163314610c205760405162461bcd60e51b8152600401610ada90612d15565b601880546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90602001610beb565b5f610c7a848484611bdc565b610ccb8433610cc685604051806060016040528060288152602001612e99602891396001600160a01b038a165f90815260016020908152604080832033845290915290205491906120cb565b611ab8565b5060019392505050565b6005546001600160a01b03163314610cff5760405162461bcd60e51b8152600401610ada90612d15565b60218054821515600160a81b0260ff60a81b199091161790556040517fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b990610beb90831515815260200190565b6005546001600160a01b03163314610d765760405162461bcd60e51b8152600401610ada90612d15565b6001600160a01b03919091165f908152601660205260409020805460ff1916911515919091179055565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610aa6918590610cc69086612103565b6005546001600160a01b03163314610dff5760405162461bcd60e51b8152600401610ada90612d15565b5f819050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e3f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e639190612d4a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed29190612d4a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610f1c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f409190612d4a565b602180546001600160a01b039283166001600160a01b0319918216179091556020805493909216921691909117905550565b6005546001600160a01b03163314610f9c5760405162461bcd60e51b8152600401610ada90612d15565b6001600160a01b0381165f818152601d6020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369101610beb565b6005546001600160a01b031633146110195760405162461bcd60e51b8152600401610ada90612d15565b801561108d57601954421061108d5760405162461bcd60e51b815260206004820152603460248201527f546865206162696c69747920746f20626c61636b6c697374206163636f756e7460448201527339903430b9903132b2b7103234b9b0b13632b21760611b6064820152608401610ada565b6001600160a01b03919091165f908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110e15760405162461bcd60e51b8152600401610ada90612d15565b6110ef81633b9aca00612d79565b6022556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0090602001610beb565b6005546001600160a01b0316331461114c5760405162461bcd60e51b8152600401610ada90612d15565b305f9081526020819052604090205461116481612168565b50565b6005546001600160a01b031633146111915760405162461bcd60e51b8152600401610ada90612d15565b6005546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146112045760405162461bcd60e51b8152600401610ada90612d15565b6023805460ff1916911515919091179055565b6005546001600160a01b031633146112415760405162461bcd60e51b8152600401610ada90612d15565b6109c48111156112935760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c206665652069732032352500006044820152606401610ada565b60118190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c590602001610beb565b6005546001600160a01b031633146112f25760405162461bcd60e51b8152600401610ada90612d15565b612710861115801561130657506127108511155b801561131457506127108411155b801561132257506127108311155b801561133057506127108211155b801561133e57506127108111155b6113945760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b6064820152608401610ada565b600b869055600c859055600e849055600f839055601382905560148190556040805187815260208101879052908101859052606081018490526080810183905260a081018290527f4f3b60f00ab30635825994816ab704331aa84771a97a768ba4ce3e7bfd888f429060c00160405180910390a1505050505050565b6005546001600160a01b0316331461143a5760405162461bcd60e51b8152600401610ada90612d15565b6001600160a01b03919091165f908152601f60205260409020805460ff1916911515919091179055565b606060048054610a1990612ce3565b6005546001600160a01b0316331461149d5760405162461bcd60e51b8152600401610ada90612d15565b601b54600160a81b900460ff16156114f75760405162461bcd60e51b815260206004820152601b60248201527f416c726561647920707265706172656420666f72206c61756e636800000000006044820152606401610ada565b601b805460ff60a81b1916600160a81b17905561151642610e10612d90565b6019556115264262015180612d90565b601a55565b5f610aa63384610cc685604051806060016040528060258152602001612ec160259139335f9081526001602090815260408083206001600160a01b038d16845290915290205491906120cb565b5f610aa6338484611bdc565b60606006805480602002602001604051908101604052809291908181526020018280548015610a9057602002820191905f5260205f20905b81546001600160a01b031681526001909101906020018083116115bc575050505050905090565b6005546001600160a01b0316331461160d5760405162461bcd60e51b8152600401610ada90612d15565b6001600160a01b0381165f9081526007602052604090205460ff166116805760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b6064820152608401610ada565b5f5b60065481101561170157816001600160a01b0316600682815481106116a9576116a9612da3565b5f918252602090912001546001600160a01b0316036116ef576001600160a01b0382165f908152600760205260409020805460ff191690556116ea816122b9565b611701565b806116f981612db7565b915050611682565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d58959433490602001610beb565b6005546001600160a01b031633146117655760405162461bcd60e51b8152600401610ada90612d15565b601b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a90602001610beb565b6005546001600160a01b031633146117dd5760405162461bcd60e51b8152600401610ada90612d15565b600581101561182e5760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e352500000000006044820152606401610ada565b61184b6103e861184566038d7ea4c68000846123bf565b9061243d565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610beb565b6005546001600160a01b031633146118aa5760405162461bcd60e51b8152600401610ada90612d15565b601b8054821515600160a01b0260ff60a01b199091161790556040517f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf590610beb90831515815260200190565b6005546001600160a01b031633146119215760405162461bcd60e51b8152600401610ada90612d15565b6001600160a01b0381165f818152601d6020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d9101610beb565b6005546001600160a01b0316331461199b5760405162461bcd60e51b8152600401610ada90612d15565b6001600160a01b038116611a005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ada565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611a855760405162461bcd60e51b8152600401610ada90612d15565b6018544790611164906001600160a01b03168261247e565b5f611aa66124bb565b600254611ab39190612dcf565b905090565b6001600160a01b038316611b1a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ada565b6001600160a01b038216611b7b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ada565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601b54600160a81b900460ff1680611bfe57506005546001600160a01b031633145b611c705760405162461bcd60e51b815260206004820152603f60248201527f436f6e747261637420686173206e6f74206265656e207072657061726564206660448201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e6572006064820152608401610ada565b6001600160a01b0383165f908152601c602052604090205460ff16158015611cb057506001600160a01b0382165f908152601c602052604090205460ff16155b611cf25760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610ada565b601b54600160a01b900460ff1615611d1457611d0f838383612526565b505050565b6001600160a01b0383165f9081526016602052604090205460ff16158015611d5457506001600160a01b0382165f9081526016602052604090205460ff16155b8015611d7857506001600160a01b0382165f908152601f602052604090205460ff16155b15611d8857611d0f838383612526565b6001600160a01b0383165f908152601e602052604090205460ff16158015611dc857506001600160a01b0382165f908152601e602052604090205460ff16155b15611e2f57600854811115611e2f5760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b6064820152608401610ada565b600e54600b546013546021546001600160a01b0390811690861603611e7c57600c54600b55600f54600e55601454601355601a544211611e7c57601154600b54611e7891612103565b600b555b305f9081526020819052604090205460225481108015908190611ea95750602154600160a01b900460ff16155b8015611ec357506021546001600160a01b03898116911614155b8015611ed85750602154600160a81b900460ff165b15611ee657611ee6826126a6565b6001600160a01b0388165f908152601d602052604090205460ff1680611f2357506001600160a01b0387165f908152601d602052604090205460ff165b15611f3057611f3061284f565b5f80611f3b886128a9565b6001600160a01b038c165f908152602081905260409020549193509150611f6290896128cd565b6001600160a01b03808c165f9081526020819052604080822093909355908b1681522054611f909083612103565b6001600160a01b038a165f90815260208190526040902055611fb18161290e565b60235460ff1615611fd4575f611fc689612939565b9050611fd23082612955565b505b6001600160a01b0389165f908152601f602052604090205460ff161561200e575f612000600184612dcf565b905061200c8a82612955565b505b6001600160a01b038a165f908152601d602052604090205460ff168061204b57506001600160a01b0389165f908152601d602052604090205460ff165b1561206d5761206d600a54600955600d54600b55601054600e55601554601355565b600b869055600e87905560138590556040518281526001600160a01b038a811691908c16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350505050505050505050565b5f81848411156120ee5760405162461bcd60e51b8152600401610ada9190612ac0565b505f6120fa8486612dcf565b95945050505050565b5f8061210f8385612d90565b9050838110156121615760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610ada565b9392505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061219b5761219b612da3565b6001600160a01b039283166020918202929092018101919091528054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156121f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122159190612d4a565b8160018151811061222857612228612da3565b6001600160a01b03928316602091820292909201810191909152546122509130911684611ab8565b60205460405163791ac94760e01b81526001600160a01b039091169063791ac947906122889085905f90869030904290600401612de2565b5f604051808303815f87803b15801561229f575f80fd5b505af11580156122b1573d5f803e3d5ffd5b505050505050565b60065481106123155760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b6064820152608401610ada565b6006805461232590600190612dcf565b8154811061233557612335612da3565b5f91825260209091200154600680546001600160a01b03909216918390811061236057612360612da3565b905f5260205f20015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550600680548061239c5761239c612e1d565b5f8281526020902081015f1990810180546001600160a01b031916905501905550565b5f825f036123ce57505f610aaa565b5f6123d98385612d79565b9050826123e68583612e31565b146121615760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610ada565b5f61216183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a5d565b80156124b7576040516001600160a01b0383169082156108fc029083905f818181858888f19350505050158015611d0f573d5f803e3d5ffd5b5050565b5f80805b60065481101561252057612502600682815481106124df576124df612da3565b5f9182526020808320909101546001600160a01b03168252819052604090205490565b61250c9083612d90565b91508061251881612db7565b9150506124bf565b50919050565b6001600160a01b03831661258a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ada565b6001600160a01b0382166125ec5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ada565b61262881604051806060016040528060268152602001612e73602691396001600160a01b0386165f9081526020819052604090205491906120cb565b6001600160a01b038085165f9081526020819052604080822093909355908416815220546126569082612103565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611bcf565b6021805460ff60a01b1916600160a01b179055600954600e54600b545f926126d99290916126d391612103565b90612103565b9050805f036126e8575061283f565b476126f283612168565b5f6126fd47836128cd565b9050801561283b575f61271f84611845600954856123bf90919063ffffffff16565b601754909150612738906001600160a01b03168261247e565b5f61275285611845600e54866123bf90919063ffffffff16565b90505f8111801561276d5750601b546001600160a01b031615155b156127cb57601b5460405163febd221b60e01b8152600160048201526001600160a01b039091169063febd221b9083906024015f604051808303818588803b1580156127b7575f80fd5b505af1935050505080156127c9575060015b505b5f6127e586611845600b54876123bf90919063ffffffff16565b6018549091506127fe906001600160a01b03168261247e565b60408051888152602081018690527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a15050505b5050505b506021805460ff60a01b19169055565b600b5415801561285f5750600e54155b801561286b5750600954155b80156128775750601354155b1561287e57565b60098054600a55600b8054600d55600e8054601055601380546015555f938490559183905582905555565b5f805f6128b584612a89565b90505f6128c285836128cd565b959194509092505050565b5f61216183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120cb565b305f908152602081905260409020546129279082612103565b305f9081526020819052604090205550565b5f610aaa612710611845601354856123bf90919063ffffffff16565b6001600160a01b0382166129b55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610ada565b6129f181604051806060016040528060228152602001612e51602291396001600160a01b0385165f9081526020819052604090205491906120cb565b6001600160a01b0383165f90815260208190526040902055600254612a1690826128cd565b6002556040518181525f906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b5f8183612a7d5760405162461bcd60e51b8152600401610ada9190612ac0565b505f6120fa8486612e31565b5f80612aae6013546126d36009546126d3600e54600b5461210390919063ffffffff16565b905061216161271061184585846123bf565b5f6020808352835180828501525f5b81811015612aeb57858101830151858201604001528201612acf565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611164575f80fd5b5f8060408385031215612b30575f80fd5b8235612b3b81612b0b565b946020939093013593505050565b5f60208284031215612b59575f80fd5b813561216181612b0b565b5f805f60608486031215612b76575f80fd5b8335612b8181612b0b565b92506020840135612b9181612b0b565b929592945050506040919091013590565b80358015158114612bb1575f80fd5b919050565b5f60208284031215612bc6575f80fd5b61216182612ba2565b5f8060408385031215612be0575f80fd5b8235612beb81612b0b565b9150612bf960208401612ba2565b90509250929050565b5f60208284031215612c12575f80fd5b5035919050565b5f805f805f8060c08789031215612c2e575f80fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b5f8151808452602080850194508084015f5b83811015612c8f5781516001600160a01b031687529582019590820190600101612c6a565b509495945050505050565b602081525f6121616020830184612c58565b5f8060408385031215612cbd575f80fd5b8235612cc881612b0b565b91506020830135612cd881612b0b565b809150509250929050565b600181811c90821680612cf757607f821691505b60208210810361252057634e487b7160e01b5f52602260045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215612d5a575f80fd5b815161216181612b0b565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610aaa57610aaa612d65565b80820180821115610aaa57610aaa612d65565b634e487b7160e01b5f52603260045260245ffd5b5f60018201612dc857612dc8612d65565b5060010190565b81810381811115610aaa57610aaa612d65565b85815284602082015260a060408201525f612e0060a0830186612c58565b6001600160a01b0394909416606083015250608001529392505050565b634e487b7160e01b5f52603160045260245ffd5b5f82612e4b57634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c393ea3dd104bc72f5bef089f0bec8f0e7696c838a3f02f6310adc47d099172f64736f6c63430008150033
Deployed Bytecode
0x608060405260043610610344575f3560e01c8063715018a6116101bd578063af01f2b2116100f2578063e89bcca211610092578063f42938901161006d578063f42938901461099f578063fce589d8146109b3578063fe575a87146109c8578063fffa1dd9146109f6575f80fd5b8063e89bcca214610942578063ea2f0b3714610961578063f2fde38b14610980575f80fd5b8063bb8d5131116100cd578063bb8d5131146108b5578063cf0c018b146108ca578063d543dbeb146108df578063dd62ed3e146108fe575f80fd5b8063af01f2b214610862578063b609995e14610877578063ba385abb14610896575f80fd5b806395d89b411161015d578063a1ab19a311610138578063a1ab19a3146107ef578063a457c2d714610803578063a9059cbb14610822578063ada46d0a14610841575f80fd5b806395d89b41146107a657806398850b64146107ba578063a0d82dc5146107da575f80fd5b806386f6c3c11161019857806386f6c3c1146107365780638c0b5e22146107555780638da5cb5b1461076a578063903cdec014610787575f80fd5b8063715018a6146106e457806373e7714a146106f85780638421b50714610717575f80fd5b8063313ce5671161029357806348a46473116102335780635342acb41161020e5780635342acb41461064f57806354959363146106865780636827e7641461069b57806370a08231146106b0575f80fd5b806348a46473146105fd57806349bd5a5e1461061c57806351bc3c851461063b575f80fd5b806341cb87fc1161026e57806341cb87fc146105725780634337ac5b14610591578063437823ec146105bf578063455a4396146105de575f80fd5b8063313ce56714610519578063393344b6146105345780633950935114610553575f80fd5b80631694505e116102fe57806323b872dd116102d957806323b872dd146104ad57806326b6308d146104cc57806328ba35e2146104eb5780632bb14e1d14610504575f80fd5b80631694505e1461044357806318160ddd1461047a5780631f53ac021461048e575f80fd5b806306fdde031461034f578063095ea7b3146103795780630e832273146103a8578063111e0376146103df578063113201fa1461040057806312ee302d14610420575f80fd5b3661034b57005b5f80fd5b34801561035a575f80fd5b50610363610a0a565b6040516103709190612ac0565b60405180910390f35b348015610384575f80fd5b50610398610393366004612b1f565b610a9a565b6040519015158152602001610370565b3480156103b3575f80fd5b506103986103c2366004612b49565b6001600160a01b03165f9081526007602052604090205460ff1690565b3480156103ea575f80fd5b506103fe6103f9366004612b49565b610ab0565b005b34801561040b575f80fd5b5060215461039890600160a81b900460ff1681565b34801561042b575f80fd5b5061043560145481565b604051908152602001610370565b34801561044e575f80fd5b50602054610462906001600160a01b031681565b6040516001600160a01b039091168152602001610370565b348015610485575f80fd5b50600254610435565b348015610499575f80fd5b506103fe6104a8366004612b49565b610bf6565b3480156104b8575f80fd5b506103986104c7366004612b64565b610c6e565b3480156104d7575f80fd5b506103fe6104e6366004612bb6565b610cd5565b3480156104f6575f80fd5b506023546103989060ff1681565b34801561050f575f80fd5b50610435600e5481565b348015610524575f80fd5b5060405160098152602001610370565b34801561053f575f80fd5b506103fe61054e366004612bcf565b610d4c565b34801561055e575f80fd5b5061039861056d366004612b1f565b610da0565b34801561057d575f80fd5b506103fe61058c366004612b49565b610dd5565b34801561059c575f80fd5b506103986105ab366004612b49565b60166020525f908152604090205460ff1681565b3480156105ca575f80fd5b506103fe6105d9366004612b49565b610f72565b3480156105e9575f80fd5b506103fe6105f8366004612bcf565b610fef565b348015610608575f80fd5b506103fe610617366004612c02565b6110b7565b348015610627575f80fd5b50602154610462906001600160a01b031681565b348015610646575f80fd5b506103fe611122565b34801561065a575f80fd5b50610398610669366004612b49565b6001600160a01b03165f908152601d602052604090205460ff1690565b348015610691575f80fd5b5061043560115481565b3480156106a6575f80fd5b50610435600b5481565b3480156106bb575f80fd5b506104356106ca366004612b49565b6001600160a01b03165f9081526020819052604090205490565b3480156106ef575f80fd5b506103fe611167565b348015610703575f80fd5b506103fe610712366004612bb6565b6111da565b348015610722575f80fd5b506103fe610731366004612c02565b611217565b348015610741575f80fd5b506103fe610750366004612c19565b6112c8565b348015610760575f80fd5b5061043560085481565b348015610775575f80fd5b506005546001600160a01b0316610462565b348015610792575f80fd5b506103fe6107a1366004612bcf565b611410565b3480156107b1575f80fd5b50610363611464565b3480156107c5575f80fd5b50601b5461039890600160a01b900460ff1681565b3480156107e5575f80fd5b50610435600c5481565b3480156107fa575f80fd5b506103fe611473565b34801561080e575f80fd5b5061039861081d366004612b1f565b61152b565b34801561082d575f80fd5b5061039861083c366004612b1f565b611578565b34801561084c575f80fd5b50610855611584565b6040516103709190612c9a565b34801561086d575f80fd5b50610435601a5481565b348015610882575f80fd5b506103fe610891366004612b49565b6115e3565b3480156108a1575f80fd5b506103fe6108b0366004612b49565b61173b565b3480156108c0575f80fd5b50610435600f5481565b3480156108d5575f80fd5b5061043560195481565b3480156108ea575f80fd5b506103fe6108f9366004612c02565b6117b3565b348015610909575f80fd5b50610435610918366004612cac565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561094d575f80fd5b506103fe61095c366004612bb6565b611880565b34801561096c575f80fd5b506103fe61097b366004612b49565b6118f7565b34801561098b575f80fd5b506103fe61099a366004612b49565b611971565b3480156109aa575f80fd5b506103fe611a5b565b3480156109be575f80fd5b5061043560135481565b3480156109d3575f80fd5b506103986109e2366004612b49565b601c6020525f908152604090205460ff1681565b348015610a01575f80fd5b50610435611a9d565b606060038054610a1990612ce3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4590612ce3565b8015610a905780601f10610a6757610100808354040283529160200191610a90565b820191905f5260205f20905b815481529060010190602001808311610a7357829003601f168201915b5050505050905090565b5f610aa6338484611ab8565b5060015b92915050565b6005546001600160a01b03163314610ae35760405162461bcd60e51b8152600401610ada90612d15565b60405180910390fd5b6001600160a01b0381165f9081526007602052604090205460ff1615610b5c5760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b6064820152608401610ada565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b0384169081179091555f81815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691015b60405180910390a150565b6005546001600160a01b03163314610c205760405162461bcd60e51b8152600401610ada90612d15565b601880546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90602001610beb565b5f610c7a848484611bdc565b610ccb8433610cc685604051806060016040528060288152602001612e99602891396001600160a01b038a165f90815260016020908152604080832033845290915290205491906120cb565b611ab8565b5060019392505050565b6005546001600160a01b03163314610cff5760405162461bcd60e51b8152600401610ada90612d15565b60218054821515600160a81b0260ff60a81b199091161790556040517fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b990610beb90831515815260200190565b6005546001600160a01b03163314610d765760405162461bcd60e51b8152600401610ada90612d15565b6001600160a01b03919091165f908152601660205260409020805460ff1916911515919091179055565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610aa6918590610cc69086612103565b6005546001600160a01b03163314610dff5760405162461bcd60e51b8152600401610ada90612d15565b5f819050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e3f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e639190612d4a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed29190612d4a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610f1c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f409190612d4a565b602180546001600160a01b039283166001600160a01b0319918216179091556020805493909216921691909117905550565b6005546001600160a01b03163314610f9c5760405162461bcd60e51b8152600401610ada90612d15565b6001600160a01b0381165f818152601d6020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369101610beb565b6005546001600160a01b031633146110195760405162461bcd60e51b8152600401610ada90612d15565b801561108d57601954421061108d5760405162461bcd60e51b815260206004820152603460248201527f546865206162696c69747920746f20626c61636b6c697374206163636f756e7460448201527339903430b9903132b2b7103234b9b0b13632b21760611b6064820152608401610ada565b6001600160a01b03919091165f908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110e15760405162461bcd60e51b8152600401610ada90612d15565b6110ef81633b9aca00612d79565b6022556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0090602001610beb565b6005546001600160a01b0316331461114c5760405162461bcd60e51b8152600401610ada90612d15565b305f9081526020819052604090205461116481612168565b50565b6005546001600160a01b031633146111915760405162461bcd60e51b8152600401610ada90612d15565b6005546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146112045760405162461bcd60e51b8152600401610ada90612d15565b6023805460ff1916911515919091179055565b6005546001600160a01b031633146112415760405162461bcd60e51b8152600401610ada90612d15565b6109c48111156112935760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c206665652069732032352500006044820152606401610ada565b60118190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c590602001610beb565b6005546001600160a01b031633146112f25760405162461bcd60e51b8152600401610ada90612d15565b612710861115801561130657506127108511155b801561131457506127108411155b801561132257506127108311155b801561133057506127108211155b801561133e57506127108111155b6113945760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b6064820152608401610ada565b600b869055600c859055600e849055600f839055601382905560148190556040805187815260208101879052908101859052606081018490526080810183905260a081018290527f4f3b60f00ab30635825994816ab704331aa84771a97a768ba4ce3e7bfd888f429060c00160405180910390a1505050505050565b6005546001600160a01b0316331461143a5760405162461bcd60e51b8152600401610ada90612d15565b6001600160a01b03919091165f908152601f60205260409020805460ff1916911515919091179055565b606060048054610a1990612ce3565b6005546001600160a01b0316331461149d5760405162461bcd60e51b8152600401610ada90612d15565b601b54600160a81b900460ff16156114f75760405162461bcd60e51b815260206004820152601b60248201527f416c726561647920707265706172656420666f72206c61756e636800000000006044820152606401610ada565b601b805460ff60a81b1916600160a81b17905561151642610e10612d90565b6019556115264262015180612d90565b601a55565b5f610aa63384610cc685604051806060016040528060258152602001612ec160259139335f9081526001602090815260408083206001600160a01b038d16845290915290205491906120cb565b5f610aa6338484611bdc565b60606006805480602002602001604051908101604052809291908181526020018280548015610a9057602002820191905f5260205f20905b81546001600160a01b031681526001909101906020018083116115bc575050505050905090565b6005546001600160a01b0316331461160d5760405162461bcd60e51b8152600401610ada90612d15565b6001600160a01b0381165f9081526007602052604090205460ff166116805760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b6064820152608401610ada565b5f5b60065481101561170157816001600160a01b0316600682815481106116a9576116a9612da3565b5f918252602090912001546001600160a01b0316036116ef576001600160a01b0382165f908152600760205260409020805460ff191690556116ea816122b9565b611701565b806116f981612db7565b915050611682565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d58959433490602001610beb565b6005546001600160a01b031633146117655760405162461bcd60e51b8152600401610ada90612d15565b601b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a90602001610beb565b6005546001600160a01b031633146117dd5760405162461bcd60e51b8152600401610ada90612d15565b600581101561182e5760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e352500000000006044820152606401610ada565b61184b6103e861184566038d7ea4c68000846123bf565b9061243d565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610beb565b6005546001600160a01b031633146118aa5760405162461bcd60e51b8152600401610ada90612d15565b601b8054821515600160a01b0260ff60a01b199091161790556040517f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf590610beb90831515815260200190565b6005546001600160a01b031633146119215760405162461bcd60e51b8152600401610ada90612d15565b6001600160a01b0381165f818152601d6020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d9101610beb565b6005546001600160a01b0316331461199b5760405162461bcd60e51b8152600401610ada90612d15565b6001600160a01b038116611a005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ada565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611a855760405162461bcd60e51b8152600401610ada90612d15565b6018544790611164906001600160a01b03168261247e565b5f611aa66124bb565b600254611ab39190612dcf565b905090565b6001600160a01b038316611b1a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ada565b6001600160a01b038216611b7b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ada565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601b54600160a81b900460ff1680611bfe57506005546001600160a01b031633145b611c705760405162461bcd60e51b815260206004820152603f60248201527f436f6e747261637420686173206e6f74206265656e207072657061726564206660448201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e6572006064820152608401610ada565b6001600160a01b0383165f908152601c602052604090205460ff16158015611cb057506001600160a01b0382165f908152601c602052604090205460ff16155b611cf25760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610ada565b601b54600160a01b900460ff1615611d1457611d0f838383612526565b505050565b6001600160a01b0383165f9081526016602052604090205460ff16158015611d5457506001600160a01b0382165f9081526016602052604090205460ff16155b8015611d7857506001600160a01b0382165f908152601f602052604090205460ff16155b15611d8857611d0f838383612526565b6001600160a01b0383165f908152601e602052604090205460ff16158015611dc857506001600160a01b0382165f908152601e602052604090205460ff16155b15611e2f57600854811115611e2f5760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b6064820152608401610ada565b600e54600b546013546021546001600160a01b0390811690861603611e7c57600c54600b55600f54600e55601454601355601a544211611e7c57601154600b54611e7891612103565b600b555b305f9081526020819052604090205460225481108015908190611ea95750602154600160a01b900460ff16155b8015611ec357506021546001600160a01b03898116911614155b8015611ed85750602154600160a81b900460ff165b15611ee657611ee6826126a6565b6001600160a01b0388165f908152601d602052604090205460ff1680611f2357506001600160a01b0387165f908152601d602052604090205460ff165b15611f3057611f3061284f565b5f80611f3b886128a9565b6001600160a01b038c165f908152602081905260409020549193509150611f6290896128cd565b6001600160a01b03808c165f9081526020819052604080822093909355908b1681522054611f909083612103565b6001600160a01b038a165f90815260208190526040902055611fb18161290e565b60235460ff1615611fd4575f611fc689612939565b9050611fd23082612955565b505b6001600160a01b0389165f908152601f602052604090205460ff161561200e575f612000600184612dcf565b905061200c8a82612955565b505b6001600160a01b038a165f908152601d602052604090205460ff168061204b57506001600160a01b0389165f908152601d602052604090205460ff165b1561206d5761206d600a54600955600d54600b55601054600e55601554601355565b600b869055600e87905560138590556040518281526001600160a01b038a811691908c16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350505050505050505050565b5f81848411156120ee5760405162461bcd60e51b8152600401610ada9190612ac0565b505f6120fa8486612dcf565b95945050505050565b5f8061210f8385612d90565b9050838110156121615760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610ada565b9392505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061219b5761219b612da3565b6001600160a01b039283166020918202929092018101919091528054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156121f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122159190612d4a565b8160018151811061222857612228612da3565b6001600160a01b03928316602091820292909201810191909152546122509130911684611ab8565b60205460405163791ac94760e01b81526001600160a01b039091169063791ac947906122889085905f90869030904290600401612de2565b5f604051808303815f87803b15801561229f575f80fd5b505af11580156122b1573d5f803e3d5ffd5b505050505050565b60065481106123155760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b6064820152608401610ada565b6006805461232590600190612dcf565b8154811061233557612335612da3565b5f91825260209091200154600680546001600160a01b03909216918390811061236057612360612da3565b905f5260205f20015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550600680548061239c5761239c612e1d565b5f8281526020902081015f1990810180546001600160a01b031916905501905550565b5f825f036123ce57505f610aaa565b5f6123d98385612d79565b9050826123e68583612e31565b146121615760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610ada565b5f61216183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a5d565b80156124b7576040516001600160a01b0383169082156108fc029083905f818181858888f19350505050158015611d0f573d5f803e3d5ffd5b5050565b5f80805b60065481101561252057612502600682815481106124df576124df612da3565b5f9182526020808320909101546001600160a01b03168252819052604090205490565b61250c9083612d90565b91508061251881612db7565b9150506124bf565b50919050565b6001600160a01b03831661258a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ada565b6001600160a01b0382166125ec5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ada565b61262881604051806060016040528060268152602001612e73602691396001600160a01b0386165f9081526020819052604090205491906120cb565b6001600160a01b038085165f9081526020819052604080822093909355908416815220546126569082612103565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611bcf565b6021805460ff60a01b1916600160a01b179055600954600e54600b545f926126d99290916126d391612103565b90612103565b9050805f036126e8575061283f565b476126f283612168565b5f6126fd47836128cd565b9050801561283b575f61271f84611845600954856123bf90919063ffffffff16565b601754909150612738906001600160a01b03168261247e565b5f61275285611845600e54866123bf90919063ffffffff16565b90505f8111801561276d5750601b546001600160a01b031615155b156127cb57601b5460405163febd221b60e01b8152600160048201526001600160a01b039091169063febd221b9083906024015f604051808303818588803b1580156127b7575f80fd5b505af1935050505080156127c9575060015b505b5f6127e586611845600b54876123bf90919063ffffffff16565b6018549091506127fe906001600160a01b03168261247e565b60408051888152602081018690527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a15050505b5050505b506021805460ff60a01b19169055565b600b5415801561285f5750600e54155b801561286b5750600954155b80156128775750601354155b1561287e57565b60098054600a55600b8054600d55600e8054601055601380546015555f938490559183905582905555565b5f805f6128b584612a89565b90505f6128c285836128cd565b959194509092505050565b5f61216183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120cb565b305f908152602081905260409020546129279082612103565b305f9081526020819052604090205550565b5f610aaa612710611845601354856123bf90919063ffffffff16565b6001600160a01b0382166129b55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610ada565b6129f181604051806060016040528060228152602001612e51602291396001600160a01b0385165f9081526020819052604090205491906120cb565b6001600160a01b0383165f90815260208190526040902055600254612a1690826128cd565b6002556040518181525f906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b5f8183612a7d5760405162461bcd60e51b8152600401610ada9190612ac0565b505f6120fa8486612e31565b5f80612aae6013546126d36009546126d3600e54600b5461210390919063ffffffff16565b905061216161271061184585846123bf565b5f6020808352835180828501525f5b81811015612aeb57858101830151858201604001528201612acf565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611164575f80fd5b5f8060408385031215612b30575f80fd5b8235612b3b81612b0b565b946020939093013593505050565b5f60208284031215612b59575f80fd5b813561216181612b0b565b5f805f60608486031215612b76575f80fd5b8335612b8181612b0b565b92506020840135612b9181612b0b565b929592945050506040919091013590565b80358015158114612bb1575f80fd5b919050565b5f60208284031215612bc6575f80fd5b61216182612ba2565b5f8060408385031215612be0575f80fd5b8235612beb81612b0b565b9150612bf960208401612ba2565b90509250929050565b5f60208284031215612c12575f80fd5b5035919050565b5f805f805f8060c08789031215612c2e575f80fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b5f8151808452602080850194508084015f5b83811015612c8f5781516001600160a01b031687529582019590820190600101612c6a565b509495945050505050565b602081525f6121616020830184612c58565b5f8060408385031215612cbd575f80fd5b8235612cc881612b0b565b91506020830135612cd881612b0b565b809150509250929050565b600181811c90821680612cf757607f821691505b60208210810361252057634e487b7160e01b5f52602260045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215612d5a575f80fd5b815161216181612b0b565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610aaa57610aaa612d65565b80820180821115610aaa57610aaa612d65565b634e487b7160e01b5f52603260045260245ffd5b5f60018201612dc857612dc8612d65565b5060010190565b81810381811115610aaa57610aaa612d65565b85815284602082015260a060408201525f612e0060a0830186612c58565b6001600160a01b0394909416606083015250608001529392505050565b634e487b7160e01b5f52603160045260245ffd5b5f82612e4b57634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c393ea3dd104bc72f5bef089f0bec8f0e7696c838a3f02f6310adc47d099172f64736f6c63430008150033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.