ERC-20
Overview
Max Total Supply
1,000,000 FAI
Holders
33
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.29285269414095723 FAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FarmAI
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract FarmAI is ERC20, Ownable { /// General settings uint constant public TOTAL_SUPPLY = 1_000_000 ether; // Governance IUniswapV2Router02 public uniswapRouter; // Fees uint16 constant FEE_DIVISOR = 10_000; struct Fees{ uint16 buyTeam; uint16 buyAutoLiquidity; uint16 buyTotal; uint16 sellTeam; uint16 sellAutoLiquidity; uint16 sellTotal; uint64 takeFeesTimestamp; } Fees public fees; address public teamWallet; address public liquidityWallet; mapping(address => bool) public takeFees; mapping(address => bool) public ignoreFees; mapping(address => uint16) public extraFeeOnEarlySell; // Swapping struct LiquidationSettings { uint128 liquidationThreshold; uint16 percentageToLiquidate; bool inLiquidation; bool liquidationEnabled; } LiquidationSettings public liquidationSettings; // Trading bool public tradingEnabled; mapping(address => bool) public tradingWhiteList; modifier canTrade(address from, address to){ require(tradingEnabled || tradingWhiteList[from] || tradingWhiteList[to], "FAI: Trading has not started"); _; } constructor(address uniswapRouterAddress) ERC20("FarmAI Token", "FAI") { fees = Fees(300, 200, 500, 300, 200, 500, 0); liquidationSettings = LiquidationSettings(100 ether, 10_000, false, true); teamWallet = liquidityWallet = msg.sender; // FAI pair. uniswapRouter = IUniswapV2Router02(uniswapRouterAddress); // Super powers for deployer. tradingWhiteList[msg.sender] = true; ignoreFees[msg.sender] = true; ignoreFees[address(this)] = true; _approve(address(this), uniswapRouterAddress, ~uint(0)); _mint(msg.sender, TOTAL_SUPPLY); } function _transfer(address from, address to, uint256 amount) internal virtual override canTrade(from, to) { uint256 remainingTokens = _takeFees(from, to, amount); super._transfer(from, to, remainingTokens); } function _takeFees(address from, address to, uint256 transferAmount) private returns(uint256 remainingTokens) { // Skip certain wallets. if(ignoreFees[from] || ignoreFees[to]) return transferAmount; // Take fees. Fees memory transferFees = fees; uint feesToTake = 0; // Buy. if(takeFees[from]){ feesToTake += transferAmount * transferFees.buyTotal / FEE_DIVISOR; // Early buyers pay an additional fee if they sell within 24h. // Helps against sniper bots and stabilizes prices. // Within 5min of start: Extra 25% on sell. // Within 15min of start: Extra 15% on sell. // Within 30min of start: Extra 10% on sell. uint secondsPassedSinceStart = block.timestamp - transferFees.takeFeesTimestamp; if(secondsPassedSinceStart <= 30 minutes && extraFeeOnEarlySell[to] == 0){ if(secondsPassedSinceStart <= 5 minutes) extraFeeOnEarlySell[to] = 2_500; else if(secondsPassedSinceStart <= 15 minutes) extraFeeOnEarlySell[to] = 1_500; else extraFeeOnEarlySell[to] = 1_000; } } // Sell if(takeFees[to]){ feesToTake += transferAmount * transferFees.sellTotal / FEE_DIVISOR; // Now if people sell within the first 24h of token launch they may be paying extra fees. After that: No extra fees. if(block.timestamp - transferFees.takeFeesTimestamp <= 24 hours) { feesToTake += transferAmount * extraFeeOnEarlySell[from] / FEE_DIVISOR; } } super._transfer(from, address(this), feesToTake); // Check if we want to liquidate fees. LiquidationSettings memory liqSettings = liquidationSettings; if(!takeFees[from] && !liqSettings.inLiquidation && liqSettings.liquidationEnabled){ uint contractBalance = balanceOf(address(this)); if(contractBalance >= liqSettings.liquidationThreshold){ liquidationSettings.inLiquidation = true; _liquidateFees(contractBalance, transferFees, liqSettings); liquidationSettings.inLiquidation = false; } } remainingTokens = transferAmount - feesToTake; } function _liquidateFees(uint tokensForLiquidation, Fees memory transferFees, LiquidationSettings memory liqSettings) private { // First decide how many tokens to keep as plain tokens and send them to the team wallet. uint teamTokens = tokensForLiquidation * ((transferFees.buyTeam + transferFees.sellTeam)) / (transferFees.buyTotal + transferFees.sellTotal); uint teamTokensToLiquidate = teamTokens * liqSettings.percentageToLiquidate / FEE_DIVISOR; uint teamTokensToKeep = teamTokens - teamTokensToLiquidate; super._transfer(address(this), teamWallet, teamTokensToKeep); // Now calculate auto-liquidity tokens. uint autoLiquidityTokens = tokensForLiquidation * ((transferFees.buyAutoLiquidity + transferFees.sellAutoLiquidity)) / (transferFees.buyTotal + transferFees.sellTotal); uint autoLiquidityTokensToLiquidate = autoLiquidityTokens / 2; // We only want to liquidate once so we liquidate the team funds tokens and the auto-liquidity tokens all at once. // After that we can split the total ETH gained between the two and supply each receiver accordingly. uint ethBefore = address(this).balance; _liquidateTokens(teamTokensToLiquidate + autoLiquidityTokensToLiquidate, address(this)); uint ethGained = address(this).balance - ethBefore; // Send team funds. uint ethForTeam = ethGained * teamTokensToLiquidate / (teamTokensToLiquidate + autoLiquidityTokensToLiquidate); payable(teamWallet).transfer(ethForTeam); // Auto-liquidity _autoLiquidity(autoLiquidityTokensToLiquidate, ethGained - ethForTeam, liquidityWallet); } function _liquidateTokens(uint tokenAmount, address to) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouter.WETH(); uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, to, block.timestamp ); } function _autoLiquidity(uint faiTokens, uint eth, address liquidityTokenReceiver) private { uniswapRouter.addLiquidityETH{value: eth}( address(this), faiTokens, 0, 0, liquidityTokenReceiver, block.timestamp ); } // Utility functions. // Recovery function recoverERC20(address token, uint balance) external onlyOwner { IERC20(token).transfer(owner(), balance); } function recoverETH(uint balance) external onlyOwner { payable(owner()).transfer(balance); } // Fees function setFees( uint16 buyTeam, uint16 buyAutoLiquidity, uint16 sellTeam, uint16 sellAutoLiquidity ) external onlyOwner { // Maximum of 30% each. uint16 buyTotal = buyTeam + buyAutoLiquidity; uint16 sellTotal = sellTeam + sellAutoLiquidity; require(buyTotal <= 3_000 && sellTotal <= 3_000, "FAI: TAXES_TOO_HIGH"); fees = Fees(buyTeam, buyAutoLiquidity, buyTotal, sellTeam, sellAutoLiquidity, sellTotal, fees.takeFeesTimestamp); } // Set who should be taxed in general. function setTakeFeeFor(address target, bool takeFee) external onlyOwner { takeFees[target] = takeFee; } // Set who should be ignored from taxes. This is stronger than `takeFees`. function setIgnoreFees(address target, bool ignoreFee) external onlyOwner { ignoreFees[target] = ignoreFee; } // Update wallets. function setTeamWallet(address _teamWallet) external onlyOwner { require(teamWallet != address(0), "FAI: INVALID_FEE_WALLET"); teamWallet = _teamWallet; } function setLiquidityWallet(address _liquidityWallet) external onlyOwner { require(teamWallet != address(0), "FAI: INVALID_FEE_WALLET"); liquidityWallet = _liquidityWallet; } // Update liquidation settings. function setLiquidationSettings(uint128 liquidationThreshold, uint16 percentageToLiquidate, bool liquidationEnabled) external onlyOwner { require(liquidationThreshold <= TOTAL_SUPPLY && percentageToLiquidate <= 10_000, "FAI: INVALID_LIQ_SET"); liquidationSettings = LiquidationSettings(liquidationThreshold, percentageToLiquidate, false, liquidationEnabled); } // Trading function startTrading() external onlyOwner { require(tradingEnabled == false, "FAI: ALREADY_STARTED"); tradingEnabled = true; fees.takeFeesTimestamp = uint64(block.timestamp); } function whiteListTrade(address target, bool _canTrade) external onlyOwner { tradingWhiteList[target] = _canTrade; } receive() external payable { } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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 { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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 += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"uniswapRouterAddress","type":"address"}],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"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":[{"internalType":"address","name":"","type":"address"}],"name":"extraFeeOnEarlySell","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fees","outputs":[{"internalType":"uint16","name":"buyTeam","type":"uint16"},{"internalType":"uint16","name":"buyAutoLiquidity","type":"uint16"},{"internalType":"uint16","name":"buyTotal","type":"uint16"},{"internalType":"uint16","name":"sellTeam","type":"uint16"},{"internalType":"uint16","name":"sellAutoLiquidity","type":"uint16"},{"internalType":"uint16","name":"sellTotal","type":"uint16"},{"internalType":"uint64","name":"takeFeesTimestamp","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ignoreFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"liquidationSettings","outputs":[{"internalType":"uint128","name":"liquidationThreshold","type":"uint128"},{"internalType":"uint16","name":"percentageToLiquidate","type":"uint16"},{"internalType":"bool","name":"inLiquidation","type":"bool"},{"internalType":"bool","name":"liquidationEnabled","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"recoverETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"buyTeam","type":"uint16"},{"internalType":"uint16","name":"buyAutoLiquidity","type":"uint16"},{"internalType":"uint16","name":"sellTeam","type":"uint16"},{"internalType":"uint16","name":"sellAutoLiquidity","type":"uint16"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"ignoreFee","type":"bool"}],"name":"setIgnoreFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"liquidationThreshold","type":"uint128"},{"internalType":"uint16","name":"percentageToLiquidate","type":"uint16"},{"internalType":"bool","name":"liquidationEnabled","type":"bool"}],"name":"setLiquidationSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityWallet","type":"address"}],"name":"setLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"takeFee","type":"bool"}],"name":"setTakeFeeFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"takeFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tradingWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"_canTrade","type":"bool"}],"name":"whiteListTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620027d2380380620027d2833981016040819052620000349162000439565b6040518060400160405280600c81526020016b2330b936a0a4902a37b5b2b760a11b8152506040518060400160405280600381526020016246414960e81b81525081600390816200008691906200050f565b5060046200009582826200050f565b505050620000b2620000ac620001ef60201b60201c565b620001f3565b6040805160e08101825261012c80825260c860208084018290526101f484860181905260608086019490945260808086019390935260a0850152600060c0909401849052600780546b01f400c8012c01f400c8012c6001600160a01b0319918216179091558551928301865268056bc75e2d63100000835261271083830152828601859052600192909301829052600d80548416730100271000000000000000056bc75e2d631000001790556009805433908516811790915560088054851682179055600680549094166001600160a01b03881617909355918352600f8252838320805460ff199081168317909155600b9092528383208054831682179055308084529390922080549091169091179055620001d2908260001962000245565b620001e83369d3c21bcecceda100000062000371565b5062000603565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620002ad5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620003105760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620002a4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620003c95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620002a4565b8060026000828254620003dd9190620005db565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000602082840312156200044c57600080fd5b81516001600160a01b03811681146200046457600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200049657607f821691505b602082108103620004b757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200043457600081815260208120601f850160051c81016020861015620004e65750805b601f850160051c820191505b818110156200050757828155600101620004f2565b505050505050565b81516001600160401b038111156200052b576200052b6200046b565b62000543816200053c845462000481565b84620004bd565b602080601f8311600181146200057b5760008415620005625750858301515b600019600386901b1c1916600185901b17855562000507565b600085815260208120601f198616915b82811015620005ac578886015182559484019460019091019084016200058b565b5085821015620005cb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620005fd57634e487b7160e01b600052601160045260246000fd5b92915050565b6121bf80620006136000396000f3fe6080604052600436106102385760003560e01c8063715018a611610138578063a9059cbb116100b0578063d46980161161007f578063f2fde38b11610064578063f2fde38b146107af578063f307de5f146107cf578063f54178b5146107ff57600080fd5b8063d469801614610749578063dd62ed3e1461076957600080fd5b8063a9059cbb14610695578063af310d34146106b5578063be36b082146106e5578063d33355531461072957600080fd5b80638da5cb5b1161010757806395d89b41116100ec57806395d89b41146105a15780639af1d35a146105b6578063a457c2d71461067557600080fd5b80638da5cb5b14610565578063902d55a51461058357600080fd5b8063715018a614610499578063735de9f7146104ae5780638980f11f146104ce5780638bda5b57146104ee57600080fd5b8063313ce567116101cb5780634ada218b1161019a578063599270441161017f578063599270441461040b57806370a082311461044357806370c10b391461047957600080fd5b80634ada218b146103d157806354a3b7f8146103eb57600080fd5b8063313ce5671461035557806337a44d1e14610371578063395093511461039157806342f7723f146103b157600080fd5b806318160ddd1161020757806318160ddd146102e157806323b872dd14610300578063293230b814610320578063296f0a0c1461033557600080fd5b806306fdde031461024457806307881f2c1461026f578063095ea7b3146102915780631525ff7d146102c157600080fd5b3661023f57005b600080fd5b34801561025057600080fd5b5061025961082f565b6040516102669190611d8e565b60405180910390f35b34801561027b57600080fd5b5061028f61028a366004611dff565b6108c1565b005b34801561029d57600080fd5b506102b16102ac366004611e38565b6108f4565b6040519015158152602001610266565b3480156102cd57600080fd5b5061028f6102dc366004611e64565b61090e565b3480156102ed57600080fd5b506002545b604051908152602001610266565b34801561030c57600080fd5b506102b161031b366004611e81565b6109a2565b34801561032c57600080fd5b5061028f6109c8565b34801561034157600080fd5b5061028f610350366004611e64565b610a63565b34801561036157600080fd5b5060405160128152602001610266565b34801561037d57600080fd5b5061028f61038c366004611dff565b610af2565b34801561039d57600080fd5b506102b16103ac366004611e38565b610b25565b3480156103bd57600080fd5b5061028f6103cc366004611ed9565b610b64565b3480156103dd57600080fd5b50600e546102b19060ff1681565b3480156103f757600080fd5b5061028f610406366004611dff565b610cfc565b34801561041757600080fd5b5060085461042b906001600160a01b031681565b6040516001600160a01b039091168152602001610266565b34801561044f57600080fd5b506102f261045e366004611e64565b6001600160a01b031660009081526020819052604090205490565b34801561048557600080fd5b5061028f610494366004611f2d565b610d2f565b3480156104a557600080fd5b5061028f610e4b565b3480156104ba57600080fd5b5060065461042b906001600160a01b031681565b3480156104da57600080fd5b5061028f6104e9366004611e38565b610e5f565b3480156104fa57600080fd5b50600d54610530906001600160801b0381169061ffff600160801b8204169060ff600160901b8204811691600160981b90041684565b604080516001600160801b03909516855261ffff90931660208501529015159183019190915215156060820152608001610266565b34801561057157600080fd5b506005546001600160a01b031661042b565b34801561058f57600080fd5b506102f269d3c21bcecceda100000081565b3480156105ad57600080fd5b50610259610f16565b3480156105c257600080fd5b506007546106279061ffff808216916201000081048216916401000000008204811691660100000000000081048216916801000000000000000082048116916a0100000000000000000000810490911690600160601b900467ffffffffffffffff1687565b6040805161ffff988916815296881660208801529487169486019490945291851660608501528416608084015290921660a082015267ffffffffffffffff90911660c082015260e001610266565b34801561068157600080fd5b506102b1610690366004611e38565b610f25565b3480156106a157600080fd5b506102b16106b0366004611e38565b610fda565b3480156106c157600080fd5b506102b16106d0366004611e64565b600a6020526000908152604090205460ff1681565b3480156106f157600080fd5b50610716610700366004611e64565b600c6020526000908152604090205461ffff1681565b60405161ffff9091168152602001610266565b34801561073557600080fd5b5061028f610744366004611f82565b610fe8565b34801561075557600080fd5b5060095461042b906001600160a01b031681565b34801561077557600080fd5b506102f2610784366004611f9b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107bb57600080fd5b5061028f6107ca366004611e64565b61102e565b3480156107db57600080fd5b506102b16107ea366004611e64565b600f6020526000908152604090205460ff1681565b34801561080b57600080fd5b506102b161081a366004611e64565b600b6020526000908152604090205460ff1681565b60606003805461083e90611fc9565b80601f016020809104026020016040519081016040528092919081815260200182805461086a90611fc9565b80156108b75780601f1061088c576101008083540402835291602001916108b7565b820191906000526020600020905b81548152906001019060200180831161089a57829003601f168201915b5050505050905090565b6108c96110be565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b600033610902818585611118565b60019150505b92915050565b6109166110be565b6008546001600160a01b03166109735760405162461bcd60e51b815260206004820152601760248201527f4641493a20494e56414c49445f4645455f57414c4c455400000000000000000060448201526064015b60405180910390fd5b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000336109b0858285611270565b6109bb858585611302565b60019150505b9392505050565b6109d06110be565b600e5460ff1615610a235760405162461bcd60e51b815260206004820152601460248201527f4641493a20414c52454144595f53544152544544000000000000000000000000604482015260640161096a565b600e805460ff191660011790556007805467ffffffffffffffff4216600160601b0273ffffffffffffffff00000000000000000000000019909116179055565b610a6b6110be565b6008546001600160a01b0316610ac35760405162461bcd60e51b815260206004820152601760248201527f4641493a20494e56414c49445f4645455f57414c4c4554000000000000000000604482015260640161096a565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610afa6110be565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906109029082908690610b5f908790612019565b611118565b610b6c6110be565b6000610b78848661202c565b90506000610b86838561202c565b9050610bb88261ffff1611158015610ba45750610bb88161ffff1611155b610bf05760405162461bcd60e51b815260206004820152601360248201527f4641493a2054415845535f544f4f5f4849474800000000000000000000000000604482015260640161096a565b6040805160e08101825261ffff9788168082529688166020820181905293881691810182905294871660608601819052938716608086018190529190961660a0850181905260078054600160601b80820467ffffffffffffffff1660c090980188905263ffffffff19909116909717620100009094029390931767ffffffff00000000191664010000000090970267ffff0000000000001916969096176601000000000000909302929092176bffffffff00000000000000001916680100000000000000009092026bffff000000000000000000001916919091176a01000000000000000000009094029390931773ffffffffffffffff00000000000000000000000019169102179055565b610d046110be565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b610d376110be565b69d3c21bcecceda1000000836001600160801b031611158015610d6057506127108261ffff1611155b610dac5760405162461bcd60e51b815260206004820152601460248201527f4641493a20494e56414c49445f4c49515f534554000000000000000000000000604482015260640161096a565b604080516080810182526001600160801b0390941680855261ffff909316602085018190526000918501919091529015156060909301839052600d8054600160981b9094027fffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffff600160801b9093027fffffffffffffffffffffffffffff0000000000000000000000000000000000009095169093179390931716179055565b610e536110be565b610e5d60006113c0565b565b610e676110be565b816001600160a01b031663a9059cbb610e886005546001600160a01b031690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610eed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f11919061204e565b505050565b60606004805461083e90611fc9565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610fc25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161096a565b610fcf8286868403611118565b506001949350505050565b600033610902818585611302565b610ff06110be565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561102a573d6000803e3d6000fd5b5050565b6110366110be565b6001600160a01b0381166110b25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161096a565b6110bb816113c0565b50565b6005546001600160a01b03163314610e5d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096a565b6001600160a01b0383166111935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161096a565b6001600160a01b03821661120f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161096a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146112fc57818110156112ef5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161096a565b6112fc8484848403611118565b50505050565b600e548390839060ff168061132f57506001600160a01b0382166000908152600f602052604090205460ff165b8061135257506001600160a01b0381166000908152600f602052604090205460ff165b61139e5760405162461bcd60e51b815260206004820152601c60248201527f4641493a2054726164696e6720686173206e6f74207374617274656400000000604482015260640161096a565b60006113ab86868661141f565b90506113b88686836117e8565b505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166000908152600b602052604081205460ff168061145e57506001600160a01b0383166000908152600b602052604090205460ff165b1561146a5750806109c1565b6040805160e08101825260075461ffff8082168352620100008204811660208085019190915264010000000083048216848601526601000000000000830482166060850152680100000000000000008304821660808501526a0100000000000000000000830490911660a0840152600160601b90910467ffffffffffffffff1660c08301526001600160a01b0387166000908152600a9091529182205490919060ff161561161c576040820151612710906115299061ffff168661206b565b6115339190612082565b61153d9082612019565b905060008260c0015167ffffffffffffffff164261155b91906120a4565b9050610708811115801561158957506001600160a01b0386166000908152600c602052604090205461ffff16155b1561161a5761012c81116115c1576001600160a01b0386166000908152600c60205260409020805461ffff19166109c417905561161a565b61038481116115f4576001600160a01b0386166000908152600c60205260409020805461ffff19166105dc17905561161a565b6001600160a01b0386166000908152600c60205260409020805461ffff19166103e81790555b505b6001600160a01b0385166000908152600a602052604090205460ff16156116cf5760a0820151612710906116549061ffff168661206b565b61165e9190612082565b6116689082612019565b9050620151808260c0015167ffffffffffffffff164261168891906120a4565b116116cf576001600160a01b0386166000908152600c6020526040902054612710906116b89061ffff168661206b565b6116c29190612082565b6116cc9082612019565b90505b6116da8630836117e8565b60408051608081018252600d546001600160801b038116825261ffff600160801b82041660208084019190915260ff600160901b83048116151584860152600160981b9092048216151560608401526001600160a01b038a166000908152600a909152929092205490911615801561175457508060400151155b8015611761575080606001515b156117d3573060009081526020819052604090205481516001600160801b031681106117d157600d805472ff0000000000000000000000000000000000001916600160901b1790556117b48185846119d5565b600d805472ff000000000000000000000000000000000000191690555b505b6117dd82866120a4565b979650505050505050565b6001600160a01b0383166118645760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161096a565b6001600160a01b0382166118e05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161096a565b6001600160a01b0383166000908152602081905260409020548181101561196f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161096a565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112fc565b60008260a0015183604001516119eb919061202c565b61ffff1683606001518460000151611a03919061202c565b611a119061ffff168661206b565b611a1b9190612082565b9050600061271061ffff16836020015161ffff1683611a3a919061206b565b611a449190612082565b90506000611a5282846120a4565b600854909150611a6d9030906001600160a01b0316836117e8565b60008560a001518660400151611a83919061202c565b61ffff1686608001518760200151611a9b919061202c565b611aa99061ffff168961206b565b611ab39190612082565b90506000611ac2600283612082565b905047611ad8611ad28387612019565b30611b6e565b6000611ae482476120a4565b90506000611af28488612019565b611afc888461206b565b611b069190612082565b6008546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611b41573d6000803e3d6000fd5b50611b6184611b5083856120a4565b6009546001600160a01b0316611ce2565b5050505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ba357611ba36120b7565b6001600160a01b03928316602091820292909201810191909152600654604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015611c15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3991906120cd565b81600181518110611c4c57611c4c6120b7565b6001600160a01b0392831660209182029290920101526006546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac94790611cab9086906000908690889042906004016120ea565b600060405180830381600087803b158015611cc557600080fd5b505af1158015611cd9573d6000803e3d6000fd5b50505050505050565b6006546040517ff305d7190000000000000000000000000000000000000000000000000000000081523060048201526024810185905260006044820181905260648201526001600160a01b0383811660848301524260a48301529091169063f305d71990849060c40160606040518083038185885af1158015611d69573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906113b8919061215b565b600060208083528351808285015260005b81811015611dbb57858101830151858201604001528201611d9f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146110bb57600080fd5b80151581146110bb57600080fd5b60008060408385031215611e1257600080fd5b8235611e1d81611ddc565b91506020830135611e2d81611df1565b809150509250929050565b60008060408385031215611e4b57600080fd5b8235611e5681611ddc565b946020939093013593505050565b600060208284031215611e7657600080fd5b81356109c181611ddc565b600080600060608486031215611e9657600080fd5b8335611ea181611ddc565b92506020840135611eb181611ddc565b929592945050506040919091013590565b803561ffff81168114611ed457600080fd5b919050565b60008060008060808587031215611eef57600080fd5b611ef885611ec2565b9350611f0660208601611ec2565b9250611f1460408601611ec2565b9150611f2260608601611ec2565b905092959194509250565b600080600060608486031215611f4257600080fd5b83356001600160801b0381168114611f5957600080fd5b9250611f6760208501611ec2565b91506040840135611f7781611df1565b809150509250925092565b600060208284031215611f9457600080fd5b5035919050565b60008060408385031215611fae57600080fd5b8235611fb981611ddc565b91506020830135611e2d81611ddc565b600181811c90821680611fdd57607f821691505b602082108103611ffd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561090857610908612003565b61ffff81811683821601908082111561204757612047612003565b5092915050565b60006020828403121561206057600080fd5b81516109c181611df1565b808202811582820484141761090857610908612003565b60008261209f57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561090857610908612003565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120df57600080fd5b81516109c181611ddc565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561213a5784516001600160a01b031683529383019391830191600101612115565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561217057600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212204f935db420e4408620a30672271024ccfd9d1467f5b99599b63fb9336f22719b64736f6c634300081200330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x6080604052600436106102385760003560e01c8063715018a611610138578063a9059cbb116100b0578063d46980161161007f578063f2fde38b11610064578063f2fde38b146107af578063f307de5f146107cf578063f54178b5146107ff57600080fd5b8063d469801614610749578063dd62ed3e1461076957600080fd5b8063a9059cbb14610695578063af310d34146106b5578063be36b082146106e5578063d33355531461072957600080fd5b80638da5cb5b1161010757806395d89b41116100ec57806395d89b41146105a15780639af1d35a146105b6578063a457c2d71461067557600080fd5b80638da5cb5b14610565578063902d55a51461058357600080fd5b8063715018a614610499578063735de9f7146104ae5780638980f11f146104ce5780638bda5b57146104ee57600080fd5b8063313ce567116101cb5780634ada218b1161019a578063599270441161017f578063599270441461040b57806370a082311461044357806370c10b391461047957600080fd5b80634ada218b146103d157806354a3b7f8146103eb57600080fd5b8063313ce5671461035557806337a44d1e14610371578063395093511461039157806342f7723f146103b157600080fd5b806318160ddd1161020757806318160ddd146102e157806323b872dd14610300578063293230b814610320578063296f0a0c1461033557600080fd5b806306fdde031461024457806307881f2c1461026f578063095ea7b3146102915780631525ff7d146102c157600080fd5b3661023f57005b600080fd5b34801561025057600080fd5b5061025961082f565b6040516102669190611d8e565b60405180910390f35b34801561027b57600080fd5b5061028f61028a366004611dff565b6108c1565b005b34801561029d57600080fd5b506102b16102ac366004611e38565b6108f4565b6040519015158152602001610266565b3480156102cd57600080fd5b5061028f6102dc366004611e64565b61090e565b3480156102ed57600080fd5b506002545b604051908152602001610266565b34801561030c57600080fd5b506102b161031b366004611e81565b6109a2565b34801561032c57600080fd5b5061028f6109c8565b34801561034157600080fd5b5061028f610350366004611e64565b610a63565b34801561036157600080fd5b5060405160128152602001610266565b34801561037d57600080fd5b5061028f61038c366004611dff565b610af2565b34801561039d57600080fd5b506102b16103ac366004611e38565b610b25565b3480156103bd57600080fd5b5061028f6103cc366004611ed9565b610b64565b3480156103dd57600080fd5b50600e546102b19060ff1681565b3480156103f757600080fd5b5061028f610406366004611dff565b610cfc565b34801561041757600080fd5b5060085461042b906001600160a01b031681565b6040516001600160a01b039091168152602001610266565b34801561044f57600080fd5b506102f261045e366004611e64565b6001600160a01b031660009081526020819052604090205490565b34801561048557600080fd5b5061028f610494366004611f2d565b610d2f565b3480156104a557600080fd5b5061028f610e4b565b3480156104ba57600080fd5b5060065461042b906001600160a01b031681565b3480156104da57600080fd5b5061028f6104e9366004611e38565b610e5f565b3480156104fa57600080fd5b50600d54610530906001600160801b0381169061ffff600160801b8204169060ff600160901b8204811691600160981b90041684565b604080516001600160801b03909516855261ffff90931660208501529015159183019190915215156060820152608001610266565b34801561057157600080fd5b506005546001600160a01b031661042b565b34801561058f57600080fd5b506102f269d3c21bcecceda100000081565b3480156105ad57600080fd5b50610259610f16565b3480156105c257600080fd5b506007546106279061ffff808216916201000081048216916401000000008204811691660100000000000081048216916801000000000000000082048116916a0100000000000000000000810490911690600160601b900467ffffffffffffffff1687565b6040805161ffff988916815296881660208801529487169486019490945291851660608501528416608084015290921660a082015267ffffffffffffffff90911660c082015260e001610266565b34801561068157600080fd5b506102b1610690366004611e38565b610f25565b3480156106a157600080fd5b506102b16106b0366004611e38565b610fda565b3480156106c157600080fd5b506102b16106d0366004611e64565b600a6020526000908152604090205460ff1681565b3480156106f157600080fd5b50610716610700366004611e64565b600c6020526000908152604090205461ffff1681565b60405161ffff9091168152602001610266565b34801561073557600080fd5b5061028f610744366004611f82565b610fe8565b34801561075557600080fd5b5060095461042b906001600160a01b031681565b34801561077557600080fd5b506102f2610784366004611f9b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107bb57600080fd5b5061028f6107ca366004611e64565b61102e565b3480156107db57600080fd5b506102b16107ea366004611e64565b600f6020526000908152604090205460ff1681565b34801561080b57600080fd5b506102b161081a366004611e64565b600b6020526000908152604090205460ff1681565b60606003805461083e90611fc9565b80601f016020809104026020016040519081016040528092919081815260200182805461086a90611fc9565b80156108b75780601f1061088c576101008083540402835291602001916108b7565b820191906000526020600020905b81548152906001019060200180831161089a57829003601f168201915b5050505050905090565b6108c96110be565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b600033610902818585611118565b60019150505b92915050565b6109166110be565b6008546001600160a01b03166109735760405162461bcd60e51b815260206004820152601760248201527f4641493a20494e56414c49445f4645455f57414c4c455400000000000000000060448201526064015b60405180910390fd5b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000336109b0858285611270565b6109bb858585611302565b60019150505b9392505050565b6109d06110be565b600e5460ff1615610a235760405162461bcd60e51b815260206004820152601460248201527f4641493a20414c52454144595f53544152544544000000000000000000000000604482015260640161096a565b600e805460ff191660011790556007805467ffffffffffffffff4216600160601b0273ffffffffffffffff00000000000000000000000019909116179055565b610a6b6110be565b6008546001600160a01b0316610ac35760405162461bcd60e51b815260206004820152601760248201527f4641493a20494e56414c49445f4645455f57414c4c4554000000000000000000604482015260640161096a565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610afa6110be565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906109029082908690610b5f908790612019565b611118565b610b6c6110be565b6000610b78848661202c565b90506000610b86838561202c565b9050610bb88261ffff1611158015610ba45750610bb88161ffff1611155b610bf05760405162461bcd60e51b815260206004820152601360248201527f4641493a2054415845535f544f4f5f4849474800000000000000000000000000604482015260640161096a565b6040805160e08101825261ffff9788168082529688166020820181905293881691810182905294871660608601819052938716608086018190529190961660a0850181905260078054600160601b80820467ffffffffffffffff1660c090980188905263ffffffff19909116909717620100009094029390931767ffffffff00000000191664010000000090970267ffff0000000000001916969096176601000000000000909302929092176bffffffff00000000000000001916680100000000000000009092026bffff000000000000000000001916919091176a01000000000000000000009094029390931773ffffffffffffffff00000000000000000000000019169102179055565b610d046110be565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b610d376110be565b69d3c21bcecceda1000000836001600160801b031611158015610d6057506127108261ffff1611155b610dac5760405162461bcd60e51b815260206004820152601460248201527f4641493a20494e56414c49445f4c49515f534554000000000000000000000000604482015260640161096a565b604080516080810182526001600160801b0390941680855261ffff909316602085018190526000918501919091529015156060909301839052600d8054600160981b9094027fffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffff600160801b9093027fffffffffffffffffffffffffffff0000000000000000000000000000000000009095169093179390931716179055565b610e536110be565b610e5d60006113c0565b565b610e676110be565b816001600160a01b031663a9059cbb610e886005546001600160a01b031690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610eed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f11919061204e565b505050565b60606004805461083e90611fc9565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610fc25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161096a565b610fcf8286868403611118565b506001949350505050565b600033610902818585611302565b610ff06110be565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561102a573d6000803e3d6000fd5b5050565b6110366110be565b6001600160a01b0381166110b25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161096a565b6110bb816113c0565b50565b6005546001600160a01b03163314610e5d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096a565b6001600160a01b0383166111935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161096a565b6001600160a01b03821661120f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161096a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146112fc57818110156112ef5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161096a565b6112fc8484848403611118565b50505050565b600e548390839060ff168061132f57506001600160a01b0382166000908152600f602052604090205460ff165b8061135257506001600160a01b0381166000908152600f602052604090205460ff165b61139e5760405162461bcd60e51b815260206004820152601c60248201527f4641493a2054726164696e6720686173206e6f74207374617274656400000000604482015260640161096a565b60006113ab86868661141f565b90506113b88686836117e8565b505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166000908152600b602052604081205460ff168061145e57506001600160a01b0383166000908152600b602052604090205460ff165b1561146a5750806109c1565b6040805160e08101825260075461ffff8082168352620100008204811660208085019190915264010000000083048216848601526601000000000000830482166060850152680100000000000000008304821660808501526a0100000000000000000000830490911660a0840152600160601b90910467ffffffffffffffff1660c08301526001600160a01b0387166000908152600a9091529182205490919060ff161561161c576040820151612710906115299061ffff168661206b565b6115339190612082565b61153d9082612019565b905060008260c0015167ffffffffffffffff164261155b91906120a4565b9050610708811115801561158957506001600160a01b0386166000908152600c602052604090205461ffff16155b1561161a5761012c81116115c1576001600160a01b0386166000908152600c60205260409020805461ffff19166109c417905561161a565b61038481116115f4576001600160a01b0386166000908152600c60205260409020805461ffff19166105dc17905561161a565b6001600160a01b0386166000908152600c60205260409020805461ffff19166103e81790555b505b6001600160a01b0385166000908152600a602052604090205460ff16156116cf5760a0820151612710906116549061ffff168661206b565b61165e9190612082565b6116689082612019565b9050620151808260c0015167ffffffffffffffff164261168891906120a4565b116116cf576001600160a01b0386166000908152600c6020526040902054612710906116b89061ffff168661206b565b6116c29190612082565b6116cc9082612019565b90505b6116da8630836117e8565b60408051608081018252600d546001600160801b038116825261ffff600160801b82041660208084019190915260ff600160901b83048116151584860152600160981b9092048216151560608401526001600160a01b038a166000908152600a909152929092205490911615801561175457508060400151155b8015611761575080606001515b156117d3573060009081526020819052604090205481516001600160801b031681106117d157600d805472ff0000000000000000000000000000000000001916600160901b1790556117b48185846119d5565b600d805472ff000000000000000000000000000000000000191690555b505b6117dd82866120a4565b979650505050505050565b6001600160a01b0383166118645760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161096a565b6001600160a01b0382166118e05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161096a565b6001600160a01b0383166000908152602081905260409020548181101561196f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161096a565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112fc565b60008260a0015183604001516119eb919061202c565b61ffff1683606001518460000151611a03919061202c565b611a119061ffff168661206b565b611a1b9190612082565b9050600061271061ffff16836020015161ffff1683611a3a919061206b565b611a449190612082565b90506000611a5282846120a4565b600854909150611a6d9030906001600160a01b0316836117e8565b60008560a001518660400151611a83919061202c565b61ffff1686608001518760200151611a9b919061202c565b611aa99061ffff168961206b565b611ab39190612082565b90506000611ac2600283612082565b905047611ad8611ad28387612019565b30611b6e565b6000611ae482476120a4565b90506000611af28488612019565b611afc888461206b565b611b069190612082565b6008546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611b41573d6000803e3d6000fd5b50611b6184611b5083856120a4565b6009546001600160a01b0316611ce2565b5050505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ba357611ba36120b7565b6001600160a01b03928316602091820292909201810191909152600654604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015611c15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3991906120cd565b81600181518110611c4c57611c4c6120b7565b6001600160a01b0392831660209182029290920101526006546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac94790611cab9086906000908690889042906004016120ea565b600060405180830381600087803b158015611cc557600080fd5b505af1158015611cd9573d6000803e3d6000fd5b50505050505050565b6006546040517ff305d7190000000000000000000000000000000000000000000000000000000081523060048201526024810185905260006044820181905260648201526001600160a01b0383811660848301524260a48301529091169063f305d71990849060c40160606040518083038185885af1158015611d69573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906113b8919061215b565b600060208083528351808285015260005b81811015611dbb57858101830151858201604001528201611d9f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146110bb57600080fd5b80151581146110bb57600080fd5b60008060408385031215611e1257600080fd5b8235611e1d81611ddc565b91506020830135611e2d81611df1565b809150509250929050565b60008060408385031215611e4b57600080fd5b8235611e5681611ddc565b946020939093013593505050565b600060208284031215611e7657600080fd5b81356109c181611ddc565b600080600060608486031215611e9657600080fd5b8335611ea181611ddc565b92506020840135611eb181611ddc565b929592945050506040919091013590565b803561ffff81168114611ed457600080fd5b919050565b60008060008060808587031215611eef57600080fd5b611ef885611ec2565b9350611f0660208601611ec2565b9250611f1460408601611ec2565b9150611f2260608601611ec2565b905092959194509250565b600080600060608486031215611f4257600080fd5b83356001600160801b0381168114611f5957600080fd5b9250611f6760208501611ec2565b91506040840135611f7781611df1565b809150509250925092565b600060208284031215611f9457600080fd5b5035919050565b60008060408385031215611fae57600080fd5b8235611fb981611ddc565b91506020830135611e2d81611ddc565b600181811c90821680611fdd57607f821691505b602082108103611ffd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561090857610908612003565b61ffff81811683821601908082111561204757612047612003565b5092915050565b60006020828403121561206057600080fd5b81516109c181611df1565b808202811582820484141761090857610908612003565b60008261209f57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561090857610908612003565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120df57600080fd5b81516109c181611ddc565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561213a5784516001600160a01b031683529383019391830191600101612115565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561217057600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212204f935db420e4408620a30672271024ccfd9d1467f5b99599b63fb9336f22719b64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : uniswapRouterAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
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.