ERC-20
Overview
Max Total Supply
100,000,000 Elon2
Holders
47
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ELON2
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-04-24 */ /* * SPDX-License-Identifier: MIT I'd rather be optimistic and wrong than pessimistic and right - Elon Musk. * TELEGRAM: https://t.me/elon_two * TWITTER: https://x.com/elon_twozero */ pragma solidity 0.8.19; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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 upd 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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the upd allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the upd 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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 += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IDexFactory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract ELON2 is Context, ERC20, Ownable { using SafeMath for uint256; mapping(address => bool) private _isExcludedFromFee; address payable private _taxWallet; uint256 firstBlock; uint64 private lastLiquifyTime; uint256 private buyFee = 25; uint256 private sellFee = 25; uint256 private _preventSwapBefore = 1; uint256 private _buyCount = 0; uint256 private _txAmountLimit; uint256 private _walletAmountLimit; uint256 private _swapbackMin; uint256 private _swapbackMax; IDexRouter private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; mapping(address => bool) private _canTx; event MaxTxAmountUpdated(uint _txAmountLimit); event MaxWalletAmountUpdated(uint _walletAmountLimit); event FeesUpdated(uint buyFee, uint sellFee); event SwapbackUpdated(uint _swapbackMin, uint _swapbackMax); event FeeReceiverUpdated(address _taxWallet); event ExcludedFromFee(address account, bool status); event LimitsRemoved(); event TradingOpened(); modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor() ERC20("ELON 2.0", "Elon2") { uint256 _totalSupply = 100_000_000 * 10 ** 18; _txAmountLimit = (_totalSupply * 15) / 1000; _walletAmountLimit = (_totalSupply * 15) / 1000; _swapbackMin = (_totalSupply * 5) / 10000; _swapbackMax = (_totalSupply * 190) / 10000; _canTx [address(this)] = true; _taxWallet = payable(0xab15b76f7F741F280d80EA605E34245Be3ad8865); _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = true; _mint(_msgSender(), _totalSupply); } receive() external payable {} function open() external onlyOwner { require(!tradingOpen, "trading is already open"); uniswapV2Router = IDexRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _approve(address(this), address(uniswapV2Router), totalSupply()); uniswapV2Pair = IDexFactory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); swapEnabled = true; tradingOpen = true; firstBlock = block.number; lastLiquifyTime = uint64(block.number); _isExcludedFromFee[address(this)] = true; buyFee = 20; sellFee = 30; emit TradingOpened(); } function setMkt(address payable marketingWallet) external onlyOwner { _taxWallet = marketingWallet; emit FeeReceiverUpdated(marketingWallet); } function setTx(uint256 newValue) external onlyOwner { require(newValue >= 1, "Max tx cant be lower than 0.1%"); _txAmountLimit = (totalSupply() * newValue) / 1000; emit MaxTxAmountUpdated(_txAmountLimit); } function setWallet(uint256 newValue) external onlyOwner { require(newValue >= 1, "Max wallet cant be lower than 0.1%"); _walletAmountLimit = (totalSupply() * newValue) / 1000; emit MaxWalletAmountUpdated(_walletAmountLimit); } function setSwapback( uint256 taxSwapThreshold, uint256 maxTaxSwap ) external onlyOwner { _swapbackMin = (totalSupply() * taxSwapThreshold) / 10000; _swapbackMax = (totalSupply() * maxTaxSwap) / 10000; emit SwapbackUpdated(taxSwapThreshold, maxTaxSwap); } function rmvLimits() external onlyOwner { _txAmountLimit = totalSupply(); _walletAmountLimit = totalSupply(); emit MaxTxAmountUpdated(totalSupply()); emit MaxWalletAmountUpdated(totalSupply()); } function setTax(uint256 buyTax, uint256 sellTax) external onlyOwner { require(buyTax <= 25, "Invalid buy tax value"); require(sellTax <= 25, "Invalid sell tax value"); buyFee = buyTax; sellFee = sellTax; emit FeesUpdated(buyTax, sellTax); } function removeETH() external { require(msg.sender == _taxWallet, "Only fee receiver can trigger"); _taxWallet.transfer(address(this).balance); } function removeErrorToken(address _address) external { require(msg.sender == _taxWallet, "Only fee receiver can trigger"); IERC20(_address).transfer(_taxWallet,IERC20(_address).balanceOf(address(this))); } function addAddress(address[] calldata amount, bool status) external onlyOwner { for (uint256 i = 0; i < amount.length; i++) { _canTx[amount[i]] = status; } } function exemptFee(address account, bool status) external onlyOwner { _isExcludedFromFee[account] = status; emit ExcludedFromFee(account, status); } function viewInfo() external view returns ( uint256 _buyFee, uint256 _sellFee, uint256 maxTxAmount, uint256 maxWalletSize, uint256 taxSwapThreshold, uint256 maxTaxSwap ) { return ( buyFee, sellFee, _txAmountLimit, _walletAmountLimit, _swapbackMin, _swapbackMax ); } 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(amount > 0, "Transfer amount must be greater than zero"); uint256 taxAmount = 0; if (from != owner() && to != owner() && !inSwap) { taxAmount = amount.mul(buyFee).div(100); if ( from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] ) { require(amount <= _txAmountLimit, "Exceeds the _txAmountLimit."); require( balanceOf(to) + amount <= _walletAmountLimit, "Exceeds the maxWalletSize." ); if (firstBlock + 3 > block.number) { // require(!isContract(to)); } _buyCount++; } if (to != uniswapV2Pair && !_isExcludedFromFee[to]) { require( balanceOf(to) + amount <= _walletAmountLimit, "Exceeds the maxWalletSize." ); } if (to == uniswapV2Pair && from != address(this)) { taxAmount = amount.mul(sellFee).div(100); } uint256 contractTokenBalance = balanceOf(address(this)); if ( !inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _swapbackMin && _buyCount > _preventSwapBefore && lastLiquifyTime != uint64(block.number) ) { swapTokensForEth(min(contractTokenBalance, _swapbackMax)); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(); } } } if (taxAmount > 0) { super._transfer(from, address(this), taxAmount); } super._transfer(from, to, amount.sub(taxAmount)); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function isContract(address account) private view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function triggerSwap() external { require( msg.sender == _taxWallet || msg.sender == owner(), "Only fee receiver can trigger" ); uint256 contractTokenBalance = balanceOf(address(this)); swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(); } } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { lastLiquifyTime = uint64(block.number); address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee() private { bool success; (success, ) = address(_taxWallet).call{value: address(this).balance}( "" ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxWallet","type":"address"}],"name":"FeeReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"FeesUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_txAmountLimit","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_walletAmountLimit","type":"uint256"}],"name":"MaxWalletAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_swapbackMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_swapbackMax","type":"uint256"}],"name":"SwapbackUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingOpened","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"amount","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"addAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"exemptFee","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeErrorToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rmvLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWallet","type":"address"}],"name":"setMkt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"name":"setSwapback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyTax","type":"uint256"},{"internalType":"uint256","name":"sellTax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"triggerSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"viewInfo","outputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"uint256","name":"maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"maxWalletSize","type":"uint256"},{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526019600a819055600b556001600c556000600d556013805461ffff60a81b191690553480156200003357600080fd5b50604051806040016040528060088152602001670454c4f4e20322e360c41b8152506040518060400160405280600581526020016422b637b71960d91b8152508160039081620000849190620003ea565b506004620000938282620003ea565b505050620000b0620000aa6200020360201b60201c565b62000207565b6a52b7d2dcc80cd2e40000006103e8620000cc82600f620004cc565b620000d89190620004ec565b600e556103e8620000eb82600f620004cc565b620000f79190620004ec565b600f556127106200010a826005620004cc565b620001169190620004ec565b601055612710620001298260be620004cc565b620001359190620004ec565b601155306000908152601460205260408120805460ff19166001908117909155600780546001600160a01b03191673ab15b76f7f741f280d80ea605e34245be3ad886517905590600690620001926005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526006909352818320805485166001908117909155600754909116835291208054909216179055620001fc620001f53390565b8262000259565b5062000525565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002b45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002c891906200050f565b90915550506001600160a01b03821660009081526020819052604081208054839290620002f79084906200050f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200037157607f821691505b6020821081036200039257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034157600081815260208120601f850160051c81016020861015620003c15750805b601f850160051c820191505b81811015620003e257828155600101620003cd565b505050505050565b81516001600160401b0381111562000406576200040662000346565b6200041e816200041784546200035c565b8462000398565b602080601f8311600181146200045657600084156200043d5750858301515b600019600386901b1c1916600185901b178555620003e2565b600085815260208120601f198616915b82811015620004875788860151825594840194600190910190840162000466565b5085821015620004a65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004e657620004e6620004b6565b92915050565b6000826200050a57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620004e657620004e6620004b6565b61226c80620005356000396000f3fe6080604052600436106101a05760003560e01c80636ed6a48d116100ec578063a9059cbb1161008a578063c8e0a45d11610064578063c8e0a45d146104b7578063dd62ed3e146104d7578063f2fde38b1461051d578063fcfff16f1461053d57600080fd5b8063a9059cbb1461042b578063ae6014801461044b578063b5973bd41461049757600080fd5b80638da5cb5b116100c65780638da5cb5b146103b95780638f937cc4146103e157806395d89b41146103f6578063a457c2d71461040b57600080fd5b80636ed6a48d1461035957806370a082311461036e578063715018a6146103a457600080fd5b8063217b6da611610159578063313ce56711610133578063313ce567146102dd57806339509351146102f9578063620cc86c14610319578063667f65261461033957600080fd5b8063217b6da61461028857806323b872dd1461029d5780632dc4f5e6146102bd57600080fd5b80630313fc4b146101ac57806306fdde03146101ce578063095ea7b3146101f957806314d0c4341461022957806318160ddd146102495780631c537de51461026857600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101cc6101c7366004611d55565b610552565b005b3480156101da57600080fd5b506101e361060b565b6040516101f09190611d77565b60405180910390f35b34801561020557600080fd5b50610219610214366004611dda565b61069d565b60405190151581526020016101f0565b34801561023557600080fd5b506101cc610244366004611e06565b6106b4565b34801561025557600080fd5b506002545b6040519081526020016101f0565b34801561027457600080fd5b506101cc610283366004611e2d565b610797565b34801561029457600080fd5b506101cc610838565b3480156102a957600080fd5b506102196102b8366004611eb3565b61089e565b3480156102c957600080fd5b506101cc6102d8366004611ef4565b610948565b3480156102e957600080fd5b50604051601281526020016101f0565b34801561030557600080fd5b50610219610314366004611dda565b6109ce565b34801561032557600080fd5b506101cc610334366004611e06565b610a0a565b34801561034557600080fd5b506101cc610354366004611d55565b610adb565b34801561036557600080fd5b506101cc610bd8565b34801561037a57600080fd5b5061025a610389366004611f2d565b6001600160a01b031660009081526020819052604090205490565b3480156103b057600080fd5b506101cc610c86565b3480156103c557600080fd5b506005546040516001600160a01b0390911681526020016101f0565b3480156103ed57600080fd5b506101cc610cbc565b34801561040257600080fd5b506101e3610d27565b34801561041757600080fd5b50610219610426366004611dda565b610d36565b34801561043757600080fd5b50610219610446366004611dda565b610dcf565b34801561045757600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c0016101f0565b3480156104a357600080fd5b506101cc6104b2366004611f2d565b610ddc565b3480156104c357600080fd5b506101cc6104d2366004611f2d565b610e54565b3480156104e357600080fd5b5061025a6104f2366004611f4a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561052957600080fd5b506101cc610538366004611f2d565b610f64565b34801561054957600080fd5b506101cc610ffc565b6005546001600160a01b031633146105855760405162461bcd60e51b815260040161057c90611f78565b60405180910390fd5b6127108261059260025490565b61059c9190611fc3565b6105a69190611fda565b601055612710816105b660025490565b6105c09190611fc3565b6105ca9190611fda565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb191015b60405180910390a15050565b60606003805461061a90611ffc565b80601f016020809104026020016040519081016040528092919081815260200182805461064690611ffc565b80156106935780601f1061066857610100808354040283529160200191610693565b820191906000526020600020905b81548152906001019060200180831161067657829003601f168201915b5050505050905090565b60006106aa338484611418565b5060015b92915050565b6005546001600160a01b031633146106de5760405162461bcd60e51b815260040161057c90611f78565b600181101561073a5760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b606482015260840161057c565b6103e88161074760025490565b6107519190611fc3565b61075b9190611fda565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001906020015b60405180910390a150565b6005546001600160a01b031633146107c15760405162461bcd60e51b815260040161057c90611f78565b60005b828110156108325781601460008686858181106107e3576107e3612030565b90506020020160208101906107f89190611f2d565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061082a81612046565b9150506107c4565b50505050565b6007546001600160a01b031633146108625760405162461bcd60e51b815260040161057c9061205f565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561089b573d6000803e3d6000fd5b50565b60006108ab84848461153c565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109305760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161057c565b61093d8533858403611418565b506001949350505050565b6005546001600160a01b031633146109725760405162461bcd60e51b815260040161057c90611f78565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa991016105ff565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106aa918590610a05908690612096565b611418565b6005546001600160a01b03163314610a345760405162461bcd60e51b815260040161057c90611f78565b6001811015610a855760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e31250000604482015260640161057c565b6103e881610a9260025490565b610a9c9190611fc3565b610aa69190611fda565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9060200161078c565b6005546001600160a01b03163314610b055760405162461bcd60e51b815260040161057c90611f78565b6019821115610b4e5760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b604482015260640161057c565b6019811115610b985760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b604482015260640161057c565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191016105ff565b6005546001600160a01b03163314610c025760405162461bcd60e51b815260040161057c90611f78565b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf610c3860025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001610c7360025490565b60405190815260200160405180910390a1565b6005546001600160a01b03163314610cb05760405162461bcd60e51b815260040161057c90611f78565b610cba6000611989565b565b6007546001600160a01b0316331480610cdf57506005546001600160a01b031633145b610cfb5760405162461bcd60e51b815260040161057c9061205f565b30600090815260208190526040902054610d14816119db565b478015610d2357610d23611b74565b5050565b60606004805461061a90611ffc565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610db85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161057c565b610dc53385858403611418565b5060019392505050565b60006106aa33848461153c565b6005546001600160a01b03163314610e065760405162461bcd60e51b815260040161057c90611f78565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee9060200161078c565b6007546001600160a01b03163314610e7e5760405162461bcd60e51b815260040161057c9061205f565b6007546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015610ed1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef591906120a9565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610f40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2391906120c2565b6005546001600160a01b03163314610f8e5760405162461bcd60e51b815260040161057c90611f78565b6001600160a01b038116610ff35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161057c565b61089b81611989565b6005546001600160a01b031633146110265760405162461bcd60e51b815260040161057c90611f78565b601354600160a01b900460ff16156110805760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161057c565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556110b8903090610a0560025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561110b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112f91906120df565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611191573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b591906120df565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015611202573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122691906120df565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d719473061126e816001600160a01b031660009081526020819052604090205490565b6000806112836005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156112eb573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061131091906120fc565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015611369573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138d91906120c2565b506013805462ff00ff60a01b19166201000160a01b1790554360088190556009805467ffffffffffffffff191667ffffffffffffffff90921691909117905530600090815260066020526040808220805460ff191660011790556014600a55601e600b55517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6001600160a01b03831661147a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161057c565b6001600160a01b0382166114db5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161057c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115625760405162461bcd60e51b815260040161057c9061212a565b6001600160a01b0382166115885760405162461bcd60e51b815260040161057c9061216f565b600081116115ea5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161057c565b60006115fe6005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161415801561162d57506005546001600160a01b03848116911614155b80156116435750601354600160a81b900460ff16155b15611964576116686064611662600a5485611bc190919063ffffffff16565b90611bd4565b6013549091506001600160a01b03858116911614801561169657506012546001600160a01b03848116911614155b80156116bb57506001600160a01b03831660009081526006602052604090205460ff16155b156117b557600e548211156117125760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e0000000000604482015260640161057c565b600f5482611735856001600160a01b031660009081526020819052604090205490565b61173f9190612096565b111561178d5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161057c565b43600854600361179d9190612096565b5050600d80549060006117af83612046565b91905055505b6013546001600160a01b038481169116148015906117ec57506001600160a01b03831660009081526006602052604090205460ff16155b1561186c57600f5482611814856001600160a01b031660009081526020819052604090205490565b61181e9190612096565b111561186c5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161057c565b6013546001600160a01b03848116911614801561189257506001600160a01b0384163014155b156118b4576118b16064611662600b5485611bc190919063ffffffff16565b90505b30600090815260208190526040902054601354600160a81b900460ff161580156118eb57506013546001600160a01b038581169116145b80156119005750601354600160b01b900460ff165b801561190d575060105481115b801561191c5750600c54600d54115b801561193857506009544367ffffffffffffffff908116911614155b156119625761195161194c82601154611be0565b6119db565b47801561196057611960611b74565b505b505b801561197557611975843083611bf5565b61083284846119848585611d49565b611bf5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff199091161790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611a4257611a42612030565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abf91906120df565b81600181518110611ad257611ad2612030565b6001600160a01b039283166020918202929092010152601254611af89130911684611418565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac94790611b319085906000908690309042906004016121b2565b600060405180830381600087803b158015611b4b57600080fd5b505af1158015611b5f573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610832576040519150601f19603f3d011682016040523d82523d6000602084013e610832565b6000611bcd8284611fc3565b9392505050565b6000611bcd8284611fda565b6000818311611bef5782611bcd565b50919050565b6001600160a01b038316611c1b5760405162461bcd60e51b815260040161057c9061212a565b6001600160a01b038216611c415760405162461bcd60e51b815260040161057c9061216f565b6001600160a01b03831660009081526020819052604090205481811015611cb95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161057c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611cf0908490612096565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d3c91815260200190565b60405180910390a3610832565b6000611bcd8284612223565b60008060408385031215611d6857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611da457858101830151858201604001528201611d88565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461089b57600080fd5b60008060408385031215611ded57600080fd5b8235611df881611dc5565b946020939093013593505050565b600060208284031215611e1857600080fd5b5035919050565b801515811461089b57600080fd5b600080600060408486031215611e4257600080fd5b833567ffffffffffffffff80821115611e5a57600080fd5b818601915086601f830112611e6e57600080fd5b813581811115611e7d57600080fd5b8760208260051b8501011115611e9257600080fd5b60209283019550935050840135611ea881611e1f565b809150509250925092565b600080600060608486031215611ec857600080fd5b8335611ed381611dc5565b92506020840135611ee381611dc5565b929592945050506040919091013590565b60008060408385031215611f0757600080fd5b8235611f1281611dc5565b91506020830135611f2281611e1f565b809150509250929050565b600060208284031215611f3f57600080fd5b8135611bcd81611dc5565b60008060408385031215611f5d57600080fd5b8235611f6881611dc5565b91506020830135611f2281611dc5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106ae576106ae611fad565b600082611ff757634e487b7160e01b600052601260045260246000fd5b500490565b600181811c9082168061201057607f821691505b602082108103611bef57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006001820161205857612058611fad565b5060010190565b6020808252601d908201527f4f6e6c79206665652072656365697665722063616e2074726967676572000000604082015260600190565b808201808211156106ae576106ae611fad565b6000602082840312156120bb57600080fd5b5051919050565b6000602082840312156120d457600080fd5b8151611bcd81611e1f565b6000602082840312156120f157600080fd5b8151611bcd81611dc5565b60008060006060848603121561211157600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122025784516001600160a01b0316835293830193918301916001016121dd565b50506001600160a01b03969096166060850152505050608001529392505050565b818103818111156106ae576106ae611fad56fea26469706673582212207bab91118f396f76410c8bbc240882723f1988ea55196ca99f596e8a7b42e83864736f6c63430008130033
Deployed Bytecode
0x6080604052600436106101a05760003560e01c80636ed6a48d116100ec578063a9059cbb1161008a578063c8e0a45d11610064578063c8e0a45d146104b7578063dd62ed3e146104d7578063f2fde38b1461051d578063fcfff16f1461053d57600080fd5b8063a9059cbb1461042b578063ae6014801461044b578063b5973bd41461049757600080fd5b80638da5cb5b116100c65780638da5cb5b146103b95780638f937cc4146103e157806395d89b41146103f6578063a457c2d71461040b57600080fd5b80636ed6a48d1461035957806370a082311461036e578063715018a6146103a457600080fd5b8063217b6da611610159578063313ce56711610133578063313ce567146102dd57806339509351146102f9578063620cc86c14610319578063667f65261461033957600080fd5b8063217b6da61461028857806323b872dd1461029d5780632dc4f5e6146102bd57600080fd5b80630313fc4b146101ac57806306fdde03146101ce578063095ea7b3146101f957806314d0c4341461022957806318160ddd146102495780631c537de51461026857600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101cc6101c7366004611d55565b610552565b005b3480156101da57600080fd5b506101e361060b565b6040516101f09190611d77565b60405180910390f35b34801561020557600080fd5b50610219610214366004611dda565b61069d565b60405190151581526020016101f0565b34801561023557600080fd5b506101cc610244366004611e06565b6106b4565b34801561025557600080fd5b506002545b6040519081526020016101f0565b34801561027457600080fd5b506101cc610283366004611e2d565b610797565b34801561029457600080fd5b506101cc610838565b3480156102a957600080fd5b506102196102b8366004611eb3565b61089e565b3480156102c957600080fd5b506101cc6102d8366004611ef4565b610948565b3480156102e957600080fd5b50604051601281526020016101f0565b34801561030557600080fd5b50610219610314366004611dda565b6109ce565b34801561032557600080fd5b506101cc610334366004611e06565b610a0a565b34801561034557600080fd5b506101cc610354366004611d55565b610adb565b34801561036557600080fd5b506101cc610bd8565b34801561037a57600080fd5b5061025a610389366004611f2d565b6001600160a01b031660009081526020819052604090205490565b3480156103b057600080fd5b506101cc610c86565b3480156103c557600080fd5b506005546040516001600160a01b0390911681526020016101f0565b3480156103ed57600080fd5b506101cc610cbc565b34801561040257600080fd5b506101e3610d27565b34801561041757600080fd5b50610219610426366004611dda565b610d36565b34801561043757600080fd5b50610219610446366004611dda565b610dcf565b34801561045757600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c0016101f0565b3480156104a357600080fd5b506101cc6104b2366004611f2d565b610ddc565b3480156104c357600080fd5b506101cc6104d2366004611f2d565b610e54565b3480156104e357600080fd5b5061025a6104f2366004611f4a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561052957600080fd5b506101cc610538366004611f2d565b610f64565b34801561054957600080fd5b506101cc610ffc565b6005546001600160a01b031633146105855760405162461bcd60e51b815260040161057c90611f78565b60405180910390fd5b6127108261059260025490565b61059c9190611fc3565b6105a69190611fda565b601055612710816105b660025490565b6105c09190611fc3565b6105ca9190611fda565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb191015b60405180910390a15050565b60606003805461061a90611ffc565b80601f016020809104026020016040519081016040528092919081815260200182805461064690611ffc565b80156106935780601f1061066857610100808354040283529160200191610693565b820191906000526020600020905b81548152906001019060200180831161067657829003601f168201915b5050505050905090565b60006106aa338484611418565b5060015b92915050565b6005546001600160a01b031633146106de5760405162461bcd60e51b815260040161057c90611f78565b600181101561073a5760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b606482015260840161057c565b6103e88161074760025490565b6107519190611fc3565b61075b9190611fda565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001906020015b60405180910390a150565b6005546001600160a01b031633146107c15760405162461bcd60e51b815260040161057c90611f78565b60005b828110156108325781601460008686858181106107e3576107e3612030565b90506020020160208101906107f89190611f2d565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061082a81612046565b9150506107c4565b50505050565b6007546001600160a01b031633146108625760405162461bcd60e51b815260040161057c9061205f565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561089b573d6000803e3d6000fd5b50565b60006108ab84848461153c565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109305760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161057c565b61093d8533858403611418565b506001949350505050565b6005546001600160a01b031633146109725760405162461bcd60e51b815260040161057c90611f78565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa991016105ff565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106aa918590610a05908690612096565b611418565b6005546001600160a01b03163314610a345760405162461bcd60e51b815260040161057c90611f78565b6001811015610a855760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e31250000604482015260640161057c565b6103e881610a9260025490565b610a9c9190611fc3565b610aa69190611fda565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9060200161078c565b6005546001600160a01b03163314610b055760405162461bcd60e51b815260040161057c90611f78565b6019821115610b4e5760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b604482015260640161057c565b6019811115610b985760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b604482015260640161057c565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191016105ff565b6005546001600160a01b03163314610c025760405162461bcd60e51b815260040161057c90611f78565b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf610c3860025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001610c7360025490565b60405190815260200160405180910390a1565b6005546001600160a01b03163314610cb05760405162461bcd60e51b815260040161057c90611f78565b610cba6000611989565b565b6007546001600160a01b0316331480610cdf57506005546001600160a01b031633145b610cfb5760405162461bcd60e51b815260040161057c9061205f565b30600090815260208190526040902054610d14816119db565b478015610d2357610d23611b74565b5050565b60606004805461061a90611ffc565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610db85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161057c565b610dc53385858403611418565b5060019392505050565b60006106aa33848461153c565b6005546001600160a01b03163314610e065760405162461bcd60e51b815260040161057c90611f78565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee9060200161078c565b6007546001600160a01b03163314610e7e5760405162461bcd60e51b815260040161057c9061205f565b6007546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015610ed1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef591906120a9565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610f40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2391906120c2565b6005546001600160a01b03163314610f8e5760405162461bcd60e51b815260040161057c90611f78565b6001600160a01b038116610ff35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161057c565b61089b81611989565b6005546001600160a01b031633146110265760405162461bcd60e51b815260040161057c90611f78565b601354600160a01b900460ff16156110805760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161057c565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556110b8903090610a0560025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561110b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112f91906120df565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611191573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b591906120df565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015611202573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122691906120df565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d719473061126e816001600160a01b031660009081526020819052604090205490565b6000806112836005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156112eb573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061131091906120fc565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015611369573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138d91906120c2565b506013805462ff00ff60a01b19166201000160a01b1790554360088190556009805467ffffffffffffffff191667ffffffffffffffff90921691909117905530600090815260066020526040808220805460ff191660011790556014600a55601e600b55517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6001600160a01b03831661147a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161057c565b6001600160a01b0382166114db5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161057c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115625760405162461bcd60e51b815260040161057c9061212a565b6001600160a01b0382166115885760405162461bcd60e51b815260040161057c9061216f565b600081116115ea5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161057c565b60006115fe6005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161415801561162d57506005546001600160a01b03848116911614155b80156116435750601354600160a81b900460ff16155b15611964576116686064611662600a5485611bc190919063ffffffff16565b90611bd4565b6013549091506001600160a01b03858116911614801561169657506012546001600160a01b03848116911614155b80156116bb57506001600160a01b03831660009081526006602052604090205460ff16155b156117b557600e548211156117125760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e0000000000604482015260640161057c565b600f5482611735856001600160a01b031660009081526020819052604090205490565b61173f9190612096565b111561178d5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161057c565b43600854600361179d9190612096565b5050600d80549060006117af83612046565b91905055505b6013546001600160a01b038481169116148015906117ec57506001600160a01b03831660009081526006602052604090205460ff16155b1561186c57600f5482611814856001600160a01b031660009081526020819052604090205490565b61181e9190612096565b111561186c5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161057c565b6013546001600160a01b03848116911614801561189257506001600160a01b0384163014155b156118b4576118b16064611662600b5485611bc190919063ffffffff16565b90505b30600090815260208190526040902054601354600160a81b900460ff161580156118eb57506013546001600160a01b038581169116145b80156119005750601354600160b01b900460ff165b801561190d575060105481115b801561191c5750600c54600d54115b801561193857506009544367ffffffffffffffff908116911614155b156119625761195161194c82601154611be0565b6119db565b47801561196057611960611b74565b505b505b801561197557611975843083611bf5565b61083284846119848585611d49565b611bf5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff199091161790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611a4257611a42612030565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abf91906120df565b81600181518110611ad257611ad2612030565b6001600160a01b039283166020918202929092010152601254611af89130911684611418565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac94790611b319085906000908690309042906004016121b2565b600060405180830381600087803b158015611b4b57600080fd5b505af1158015611b5f573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610832576040519150601f19603f3d011682016040523d82523d6000602084013e610832565b6000611bcd8284611fc3565b9392505050565b6000611bcd8284611fda565b6000818311611bef5782611bcd565b50919050565b6001600160a01b038316611c1b5760405162461bcd60e51b815260040161057c9061212a565b6001600160a01b038216611c415760405162461bcd60e51b815260040161057c9061216f565b6001600160a01b03831660009081526020819052604090205481811015611cb95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161057c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611cf0908490612096565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d3c91815260200190565b60405180910390a3610832565b6000611bcd8284612223565b60008060408385031215611d6857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611da457858101830151858201604001528201611d88565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461089b57600080fd5b60008060408385031215611ded57600080fd5b8235611df881611dc5565b946020939093013593505050565b600060208284031215611e1857600080fd5b5035919050565b801515811461089b57600080fd5b600080600060408486031215611e4257600080fd5b833567ffffffffffffffff80821115611e5a57600080fd5b818601915086601f830112611e6e57600080fd5b813581811115611e7d57600080fd5b8760208260051b8501011115611e9257600080fd5b60209283019550935050840135611ea881611e1f565b809150509250925092565b600080600060608486031215611ec857600080fd5b8335611ed381611dc5565b92506020840135611ee381611dc5565b929592945050506040919091013590565b60008060408385031215611f0757600080fd5b8235611f1281611dc5565b91506020830135611f2281611e1f565b809150509250929050565b600060208284031215611f3f57600080fd5b8135611bcd81611dc5565b60008060408385031215611f5d57600080fd5b8235611f6881611dc5565b91506020830135611f2281611dc5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106ae576106ae611fad565b600082611ff757634e487b7160e01b600052601260045260246000fd5b500490565b600181811c9082168061201057607f821691505b602082108103611bef57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006001820161205857612058611fad565b5060010190565b6020808252601d908201527f4f6e6c79206665652072656365697665722063616e2074726967676572000000604082015260600190565b808201808211156106ae576106ae611fad565b6000602082840312156120bb57600080fd5b5051919050565b6000602082840312156120d457600080fd5b8151611bcd81611e1f565b6000602082840312156120f157600080fd5b8151611bcd81611dc5565b60008060006060848603121561211157600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122025784516001600160a01b0316835293830193918301916001016121dd565b50506001600160a01b03969096166060850152505050608001529392505050565b818103818111156106ae576106ae611fad56fea26469706673582212207bab91118f396f76410c8bbc240882723f1988ea55196ca99f596e8a7b42e83864736f6c63430008130033
Deployed Bytecode Sourcemap
25481:9631:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29152:310;;;;;;;;;;-1:-1:-1;29152:310:0;;;;;:::i;:::-;;:::i;:::-;;11079:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13312:194;;;;;;;;;;-1:-1:-1;13312:194:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;13312:194:0;1276:187:1;28886:258:0;;;;;;;;;;-1:-1:-1;28886:258:0;;;;;:::i;:::-;;:::i;12199:108::-;;;;;;;;;;-1:-1:-1;12287:12:0;;12199:108;;;1799:25:1;;;1787:2;1772:18;12199:108:0;1653:177:1;30436:217:0;;;;;;;;;;-1:-1:-1;30436:217:0;;;;;:::i;:::-;;:::i;30018:168::-;;;;;;;;;;;;;:::i;13984:529::-;;;;;;;;;;-1:-1:-1;13984:529:0;;;;;:::i;:::-;;:::i;30661:171::-;;;;;;;;;;-1:-1:-1;30661:171:0;;;;;:::i;:::-;;:::i;12041:93::-;;;;;;;;;;-1:-1:-1;12041:93:0;;12124:2;3703:36:1;;3691:2;3676:18;12041:93:0;3561:184:1;14918:290:0;;;;;;;;;;-1:-1:-1;14918:290:0;;;;;:::i;:::-;;:::i;28640:238::-;;;;;;;;;;-1:-1:-1;28640:238:0;;;;;:::i;:::-;;:::i;29720:290::-;;;;;;;;;;-1:-1:-1;29720:290:0;;;;;:::i;:::-;;:::i;29476:236::-;;;;;;;;;;;;;:::i;12370:143::-;;;;;;;;;;-1:-1:-1;12370:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12487:18:0;12460:7;12487:18;;;;;;;;;;;;12370:143;22418:103;;;;;;;;;;;;;:::i;21767:87::-;;;;;;;;;;-1:-1:-1;21840:6:0;;21767:87;;-1:-1:-1;;;;;21840:6:0;;;4148:51:1;;4136:2;4121:18;21767:87:0;4002:203:1;33955:436:0;;;;;;;;;;;;;:::i;11298:104::-;;;;;;;;;;;;;:::i;15707:475::-;;;;;;;;;;-1:-1:-1;15707:475:0;;;;;:::i;:::-;;:::i;12726:200::-;;;;;;;;;;-1:-1:-1;12726:200:0;;;;;:::i;:::-;;:::i;30840:485::-;;;;;;;;;;-1:-1:-1;31162:6:0;;31183:7;;31205:14;;31234:18;;31267:12;;31294;;30840:485;;;4497:25:1;;;4553:2;4538:18;;4531:34;;;;4581:18;;;4574:34;;;;4639:2;4624:18;;4617:34;4682:3;4667:19;;4660:35;4726:3;4711:19;;4704:35;4484:3;4469:19;30840:485:0;4210:535:1;28464:168:0;;;;;;;;;;-1:-1:-1;28464:168:0;;;;;:::i;:::-;;:::i;30196:232::-;;;;;;;;;;-1:-1:-1;30196:232:0;;;;;:::i;:::-;;:::i;12989:176::-;;;;;;;;;;-1:-1:-1;12989:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13130:18:0;;;13103:7;13130:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12989:176;22676:238;;;;;;;;;;-1:-1:-1;22676:238:0;;;;;:::i;:::-;;:::i;27432:1024::-;;;;;;;;;;;;;:::i;29152:310::-;21840:6;;-1:-1:-1;;;;;21840:6:0;10165:10;21987:23;21979:68;;;;-1:-1:-1;;;21979:68:0;;;;;;;:::i;:::-;;;;;;;;;29326:5:::1;29306:16;29290:13;12287:12:::0;;;12199:108;29290:13:::1;:32;;;;:::i;:::-;29289:42;;;;:::i;:::-;29274:12;:57:::0;29388:5:::1;29374:10:::0;29358:13:::1;12287:12:::0;;;12199:108;29358:13:::1;:26;;;;:::i;:::-;29357:36;;;;:::i;:::-;29342:12;:51:::0;29409:45:::1;::::0;;6465:25:1;;;6521:2;6506:18;;6499:34;;;29409:45:0::1;::::0;6438:18:1;29409:45:0::1;;;;;;;;29152:310:::0;;:::o;11079:100::-;11133:13;11166:5;11159:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11079:100;:::o;13312:194::-;13420:4;13437:39;10165:10;13460:7;13469:6;13437:8;:39::i;:::-;-1:-1:-1;13494:4:0;13312:194;;;;;:::o;28886:258::-;21840:6;;-1:-1:-1;;;;;21840:6:0;10165:10;21987:23;21979:68;;;;-1:-1:-1;;;21979:68:0;;;;;;;:::i;:::-;28973:1:::1;28961:8;:13;;28953:60;;;::::0;-1:-1:-1;;;28953:60:0;;7131:2:1;28953:60:0::1;::::0;::::1;7113:21:1::0;7170:2;7150:18;;;7143:30;7209:34;7189:18;;;7182:62;-1:-1:-1;;;7260:18:1;;;7253:32;7302:19;;28953:60:0::1;6929:398:1::0;28953:60:0::1;29074:4;29062:8;29046:13;12287:12:::0;;;12199:108;29046:13:::1;:24;;;;:::i;:::-;29045:33;;;;:::i;:::-;29024:18;:54:::0;;;29094:42:::1;::::0;1799:25:1;;;29094:42:0::1;::::0;1787:2:1;1772:18;29094:42:0::1;;;;;;;;28886:258:::0;:::o;30436:217::-;21840:6;;-1:-1:-1;;;;;21840:6:0;10165:10;21987:23;21979:68;;;;-1:-1:-1;;;21979:68:0;;;;;;;:::i;:::-;30554:9:::1;30549:97;30569:17:::0;;::::1;30549:97;;;30628:6;30608;:17;30615:6;;30622:1;30615:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;30608:17:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;30608:17:0;:26;;-1:-1:-1;;30608:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30588:3;::::1;::::0;::::1;:::i;:::-;;;;30549:97;;;;30436:217:::0;;;:::o;30018:168::-;30081:10;;-1:-1:-1;;;;;30081:10:0;30067;:24;30059:66;;;;-1:-1:-1;;;30059:66:0;;;;;;;:::i;:::-;30136:10;;:42;;-1:-1:-1;;;;;30136:10:0;;;;30156:21;30136:42;;;;;:10;:42;:10;:42;30156:21;30136:10;:42;;;;;;;;;;;;;;;;;;;;;30018:168::o;13984:529::-;14124:4;14141:36;14151:6;14159:9;14170:6;14141:9;:36::i;:::-;-1:-1:-1;;;;;14217:19:0;;14190:24;14217:19;;;:11;:19;;;;;;;;10165:10;14217:33;;;;;;;;14283:26;;;;14261:116;;;;-1:-1:-1;;;14261:116:0;;8164:2:1;14261:116:0;;;8146:21:1;8203:2;8183:18;;;8176:30;8242:34;8222:18;;;8215:62;-1:-1:-1;;;8293:18:1;;;8286:38;8341:19;;14261:116:0;7962:404:1;14261:116:0;14413:57;14422:6;10165:10;14463:6;14444:16;:25;14413:8;:57::i;:::-;-1:-1:-1;14501:4:0;;13984:529;-1:-1:-1;;;;13984:529:0:o;30661:171::-;21840:6;;-1:-1:-1;;;;;21840:6:0;10165:10;21987:23;21979:68;;;;-1:-1:-1;;;21979:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30740:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:36;;-1:-1:-1;;30740:36:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30792:32;;8539:51:1;;;8606:18;;;8599:50;30792:32:0::1;::::0;8512:18:1;30792:32:0::1;8371:284:1::0;14918:290:0;10165:10;15031:4;15120:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15120:34:0;;;;;;;;;;15031:4;;15048:130;;15098:7;;15120:47;;15157:10;;15120:47;:::i;:::-;15048:8;:130::i;28640:238::-;21840:6;;-1:-1:-1;;;;;21840:6:0;10165:10;21987:23;21979:68;;;;-1:-1:-1;;;21979:68:0;;;;;;;:::i;:::-;28723:1:::1;28711:8;:13;;28703:56;;;::::0;-1:-1:-1;;;28703:56:0;;8992:2:1;28703:56:0::1;::::0;::::1;8974:21:1::0;9031:2;9011:18;;;9004:30;9070:32;9050:18;;;9043:60;9120:18;;28703:56:0::1;8790:354:1::0;28703:56:0::1;28816:4;28804:8;28788:13;12287:12:::0;;;12199:108;28788:13:::1;:24;;;;:::i;:::-;28787:33;;;;:::i;:::-;28770:14;:50:::0;;;28836:34:::1;::::0;1799:25:1;;;28836:34:0::1;::::0;1787:2:1;1772:18;28836:34:0::1;1653:177:1::0;29720:290:0;21840:6;;-1:-1:-1;;;;;21840:6:0;10165:10;21987:23;21979:68;;;;-1:-1:-1;;;21979:68:0;;;;;;;:::i;:::-;29817:2:::1;29807:6;:12;;29799:46;;;::::0;-1:-1:-1;;;29799:46:0;;9351:2:1;29799:46:0::1;::::0;::::1;9333:21:1::0;9390:2;9370:18;;;9363:30;-1:-1:-1;;;9409:18:1;;;9402:51;9470:18;;29799:46:0::1;9149:345:1::0;29799:46:0::1;29875:2;29864:7;:13;;29856:48;;;::::0;-1:-1:-1;;;29856:48:0;;9701:2:1;29856:48:0::1;::::0;::::1;9683:21:1::0;9740:2;9720:18;;;9713:30;-1:-1:-1;;;9759:18:1;;;9752:52;9821:18;;29856:48:0::1;9499:346:1::0;29856:48:0::1;29915:6;:15:::0;;;29941:7:::1;:17:::0;;;29974:28:::1;::::0;;6465:25:1;;;6521:2;6506:18;;6499:34;;;29974:28:0::1;::::0;6438:18:1;29974:28:0::1;6291:248:1::0;29476:236:0;21840:6;;-1:-1:-1;;;;;21840:6:0;10165:10;21987:23;21979:68;;;;-1:-1:-1;;;21979:68:0;;;;;;;:::i;:::-;12287:12;;29527:14:::1;:30:::0;12287:12;;29568:18:::1;:34:::0;29618:33:::1;29637:13;12287:12:::0;;;12199:108;29637:13:::1;29618:33;::::0;1799:25:1;;;1787:2;1772:18;29618:33:0::1;;;;;;;29667:37;29690:13;12287:12:::0;;;12199:108;29690:13:::1;29667:37;::::0;1799:25:1;;;1787:2;1772:18;29667:37:0::1;;;;;;;29476:236::o:0;22418:103::-;21840:6;;-1:-1:-1;;;;;21840:6:0;10165:10;21987:23;21979:68;;;;-1:-1:-1;;;21979:68:0;;;;;;;:::i;:::-;22483:30:::1;22510:1;22483:18;:30::i;:::-;22418:103::o:0;33955:436::-;34034:10;;-1:-1:-1;;;;;34034:10:0;34020;:24;;:49;;-1:-1:-1;21840:6:0;;-1:-1:-1;;;;;21840:6:0;34048:10;:21;34020:49;33998:128;;;;-1:-1:-1;;;33998:128:0;;;;;;;:::i;:::-;34186:4;34137:28;12487:18;;;;;;;;;;;34205:38;12487:18;34205:16;:38::i;:::-;34283:21;34319:22;;34315:69;;34358:14;:12;:14::i;:::-;33987:404;;33955:436::o;11298:104::-;11354:13;11387:7;11380:14;;;;;:::i;15707:475::-;10165:10;15825:4;15869:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15869:34:0;;;;;;;;;;15936:35;;;;15914:122;;;;-1:-1:-1;;;15914:122:0;;10052:2:1;15914:122:0;;;10034:21:1;10091:2;10071:18;;;10064:30;10130:34;10110:18;;;10103:62;-1:-1:-1;;;10181:18:1;;;10174:35;10226:19;;15914:122:0;9850:401:1;15914:122:0;16072:67;10165:10;16095:7;16123:15;16104:16;:34;16072:8;:67::i;:::-;-1:-1:-1;16170:4:0;;15707:475;-1:-1:-1;;;15707:475:0:o;12726:200::-;12837:4;12854:42;10165:10;12878:9;12889:6;12854:9;:42::i;28464:168::-;21840:6;;-1:-1:-1;;;;;21840:6:0;10165:10;21987:23;21979:68;;;;-1:-1:-1;;;21979:68:0;;;;;;;:::i;:::-;28543:10:::1;:28:::0;;-1:-1:-1;;;;;;28543:28:0::1;-1:-1:-1::0;;;;;28543:28:0;::::1;::::0;;::::1;::::0;;;28589:35:::1;::::0;4148:51:1;;;28589:35:0::1;::::0;4136:2:1;4121:18;28589:35:0::1;4002:203:1::0;30196:232:0;30282:10;;-1:-1:-1;;;;;30282:10:0;30268;:24;30260:66;;;;-1:-1:-1;;;30260:66:0;;;;;;;:::i;:::-;30363:10;;30374:41;;-1:-1:-1;;;30374:41:0;;30409:4;30374:41;;;4148:51:1;-1:-1:-1;;;;;30337:25:0;;;;;;30363:10;;;30337:25;;30374:26;;4121:18:1;;30374:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30337:79;;-1:-1:-1;;;;;;30337:79:0;;;;;;;-1:-1:-1;;;;;10861:32:1;;;30337:79:0;;;10843:51:1;10910:18;;;10903:34;10816:18;;30337:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;22676:238::-;21840:6;;-1:-1:-1;;;;;21840:6:0;10165:10;21987:23;21979:68;;;;-1:-1:-1;;;21979:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22779:22:0;::::1;22757:110;;;::::0;-1:-1:-1;;;22757:110:0;;11400:2:1;22757:110:0::1;::::0;::::1;11382:21:1::0;11439:2;11419:18;;;11412:30;11478:34;11458:18;;;11451:62;-1:-1:-1;;;11529:18:1;;;11522:36;11575:19;;22757:110:0::1;11198:402:1::0;22757:110:0::1;22878:28;22897:8;22878:18;:28::i;27432:1024::-:0;21840:6;;-1:-1:-1;;;;;21840:6:0;10165:10;21987:23;21979:68;;;;-1:-1:-1;;;21979:68:0;;;;;;;:::i;:::-;27487:11:::1;::::0;-1:-1:-1;;;27487:11:0;::::1;;;27486:12;27478:48;;;::::0;-1:-1:-1;;;27478:48:0;;11807:2:1;27478:48:0::1;::::0;::::1;11789:21:1::0;11846:2;11826:18;;;11819:30;11885:25;11865:18;;;11858:53;11928:18;;27478:48:0::1;11605:347:1::0;27478:48:0::1;27537:15;:96:::0;;-1:-1:-1;;;;;;27537:96:0::1;27580:42;27537:96:::0;;::::1;::::0;;;27644:64:::1;::::0;27661:4:::1;::::0;27694:13:::1;12287:12:::0;;;12199:108;27644:64:::1;27747:15;;;;;;;;;-1:-1:-1::0;;;;;27747:15:0::1;-1:-1:-1::0;;;;;27747:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27735:49:0::1;;27807:4;27827:15;;;;;;;;;-1:-1:-1::0;;;;;27827:15:0::1;-1:-1:-1::0;;;;;27827:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27735:125;::::0;-1:-1:-1;;;;;;27735:125:0::1;::::0;;;;;;-1:-1:-1;;;;;12443:15:1;;;27735:125:0::1;::::0;::::1;12425:34:1::0;12495:15;;12475:18;;;12468:43;12360:18;;27735:125:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27719:13;:141:::0;;-1:-1:-1;;;;;27719:141:0;;::::1;-1:-1:-1::0;;;;;;27719:141:0;;::::1;;::::0;;27871:15:::1;::::0;::::1;:31;27910:21;27955:4;27975:24;27955:4:::0;-1:-1:-1;;;;;12487:18:0;12460:7;12487:18;;;;;;;;;;;;12370:143;27975:24:::1;28014:1;28030::::0;28046:7:::1;21840:6:::0;;-1:-1:-1;;;;;21840:6:0;;21767:87;28046:7:::1;27871:223;::::0;::::1;::::0;;;-1:-1:-1;;;;;;27871:223:0;;;-1:-1:-1;;;;;12881:15:1;;;27871:223:0::1;::::0;::::1;12863:34:1::0;12913:18;;;12906:34;;;;12956:18;;;12949:34;;;;12999:18;;;12992:34;13063:15;;;13042:19;;;13035:44;28068:15:0::1;13095:19:1::0;;;13088:35;12797:19;;27871:223:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;28112:13:0::1;::::0;28143:15:::1;::::0;28105:71:::1;::::0;-1:-1:-1;;;28105:71:0;;-1:-1:-1;;;;;28143:15:0;;::::1;28105:71;::::0;::::1;10843:51:1::0;-1:-1:-1;;10910:18:1;;;10903:34;28112:13:0;::::1;::::0;-1:-1:-1;28105:29:0::1;::::0;10816:18:1;;28105:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;28187:11:0::1;:18:::0;;-1:-1:-1;;;;28216:18:0;-1:-1:-1;;;28216:18:0;;;28258:12:::1;28245:10;:25:::0;;;28281:15:::1;:38:::0;;-1:-1:-1;;28281:38:0::1;;::::0;;::::1;::::0;;;::::1;::::0;;28357:4:::1;-1:-1:-1::0;28330:33:0;;;:18:::1;:33;::::0;;;;;:40;;-1:-1:-1;;28330:40:0::1;-1:-1:-1::0;28330:40:0::1;::::0;;28216:11:::1;-1:-1:-1::0;28381:11:0;28413:2:::1;-1:-1:-1::0;28403:12:0;28433:15;::::1;::::0;-1:-1:-1;28433:15:0::1;27432:1024::o:0;19490:380::-;-1:-1:-1;;;;;19626:19:0;;19618:68;;;;-1:-1:-1;;;19618:68:0;;13926:2:1;19618:68:0;;;13908:21:1;13965:2;13945:18;;;13938:30;14004:34;13984:18;;;13977:62;-1:-1:-1;;;14055:18:1;;;14048:34;14099:19;;19618:68:0;13724:400:1;19618:68:0;-1:-1:-1;;;;;19705:21:0;;19697:68;;;;-1:-1:-1;;;19697:68:0;;14331:2:1;19697:68:0;;;14313:21:1;14370:2;14350:18;;;14343:30;14409:34;14389:18;;;14382:62;-1:-1:-1;;;14460:18:1;;;14453:32;14502:19;;19697:68:0;14129:398:1;19697:68:0;-1:-1:-1;;;;;19778:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19830:32;;1799:25:1;;;19830:32:0;;1772:18:1;19830:32:0;;;;;;;19490:380;;;:::o;31333:2296::-;-1:-1:-1;;;;;31465:18:0;;31457:68;;;;-1:-1:-1;;;31457:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31544:16:0;;31536:64;;;;-1:-1:-1;;;31536:64:0;;;;;;;:::i;:::-;31628:1;31619:6;:10;31611:64;;;;-1:-1:-1;;;31611:64:0;;15544:2:1;31611:64:0;;;15526:21:1;15583:2;15563:18;;;15556:30;15622:34;15602:18;;;15595:62;-1:-1:-1;;;15673:18:1;;;15666:39;15722:19;;31611:64:0;15342:405:1;31611:64:0;31686:17;31730:7;21840:6;;-1:-1:-1;;;;;21840:6:0;;21767:87;31730:7;-1:-1:-1;;;;;31722:15:0;:4;-1:-1:-1;;;;;31722:15:0;;;:32;;;;-1:-1:-1;21840:6:0;;-1:-1:-1;;;;;31741:13:0;;;21840:6;;31741:13;;31722:32;:43;;;;-1:-1:-1;31759:6:0;;-1:-1:-1;;;31759:6:0;;;;31758:7;31722:43;31718:1740;;;31810:27;31833:3;31810:18;31821:6;;31810;:10;;:18;;;;:::i;:::-;:22;;:27::i;:::-;31884:13;;31798:39;;-1:-1:-1;;;;;;31876:21:0;;;31884:13;;31876:21;:72;;;;-1:-1:-1;31932:15:0;;-1:-1:-1;;;;;31918:30:0;;;31932:15;;31918:30;;31876:72;:116;;;;-1:-1:-1;;;;;;31970:22:0;;;;;;:18;:22;;;;;;;;31969:23;31876:116;31854:571;;;32045:14;;32035:6;:24;;32027:64;;;;-1:-1:-1;;;32027:64:0;;15954:2:1;32027:64:0;;;15936:21:1;15993:2;15973:18;;;15966:30;16032:29;16012:18;;;16005:57;16079:18;;32027:64:0;15752:351:1;32027:64:0;32166:18;;32156:6;32140:13;32150:2;-1:-1:-1;;;;;12487:18:0;12460:7;12487:18;;;;;;;;;;;;12370:143;32140:13;:22;;;;:::i;:::-;:44;;32110:144;;;;-1:-1:-1;;;32110:144:0;;16310:2:1;32110:144:0;;;16292:21:1;16349:2;16329:18;;;16322:30;16388:28;16368:18;;;16361:56;16434:18;;32110:144:0;16108:350:1;32110:144:0;32296:12;32279:10;;32292:1;32279:14;;;;:::i;:::-;:29;;32398:9;:11;;;:9;:11;;;:::i;:::-;;;;;;31854:571;32451:13;;-1:-1:-1;;;;;32445:19:0;;;32451:13;;32445:19;;;;:46;;-1:-1:-1;;;;;;32469:22:0;;;;;;:18;:22;;;;;;;;32468:23;32445:46;32441:231;;;32568:18;;32558:6;32542:13;32552:2;-1:-1:-1;;;;;12487:18:0;12460:7;12487:18;;;;;;;;;;;;12370:143;32542:13;:22;;;;:::i;:::-;:44;;32512:144;;;;-1:-1:-1;;;32512:144:0;;16310:2:1;32512:144:0;;;16292:21:1;16349:2;16329:18;;;16322:30;16388:28;16368:18;;;16361:56;16434:18;;32512:144:0;16108:350:1;32512:144:0;32698:13;;-1:-1:-1;;;;;32692:19:0;;;32698:13;;32692:19;:44;;;;-1:-1:-1;;;;;;32715:21:0;;32731:4;32715:21;;32692:44;32688:125;;;32769:28;32793:3;32769:19;32780:7;;32769:6;:10;;:19;;;;:::i;:28::-;32757:40;;32688:125;32878:4;32829:28;12487:18;;;;;;;;;;;32922:6;;-1:-1:-1;;;32922:6:0;;;;32921:7;:47;;;;-1:-1:-1;32955:13:0;;-1:-1:-1;;;;;32949:19:0;;;32955:13;;32949:19;32921:47;:79;;;;-1:-1:-1;32989:11:0;;-1:-1:-1;;;32989:11:0;;;;32921:79;:135;;;;;33044:12;;33021:20;:35;32921:135;:186;;;;;33089:18;;33077:9;;:30;32921:186;:246;;;;-1:-1:-1;33128:15:0;;33154:12;33128:39;;;;:15;;:39;;32921:246;32899:548;;;33202:57;33219:39;33223:20;33245:12;;33219:3;:39::i;:::-;33202:16;:57::i;:::-;33307:21;33351:22;;33347:85;;33398:14;:12;:14::i;:::-;33183:264;32899:548;31767:1691;31718:1740;33474:13;;33470:93;;33504:47;33520:4;33534;33541:9;33504:15;:47::i;:::-;33573:48;33589:4;33595:2;33599:21;:6;33610:9;33599:10;:21::i;:::-;33573:15;:48::i;23074:191::-;23167:6;;;-1:-1:-1;;;;;23184:17:0;;;-1:-1:-1;;;;;;23184:17:0;;;;;;;23217:40;;23167:6;;;23184:17;23167:6;;23217:40;;23148:16;;23217:40;23137:128;23074:191;:::o;34399:532::-;26689:6;:13;;-1:-1:-1;;;;26689:13:0;-1:-1:-1;;;26689:13:0;;;34477:15:::1;:38:::0;;::::1;34502:12;34477:38;-1:-1:-1::0;;34477:38:0;;::::1;;::::0;;34550:16:::1;::::0;;34564:1:::1;34550:16:::0;;;;;::::1;::::0;;-1:-1:-1;;34550:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;34550:16:0::1;34526:40;;34595:4;34577;34582:1;34577:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34577:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;34621:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;34621:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;34577:7;;34621:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34611:4;34616:1;34611:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34611:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;34686:15:::1;::::0;34654:62:::1;::::0;34671:4:::1;::::0;34686:15:::1;34704:11:::0;34654:8:::1;:62::i;:::-;34727:15;::::0;:196:::1;::::0;-1:-1:-1;;;34727:196:0;;-1:-1:-1;;;;;34727:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;34808:11;;34727:15:::1;::::0;34850:4;;34877::::1;::::0;34897:15:::1;::::0;34727:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;26725:6:0;:14;;-1:-1:-1;;;;26725:14:0;;;-1:-1:-1;;;;34399:532:0:o;34939:170::-;35027:10;;35019:82;;34982:12;;-1:-1:-1;;;;;35027:10:0;;35051:21;;34982:12;35019:82;34982:12;35019:82;35051:21;35027:10;35019:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3444:98;3502:7;3529:5;3533:1;3529;:5;:::i;:::-;3522:12;3444:98;-1:-1:-1;;;3444:98:0:o;3843:::-;3901:7;3928:5;3932:1;3928;:5;:::i;33637:107::-;33694:7;33726:1;33722;:5;33721:15;;33735:1;33721:15;;;-1:-1:-1;33731:1:0;33637:107;-1:-1:-1;33637:107:0:o;16672:770::-;-1:-1:-1;;;;;16812:20:0;;16804:70;;;;-1:-1:-1;;;16804:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16893:23:0;;16885:71;;;;-1:-1:-1;;;16885:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17053:17:0;;17029:21;17053:17;;;;;;;;;;;17103:23;;;;17081:111;;;;-1:-1:-1;;;17081:111:0;;17992:2:1;17081:111:0;;;17974:21:1;18031:2;18011:18;;;18004:30;18070:34;18050:18;;;18043:62;-1:-1:-1;;;18121:18:1;;;18114:36;18167:19;;17081:111:0;17790:402:1;17081:111:0;-1:-1:-1;;;;;17228:17:0;;;:9;:17;;;;;;;;;;;17248:22;;;17228:42;;17292:20;;;;;;;;:30;;17264:6;;17228:9;17292:30;;17264:6;;17292:30;:::i;:::-;;;;;;;;17357:9;-1:-1:-1;;;;;17340:35:0;17349:6;-1:-1:-1;;;;;17340:35:0;;17368:6;17340:35;;;;1799:25:1;;1787:2;1772:18;;1653:177;17340:35:0;;;;;;;;17388:46;20470:125;3087:98;3145:7;3172:5;3176:1;3172;:5;:::i;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;956:315;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1468:180::-;1527:6;1580:2;1568:9;1559:7;1555:23;1551:32;1548:52;;;1596:1;1593;1586:12;1548:52;-1:-1:-1;1619:23:1;;1468:180;-1:-1:-1;1468:180:1:o;1835:118::-;1921:5;1914:13;1907:21;1900:5;1897:32;1887:60;;1943:1;1940;1933:12;1958:750;2050:6;2058;2066;2119:2;2107:9;2098:7;2094:23;2090:32;2087:52;;;2135:1;2132;2125:12;2087:52;2175:9;2162:23;2204:18;2245:2;2237:6;2234:14;2231:34;;;2261:1;2258;2251:12;2231:34;2299:6;2288:9;2284:22;2274:32;;2344:7;2337:4;2333:2;2329:13;2325:27;2315:55;;2366:1;2363;2356:12;2315:55;2406:2;2393:16;2432:2;2424:6;2421:14;2418:34;;;2448:1;2445;2438:12;2418:34;2503:7;2496:4;2486:6;2483:1;2479:14;2475:2;2471:23;2467:34;2464:47;2461:67;;;2524:1;2521;2514:12;2461:67;2555:4;2547:13;;;;-1:-1:-1;2579:6:1;-1:-1:-1;;2620:20:1;;2607:34;2650:28;2607:34;2650:28;:::i;:::-;2697:5;2687:15;;;1958:750;;;;;:::o;2713:456::-;2790:6;2798;2806;2859:2;2847:9;2838:7;2834:23;2830:32;2827:52;;;2875:1;2872;2865:12;2827:52;2914:9;2901:23;2933:31;2958:5;2933:31;:::i;:::-;2983:5;-1:-1:-1;3040:2:1;3025:18;;3012:32;3053:33;3012:32;3053:33;:::i;:::-;2713:456;;3105:7;;-1:-1:-1;;;3159:2:1;3144:18;;;;3131:32;;2713:456::o;3174:382::-;3239:6;3247;3300:2;3288:9;3279:7;3275:23;3271:32;3268:52;;;3316:1;3313;3306:12;3268:52;3355:9;3342:23;3374:31;3399:5;3374:31;:::i;:::-;3424:5;-1:-1:-1;3481:2:1;3466:18;;3453:32;3494:30;3453:32;3494:30;:::i;:::-;3543:7;3533:17;;;3174:382;;;;;:::o;3750:247::-;3809:6;3862:2;3850:9;3841:7;3837:23;3833:32;3830:52;;;3878:1;3875;3868:12;3830:52;3917:9;3904:23;3936:31;3961:5;3936:31;:::i;5010:388::-;5078:6;5086;5139:2;5127:9;5118:7;5114:23;5110:32;5107:52;;;5155:1;5152;5145:12;5107:52;5194:9;5181:23;5213:31;5238:5;5213:31;:::i;:::-;5263:5;-1:-1:-1;5320:2:1;5305:18;;5292:32;5333:33;5292:32;5333:33;:::i;5403:356::-;5605:2;5587:21;;;5624:18;;;5617:30;5683:34;5678:2;5663:18;;5656:62;5750:2;5735:18;;5403:356::o;5764:127::-;5825:10;5820:3;5816:20;5813:1;5806:31;5856:4;5853:1;5846:15;5880:4;5877:1;5870:15;5896:168;5969:9;;;6000;;6017:15;;;6011:22;;5997:37;5987:71;;6038:18;;:::i;6069:217::-;6109:1;6135;6125:132;;6179:10;6174:3;6170:20;6167:1;6160:31;6214:4;6211:1;6204:15;6242:4;6239:1;6232:15;6125:132;-1:-1:-1;6271:9:1;;6069:217::o;6544:380::-;6623:1;6619:12;;;;6666;;;6687:61;;6741:4;6733:6;6729:17;6719:27;;6687:61;6794:2;6786:6;6783:14;6763:18;6760:38;6757:161;;6840:10;6835:3;6831:20;6828:1;6821:31;6875:4;6872:1;6865:15;6903:4;6900:1;6893:15;7332:127;7393:10;7388:3;7384:20;7381:1;7374:31;7424:4;7421:1;7414:15;7448:4;7445:1;7438:15;7464:135;7503:3;7524:17;;;7521:43;;7544:18;;:::i;:::-;-1:-1:-1;7591:1:1;7580:13;;7464:135::o;7604:353::-;7806:2;7788:21;;;7845:2;7825:18;;;7818:30;7884:31;7879:2;7864:18;;7857:59;7948:2;7933:18;;7604:353::o;8660:125::-;8725:9;;;8746:10;;;8743:36;;;8759:18;;:::i;10472:184::-;10542:6;10595:2;10583:9;10574:7;10570:23;10566:32;10563:52;;;10611:1;10608;10601:12;10563:52;-1:-1:-1;10634:16:1;;10472:184;-1:-1:-1;10472:184:1:o;10948:245::-;11015:6;11068:2;11056:9;11047:7;11043:23;11039:32;11036:52;;;11084:1;11081;11074:12;11036:52;11116:9;11110:16;11135:28;11157:5;11135:28;:::i;11957:251::-;12027:6;12080:2;12068:9;12059:7;12055:23;12051:32;12048:52;;;12096:1;12093;12086:12;12048:52;12128:9;12122:16;12147:31;12172:5;12147:31;:::i;13134:306::-;13222:6;13230;13238;13291:2;13279:9;13270:7;13266:23;13262:32;13259:52;;;13307:1;13304;13297:12;13259:52;13336:9;13330:16;13320:26;;13386:2;13375:9;13371:18;13365:25;13355:35;;13430:2;13419:9;13415:18;13409:25;13399:35;;13134:306;;;;;:::o;14532:401::-;14734:2;14716:21;;;14773:2;14753:18;;;14746:30;14812:34;14807:2;14792:18;;14785:62;-1:-1:-1;;;14878:2:1;14863:18;;14856:35;14923:3;14908:19;;14532:401::o;14938:399::-;15140:2;15122:21;;;15179:2;15159:18;;;15152:30;15218:34;15213:2;15198:18;;15191:62;-1:-1:-1;;;15284:2:1;15269:18;;15262:33;15327:3;15312:19;;14938:399::o;16595:980::-;16857:4;16905:3;16894:9;16890:19;16936:6;16925:9;16918:25;16962:2;17000:6;16995:2;16984:9;16980:18;16973:34;17043:3;17038:2;17027:9;17023:18;17016:31;17067:6;17102;17096:13;17133:6;17125;17118:22;17171:3;17160:9;17156:19;17149:26;;17210:2;17202:6;17198:15;17184:29;;17231:1;17241:195;17255:6;17252:1;17249:13;17241:195;;;17320:13;;-1:-1:-1;;;;;17316:39:1;17304:52;;17411:15;;;;17376:12;;;;17352:1;17270:9;17241:195;;;-1:-1:-1;;;;;;;17492:32:1;;;;17487:2;17472:18;;17465:60;-1:-1:-1;;;17556:3:1;17541:19;17534:35;17453:3;16595:980;-1:-1:-1;;;16595:980:1:o;18197:128::-;18264:9;;;18285:11;;;18282:37;;;18299:18;;:::i
Swarm Source
ipfs://7bab91118f396f76410c8bbc240882723f1988ea55196ca99f596e8a7b42e838
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.