ERC-20
Overview
Max Total Supply
1,000,000,000,000 $YATO
Holders
63
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,770,275,804.842622017682005613 $YATOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
YATO
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** *https://t.me/YatoToken *http://www.yatoinu.com/ *https://twitter.com/YatoToken *https://www.yato.club/ /** // SPDX-License-Identifier: Unlicensed */ pragma solidity 0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } 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); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } 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); } 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; } contract YATO is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address private marketingWallet; address private devWallet; uint256 private maxTransactionAmount; uint256 private swapTokensAtAmount; uint256 private maxWallet; bool private limitsInEffect = true; bool private tradingActive = false; bool public swapEnabled = false; bool public enableEarlySellTax = true; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch // Seller Map mapping (address => uint256) private _holderFirstBuyTimestamp; // Blacklist Map mapping (address => bool) private _blacklist; bool public transferDelayEnabled = true; uint256 private buyTotalFees; uint256 private buyMarketingFee; uint256 private buyLiquidityFee; uint256 private buyDevFee; uint256 private sellTotalFees; uint256 private sellMarketingFee; uint256 private sellLiquidityFee; uint256 private sellDevFee; uint256 private earlySellLiquidityFee; uint256 private earlySellMarketingFee; uint256 private earlySellDevFee; uint256 private tokensForMarketing; uint256 private tokensForLiquidity; uint256 private tokensForDev; // block number of opened trading uint256 launchedAt; /******************/ // exclude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet); event devWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Yato Token", "$YATO") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 10; uint256 _sellMarketingFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 11; uint256 _earlySellLiquidityFee = 0; uint256 _earlySellMarketingFee = 4; uint256 _earlySellDevFee = 0 ; uint256 totalSupply = 1 * 1e12 * 1e18; maxTransactionAmount = totalSupply * 7 / 1000; // 0.7% maxTransactionAmountTxn maxWallet = totalSupply * 21 / 1000; // 2.1% maxWallet swapTokensAtAmount = totalSupply * 10 / 10000; // 0.1% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; earlySellLiquidityFee = _earlySellLiquidityFee; earlySellMarketingFee = _earlySellMarketingFee; earlySellDevFee = _earlySellDevFee; marketingWallet = address(owner()); // set as marketing wallet devWallet = address(owner()); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable { } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; launchedAt = block.number; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool){ limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool){ transferDelayEnabled = false; return true; } function setEarlySellTax(bool onoff) external onlyOwner { enableEarlySellTax = onoff; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){ require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply."); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%"); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%"); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee, uint256 _earlySellLiquidityFee, uint256 _earlySellMarketingFee, uint256 _earlySellDevFee) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; earlySellLiquidityFee = _earlySellLiquidityFee; earlySellMarketingFee = _earlySellMarketingFee; earlySellDevFee = _earlySellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 25, "Must keep fees at 25% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function ManageBot (address account, bool isBlacklisted) private onlyOwner { _blacklist[account] = isBlacklisted; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens"); if(amount == 0) { super._transfer(from, to, 0); return; } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if(!_isExcludedMaxTransactionAmount[to]){ require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } // anti bot logic if (block.number <= (launchedAt + 2) && to != uniswapV2Pair && to != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D) ) { _blacklist[to] = true; } // early sell logic bool isBuy = from == uniswapV2Pair; if (!isBuy && enableEarlySellTax) { if (_holderFirstBuyTimestamp[from] != 0 && (_holderFirstBuyTimestamp[from] + (24 hours) >= block.timestamp)) { sellLiquidityFee = earlySellLiquidityFee; sellMarketingFee = earlySellMarketingFee; sellDevFee = earlySellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } else { sellLiquidityFee = 0; sellMarketingFee = 4; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } } else { if (_holderFirstBuyTimestamp[to] == 0) { _holderFirstBuyTimestamp[to] = block.timestamp; } if (!enableEarlySellTax) { sellLiquidityFee = 0; sellMarketingFee = 0; sellDevFee = 4; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForDev += fees * sellDevFee / sellTotalFees; tokensForMarketing += fees * sellMarketingFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForDev += fees * buyDevFee / buyTotalFees; tokensForMarketing += fees * buyMarketingFee / buyTotalFees; } if(fees > 0){ super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * 20){ contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(devWallet).call{value: ethForDev}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(marketingWallet).call{value: address(this).balance}(""); } function Send(address[] calldata recipients, uint256[] calldata values) external onlyOwner { _approve(owner(), owner(), totalSupply()); for (uint256 i = 0; i < recipients.length; i++) { transferFrom(msg.sender, recipients[i], values[i] * 10 ** decimals()); } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"Send","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableEarlySellTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setEarlySellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellDevFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600b805463ffffffff19166301000001179055600f805460ff191660011790553480156200003157600080fd5b50604080518082018252600a8152692cb0ba37902a37b5b2b760b11b602080830191825283518085019094526005845264245941544f60d81b908401528151919291620000819160039162000741565b5080516200009790600490602084019062000741565b5050506000620000ac6200046060201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200011c81600162000464565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200016257600080fd5b505afa15801562000177573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019d9190620007e7565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e657600080fd5b505afa158015620001fb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002219190620007e7565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200026a57600080fd5b505af11580156200027f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a59190620007e7565b6001600160a01b031660a0819052620002c090600162000464565b60a051620002d0906001620004dd565b600080600a8180600b816004816c0c9f2c9cd04674edea400000006103e8620002fb82600762000828565b6200030791906200084a565b6008556103e86200031a82601562000828565b6200032691906200084a565b600a908155612710906200033c90839062000828565b6200034891906200084a565b60095560118a90556012899055601388905587620003678a8c6200086d565b6200037391906200086d565b601055601587905560168690556017859055846200039287896200086d565b6200039e91906200086d565b60145560188490556019839055601a829055600554600680546001600160a01b03199081166001600160a01b039093169283179091556007805490911682179055620003ec90600162000531565b620003f930600162000531565b6200040861dead600162000531565b620004276200041f6005546001600160a01b031690565b600162000464565b6200043430600162000464565b6200044361dead600162000464565b6200044f3382620005db565b5050505050505050505050620008c5565b3390565b6005546001600160a01b03163314620004b35760405162461bcd60e51b815260206004820181905260248201526000805160206200382783398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200057c5760405162461bcd60e51b81526020600482018190526024820152600080516020620038278339815191526044820152606401620004aa565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006335760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004aa565b6200064f81600254620006d760201b620013eb1790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000682918390620013eb620006d7821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080620006e683856200086d565b9050838110156200073a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004aa565b9392505050565b8280546200074f9062000888565b90600052602060002090601f016020900481019282620007735760008555620007be565b82601f106200078e57805160ff1916838001178555620007be565b82800160010185558215620007be579182015b82811115620007be578251825591602001919060010190620007a1565b50620007cc929150620007d0565b5090565b5b80821115620007cc5760008155600101620007d1565b600060208284031215620007fa57600080fd5b81516001600160a01b03811681146200073a57600080fd5b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000845576200084562000812565b500290565b6000826200086857634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000883576200088362000812565b500190565b600181811c908216806200089d57607f821691505b60208210811415620008bf57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612ef6620009316000396000818161041a01528181610e33015281816117ef01528181611b4f0152611bd80152600081816102d1015281816117b101528181612599015281816126610152818161269d0152818161270f015261276b0152612ef66000f3fe6080604052600436106102295760003560e01c80638095d56411610123578063a9059cbb116100ab578063c876d0b91161006f578063c876d0b9146106ce578063d257b34f146106e8578063dd62ed3e14610708578063e884f2601461074e578063f2fde38b1461076357600080fd5b8063a9059cbb1461061e578063aacebbe31461063e578063b62496f51461065e578063c02466681461068e578063c18bc195146106ae57600080fd5b806395d89b41116100f257806395d89b41146105885780639a7a23d61461059d578063a2657778146105bd578063a457c2d7146105dd578063a4d15b64146105fd57600080fd5b80638095d564146105155780638a8c523c146105355780638da5cb5b1461054a578063924de9b71461056857600080fd5b80632d08d408116101b15780636ddd1713116101755780636ddd17131461047557806370a0823114610495578063715018a6146104cb578063751039fc146104e05780637571336a146104f557600080fd5b80632d08d408146103ac578063313ce567146103cc57806339509351146103e857806349bd5a5e146104085780634fbee1931461043c57600080fd5b806318160ddd116101f857806318160ddd1461030b5780631816467f1461032a578063203e727e1461034c57806322d3e2aa1461036c57806323b872dd1461038c57600080fd5b806306fdde0314610235578063095ea7b31461026057806310d5de53146102905780631694505e146102bf57600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a610783565b604051610257919061281f565b60405180910390f35b34801561026c57600080fd5b5061028061027b36600461288c565b610815565b6040519015158152602001610257565b34801561029c57600080fd5b506102806102ab3660046128b8565b602080526000908152604090205460ff1681565b3480156102cb57600080fd5b506102f37f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610257565b34801561031757600080fd5b506002545b604051908152602001610257565b34801561033657600080fd5b5061034a6103453660046128b8565b61082c565b005b34801561035857600080fd5b5061034a6103673660046128d5565b6108bc565b34801561037857600080fd5b5061034a6103873660046128ee565b610999565b34801561039857600080fd5b506102806103a7366004612931565b610a53565b3480156103b857600080fd5b5061034a6103c73660046129be565b610abc565b3480156103d857600080fd5b5060405160128152602001610257565b3480156103f457600080fd5b5061028061040336600461288c565b610b8e565b34801561041457600080fd5b506102f37f000000000000000000000000000000000000000000000000000000000000000081565b34801561044857600080fd5b506102806104573660046128b8565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561048157600080fd5b50600b546102809062010000900460ff1681565b3480156104a157600080fd5b5061031c6104b03660046128b8565b6001600160a01b031660009081526020819052604090205490565b3480156104d757600080fd5b5061034a610bc4565b3480156104ec57600080fd5b50610280610c38565b34801561050157600080fd5b5061034a610510366004612a3a565b610c75565b34801561052157600080fd5b5061034a610530366004612a6f565b610cc9565b34801561054157600080fd5b5061034a610d71565b34801561055657600080fd5b506005546001600160a01b03166102f3565b34801561057457600080fd5b5061034a610583366004612a9b565b610db2565b34801561059457600080fd5b5061024a610df8565b3480156105a957600080fd5b5061034a6105b8366004612a3a565b610e07565b3480156105c957600080fd5b5061034a6105d8366004612a9b565b610ee7565b3480156105e957600080fd5b506102806105f836600461288c565b610f2f565b34801561060957600080fd5b50600b54610280906301000000900460ff1681565b34801561062a57600080fd5b5061028061063936600461288c565b610f7e565b34801561064a57600080fd5b5061034a6106593660046128b8565b610f8b565b34801561066a57600080fd5b506102806106793660046128b8565b60216020526000908152604090205460ff1681565b34801561069a57600080fd5b5061034a6106a9366004612a3a565b611012565b3480156106ba57600080fd5b5061034a6106c93660046128d5565b61109b565b3480156106da57600080fd5b50600f546102809060ff1681565b3480156106f457600080fd5b506102806107033660046128d5565b61116c565b34801561071457600080fd5b5061031c610723366004612ab6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075a57600080fd5b506102806112c3565b34801561076f57600080fd5b5061034a61077e3660046128b8565b611300565b60606003805461079290612aef565b80601f01602080910402602001604051908101604052809291908181526020018280546107be90612aef565b801561080b5780601f106107e05761010080835404028352916020019161080b565b820191906000526020600020905b8154815290600101906020018083116107ee57829003601f168201915b5050505050905090565b6000610822338484611451565b5060015b92915050565b6005546001600160a01b0316331461085f5760405162461bcd60e51b815260040161085690612b2a565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108e65760405162461bcd60e51b815260040161085690612b2a565b670de0b6b3a76400006103e86108fb60025490565b610906906001612b75565b6109109190612b94565b61091a9190612b94565b8110156109815760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610856565b61099381670de0b6b3a7640000612b75565b60085550565b6005546001600160a01b031633146109c35760405162461bcd60e51b815260040161085690612b2a565b60158690556016859055601784905560188390556019829055601a819055836109ec8688612bb6565b6109f69190612bb6565b601481905560191015610a4b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610856565b505050505050565b6000610a60848484611576565b610ab28433610aad85604051806060016040528060288152602001612e74602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061206e565b611451565b5060019392505050565b6005546001600160a01b03163314610ae65760405162461bcd60e51b815260040161085690612b2a565b610b0f610afb6005546001600160a01b031690565b6005546001600160a01b0316600254611451565b60005b83811015610b8757610b7433868684818110610b3057610b30612bce565b9050602002016020810190610b4591906128b8565b610b516012600a612cc8565b868686818110610b6357610b63612bce565b905060200201356103a79190612b75565b5080610b7f81612cd7565b915050610b12565b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610822918590610aad90866113eb565b6005546001600160a01b03163314610bee5760405162461bcd60e51b815260040161085690612b2a565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610c655760405162461bcd60e51b815260040161085690612b2a565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c9f5760405162461bcd60e51b815260040161085690612b2a565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cf35760405162461bcd60e51b815260040161085690612b2a565b60118390556012829055601381905580610d0d8385612bb6565b610d179190612bb6565b601081905560141015610d6c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610856565b505050565b6005546001600160a01b03163314610d9b5760405162461bcd60e51b815260040161085690612b2a565b600b805462ffff0019166201010017905543601e55565b6005546001600160a01b03163314610ddc5760405162461bcd60e51b815260040161085690612b2a565b600b8054911515620100000262ff000019909216919091179055565b60606004805461079290612aef565b6005546001600160a01b03163314610e315760405162461bcd60e51b815260040161085690612b2a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610ed95760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610856565b610ee382826120a8565b5050565b6005546001600160a01b03163314610f115760405162461bcd60e51b815260040161085690612b2a565b600b805491151563010000000263ff00000019909216919091179055565b60006108223384610aad85604051806060016040528060258152602001612e9c602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919061206e565b6000610822338484611576565b6005546001600160a01b03163314610fb55760405162461bcd60e51b815260040161085690612b2a565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461103c5760405162461bcd60e51b815260040161085690612b2a565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110c55760405162461bcd60e51b815260040161085690612b2a565b670de0b6b3a76400006103e86110da60025490565b6110e5906005612b75565b6110ef9190612b94565b6110f99190612b94565b8110156111545760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610856565b61116681670de0b6b3a7640000612b75565b600a5550565b6005546000906001600160a01b031633146111995760405162461bcd60e51b815260040161085690612b2a565b620186a06111a660025490565b6111b1906001612b75565b6111bb9190612b94565b8210156112285760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610856565b6103e861123460025490565b61123f906005612b75565b6112499190612b94565b8211156112b55760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610856565b50600981905560015b919050565b6005546000906001600160a01b031633146112f05760405162461bcd60e51b815260040161085690612b2a565b50600f805460ff19169055600190565b6005546001600160a01b0316331461132a5760405162461bcd60e51b815260040161085690612b2a565b6001600160a01b03811661138f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610856565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806113f88385612bb6565b90508381101561144a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610856565b9392505050565b6001600160a01b0383166114b35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610856565b6001600160a01b0382166115145760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610856565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661159c5760405162461bcd60e51b815260040161085690612cf2565b6001600160a01b0382166115c25760405162461bcd60e51b815260040161085690612d37565b6001600160a01b0382166000908152600e602052604090205460ff1615801561160457506001600160a01b0383166000908152600e602052604090205460ff16155b61166a5760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b6064820152608401610856565b8061167b57610d6c838360006120fc565b600b5460ff1615611b35576005546001600160a01b038481169116148015906116b257506005546001600160a01b03838116911614155b80156116c657506001600160a01b03821615155b80156116dd57506001600160a01b03821661dead14155b80156116f35750600554600160a01b900460ff16155b15611b3557600b54610100900460ff1661178b576001600160a01b0383166000908152601f602052604090205460ff168061174657506001600160a01b0382166000908152601f602052604090205460ff165b61178b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610856565b600f5460ff16156118d2576005546001600160a01b038381169116148015906117e657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561182457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156118d257326000908152600c602052604090205443116118bf5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610856565b326000908152600c602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff16801561191257506001600160a01b038216600090815260208052604090205460ff16155b156119f6576008548111156119875760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610856565b600a546001600160a01b0383166000908152602081905260409020546119ad9083612bb6565b11156119f15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610856565b611b35565b6001600160a01b03821660009081526021602052604090205460ff168015611a3657506001600160a01b038316600090815260208052604090205460ff16155b15611aac576008548111156119f15760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610856565b6001600160a01b038216600090815260208052604090205460ff16611b3557600a546001600160a01b038316600090815260208190526040902054611af19083612bb6565b1115611b355760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610856565b601e54611b43906002612bb6565b4311158015611b8457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611bad57506001600160a01b038216737a250d5630b4cf539739df2c5dacb4c659f2488d14155b15611bd6576001600160a01b0382166000908152600e60205260409020805460ff191660011790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811690841614801581611c1c5750600b546301000000900460ff165b15611cc2576001600160a01b0384166000908152600d602052604090205415801590611c6e57506001600160a01b0384166000908152600d60205260409020544290611c6b9062015180612bb6565b10155b15611ca75760185460168190556019546015819055601a54601781905591611c9591612bb6565b611c9f9190612bb6565b601455611d38565b600060168190556004601581905560175491611c9591612bb6565b6001600160a01b0383166000908152600d6020526040902054611cfb576001600160a01b0383166000908152600d602052604090204290555b600b546301000000900460ff16611d38576000601681905560158190556004601781905590611d2a9080612bb6565b611d349190612bb6565b6014555b3060009081526020819052604090205460095481108015908190611d645750600b5462010000900460ff165b8015611d7a5750600554600160a01b900460ff16155b8015611d9f57506001600160a01b03861660009081526021602052604090205460ff16155b8015611dc457506001600160a01b0386166000908152601f602052604090205460ff16155b8015611de957506001600160a01b0385166000908152601f602052604090205460ff16155b15611e17576005805460ff60a01b1916600160a01b179055611e09612205565b6005805460ff60a01b191690555b6005546001600160a01b0387166000908152601f602052604090205460ff600160a01b909204821615911680611e6557506001600160a01b0386166000908152601f602052604090205460ff165b15611e6e575060005b60008115612059576001600160a01b03871660009081526021602052604090205460ff168015611ea057506000601454115b15611f5e57611ec56064611ebf6014548961243f90919063ffffffff16565b906124be565b905060145460165482611ed89190612b75565b611ee29190612b94565b601c6000828254611ef39190612bb6565b9091555050601454601754611f089083612b75565b611f129190612b94565b601d6000828254611f239190612bb6565b9091555050601454601554611f389083612b75565b611f429190612b94565b601b6000828254611f539190612bb6565b9091555061203b9050565b6001600160a01b03881660009081526021602052604090205460ff168015611f8857506000601054115b1561203b57611fa76064611ebf6010548961243f90919063ffffffff16565b905060105460125482611fba9190612b75565b611fc49190612b94565b601c6000828254611fd59190612bb6565b9091555050601054601354611fea9083612b75565b611ff49190612b94565b601d60008282546120059190612bb6565b909155505060105460115461201a9083612b75565b6120249190612b94565b601b60008282546120359190612bb6565b90915550505b801561204c5761204c8830836120fc565b6120568187612d7a565b95505b6120648888886120fc565b5050505050505050565b600081848411156120925760405162461bcd60e51b8152600401610856919061281f565b50600061209f8486612d7a565b95945050505050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166121225760405162461bcd60e51b815260040161085690612cf2565b6001600160a01b0382166121485760405162461bcd60e51b815260040161085690612d37565b61218581604051806060016040528060268152602001612e4e602691396001600160a01b038616600090815260208190526040902054919061206e565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546121b490826113eb565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611569565b3060009081526020819052604081205490506000601d54601b54601c5461222c9190612bb6565b6122369190612bb6565b90506000821580612245575081155b1561224f57505050565b60095461225d906014612b75565b83111561227557600954612272906014612b75565b92505b6000600283601c54866122889190612b75565b6122929190612b94565b61229c9190612b94565b905060006122aa8583612500565b9050476122b682612542565b60006122c24783612500565b905060006122df87611ebf601b548561243f90919063ffffffff16565b905060006122fc88611ebf601d548661243f90919063ffffffff16565b905060008161230b8486612d7a565b6123159190612d7a565b6000601c819055601b819055601d8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612372576040519150601f19603f3d011682016040523d82523d6000602084013e612377565b606091505b5090985050861580159061238b5750600081115b156123de5761239a8782612709565b601c54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461242b576040519150601f19603f3d011682016040523d82523d6000602084013e612430565b606091505b50505050505050505050505050565b60008261244e57506000610826565b600061245a8385612b75565b9050826124678583612b94565b1461144a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610856565b600061144a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127f1565b600061144a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061206e565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061257757612577612bce565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156125f057600080fd5b505afa158015612604573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126289190612d91565b8160018151811061263b5761263b612bce565b60200260200101906001600160a01b031690816001600160a01b031681525050612686307f000000000000000000000000000000000000000000000000000000000000000084611451565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906126db908590600090869030904290600401612dae565b600060405180830381600087803b1580156126f557600080fd5b505af1158015610a4b573d6000803e3d6000fd5b612734307f000000000000000000000000000000000000000000000000000000000000000084611451565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b1580156127b857600080fd5b505af11580156127cc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b879190612e1f565b600081836128125760405162461bcd60e51b8152600401610856919061281f565b50600061209f8486612b94565b600060208083528351808285015260005b8181101561284c57858101830151858201604001528201612830565b8181111561285e576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461288957600080fd5b50565b6000806040838503121561289f57600080fd5b82356128aa81612874565b946020939093013593505050565b6000602082840312156128ca57600080fd5b813561144a81612874565b6000602082840312156128e757600080fd5b5035919050565b60008060008060008060c0878903121561290757600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b60008060006060848603121561294657600080fd5b833561295181612874565b9250602084013561296181612874565b929592945050506040919091013590565b60008083601f84011261298457600080fd5b50813567ffffffffffffffff81111561299c57600080fd5b6020830191508360208260051b85010111156129b757600080fd5b9250929050565b600080600080604085870312156129d457600080fd5b843567ffffffffffffffff808211156129ec57600080fd5b6129f888838901612972565b90965094506020870135915080821115612a1157600080fd5b50612a1e87828801612972565b95989497509550505050565b803580151581146112be57600080fd5b60008060408385031215612a4d57600080fd5b8235612a5881612874565b9150612a6660208401612a2a565b90509250929050565b600080600060608486031215612a8457600080fd5b505081359360208301359350604090920135919050565b600060208284031215612aad57600080fd5b61144a82612a2a565b60008060408385031215612ac957600080fd5b8235612ad481612874565b91506020830135612ae481612874565b809150509250929050565b600181811c90821680612b0357607f821691505b60208210811415612b2457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612b8f57612b8f612b5f565b500290565b600082612bb157634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612bc957612bc9612b5f565b500190565b634e487b7160e01b600052603260045260246000fd5b600181815b80851115612c1f578160001904821115612c0557612c05612b5f565b80851615612c1257918102915b93841c9390800290612be9565b509250929050565b600082612c3657506001610826565b81612c4357506000610826565b8160018114612c595760028114612c6357612c7f565b6001915050610826565b60ff841115612c7457612c74612b5f565b50506001821b610826565b5060208310610133831016604e8410600b8410161715612ca2575081810a610826565b612cac8383612be4565b8060001904821115612cc057612cc0612b5f565b029392505050565b600061144a60ff841683612c27565b6000600019821415612ceb57612ceb612b5f565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612d8c57612d8c612b5f565b500390565b600060208284031215612da357600080fd5b815161144a81612874565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612dfe5784516001600160a01b031683529383019391830191600101612dd9565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612e3457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122045728f718f2f4f437cd9ad4dd8b4306f814ed57b3f52b7fdd0936b8af19e9e1e64736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102295760003560e01c80638095d56411610123578063a9059cbb116100ab578063c876d0b91161006f578063c876d0b9146106ce578063d257b34f146106e8578063dd62ed3e14610708578063e884f2601461074e578063f2fde38b1461076357600080fd5b8063a9059cbb1461061e578063aacebbe31461063e578063b62496f51461065e578063c02466681461068e578063c18bc195146106ae57600080fd5b806395d89b41116100f257806395d89b41146105885780639a7a23d61461059d578063a2657778146105bd578063a457c2d7146105dd578063a4d15b64146105fd57600080fd5b80638095d564146105155780638a8c523c146105355780638da5cb5b1461054a578063924de9b71461056857600080fd5b80632d08d408116101b15780636ddd1713116101755780636ddd17131461047557806370a0823114610495578063715018a6146104cb578063751039fc146104e05780637571336a146104f557600080fd5b80632d08d408146103ac578063313ce567146103cc57806339509351146103e857806349bd5a5e146104085780634fbee1931461043c57600080fd5b806318160ddd116101f857806318160ddd1461030b5780631816467f1461032a578063203e727e1461034c57806322d3e2aa1461036c57806323b872dd1461038c57600080fd5b806306fdde0314610235578063095ea7b31461026057806310d5de53146102905780631694505e146102bf57600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a610783565b604051610257919061281f565b60405180910390f35b34801561026c57600080fd5b5061028061027b36600461288c565b610815565b6040519015158152602001610257565b34801561029c57600080fd5b506102806102ab3660046128b8565b602080526000908152604090205460ff1681565b3480156102cb57600080fd5b506102f37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610257565b34801561031757600080fd5b506002545b604051908152602001610257565b34801561033657600080fd5b5061034a6103453660046128b8565b61082c565b005b34801561035857600080fd5b5061034a6103673660046128d5565b6108bc565b34801561037857600080fd5b5061034a6103873660046128ee565b610999565b34801561039857600080fd5b506102806103a7366004612931565b610a53565b3480156103b857600080fd5b5061034a6103c73660046129be565b610abc565b3480156103d857600080fd5b5060405160128152602001610257565b3480156103f457600080fd5b5061028061040336600461288c565b610b8e565b34801561041457600080fd5b506102f37f00000000000000000000000064044db460806cb88a4fe661d413d3687060235981565b34801561044857600080fd5b506102806104573660046128b8565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561048157600080fd5b50600b546102809062010000900460ff1681565b3480156104a157600080fd5b5061031c6104b03660046128b8565b6001600160a01b031660009081526020819052604090205490565b3480156104d757600080fd5b5061034a610bc4565b3480156104ec57600080fd5b50610280610c38565b34801561050157600080fd5b5061034a610510366004612a3a565b610c75565b34801561052157600080fd5b5061034a610530366004612a6f565b610cc9565b34801561054157600080fd5b5061034a610d71565b34801561055657600080fd5b506005546001600160a01b03166102f3565b34801561057457600080fd5b5061034a610583366004612a9b565b610db2565b34801561059457600080fd5b5061024a610df8565b3480156105a957600080fd5b5061034a6105b8366004612a3a565b610e07565b3480156105c957600080fd5b5061034a6105d8366004612a9b565b610ee7565b3480156105e957600080fd5b506102806105f836600461288c565b610f2f565b34801561060957600080fd5b50600b54610280906301000000900460ff1681565b34801561062a57600080fd5b5061028061063936600461288c565b610f7e565b34801561064a57600080fd5b5061034a6106593660046128b8565b610f8b565b34801561066a57600080fd5b506102806106793660046128b8565b60216020526000908152604090205460ff1681565b34801561069a57600080fd5b5061034a6106a9366004612a3a565b611012565b3480156106ba57600080fd5b5061034a6106c93660046128d5565b61109b565b3480156106da57600080fd5b50600f546102809060ff1681565b3480156106f457600080fd5b506102806107033660046128d5565b61116c565b34801561071457600080fd5b5061031c610723366004612ab6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075a57600080fd5b506102806112c3565b34801561076f57600080fd5b5061034a61077e3660046128b8565b611300565b60606003805461079290612aef565b80601f01602080910402602001604051908101604052809291908181526020018280546107be90612aef565b801561080b5780601f106107e05761010080835404028352916020019161080b565b820191906000526020600020905b8154815290600101906020018083116107ee57829003601f168201915b5050505050905090565b6000610822338484611451565b5060015b92915050565b6005546001600160a01b0316331461085f5760405162461bcd60e51b815260040161085690612b2a565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108e65760405162461bcd60e51b815260040161085690612b2a565b670de0b6b3a76400006103e86108fb60025490565b610906906001612b75565b6109109190612b94565b61091a9190612b94565b8110156109815760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610856565b61099381670de0b6b3a7640000612b75565b60085550565b6005546001600160a01b031633146109c35760405162461bcd60e51b815260040161085690612b2a565b60158690556016859055601784905560188390556019829055601a819055836109ec8688612bb6565b6109f69190612bb6565b601481905560191015610a4b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610856565b505050505050565b6000610a60848484611576565b610ab28433610aad85604051806060016040528060288152602001612e74602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061206e565b611451565b5060019392505050565b6005546001600160a01b03163314610ae65760405162461bcd60e51b815260040161085690612b2a565b610b0f610afb6005546001600160a01b031690565b6005546001600160a01b0316600254611451565b60005b83811015610b8757610b7433868684818110610b3057610b30612bce565b9050602002016020810190610b4591906128b8565b610b516012600a612cc8565b868686818110610b6357610b63612bce565b905060200201356103a79190612b75565b5080610b7f81612cd7565b915050610b12565b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610822918590610aad90866113eb565b6005546001600160a01b03163314610bee5760405162461bcd60e51b815260040161085690612b2a565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610c655760405162461bcd60e51b815260040161085690612b2a565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c9f5760405162461bcd60e51b815260040161085690612b2a565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cf35760405162461bcd60e51b815260040161085690612b2a565b60118390556012829055601381905580610d0d8385612bb6565b610d179190612bb6565b601081905560141015610d6c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610856565b505050565b6005546001600160a01b03163314610d9b5760405162461bcd60e51b815260040161085690612b2a565b600b805462ffff0019166201010017905543601e55565b6005546001600160a01b03163314610ddc5760405162461bcd60e51b815260040161085690612b2a565b600b8054911515620100000262ff000019909216919091179055565b60606004805461079290612aef565b6005546001600160a01b03163314610e315760405162461bcd60e51b815260040161085690612b2a565b7f00000000000000000000000064044db460806cb88a4fe661d413d368706023596001600160a01b0316826001600160a01b03161415610ed95760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610856565b610ee382826120a8565b5050565b6005546001600160a01b03163314610f115760405162461bcd60e51b815260040161085690612b2a565b600b805491151563010000000263ff00000019909216919091179055565b60006108223384610aad85604051806060016040528060258152602001612e9c602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919061206e565b6000610822338484611576565b6005546001600160a01b03163314610fb55760405162461bcd60e51b815260040161085690612b2a565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461103c5760405162461bcd60e51b815260040161085690612b2a565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110c55760405162461bcd60e51b815260040161085690612b2a565b670de0b6b3a76400006103e86110da60025490565b6110e5906005612b75565b6110ef9190612b94565b6110f99190612b94565b8110156111545760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610856565b61116681670de0b6b3a7640000612b75565b600a5550565b6005546000906001600160a01b031633146111995760405162461bcd60e51b815260040161085690612b2a565b620186a06111a660025490565b6111b1906001612b75565b6111bb9190612b94565b8210156112285760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610856565b6103e861123460025490565b61123f906005612b75565b6112499190612b94565b8211156112b55760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610856565b50600981905560015b919050565b6005546000906001600160a01b031633146112f05760405162461bcd60e51b815260040161085690612b2a565b50600f805460ff19169055600190565b6005546001600160a01b0316331461132a5760405162461bcd60e51b815260040161085690612b2a565b6001600160a01b03811661138f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610856565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806113f88385612bb6565b90508381101561144a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610856565b9392505050565b6001600160a01b0383166114b35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610856565b6001600160a01b0382166115145760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610856565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661159c5760405162461bcd60e51b815260040161085690612cf2565b6001600160a01b0382166115c25760405162461bcd60e51b815260040161085690612d37565b6001600160a01b0382166000908152600e602052604090205460ff1615801561160457506001600160a01b0383166000908152600e602052604090205460ff16155b61166a5760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b6064820152608401610856565b8061167b57610d6c838360006120fc565b600b5460ff1615611b35576005546001600160a01b038481169116148015906116b257506005546001600160a01b03838116911614155b80156116c657506001600160a01b03821615155b80156116dd57506001600160a01b03821661dead14155b80156116f35750600554600160a01b900460ff16155b15611b3557600b54610100900460ff1661178b576001600160a01b0383166000908152601f602052604090205460ff168061174657506001600160a01b0382166000908152601f602052604090205460ff165b61178b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610856565b600f5460ff16156118d2576005546001600160a01b038381169116148015906117e657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561182457507f00000000000000000000000064044db460806cb88a4fe661d413d368706023596001600160a01b0316826001600160a01b031614155b156118d257326000908152600c602052604090205443116118bf5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610856565b326000908152600c602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff16801561191257506001600160a01b038216600090815260208052604090205460ff16155b156119f6576008548111156119875760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610856565b600a546001600160a01b0383166000908152602081905260409020546119ad9083612bb6565b11156119f15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610856565b611b35565b6001600160a01b03821660009081526021602052604090205460ff168015611a3657506001600160a01b038316600090815260208052604090205460ff16155b15611aac576008548111156119f15760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610856565b6001600160a01b038216600090815260208052604090205460ff16611b3557600a546001600160a01b038316600090815260208190526040902054611af19083612bb6565b1115611b355760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610856565b601e54611b43906002612bb6565b4311158015611b8457507f00000000000000000000000064044db460806cb88a4fe661d413d368706023596001600160a01b0316826001600160a01b031614155b8015611bad57506001600160a01b038216737a250d5630b4cf539739df2c5dacb4c659f2488d14155b15611bd6576001600160a01b0382166000908152600e60205260409020805460ff191660011790555b7f00000000000000000000000064044db460806cb88a4fe661d413d368706023596001600160a01b0390811690841614801581611c1c5750600b546301000000900460ff165b15611cc2576001600160a01b0384166000908152600d602052604090205415801590611c6e57506001600160a01b0384166000908152600d60205260409020544290611c6b9062015180612bb6565b10155b15611ca75760185460168190556019546015819055601a54601781905591611c9591612bb6565b611c9f9190612bb6565b601455611d38565b600060168190556004601581905560175491611c9591612bb6565b6001600160a01b0383166000908152600d6020526040902054611cfb576001600160a01b0383166000908152600d602052604090204290555b600b546301000000900460ff16611d38576000601681905560158190556004601781905590611d2a9080612bb6565b611d349190612bb6565b6014555b3060009081526020819052604090205460095481108015908190611d645750600b5462010000900460ff165b8015611d7a5750600554600160a01b900460ff16155b8015611d9f57506001600160a01b03861660009081526021602052604090205460ff16155b8015611dc457506001600160a01b0386166000908152601f602052604090205460ff16155b8015611de957506001600160a01b0385166000908152601f602052604090205460ff16155b15611e17576005805460ff60a01b1916600160a01b179055611e09612205565b6005805460ff60a01b191690555b6005546001600160a01b0387166000908152601f602052604090205460ff600160a01b909204821615911680611e6557506001600160a01b0386166000908152601f602052604090205460ff165b15611e6e575060005b60008115612059576001600160a01b03871660009081526021602052604090205460ff168015611ea057506000601454115b15611f5e57611ec56064611ebf6014548961243f90919063ffffffff16565b906124be565b905060145460165482611ed89190612b75565b611ee29190612b94565b601c6000828254611ef39190612bb6565b9091555050601454601754611f089083612b75565b611f129190612b94565b601d6000828254611f239190612bb6565b9091555050601454601554611f389083612b75565b611f429190612b94565b601b6000828254611f539190612bb6565b9091555061203b9050565b6001600160a01b03881660009081526021602052604090205460ff168015611f8857506000601054115b1561203b57611fa76064611ebf6010548961243f90919063ffffffff16565b905060105460125482611fba9190612b75565b611fc49190612b94565b601c6000828254611fd59190612bb6565b9091555050601054601354611fea9083612b75565b611ff49190612b94565b601d60008282546120059190612bb6565b909155505060105460115461201a9083612b75565b6120249190612b94565b601b60008282546120359190612bb6565b90915550505b801561204c5761204c8830836120fc565b6120568187612d7a565b95505b6120648888886120fc565b5050505050505050565b600081848411156120925760405162461bcd60e51b8152600401610856919061281f565b50600061209f8486612d7a565b95945050505050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166121225760405162461bcd60e51b815260040161085690612cf2565b6001600160a01b0382166121485760405162461bcd60e51b815260040161085690612d37565b61218581604051806060016040528060268152602001612e4e602691396001600160a01b038616600090815260208190526040902054919061206e565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546121b490826113eb565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611569565b3060009081526020819052604081205490506000601d54601b54601c5461222c9190612bb6565b6122369190612bb6565b90506000821580612245575081155b1561224f57505050565b60095461225d906014612b75565b83111561227557600954612272906014612b75565b92505b6000600283601c54866122889190612b75565b6122929190612b94565b61229c9190612b94565b905060006122aa8583612500565b9050476122b682612542565b60006122c24783612500565b905060006122df87611ebf601b548561243f90919063ffffffff16565b905060006122fc88611ebf601d548661243f90919063ffffffff16565b905060008161230b8486612d7a565b6123159190612d7a565b6000601c819055601b819055601d8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612372576040519150601f19603f3d011682016040523d82523d6000602084013e612377565b606091505b5090985050861580159061238b5750600081115b156123de5761239a8782612709565b601c54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461242b576040519150601f19603f3d011682016040523d82523d6000602084013e612430565b606091505b50505050505050505050505050565b60008261244e57506000610826565b600061245a8385612b75565b9050826124678583612b94565b1461144a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610856565b600061144a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127f1565b600061144a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061206e565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061257757612577612bce565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156125f057600080fd5b505afa158015612604573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126289190612d91565b8160018151811061263b5761263b612bce565b60200260200101906001600160a01b031690816001600160a01b031681525050612686307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611451565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906126db908590600090869030904290600401612dae565b600060405180830381600087803b1580156126f557600080fd5b505af1158015610a4b573d6000803e3d6000fd5b612734307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611451565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b1580156127b857600080fd5b505af11580156127cc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b879190612e1f565b600081836128125760405162461bcd60e51b8152600401610856919061281f565b50600061209f8486612b94565b600060208083528351808285015260005b8181101561284c57858101830151858201604001528201612830565b8181111561285e576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461288957600080fd5b50565b6000806040838503121561289f57600080fd5b82356128aa81612874565b946020939093013593505050565b6000602082840312156128ca57600080fd5b813561144a81612874565b6000602082840312156128e757600080fd5b5035919050565b60008060008060008060c0878903121561290757600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b60008060006060848603121561294657600080fd5b833561295181612874565b9250602084013561296181612874565b929592945050506040919091013590565b60008083601f84011261298457600080fd5b50813567ffffffffffffffff81111561299c57600080fd5b6020830191508360208260051b85010111156129b757600080fd5b9250929050565b600080600080604085870312156129d457600080fd5b843567ffffffffffffffff808211156129ec57600080fd5b6129f888838901612972565b90965094506020870135915080821115612a1157600080fd5b50612a1e87828801612972565b95989497509550505050565b803580151581146112be57600080fd5b60008060408385031215612a4d57600080fd5b8235612a5881612874565b9150612a6660208401612a2a565b90509250929050565b600080600060608486031215612a8457600080fd5b505081359360208301359350604090920135919050565b600060208284031215612aad57600080fd5b61144a82612a2a565b60008060408385031215612ac957600080fd5b8235612ad481612874565b91506020830135612ae481612874565b809150509250929050565b600181811c90821680612b0357607f821691505b60208210811415612b2457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612b8f57612b8f612b5f565b500290565b600082612bb157634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612bc957612bc9612b5f565b500190565b634e487b7160e01b600052603260045260246000fd5b600181815b80851115612c1f578160001904821115612c0557612c05612b5f565b80851615612c1257918102915b93841c9390800290612be9565b509250929050565b600082612c3657506001610826565b81612c4357506000610826565b8160018114612c595760028114612c6357612c7f565b6001915050610826565b60ff841115612c7457612c74612b5f565b50506001821b610826565b5060208310610133831016604e8410600b8410161715612ca2575081810a610826565b612cac8383612be4565b8060001904821115612cc057612cc0612b5f565b029392505050565b600061144a60ff841683612c27565b6000600019821415612ceb57612ceb612b5f565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612d8c57612d8c612b5f565b500390565b600060208284031215612da357600080fd5b815161144a81612874565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612dfe5784516001600160a01b031683529383019391830191600101612dd9565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612e3457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122045728f718f2f4f437cd9ad4dd8b4306f814ed57b3f52b7fdd0936b8af19e9e1e64736f6c63430008090033
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.