Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 CLICK
Holders
97
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
837.953076176153750926 CLICKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ClickBotToken
Compiler Version
v0.8.1+commit.df193b15
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // ,--, ,----, // ,---.'| ,--. ,----.. ,/ .`| // ,----.. | | : ,---, ,----.. ,--/ /| ,---,. / / \ ,` .' : // / / \ : : | ,`--.' | / / \ ,---,': / ' ,' .' \ / . : ; ; / // | : : | ' : | : : | : : : : '/ / ,---.' .' | . / ;. \ .'___,/ ,' // . | ;. / ; ; ' : | ' . | ;. / | ' , | | |: | . ; / ` ; | : | // . ; /--` ' | |__ | : | . ; /--` ' | / : : : / ; | ; \ ; | ; |.'; ; // ; | ; | | :.'| ' ' ; ; | ; | ; ; : | ; | : | ; | ' `----' | | // | : | ' : ; | | | | : | : ' \ | : \ . | ' ' ' : ' : ; // . | '___ | | ./ ' : ; . | '___ | | ' | | . | ' ; \; / | | | ' // ' ; : .'| ; : ; | | ' ' ; : .'| ' : |. \ ' : '; | \ \ ', / ' : | // ' | '/ : | ,/ ' : | ' | '/ : | | '_\.' | | | ; ; : / ; |.' // | : / '---' ; |.' | : / ' : | | : / \ \ .' '---' // \ \ .' '---' \ \ .' ; |,' | | ,' `---` // `---` `---` '---' `----' // * The rules for the game are simple: // // 1. Players must buy a ticket and press the Telegram Bot button to play. // 2. Each time a player presses the button, the countdown timer increases by 5 minutes (up to a limit of 30 minutes). // 3. If the countdown timer reaches zero, the last player to press the button wins the jackpot. // 4. The jackpot, starting at 1 ETH, is made of 50% of the ticket sales and token taxes. 50% of all tickets sold are burned, while the other half is swapped for ETH and added to the jackpot. // Similarly, half of the tax on the token is also sent to the jackpot. // 5. When a player wins the jackpot, he receive 50% of the current total, and the remaining 50% stays in the contract to continue growing the jackpot from game to game. // // Good luck! //----------------------------------------------------SOCIALS---------------------------------------------------- // // https://t.me/ClickerGAMEportal // https://twitter.com/_clickbot // https://clickbot.app // //----------------------------------------------------SOCIALS---------------------------------------------------- pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.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}. */ contract ClickBotToken is ERC20, Ownable { // The tax fee applied on each transfer uint256 public constant TAX_FEE = 5; // The game contract that will receive half of the ETH generated from token swaps address public gameContract; // Boolean flag to determine whether tax is active bool public isTaxActive = false; // Address where the other half of the ETH generated from token swaps will be sent address public teamAddress; // The Uniswap v2 router contract IUniswapV2Router02 public uniswap; // Mapping to track accounts excluded from the tax fee mapping(address => bool) public isExcludedFromFee; // Event to log receipt of ETH event Received(address indexed sender, uint256 amount); /** * @dev Constructor function. * Sets the values for {tokenName}, {tokenSymbol}, {initialSupply}, and {uniswap}. * Mints all tokens to the deployer. */ constructor(uint256 initialSupply, address _uniswap) ERC20("ClickBotToken", "CLICK") { _mint(msg.sender, initialSupply); uniswap = IUniswapV2Router02(_uniswap); } /** * @dev Function to set the tax status. * Can only be called by the contract owner. */ function setTaxStatus(bool _status) external onlyOwner { isTaxActive = _status; } /** * @dev Function to set the team's address. * Can only be called by the contract owner. */ function setTeamAddress(address _teamAddress) external onlyOwner { teamAddress = _teamAddress; } /** * @dev Function to set the game contract address. * Can only be called by the contract owner. */ function setGameContract(address _gameContract) external onlyOwner { gameContract = _gameContract; } /** * @dev Function to set whether an account is excluded from the tax fee. * Can only be called by the contract owner. */ function setExcludedFromFee(address account, bool excluded) external onlyOwner { isExcludedFromFee[account] = excluded; } /** * @dev Overrides the original _transfer function. * Applies tax fee on each transfer unless the sender or recipient is excluded from the fee. */ function _transfer(address sender, address recipient, uint256 amount) internal override { if (isTaxActive && !isExcludedFromFee[sender] && !isExcludedFromFee[recipient]) { uint256 taxAmount = (amount * TAX_FEE) / 100; uint256 sendAmount = amount - taxAmount; // Transfer tax to this contract super._transfer(sender, address(this), taxAmount); // Transfer the remaining tokens super._transfer(sender, recipient, sendAmount); } else { super._transfer(sender, recipient, amount); } } /** * @dev Fallback function to receive ETH. * Emits an {Received} event. */ receive() external payable { emit Received(msg.sender, msg.value); } /** * @dev Function to withdraw ETH from the contract. * Can only be called by the contract owner. */ function withdrawETH(address payable to, uint256 amount) external onlyOwner { require(address(this).balance >= amount, "Not enough ETH in the contract"); to.transfer(amount); } /** * @dev Function to swap tokens for ETH. * Can only be called by the contract owner. * The swapped ETH is equally divided between the game contract and the team address. */ function swapTokensForEth() external onlyOwner { uint256 tokenBalance = balanceOf(address(this)); // Generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswap.WETH(); _approve(address(this), address(uniswap), tokenBalance); // get the current ETH balance of the contract, so we can calculate the amount of ETH that the swap generates uint256 initialEthBalance = address(this).balance; // make the swap uniswap.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenBalance, 0, // path, address(this), // block.timestamp ); uint256 newEthBalance = address(this).balance; uint256 ethFromSwap = newEthBalance - initialEthBalance; // divide the ETH from the swap into two halves uint256 halfEth = ethFromSwap / 2; // transfer half of the ETH to the gameContract payable(gameContract).transfer(halfEth); // transfer the other half to the teamAddress payable(teamAddress).transfer(halfEth); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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.9.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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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.9.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": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"_uniswap","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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Received","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":"TAX_FEE","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":[],"name":"gameContract","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gameContract","type":"address"}],"name":"setGameContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setTaxStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamAddress","type":"address"}],"name":"setTeamAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensForEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uniswap","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000600660146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162002c1138038062002c11833981810160405281019062000052919062000491565b6040518060400160405280600d81526020017f436c69636b426f74546f6b656e000000000000000000000000000000000000008152506040518060400160405280600581526020017f434c49434b0000000000000000000000000000000000000000000000000000008152508160039080519060200190620000d6929190620003b3565b508060049080519060200190620000ef929190620003b3565b50505062000112620001066200016d60201b60201c565b6200017560201b60201c565b6200012433836200023b60201b60201c565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620006e6565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a5906200050a565b60405180910390fd5b620002c260008383620003a960201b60201c565b8060026000828254620002d691906200055a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038991906200052c565b60405180910390a3620003a560008383620003ae60201b60201c565b5050565b505050565b505050565b828054620003c190620005f5565b90600052602060002090601f016020900481019282620003e5576000855562000431565b82601f106200040057805160ff191683800117855562000431565b8280016001018555821562000431579182015b828111156200043057825182559160200191906001019062000413565b5b50905062000440919062000444565b5090565b5b808211156200045f57600081600090555060010162000445565b5090565b6000815190506200047481620006b2565b92915050565b6000815190506200048b81620006cc565b92915050565b60008060408385031215620004a557600080fd5b6000620004b5858286016200047a565b9250506020620004c88582860162000463565b9150509250929050565b6000620004e1601f8362000549565b9150620004ee8262000689565b602082019050919050565b6200050481620005eb565b82525050565b600060208201905081810360008301526200052581620004d2565b9050919050565b6000602082019050620005436000830184620004f9565b92915050565b600082825260208201905092915050565b60006200056782620005eb565b91506200057483620005eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005ac57620005ab6200062b565b5b828201905092915050565b6000620005c482620005cb565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200060e57607f821691505b602082108114156200062557620006246200065a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620006bd81620005b7565b8114620006c957600080fd5b50565b620006d781620005eb565b8114620006e357600080fd5b50565b61251b80620006f66000396000f3fe6080604052600436106101855760003560e01c80636612e66f116100d157806398a0dd091161008a578063d07c9c8111610064578063d07c9c81146105dd578063d3f3300914610608578063dd62ed3e14610633578063f2fde38b14610670576101da565b806398a0dd0914610538578063a457c2d714610563578063a9059cbb146105a0576101da565b80636612e66f1461043c5780636690864e1461046557806370a082311461048e578063715018a6146104cb5780638da5cb5b146104e257806395d89b411461050d576101da565b80632681f7e41161013e578063396ecb4911610118578063396ecb4914610396578063405ebd4d146103ad5780634782f779146103d65780635342acb4146103ff576101da565b80632681f7e414610303578063313ce5671461032e5780633950935114610359576101da565b806306fdde03146101df578063095ea7b31461020a5780631533078f1461024757806318160ddd146102705780631c75f0851461029b57806323b872dd146102c6576101da565b366101da573373ffffffffffffffffffffffffffffffffffffffff167f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874346040516101d09190611e4b565b60405180910390a2005b600080fd5b3480156101eb57600080fd5b506101f4610699565b6040516102019190611ce9565b60405180910390f35b34801561021657600080fd5b50610231600480360381019061022c91906119bd565b61072b565b60405161023e9190611cb3565b60405180910390f35b34801561025357600080fd5b5061026e600480360381019061026991906119f9565b61074e565b005b34801561027c57600080fd5b50610285610773565b6040516102929190611e4b565b60405180910390f35b3480156102a757600080fd5b506102b061077d565b6040516102bd9190611c98565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190611932565b6107a3565b6040516102fa9190611cb3565b60405180910390f35b34801561030f57600080fd5b506103186107d2565b6040516103259190611cce565b60405180910390f35b34801561033a57600080fd5b506103436107f8565b6040516103509190611ec0565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b91906119bd565b610801565b60405161038d9190611cb3565b60405180910390f35b3480156103a257600080fd5b506103ab610838565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190611868565b610c12565b005b3480156103e257600080fd5b506103fd60048036038101906103f891906118ba565b610c5e565b005b34801561040b57600080fd5b5061042660048036038101906104219190611868565b610cf4565b6040516104339190611cb3565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190611981565b610d14565b005b34801561047157600080fd5b5061048c60048036038101906104879190611868565b610d77565b005b34801561049a57600080fd5b506104b560048036038101906104b09190611868565b610dc3565b6040516104c29190611e4b565b60405180910390f35b3480156104d757600080fd5b506104e0610e0b565b005b3480156104ee57600080fd5b506104f7610e1f565b6040516105049190611c98565b60405180910390f35b34801561051957600080fd5b50610522610e49565b60405161052f9190611ce9565b60405180910390f35b34801561054457600080fd5b5061054d610edb565b60405161055a9190611cb3565b60405180910390f35b34801561056f57600080fd5b5061058a600480360381019061058591906119bd565b610eee565b6040516105979190611cb3565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c291906119bd565b610f65565b6040516105d49190611cb3565b60405180910390f35b3480156105e957600080fd5b506105f2610f88565b6040516105ff9190611e4b565b60405180910390f35b34801561061457600080fd5b5061061d610f8d565b60405161062a9190611c98565b60405180910390f35b34801561063f57600080fd5b5061065a600480360381019061065591906118f6565b610fb3565b6040516106679190611e4b565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190611868565b61103a565b005b6060600380546106a890612115565b80601f01602080910402602001604051908101604052809291908181526020018280546106d490612115565b80156107215780601f106106f657610100808354040283529160200191610721565b820191906000526020600020905b81548152906001019060200180831161070457829003601f168201915b5050505050905090565b6000806107366110be565b90506107438185856110c6565b600191505092915050565b610756611291565b80600660146101000a81548160ff02191690831515021790555050565b6000600254905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806107ae6110be565b90506107bb85828561130f565b6107c685858561139b565b60019150509392505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b60008061080c6110be565b905061082d81858561081e8589610fb3565b6108289190611f30565b6110c6565b600191505092915050565b610840611291565b600061084b30610dc3565b90506000600267ffffffffffffffff811115610890577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156108be5781602001602082028036833780820191505090505b50905030816000815181106108fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561099e57600080fd5b505afa1580156109b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d69190611891565b81600181518110610a10577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610a7730600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846110c6565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008530426040518663ffffffff1660e01b8152600401610ae0959493929190611e66565b600060405180830381600087803b158015610afa57600080fd5b505af1158015610b0e573d6000803e3d6000fd5b50505050600047905060008282610b259190612011565b90506000600282610b369190611f86565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ba0573d6000803e3d6000fd5b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c09573d6000803e3d6000fd5b50505050505050565b610c1a611291565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c66611291565b80471015610ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca090611dab565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cef573d6000803e3d6000fd5b505050565b60096020528060005260406000206000915054906101000a900460ff1681565b610d1c611291565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610d7f611291565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e13611291565b610e1d60006114b7565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e5890612115565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8490612115565b8015610ed15780601f10610ea657610100808354040283529160200191610ed1565b820191906000526020600020905b815481529060010190602001808311610eb457829003601f168201915b5050505050905090565b600660149054906101000a900460ff1681565b600080610ef96110be565b90506000610f078286610fb3565b905083811015610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390611e2b565b60405180910390fd5b610f5982868684036110c6565b60019250505092915050565b600080610f706110be565b9050610f7d81858561139b565b600191505092915050565b600581565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611042611291565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990611d2b565b60405180910390fd5b6110bb816114b7565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90611e0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90611d4b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112849190611e4b565b60405180910390a3505050565b6112996110be565b73ffffffffffffffffffffffffffffffffffffffff166112b7610e1f565b73ffffffffffffffffffffffffffffffffffffffff161461130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490611dcb565b60405180910390fd5b565b600061131b8484610fb3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113955781811015611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90611d6b565b60405180910390fd5b61139484848484036110c6565b5b50505050565b600660149054906101000a900460ff1680156114015750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156114575750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114a6576000606460058361146d9190611fb7565b6114779190611f86565b9050600081836114879190612011565b905061149485308461157d565b61149f85858361157d565b50506114b2565b6114b183838361157d565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e490611deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490611d0b565b60405180910390fd5b6116688383836117f5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590611d8b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117dc9190611e4b565b60405180910390a36117ef8484846117fa565b50505050565b505050565b505050565b60008135905061180e81612489565b92915050565b60008151905061182381612489565b92915050565b600081359050611838816124a0565b92915050565b60008135905061184d816124b7565b92915050565b600081359050611862816124ce565b92915050565b60006020828403121561187a57600080fd5b6000611888848285016117ff565b91505092915050565b6000602082840312156118a357600080fd5b60006118b184828501611814565b91505092915050565b600080604083850312156118cd57600080fd5b60006118db85828601611829565b92505060206118ec85828601611853565b9150509250929050565b6000806040838503121561190957600080fd5b6000611917858286016117ff565b9250506020611928858286016117ff565b9150509250929050565b60008060006060848603121561194757600080fd5b6000611955868287016117ff565b9350506020611966868287016117ff565b925050604061197786828701611853565b9150509250925092565b6000806040838503121561199457600080fd5b60006119a2858286016117ff565b92505060206119b38582860161183e565b9150509250929050565b600080604083850312156119d057600080fd5b60006119de858286016117ff565b92505060206119ef85828601611853565b9150509250929050565b600060208284031215611a0b57600080fd5b6000611a198482850161183e565b91505092915050565b6000611a2e8383611a3a565b60208301905092915050565b611a4381612045565b82525050565b611a5281612045565b82525050565b6000611a6382611eeb565b611a6d8185611f0e565b9350611a7883611edb565b8060005b83811015611aa9578151611a908882611a22565b9750611a9b83611f01565b925050600181019050611a7c565b5085935050505092915050565b611abf81612069565b82525050565b611ace816120ac565b82525050565b611add816120d0565b82525050565b6000611aee82611ef6565b611af88185611f1f565b9350611b088185602086016120e2565b611b11816121d4565b840191505092915050565b6000611b29602383611f1f565b9150611b34826121e5565b604082019050919050565b6000611b4c602683611f1f565b9150611b5782612234565b604082019050919050565b6000611b6f602283611f1f565b9150611b7a82612283565b604082019050919050565b6000611b92601d83611f1f565b9150611b9d826122d2565b602082019050919050565b6000611bb5602683611f1f565b9150611bc0826122fb565b604082019050919050565b6000611bd8601e83611f1f565b9150611be38261234a565b602082019050919050565b6000611bfb602083611f1f565b9150611c0682612373565b602082019050919050565b6000611c1e602583611f1f565b9150611c298261239c565b604082019050919050565b6000611c41602483611f1f565b9150611c4c826123eb565b604082019050919050565b6000611c64602583611f1f565b9150611c6f8261243a565b604082019050919050565b611c8381612095565b82525050565b611c928161209f565b82525050565b6000602082019050611cad6000830184611a49565b92915050565b6000602082019050611cc86000830184611ab6565b92915050565b6000602082019050611ce36000830184611ac5565b92915050565b60006020820190508181036000830152611d038184611ae3565b905092915050565b60006020820190508181036000830152611d2481611b1c565b9050919050565b60006020820190508181036000830152611d4481611b3f565b9050919050565b60006020820190508181036000830152611d6481611b62565b9050919050565b60006020820190508181036000830152611d8481611b85565b9050919050565b60006020820190508181036000830152611da481611ba8565b9050919050565b60006020820190508181036000830152611dc481611bcb565b9050919050565b60006020820190508181036000830152611de481611bee565b9050919050565b60006020820190508181036000830152611e0481611c11565b9050919050565b60006020820190508181036000830152611e2481611c34565b9050919050565b60006020820190508181036000830152611e4481611c57565b9050919050565b6000602082019050611e606000830184611c7a565b92915050565b600060a082019050611e7b6000830188611c7a565b611e886020830187611ad4565b8181036040830152611e9a8186611a58565b9050611ea96060830185611a49565b611eb66080830184611c7a565b9695505050505050565b6000602082019050611ed56000830184611c89565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000611f3b82612095565b9150611f4683612095565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f7b57611f7a612147565b5b828201905092915050565b6000611f9182612095565b9150611f9c83612095565b925082611fac57611fab612176565b5b828204905092915050565b6000611fc282612095565b9150611fcd83612095565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561200657612005612147565b5b828202905092915050565b600061201c82612095565b915061202783612095565b92508282101561203a57612039612147565b5b828203905092915050565b600061205082612075565b9050919050565b600061206282612075565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006120b7826120be565b9050919050565b60006120c982612075565b9050919050565b60006120db82612095565b9050919050565b60005b838110156121005780820151818401526020810190506120e5565b8381111561210f576000848401525b50505050565b6000600282049050600182168061212d57607f821691505b60208210811415612141576121406121a5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682045544820696e2074686520636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61249281612045565b811461249d57600080fd5b50565b6124a981612057565b81146124b457600080fd5b50565b6124c081612069565b81146124cb57600080fd5b50565b6124d781612095565b81146124e257600080fd5b5056fea26469706673582212207d0f439346f648af1b4fd76fc1759bd55e62fd5419c98cfc7f6e72d9278ac38564736f6c6343000801003300000000000000000000000000000000000000000000d3c21bcecceda10000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x6080604052600436106101855760003560e01c80636612e66f116100d157806398a0dd091161008a578063d07c9c8111610064578063d07c9c81146105dd578063d3f3300914610608578063dd62ed3e14610633578063f2fde38b14610670576101da565b806398a0dd0914610538578063a457c2d714610563578063a9059cbb146105a0576101da565b80636612e66f1461043c5780636690864e1461046557806370a082311461048e578063715018a6146104cb5780638da5cb5b146104e257806395d89b411461050d576101da565b80632681f7e41161013e578063396ecb4911610118578063396ecb4914610396578063405ebd4d146103ad5780634782f779146103d65780635342acb4146103ff576101da565b80632681f7e414610303578063313ce5671461032e5780633950935114610359576101da565b806306fdde03146101df578063095ea7b31461020a5780631533078f1461024757806318160ddd146102705780631c75f0851461029b57806323b872dd146102c6576101da565b366101da573373ffffffffffffffffffffffffffffffffffffffff167f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874346040516101d09190611e4b565b60405180910390a2005b600080fd5b3480156101eb57600080fd5b506101f4610699565b6040516102019190611ce9565b60405180910390f35b34801561021657600080fd5b50610231600480360381019061022c91906119bd565b61072b565b60405161023e9190611cb3565b60405180910390f35b34801561025357600080fd5b5061026e600480360381019061026991906119f9565b61074e565b005b34801561027c57600080fd5b50610285610773565b6040516102929190611e4b565b60405180910390f35b3480156102a757600080fd5b506102b061077d565b6040516102bd9190611c98565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190611932565b6107a3565b6040516102fa9190611cb3565b60405180910390f35b34801561030f57600080fd5b506103186107d2565b6040516103259190611cce565b60405180910390f35b34801561033a57600080fd5b506103436107f8565b6040516103509190611ec0565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b91906119bd565b610801565b60405161038d9190611cb3565b60405180910390f35b3480156103a257600080fd5b506103ab610838565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190611868565b610c12565b005b3480156103e257600080fd5b506103fd60048036038101906103f891906118ba565b610c5e565b005b34801561040b57600080fd5b5061042660048036038101906104219190611868565b610cf4565b6040516104339190611cb3565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190611981565b610d14565b005b34801561047157600080fd5b5061048c60048036038101906104879190611868565b610d77565b005b34801561049a57600080fd5b506104b560048036038101906104b09190611868565b610dc3565b6040516104c29190611e4b565b60405180910390f35b3480156104d757600080fd5b506104e0610e0b565b005b3480156104ee57600080fd5b506104f7610e1f565b6040516105049190611c98565b60405180910390f35b34801561051957600080fd5b50610522610e49565b60405161052f9190611ce9565b60405180910390f35b34801561054457600080fd5b5061054d610edb565b60405161055a9190611cb3565b60405180910390f35b34801561056f57600080fd5b5061058a600480360381019061058591906119bd565b610eee565b6040516105979190611cb3565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c291906119bd565b610f65565b6040516105d49190611cb3565b60405180910390f35b3480156105e957600080fd5b506105f2610f88565b6040516105ff9190611e4b565b60405180910390f35b34801561061457600080fd5b5061061d610f8d565b60405161062a9190611c98565b60405180910390f35b34801561063f57600080fd5b5061065a600480360381019061065591906118f6565b610fb3565b6040516106679190611e4b565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190611868565b61103a565b005b6060600380546106a890612115565b80601f01602080910402602001604051908101604052809291908181526020018280546106d490612115565b80156107215780601f106106f657610100808354040283529160200191610721565b820191906000526020600020905b81548152906001019060200180831161070457829003601f168201915b5050505050905090565b6000806107366110be565b90506107438185856110c6565b600191505092915050565b610756611291565b80600660146101000a81548160ff02191690831515021790555050565b6000600254905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806107ae6110be565b90506107bb85828561130f565b6107c685858561139b565b60019150509392505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b60008061080c6110be565b905061082d81858561081e8589610fb3565b6108289190611f30565b6110c6565b600191505092915050565b610840611291565b600061084b30610dc3565b90506000600267ffffffffffffffff811115610890577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156108be5781602001602082028036833780820191505090505b50905030816000815181106108fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561099e57600080fd5b505afa1580156109b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d69190611891565b81600181518110610a10577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610a7730600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846110c6565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008530426040518663ffffffff1660e01b8152600401610ae0959493929190611e66565b600060405180830381600087803b158015610afa57600080fd5b505af1158015610b0e573d6000803e3d6000fd5b50505050600047905060008282610b259190612011565b90506000600282610b369190611f86565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ba0573d6000803e3d6000fd5b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c09573d6000803e3d6000fd5b50505050505050565b610c1a611291565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c66611291565b80471015610ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca090611dab565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cef573d6000803e3d6000fd5b505050565b60096020528060005260406000206000915054906101000a900460ff1681565b610d1c611291565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610d7f611291565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e13611291565b610e1d60006114b7565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e5890612115565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8490612115565b8015610ed15780601f10610ea657610100808354040283529160200191610ed1565b820191906000526020600020905b815481529060010190602001808311610eb457829003601f168201915b5050505050905090565b600660149054906101000a900460ff1681565b600080610ef96110be565b90506000610f078286610fb3565b905083811015610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390611e2b565b60405180910390fd5b610f5982868684036110c6565b60019250505092915050565b600080610f706110be565b9050610f7d81858561139b565b600191505092915050565b600581565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611042611291565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990611d2b565b60405180910390fd5b6110bb816114b7565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90611e0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90611d4b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112849190611e4b565b60405180910390a3505050565b6112996110be565b73ffffffffffffffffffffffffffffffffffffffff166112b7610e1f565b73ffffffffffffffffffffffffffffffffffffffff161461130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490611dcb565b60405180910390fd5b565b600061131b8484610fb3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113955781811015611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90611d6b565b60405180910390fd5b61139484848484036110c6565b5b50505050565b600660149054906101000a900460ff1680156114015750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156114575750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114a6576000606460058361146d9190611fb7565b6114779190611f86565b9050600081836114879190612011565b905061149485308461157d565b61149f85858361157d565b50506114b2565b6114b183838361157d565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e490611deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490611d0b565b60405180910390fd5b6116688383836117f5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590611d8b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117dc9190611e4b565b60405180910390a36117ef8484846117fa565b50505050565b505050565b505050565b60008135905061180e81612489565b92915050565b60008151905061182381612489565b92915050565b600081359050611838816124a0565b92915050565b60008135905061184d816124b7565b92915050565b600081359050611862816124ce565b92915050565b60006020828403121561187a57600080fd5b6000611888848285016117ff565b91505092915050565b6000602082840312156118a357600080fd5b60006118b184828501611814565b91505092915050565b600080604083850312156118cd57600080fd5b60006118db85828601611829565b92505060206118ec85828601611853565b9150509250929050565b6000806040838503121561190957600080fd5b6000611917858286016117ff565b9250506020611928858286016117ff565b9150509250929050565b60008060006060848603121561194757600080fd5b6000611955868287016117ff565b9350506020611966868287016117ff565b925050604061197786828701611853565b9150509250925092565b6000806040838503121561199457600080fd5b60006119a2858286016117ff565b92505060206119b38582860161183e565b9150509250929050565b600080604083850312156119d057600080fd5b60006119de858286016117ff565b92505060206119ef85828601611853565b9150509250929050565b600060208284031215611a0b57600080fd5b6000611a198482850161183e565b91505092915050565b6000611a2e8383611a3a565b60208301905092915050565b611a4381612045565b82525050565b611a5281612045565b82525050565b6000611a6382611eeb565b611a6d8185611f0e565b9350611a7883611edb565b8060005b83811015611aa9578151611a908882611a22565b9750611a9b83611f01565b925050600181019050611a7c565b5085935050505092915050565b611abf81612069565b82525050565b611ace816120ac565b82525050565b611add816120d0565b82525050565b6000611aee82611ef6565b611af88185611f1f565b9350611b088185602086016120e2565b611b11816121d4565b840191505092915050565b6000611b29602383611f1f565b9150611b34826121e5565b604082019050919050565b6000611b4c602683611f1f565b9150611b5782612234565b604082019050919050565b6000611b6f602283611f1f565b9150611b7a82612283565b604082019050919050565b6000611b92601d83611f1f565b9150611b9d826122d2565b602082019050919050565b6000611bb5602683611f1f565b9150611bc0826122fb565b604082019050919050565b6000611bd8601e83611f1f565b9150611be38261234a565b602082019050919050565b6000611bfb602083611f1f565b9150611c0682612373565b602082019050919050565b6000611c1e602583611f1f565b9150611c298261239c565b604082019050919050565b6000611c41602483611f1f565b9150611c4c826123eb565b604082019050919050565b6000611c64602583611f1f565b9150611c6f8261243a565b604082019050919050565b611c8381612095565b82525050565b611c928161209f565b82525050565b6000602082019050611cad6000830184611a49565b92915050565b6000602082019050611cc86000830184611ab6565b92915050565b6000602082019050611ce36000830184611ac5565b92915050565b60006020820190508181036000830152611d038184611ae3565b905092915050565b60006020820190508181036000830152611d2481611b1c565b9050919050565b60006020820190508181036000830152611d4481611b3f565b9050919050565b60006020820190508181036000830152611d6481611b62565b9050919050565b60006020820190508181036000830152611d8481611b85565b9050919050565b60006020820190508181036000830152611da481611ba8565b9050919050565b60006020820190508181036000830152611dc481611bcb565b9050919050565b60006020820190508181036000830152611de481611bee565b9050919050565b60006020820190508181036000830152611e0481611c11565b9050919050565b60006020820190508181036000830152611e2481611c34565b9050919050565b60006020820190508181036000830152611e4481611c57565b9050919050565b6000602082019050611e606000830184611c7a565b92915050565b600060a082019050611e7b6000830188611c7a565b611e886020830187611ad4565b8181036040830152611e9a8186611a58565b9050611ea96060830185611a49565b611eb66080830184611c7a565b9695505050505050565b6000602082019050611ed56000830184611c89565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000611f3b82612095565b9150611f4683612095565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f7b57611f7a612147565b5b828201905092915050565b6000611f9182612095565b9150611f9c83612095565b925082611fac57611fab612176565b5b828204905092915050565b6000611fc282612095565b9150611fcd83612095565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561200657612005612147565b5b828202905092915050565b600061201c82612095565b915061202783612095565b92508282101561203a57612039612147565b5b828203905092915050565b600061205082612075565b9050919050565b600061206282612075565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006120b7826120be565b9050919050565b60006120c982612075565b9050919050565b60006120db82612095565b9050919050565b60005b838110156121005780820151818401526020810190506120e5565b8381111561210f576000848401525b50505050565b6000600282049050600182168061212d57607f821691505b60208210811415612141576121406121a5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682045544820696e2074686520636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61249281612045565b811461249d57600080fd5b50565b6124a981612057565b81146124b457600080fd5b50565b6124c081612069565b81146124cb57600080fd5b50565b6124d781612095565b81146124e257600080fd5b5056fea26469706673582212207d0f439346f648af1b4fd76fc1759bd55e62fd5419c98cfc7f6e72d9278ac38564736f6c63430008010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000d3c21bcecceda10000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 1000000000000000000000000
Arg [1] : _uniswap (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [1] : 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.