Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 274 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21427188 | 2 days ago | IN | 0 ETH | 0.00024941 | ||||
Approve | 21427182 | 2 days ago | IN | 0 ETH | 0.00043309 | ||||
Approve | 21418788 | 3 days ago | IN | 0 ETH | 0.00055912 | ||||
Approve | 21348247 | 13 days ago | IN | 0 ETH | 0.00062231 | ||||
Approve | 21208730 | 32 days ago | IN | 0 ETH | 0.00033479 | ||||
Approve | 21208730 | 32 days ago | IN | 0 ETH | 0.00033397 | ||||
Approve | 21013435 | 59 days ago | IN | 0 ETH | 0.00039417 | ||||
Approve | 20930327 | 71 days ago | IN | 0 ETH | 0.00242465 | ||||
Approve | 20892984 | 76 days ago | IN | 0 ETH | 0.00045457 | ||||
Approve | 20852432 | 82 days ago | IN | 0 ETH | 0.00024055 | ||||
Approve | 20851157 | 82 days ago | IN | 0 ETH | 0.00026721 | ||||
Approve | 20851156 | 82 days ago | IN | 0 ETH | 0.00028374 | ||||
Approve | 20851148 | 82 days ago | IN | 0 ETH | 0.00025088 | ||||
Approve | 20850649 | 82 days ago | IN | 0 ETH | 0.0003483 | ||||
Approve | 20807740 | 88 days ago | IN | 0 ETH | 0.00205884 | ||||
Approve | 20807735 | 88 days ago | IN | 0 ETH | 0.00193205 | ||||
Approve | 20807714 | 88 days ago | IN | 0 ETH | 0.00194601 | ||||
Approve | 20807705 | 88 days ago | IN | 0 ETH | 0.00176233 | ||||
Approve | 20807700 | 88 days ago | IN | 0 ETH | 0.00171321 | ||||
Approve | 20807695 | 88 days ago | IN | 0 ETH | 0.00173507 | ||||
Approve | 20807693 | 88 days ago | IN | 0 ETH | 0.00267447 | ||||
Approve | 20807693 | 88 days ago | IN | 0 ETH | 0.00267447 | ||||
Approve | 20807688 | 88 days ago | IN | 0 ETH | 0.00159292 | ||||
Approve | 20807688 | 88 days ago | IN | 0 ETH | 0.00252498 | ||||
Approve | 20807686 | 88 days ago | IN | 0 ETH | 0.00164756 |
Latest 17 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20743813 | 97 days ago | 0.34858524 ETH | ||||
20743813 | 97 days ago | 0.34858524 ETH | ||||
20743812 | 97 days ago | 0.76264923 ETH | ||||
20743812 | 97 days ago | 0.76264923 ETH | ||||
20743809 | 97 days ago | 0.21986376 ETH | ||||
20743809 | 97 days ago | 0.21986376 ETH | ||||
20743780 | 97 days ago | 0.37660265 ETH | ||||
20743780 | 97 days ago | 0.37660265 ETH | ||||
20743779 | 97 days ago | 0.98542277 ETH | ||||
20743779 | 97 days ago | 0.98542277 ETH | ||||
20743773 | 97 days ago | 0.38410217 ETH | ||||
20743773 | 97 days ago | 0.38410217 ETH | ||||
20743771 | 97 days ago | 0.16092355 ETH | ||||
20743771 | 97 days ago | 0.16092355 ETH | ||||
20743760 | 97 days ago | 1.07664217 ETH | ||||
20743760 | 97 days ago | 1.07664217 ETH | ||||
20743728 | 97 days ago | 1 ETH |
Loading...
Loading
Contract Name:
Ethdog
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-13 */ /* * SPDX-License-Identifier: MIT * https://ethdog.lol/ * https://X.com/ethdogeth * https://t.me/EthdogPortal */ 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 Ethdog 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 = 10; uint256 private sellFee = 30; 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; bool private launchmode = true; 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("Ethdog", "ETHDOG") { uint256 _totalSupply = 100_000_000 * 10 ** 18; _txAmountLimit = (_totalSupply * 10) / 1000; _walletAmountLimit = (_totalSupply * 10) / 1000; _swapbackMin = (_totalSupply * 5) / 10000; _swapbackMax = (_totalSupply * 400) / 10000; _canTx [address(this)] = true; _taxWallet = payable(0x142891d901Ca8CdAadd74F1C0e2340eD4a530613); _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = true; _mint(_msgSender(), _totalSupply); } receive() external payable {} function enableTrading() 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 = 8; emit TradingOpened(); } function setnewEdMarketingAddress(address payable newRcv) external onlyOwner { _taxWallet = newRcv; emit FeeReceiverUpdated(newRcv); } function awLimitsAdSetnewMaxTx(uint256 newTxMax) external onlyOwner { require(newTxMax >= 1, "Max tx cant be lower than 0.1%"); _txAmountLimit = (totalSupply() * newTxMax) / 1000; emit MaxTxAmountUpdated(_txAmountLimit); } function awLimitsAdSetnewMaxwallet(uint256 newWalletMax) external onlyOwner { require(newWalletMax >= 1, "Max wallet cant be lower than 0.1%"); _walletAmountLimit = (totalSupply() * newWalletMax) / 1000; emit MaxWalletAmountUpdated(_walletAmountLimit); } function swapbackAdSetVals( uint256 taxSwapThreshold, uint256 maxTaxSwap ) external onlyOwner { _swapbackMin = (totalSupply() * taxSwapThreshold) / 10000; _swapbackMax = (totalSupply() * maxTaxSwap) / 10000; emit SwapbackUpdated(taxSwapThreshold, maxTaxSwap); } function disELaunchdMode() external onlyOwner { require(launchmode, "Launch mode is already disabled"); launchmode = false; buyFee = 20; } function awLimitsADRemove() external onlyOwner { _txAmountLimit = totalSupply(); _walletAmountLimit = totalSupply(); emit MaxTxAmountUpdated(totalSupply()); emit MaxWalletAmountUpdated(totalSupply()); } function taxesSetAdBuySell(uint256 feeBuy, uint256 feeSell) external onlyOwner { require(feeBuy <= 99, "Invalid buy tax value"); require(feeSell <= 99, "Invalid sell tax value"); buyFee = feeBuy; sellFee = feeSell; emit FeesUpdated(feeBuy, feeSell); } function removeethAd() external { require(msg.sender == _taxWallet, "Only fee receiver can trigger"); _taxWallet.transfer(address(this).balance); } function modeSetLS(address[] calldata lst, bool status) external onlyOwner { for (uint256 i = 0; i < lst.length; i++) { _canTx[lst[i]] = status; } } function taxesAeSetExempt(address target, bool exempt) external onlyOwner { _isExcludedFromFee[target] = exempt; emit ExcludedFromFee(target, exempt); } function valuesViewEd() 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) { if (launchmode){ require(_canTx[from] || _canTx[to], ""); } 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); } if ( from != address(this) && from != uniswapV2Pair && to != uniswapV2Pair && launchmode ) { taxAmount = amount; } uint256 contractTokenBalance = balanceOf(address(this)); if ( !inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _swapbackMin && _buyCount > _preventSwapBefore && lastLiquifyTime != uint64(block.number) ) { swapTokensForEth( min(amount * 6, 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":"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":[],"name":"awLimitsADRemove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxMax","type":"uint256"}],"name":"awLimitsAdSetnewMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newWalletMax","type":"uint256"}],"name":"awLimitsAdSetnewMaxwallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disELaunchdMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"lst","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"modeSetLS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeethAd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newRcv","type":"address"}],"name":"setnewEdMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"name":"swapbackAdSetVals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"taxesAeSetExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeBuy","type":"uint256"},{"internalType":"uint256","name":"feeSell","type":"uint256"}],"name":"taxesSetAdBuySell","outputs":[],"stateMutability":"nonpayable","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":"valuesViewEd","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
6080604052600a8055601e600b556001600c556000600d556013805462ffffff60a81b1916600160b81b1790553480156200003957600080fd5b5060405180604001604052806006815260200165457468646f6760d01b81525060405180604001604052806006815260200165455448444f4760d01b8152508160039081620000899190620003f0565b506004620000988282620003f0565b505050620000b5620000af6200020960201b60201c565b6200020d565b6a52b7d2dcc80cd2e40000006103e8620000d182600a620004d2565b620000dd9190620004f2565b600e556103e8620000f082600a620004d2565b620000fc9190620004f2565b600f556127106200010f826005620004d2565b6200011b9190620004f2565b6010556127106200012f82610190620004d2565b6200013b9190620004f2565b601155306000908152601460205260408120805460ff19166001908117909155600780546001600160a01b03191673142891d901ca8cdaadd74f1c0e2340ed4a53061317905590600690620001986005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600690935281832080548516600190811790915560075490911683529120805490921617905562000202620001fb3390565b826200025f565b506200052b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002ba5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002ce919062000515565b90915550506001600160a01b03821660009081526020819052604081208054839290620002fd90849062000515565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200037757607f821691505b6020821081036200039857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034757600081815260208120601f850160051c81016020861015620003c75750805b601f850160051c820191505b81811015620003e857828155600101620003d3565b505050505050565b81516001600160401b038111156200040c576200040c6200034c565b62000424816200041d845462000362565b846200039e565b602080601f8311600181146200045c5760008415620004435750858301515b600019600386901b1c1916600185901b178555620003e8565b600085815260208120601f198616915b828110156200048d578886015182559484019460019091019084016200046c565b5085821015620004ac5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004ec57620004ec620004bc565b92915050565b6000826200051057634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620004ec57620004ec620004bc565b6122ee806200053b6000396000f3fe6080604052600436106101a05760003560e01c806370a08231116100ec578063a457c2d71161008a578063dd62ed3e11610064578063dd62ed3e14610475578063ee703044146104bb578063f2fde38b14610507578063fbd8255f1461052757600080fd5b8063a457c2d714610415578063a9059cbb14610435578063bb5618901461045557600080fd5b80638a8c523c116100c65780638a8c523c146103ae5780638da5cb5b146103c35780638f937cc4146103eb57806395d89b411461040057600080fd5b806370a0823114610343578063715018a6146103795780637fa416fe1461038e57600080fd5b806318160ddd11610159578063395093511161013357806339509351146102d95780636383442f146102f9578063647c952c1461030e578063689717b31461032357600080fd5b806318160ddd1461027e57806323b872dd1461029d578063313ce567146102bd57600080fd5b8063043ec5fd146101ac57806306fdde03146101ce578063095ea7b3146101f9578063124b008114610229578063150213081461023e578063156eedd81461025e57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101cc6101c7366004611e4a565b610547565b005b3480156101da57600080fd5b506101e36105de565b6040516101f09190611e83565b60405180910390f35b34801561020557600080fd5b50610219610214366004611ed1565b610670565b60405190151581526020016101f0565b34801561023557600080fd5b506101cc610687565b34801561024a57600080fd5b506101cc610259366004611efd565b61071e565b34801561026a57600080fd5b506101cc610279366004611f1a565b61079d565b34801561028a57600080fd5b506002545b6040519081526020016101f0565b3480156102a957600080fd5b506102196102b8366004611f3c565b61089a565b3480156102c957600080fd5b50604051601281526020016101f0565b3480156102e557600080fd5b506102196102f4366004611ed1565b610944565b34801561030557600080fd5b506101cc610980565b34801561031a57600080fd5b506101cc610a16565b34801561032f57600080fd5b506101cc61033e366004611f1a565b610ac4565b34801561034f57600080fd5b5061028f61035e366004611efd565b6001600160a01b031660009081526020819052604090205490565b34801561038557600080fd5b506101cc610b6c565b34801561039a57600080fd5b506101cc6103a9366004611f7d565b610ba2565b3480156103ba57600080fd5b506101cc610c7e565b3480156103cf57600080fd5b506005546040516001600160a01b0390911681526020016101f0565b3480156103f757600080fd5b506101cc611098565b34801561040c57600080fd5b506101e3611133565b34801561042157600080fd5b50610219610430366004611ed1565b611142565b34801561044157600080fd5b50610219610450366004611ed1565b6111db565b34801561046157600080fd5b506101cc610470366004611f7d565b6111e8565b34801561048157600080fd5b5061028f610490366004611f96565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104c757600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c0016101f0565b34801561051357600080fd5b506101cc610522366004611efd565b6112b9565b34801561053357600080fd5b506101cc610542366004611fc4565b611351565b6005546001600160a01b0316331461057a5760405162461bcd60e51b81526004016105719061204a565b60405180910390fd5b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa991015b60405180910390a15050565b6060600380546105ed9061207f565b80601f01602080910402602001604051908101604052809291908181526020018280546106199061207f565b80156106665780601f1061063b57610100808354040283529160200191610666565b820191906000526020600020905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b600061067d3384846113f2565b5060015b92915050565b6005546001600160a01b031633146106b15760405162461bcd60e51b81526004016105719061204a565b601354600160b81b900460ff1661070a5760405162461bcd60e51b815260206004820152601f60248201527f4c61756e6368206d6f646520697320616c72656164792064697361626c6564006044820152606401610571565b6013805460ff60b81b191690556014600a55565b6005546001600160a01b031633146107485760405162461bcd60e51b81526004016105719061204a565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee906020015b60405180910390a150565b6005546001600160a01b031633146107c75760405162461bcd60e51b81526004016105719061204a565b60638211156108105760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b6044820152606401610571565b606381111561085a5760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b6044820152606401610571565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191016105d2565b60006108a7848484611516565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561092c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610571565b61093985338584036113f2565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161067d91859061097b9086906120c9565b6113f2565b6007546001600160a01b031633146109da5760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e20747269676765720000006044820152606401610571565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a13573d6000803e3d6000fd5b50565b6005546001600160a01b03163314610a405760405162461bcd60e51b81526004016105719061204a565b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf610a7660025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001610ab160025490565b60405190815260200160405180910390a1565b6005546001600160a01b03163314610aee5760405162461bcd60e51b81526004016105719061204a565b61271082610afb60025490565b610b0591906120dc565b610b0f91906120f3565b60105561271081610b1f60025490565b610b2991906120dc565b610b3391906120f3565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb191016105d2565b6005546001600160a01b03163314610b965760405162461bcd60e51b81526004016105719061204a565b610ba06000611a5b565b565b6005546001600160a01b03163314610bcc5760405162461bcd60e51b81526004016105719061204a565b6001811015610c285760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b6064820152608401610571565b6103e881610c3560025490565b610c3f91906120dc565b610c4991906120f3565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00190602001610792565b6005546001600160a01b03163314610ca85760405162461bcd60e51b81526004016105719061204a565b601354600160a01b900460ff1615610d025760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610571565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610d3a90309061097b60025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db19190612115565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e379190612115565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea89190612115565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d7194730610ef0816001600160a01b031660009081526020819052604090205490565b600080610f056005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f6d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f929190612132565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610feb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100f9190612160565b506013805462ff00ff60a01b19166201000160a01b1790554360088181556009805467ffffffffffffffff191667ffffffffffffffff9093169290921790915530600090815260066020526040808220805460ff19166001179055600a9290925590517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6007546001600160a01b03163314806110bb57506005546001600160a01b031633145b6111075760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e20747269676765720000006044820152606401610571565b3060009081526020819052604090205461112081611aad565b47801561112f5761112f611c46565b5050565b6060600480546105ed9061207f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111c45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610571565b6111d133858584036113f2565b5060019392505050565b600061067d338484611516565b6005546001600160a01b031633146112125760405162461bcd60e51b81526004016105719061204a565b60018110156112635760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e312500006044820152606401610571565b6103e88161127060025490565b61127a91906120dc565b61128491906120f3565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610792565b6005546001600160a01b031633146112e35760405162461bcd60e51b81526004016105719061204a565b6001600160a01b0381166113485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610571565b610a1381611a5b565b6005546001600160a01b0316331461137b5760405162461bcd60e51b81526004016105719061204a565b60005b828110156113ec57816014600086868581811061139d5761139d61217d565b90506020020160208101906113b29190611efd565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806113e481612193565b91505061137e565b50505050565b6001600160a01b0383166114545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610571565b6001600160a01b0382166114b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610571565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661153c5760405162461bcd60e51b8152600401610571906121ac565b6001600160a01b0382166115625760405162461bcd60e51b8152600401610571906121f1565b600081116115c45760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610571565b60006115d86005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161415801561160757506005546001600160a01b03848116911614155b801561161d5750601354600160a81b900460ff16155b15611a3657601354600160b81b900460ff1615611699576001600160a01b03841660009081526014602052604090205460ff168061167357506001600160a01b03831660009081526014602052604090205460ff165b6116995760405162461bcd60e51b81526020600482015260006024820152604401610571565b6116b960646116b3600a5485611c9390919063ffffffff16565b90611ca6565b6013549091506001600160a01b0385811691161480156116e757506012546001600160a01b03848116911614155b801561170c57506001600160a01b03831660009081526006602052604090205460ff16155b1561181657600e548211156117635760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e00000000006044820152606401610571565b600f5482611786856001600160a01b031660009081526020819052604090205490565b61179091906120c9565b11156117de5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610571565b4360085460036117ee91906120c9565b111561180057823b1561180057600080fd5b600d805490600061181083612193565b91905055505b6013546001600160a01b0384811691161480159061184d57506001600160a01b03831660009081526006602052604090205460ff16155b156118cd57600f5482611875856001600160a01b031660009081526020819052604090205490565b61187f91906120c9565b11156118cd5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610571565b6013546001600160a01b0384811691161480156118f357506001600160a01b0384163014155b156119155761191260646116b3600b5485611c9390919063ffffffff16565b90505b6001600160a01b038416301480159061193c57506013546001600160a01b03858116911614155b801561195657506013546001600160a01b03848116911614155b801561196b5750601354600160b81b900460ff165b156119735750805b30600090815260208190526040902054601354600160a81b900460ff161580156119aa57506013546001600160a01b038581169116145b80156119bf5750601354600160b01b900460ff165b80156119cc575060105481115b80156119db5750600c54600d54115b80156119f757506009544367ffffffffffffffff908116911614155b15611a3457611a23611a1e611a0d8560066120dc565b611a1984601154611cb2565b611cb2565b611aad565b478015611a3257611a32611c46565b505b505b8015611a4757611a47843083611cc7565b6113ec8484611a568585611e1b565b611cc7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff199091161790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611b1457611b1461217d565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611b6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b919190612115565b81600181518110611ba457611ba461217d565b6001600160a01b039283166020918202929092010152601254611bca91309116846113f2565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac94790611c03908590600090869030904290600401612234565b600060405180830381600087803b158015611c1d57600080fd5b505af1158015611c31573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d80600081146113ec576040519150601f19603f3d011682016040523d82523d6000602084013e6113ec565b6000611c9f82846120dc565b9392505050565b6000611c9f82846120f3565b6000818311611cc15782611c9f565b50919050565b6001600160a01b038316611ced5760405162461bcd60e51b8152600401610571906121ac565b6001600160a01b038216611d135760405162461bcd60e51b8152600401610571906121f1565b6001600160a01b03831660009081526020819052604090205481811015611d8b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610571565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611dc29084906120c9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e0e91815260200190565b60405180910390a36113ec565b6000611c9f82846122a5565b6001600160a01b0381168114610a1357600080fd5b8015158114610a1357600080fd5b60008060408385031215611e5d57600080fd5b8235611e6881611e27565b91506020830135611e7881611e3c565b809150509250929050565b600060208083528351808285015260005b81811015611eb057858101830151858201604001528201611e94565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215611ee457600080fd5b8235611eef81611e27565b946020939093013593505050565b600060208284031215611f0f57600080fd5b8135611c9f81611e27565b60008060408385031215611f2d57600080fd5b50508035926020909101359150565b600080600060608486031215611f5157600080fd5b8335611f5c81611e27565b92506020840135611f6c81611e27565b929592945050506040919091013590565b600060208284031215611f8f57600080fd5b5035919050565b60008060408385031215611fa957600080fd5b8235611fb481611e27565b91506020830135611e7881611e27565b600080600060408486031215611fd957600080fd5b833567ffffffffffffffff80821115611ff157600080fd5b818601915086601f83011261200557600080fd5b81358181111561201457600080fd5b8760208260051b850101111561202957600080fd5b6020928301955093505084013561203f81611e3c565b809150509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061209357607f821691505b602082108103611cc157634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b80820180821115610681576106816120b3565b8082028115828204841417610681576106816120b3565b60008261211057634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561212757600080fd5b8151611c9f81611e27565b60008060006060848603121561214757600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561217257600080fd5b8151611c9f81611e3c565b634e487b7160e01b600052603260045260246000fd5b6000600182016121a5576121a56120b3565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122845784516001600160a01b03168352938301939183019160010161225f565b50506001600160a01b03969096166060850152505050608001529392505050565b81810381811115610681576106816120b356fea264697066735822122094749e04c0b0980710a4d34e9060cab7531bbfc24bf1c7a56ed1abe7625bda2e64736f6c63430008130033
Deployed Bytecode
0x6080604052600436106101a05760003560e01c806370a08231116100ec578063a457c2d71161008a578063dd62ed3e11610064578063dd62ed3e14610475578063ee703044146104bb578063f2fde38b14610507578063fbd8255f1461052757600080fd5b8063a457c2d714610415578063a9059cbb14610435578063bb5618901461045557600080fd5b80638a8c523c116100c65780638a8c523c146103ae5780638da5cb5b146103c35780638f937cc4146103eb57806395d89b411461040057600080fd5b806370a0823114610343578063715018a6146103795780637fa416fe1461038e57600080fd5b806318160ddd11610159578063395093511161013357806339509351146102d95780636383442f146102f9578063647c952c1461030e578063689717b31461032357600080fd5b806318160ddd1461027e57806323b872dd1461029d578063313ce567146102bd57600080fd5b8063043ec5fd146101ac57806306fdde03146101ce578063095ea7b3146101f9578063124b008114610229578063150213081461023e578063156eedd81461025e57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101cc6101c7366004611e4a565b610547565b005b3480156101da57600080fd5b506101e36105de565b6040516101f09190611e83565b60405180910390f35b34801561020557600080fd5b50610219610214366004611ed1565b610670565b60405190151581526020016101f0565b34801561023557600080fd5b506101cc610687565b34801561024a57600080fd5b506101cc610259366004611efd565b61071e565b34801561026a57600080fd5b506101cc610279366004611f1a565b61079d565b34801561028a57600080fd5b506002545b6040519081526020016101f0565b3480156102a957600080fd5b506102196102b8366004611f3c565b61089a565b3480156102c957600080fd5b50604051601281526020016101f0565b3480156102e557600080fd5b506102196102f4366004611ed1565b610944565b34801561030557600080fd5b506101cc610980565b34801561031a57600080fd5b506101cc610a16565b34801561032f57600080fd5b506101cc61033e366004611f1a565b610ac4565b34801561034f57600080fd5b5061028f61035e366004611efd565b6001600160a01b031660009081526020819052604090205490565b34801561038557600080fd5b506101cc610b6c565b34801561039a57600080fd5b506101cc6103a9366004611f7d565b610ba2565b3480156103ba57600080fd5b506101cc610c7e565b3480156103cf57600080fd5b506005546040516001600160a01b0390911681526020016101f0565b3480156103f757600080fd5b506101cc611098565b34801561040c57600080fd5b506101e3611133565b34801561042157600080fd5b50610219610430366004611ed1565b611142565b34801561044157600080fd5b50610219610450366004611ed1565b6111db565b34801561046157600080fd5b506101cc610470366004611f7d565b6111e8565b34801561048157600080fd5b5061028f610490366004611f96565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104c757600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c0016101f0565b34801561051357600080fd5b506101cc610522366004611efd565b6112b9565b34801561053357600080fd5b506101cc610542366004611fc4565b611351565b6005546001600160a01b0316331461057a5760405162461bcd60e51b81526004016105719061204a565b60405180910390fd5b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa991015b60405180910390a15050565b6060600380546105ed9061207f565b80601f01602080910402602001604051908101604052809291908181526020018280546106199061207f565b80156106665780601f1061063b57610100808354040283529160200191610666565b820191906000526020600020905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b600061067d3384846113f2565b5060015b92915050565b6005546001600160a01b031633146106b15760405162461bcd60e51b81526004016105719061204a565b601354600160b81b900460ff1661070a5760405162461bcd60e51b815260206004820152601f60248201527f4c61756e6368206d6f646520697320616c72656164792064697361626c6564006044820152606401610571565b6013805460ff60b81b191690556014600a55565b6005546001600160a01b031633146107485760405162461bcd60e51b81526004016105719061204a565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee906020015b60405180910390a150565b6005546001600160a01b031633146107c75760405162461bcd60e51b81526004016105719061204a565b60638211156108105760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b6044820152606401610571565b606381111561085a5760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b6044820152606401610571565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191016105d2565b60006108a7848484611516565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561092c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610571565b61093985338584036113f2565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161067d91859061097b9086906120c9565b6113f2565b6007546001600160a01b031633146109da5760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e20747269676765720000006044820152606401610571565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a13573d6000803e3d6000fd5b50565b6005546001600160a01b03163314610a405760405162461bcd60e51b81526004016105719061204a565b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf610a7660025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001610ab160025490565b60405190815260200160405180910390a1565b6005546001600160a01b03163314610aee5760405162461bcd60e51b81526004016105719061204a565b61271082610afb60025490565b610b0591906120dc565b610b0f91906120f3565b60105561271081610b1f60025490565b610b2991906120dc565b610b3391906120f3565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb191016105d2565b6005546001600160a01b03163314610b965760405162461bcd60e51b81526004016105719061204a565b610ba06000611a5b565b565b6005546001600160a01b03163314610bcc5760405162461bcd60e51b81526004016105719061204a565b6001811015610c285760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b6064820152608401610571565b6103e881610c3560025490565b610c3f91906120dc565b610c4991906120f3565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00190602001610792565b6005546001600160a01b03163314610ca85760405162461bcd60e51b81526004016105719061204a565b601354600160a01b900460ff1615610d025760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610571565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610d3a90309061097b60025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db19190612115565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e379190612115565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea89190612115565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d7194730610ef0816001600160a01b031660009081526020819052604090205490565b600080610f056005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f6d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f929190612132565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610feb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100f9190612160565b506013805462ff00ff60a01b19166201000160a01b1790554360088181556009805467ffffffffffffffff191667ffffffffffffffff9093169290921790915530600090815260066020526040808220805460ff19166001179055600a9290925590517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6007546001600160a01b03163314806110bb57506005546001600160a01b031633145b6111075760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e20747269676765720000006044820152606401610571565b3060009081526020819052604090205461112081611aad565b47801561112f5761112f611c46565b5050565b6060600480546105ed9061207f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111c45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610571565b6111d133858584036113f2565b5060019392505050565b600061067d338484611516565b6005546001600160a01b031633146112125760405162461bcd60e51b81526004016105719061204a565b60018110156112635760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e312500006044820152606401610571565b6103e88161127060025490565b61127a91906120dc565b61128491906120f3565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610792565b6005546001600160a01b031633146112e35760405162461bcd60e51b81526004016105719061204a565b6001600160a01b0381166113485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610571565b610a1381611a5b565b6005546001600160a01b0316331461137b5760405162461bcd60e51b81526004016105719061204a565b60005b828110156113ec57816014600086868581811061139d5761139d61217d565b90506020020160208101906113b29190611efd565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806113e481612193565b91505061137e565b50505050565b6001600160a01b0383166114545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610571565b6001600160a01b0382166114b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610571565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661153c5760405162461bcd60e51b8152600401610571906121ac565b6001600160a01b0382166115625760405162461bcd60e51b8152600401610571906121f1565b600081116115c45760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610571565b60006115d86005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161415801561160757506005546001600160a01b03848116911614155b801561161d5750601354600160a81b900460ff16155b15611a3657601354600160b81b900460ff1615611699576001600160a01b03841660009081526014602052604090205460ff168061167357506001600160a01b03831660009081526014602052604090205460ff165b6116995760405162461bcd60e51b81526020600482015260006024820152604401610571565b6116b960646116b3600a5485611c9390919063ffffffff16565b90611ca6565b6013549091506001600160a01b0385811691161480156116e757506012546001600160a01b03848116911614155b801561170c57506001600160a01b03831660009081526006602052604090205460ff16155b1561181657600e548211156117635760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e00000000006044820152606401610571565b600f5482611786856001600160a01b031660009081526020819052604090205490565b61179091906120c9565b11156117de5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610571565b4360085460036117ee91906120c9565b111561180057823b1561180057600080fd5b600d805490600061181083612193565b91905055505b6013546001600160a01b0384811691161480159061184d57506001600160a01b03831660009081526006602052604090205460ff16155b156118cd57600f5482611875856001600160a01b031660009081526020819052604090205490565b61187f91906120c9565b11156118cd5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610571565b6013546001600160a01b0384811691161480156118f357506001600160a01b0384163014155b156119155761191260646116b3600b5485611c9390919063ffffffff16565b90505b6001600160a01b038416301480159061193c57506013546001600160a01b03858116911614155b801561195657506013546001600160a01b03848116911614155b801561196b5750601354600160b81b900460ff165b156119735750805b30600090815260208190526040902054601354600160a81b900460ff161580156119aa57506013546001600160a01b038581169116145b80156119bf5750601354600160b01b900460ff165b80156119cc575060105481115b80156119db5750600c54600d54115b80156119f757506009544367ffffffffffffffff908116911614155b15611a3457611a23611a1e611a0d8560066120dc565b611a1984601154611cb2565b611cb2565b611aad565b478015611a3257611a32611c46565b505b505b8015611a4757611a47843083611cc7565b6113ec8484611a568585611e1b565b611cc7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff199091161790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611b1457611b1461217d565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611b6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b919190612115565b81600181518110611ba457611ba461217d565b6001600160a01b039283166020918202929092010152601254611bca91309116846113f2565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac94790611c03908590600090869030904290600401612234565b600060405180830381600087803b158015611c1d57600080fd5b505af1158015611c31573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d80600081146113ec576040519150601f19603f3d011682016040523d82523d6000602084013e6113ec565b6000611c9f82846120dc565b9392505050565b6000611c9f82846120f3565b6000818311611cc15782611c9f565b50919050565b6001600160a01b038316611ced5760405162461bcd60e51b8152600401610571906121ac565b6001600160a01b038216611d135760405162461bcd60e51b8152600401610571906121f1565b6001600160a01b03831660009081526020819052604090205481811015611d8b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610571565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611dc29084906120c9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e0e91815260200190565b60405180910390a36113ec565b6000611c9f82846122a5565b6001600160a01b0381168114610a1357600080fd5b8015158114610a1357600080fd5b60008060408385031215611e5d57600080fd5b8235611e6881611e27565b91506020830135611e7881611e3c565b809150509250929050565b600060208083528351808285015260005b81811015611eb057858101830151858201604001528201611e94565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215611ee457600080fd5b8235611eef81611e27565b946020939093013593505050565b600060208284031215611f0f57600080fd5b8135611c9f81611e27565b60008060408385031215611f2d57600080fd5b50508035926020909101359150565b600080600060608486031215611f5157600080fd5b8335611f5c81611e27565b92506020840135611f6c81611e27565b929592945050506040919091013590565b600060208284031215611f8f57600080fd5b5035919050565b60008060408385031215611fa957600080fd5b8235611fb481611e27565b91506020830135611e7881611e27565b600080600060408486031215611fd957600080fd5b833567ffffffffffffffff80821115611ff157600080fd5b818601915086601f83011261200557600080fd5b81358181111561201457600080fd5b8760208260051b850101111561202957600080fd5b6020928301955093505084013561203f81611e3c565b809150509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061209357607f821691505b602082108103611cc157634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b80820180821115610681576106816120b3565b8082028115828204841417610681576106816120b3565b60008261211057634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561212757600080fd5b8151611c9f81611e27565b60008060006060848603121561214757600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561217257600080fd5b8151611c9f81611e3c565b634e487b7160e01b600052603260045260246000fd5b6000600182016121a5576121a56120b3565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122845784516001600160a01b03168352938301939183019160010161225f565b50506001600160a01b03969096166060850152505050608001529392505050565b81810381811115610681576106816120b356fea264697066735822122094749e04c0b0980710a4d34e9060cab7531bbfc24bf1c7a56ed1abe7625bda2e64736f6c63430008130033
Deployed Bytecode Sourcemap
25403:10029:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30586:175;;;;;;;;;;-1:-1:-1;30586:175:0;;;;;:::i;:::-;;:::i;:::-;;11001:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13234:194;;;;;;;;;;-1:-1:-1;13234:194:0;;;;;:::i;:::-;;:::i;:::-;;;1698:14:1;;1691:22;1673:41;;1661:2;1646:18;13234:194:0;1533:187:1;29455:170:0;;;;;;;;;;;;;:::i;28408:159::-;;;;;;;;;;-1:-1:-1;28408:159:0;;;;;:::i;:::-;;:::i;29884:301::-;;;;;;;;;;-1:-1:-1;29884:301:0;;;;;:::i;:::-;;:::i;12121:108::-;;;;;;;;;;-1:-1:-1;12209:12:0;;12121:108;;;2384:25:1;;;2372:2;2357:18;12121:108:0;2238:177:1;13906:529:0;;;;;;;;;;-1:-1:-1;13906:529:0;;;;;:::i;:::-;;:::i;11963:93::-;;;;;;;;;;-1:-1:-1;11963:93:0;;12046:2;3023:36:1;;3011:2;2996:18;11963:93:0;2881:184:1;14840:290:0;;;;;;;;;;-1:-1:-1;14840:290:0;;;;;:::i;:::-;;:::i;30193:170::-;;;;;;;;;;;;;:::i;29633:243::-;;;;;;;;;;;;;:::i;29131:316::-;;;;;;;;;;-1:-1:-1;29131:316:0;;;;;:::i;:::-;;:::i;12292:143::-;;;;;;;;;;-1:-1:-1;12292:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12409:18:0;12382:7;12409:18;;;;;;;;;;;;12292:143;22340:103;;;;;;;;;;;;;:::i;28837:286::-;;;;;;;;;;-1:-1:-1;28837:286:0;;;;;:::i;:::-;;:::i;27391:1009::-;;;;;;;;;;;;;:::i;21689:87::-;;;;;;;;;;-1:-1:-1;21762:6:0;;21689:87;;-1:-1:-1;;;;;21762:6:0;;;3653:51:1;;3641:2;3626:18;21689:87:0;3507:203:1;34275:436:0;;;;;;;;;;;;;:::i;11220:104::-;;;;;;;;;;;;;:::i;15629:475::-;;;;;;;;;;-1:-1:-1;15629:475:0;;;;;:::i;:::-;;:::i;12648:200::-;;;;;;;;;;-1:-1:-1;12648:200:0;;;;;:::i;:::-;;:::i;28575:254::-;;;;;;;;;;-1:-1:-1;28575:254:0;;;;;:::i;:::-;;:::i;12911:176::-;;;;;;;;;;-1:-1:-1;12911:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13052:18:0;;;13025:7;13052:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12911:176;30769:489;;;;;;;;;;-1:-1:-1;31095:6:0;;31116:7;;31138:14;;31167:18;;31200:12;;31227;;30769:489;;;4395:25:1;;;4451:2;4436:18;;4429:34;;;;4479:18;;;4472:34;;;;4537:2;4522:18;;4515:34;4580:3;4565:19;;4558:35;4624:3;4609:19;;4602:35;4382:3;4367:19;30769:489:0;4108:535:1;22598:238:0;;;;;;;;;;-1:-1:-1;22598:238:0;;;;;:::i;:::-;;:::i;30371:207::-;;;;;;;;;;-1:-1:-1;30371:207:0;;;;;:::i;:::-;;:::i;30586:175::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;30671:26:0;::::1;;::::0;;;:18:::1;:26;::::0;;;;;;;;:35;;-1:-1:-1;;30671:35:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30722:31;;5932:51:1;;;5999:18;;;5992:50;30722:31:0::1;::::0;5905:18:1;30722:31:0::1;;;;;;;;30586:175:::0;;:::o;11001:100::-;11055:13;11088:5;11081:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:100;:::o;13234:194::-;13342:4;13359:39;10087:10;13382:7;13391:6;13359:8;:39::i;:::-;-1:-1:-1;13416:4:0;13234:194;;;;;:::o;29455:170::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;29520:10:::1;::::0;-1:-1:-1;;;29520:10:0;::::1;;;29512:54;;;::::0;-1:-1:-1;;;29512:54:0;;6640:2:1;29512:54:0::1;::::0;::::1;6622:21:1::0;6679:2;6659:18;;;6652:30;6718:33;6698:18;;;6691:61;6769:18;;29512:54:0::1;6438:355:1::0;29512:54:0::1;29577:10;:18:::0;;-1:-1:-1;;;;29577:18:0::1;::::0;;29615:2:::1;29606:6;:11:::0;29455:170::o;28408:159::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;28496:10:::1;:19:::0;;-1:-1:-1;;;;;;28496:19:0::1;-1:-1:-1::0;;;;;28496:19:0;::::1;::::0;;::::1;::::0;;;28533:26:::1;::::0;3653:51:1;;;28533:26:0::1;::::0;3641:2:1;3626:18;28533:26:0::1;;;;;;;;28408:159:::0;:::o;29884:301::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;29992:2:::1;29982:6;:12;;29974:46;;;::::0;-1:-1:-1;;;29974:46:0;;7216:2:1;29974:46:0::1;::::0;::::1;7198:21:1::0;7255:2;7235:18;;;7228:30;-1:-1:-1;;;7274:18:1;;;7267:51;7335:18;;29974:46:0::1;7014:345:1::0;29974:46:0::1;30050:2;30039:7;:13;;30031:48;;;::::0;-1:-1:-1;;;30031:48:0;;7566:2:1;30031:48:0::1;::::0;::::1;7548:21:1::0;7605:2;7585:18;;;7578:30;-1:-1:-1;;;7624:18:1;;;7617:52;7686:18;;30031:48:0::1;7364:346:1::0;30031:48:0::1;30090:6;:15:::0;;;30116:7:::1;:17:::0;;;30149:28:::1;::::0;;7889:25:1;;;7945:2;7930:18;;7923:34;;;30149:28:0::1;::::0;7862:18:1;30149:28:0::1;7715:248:1::0;13906:529:0;14046:4;14063:36;14073:6;14081:9;14092:6;14063:9;:36::i;:::-;-1:-1:-1;;;;;14139:19:0;;14112:24;14139:19;;;:11;:19;;;;;;;;10087:10;14139:33;;;;;;;;14205:26;;;;14183:116;;;;-1:-1:-1;;;14183:116:0;;8170:2:1;14183:116:0;;;8152:21:1;8209:2;8189:18;;;8182:30;8248:34;8228:18;;;8221:62;-1:-1:-1;;;8299:18:1;;;8292:38;8347:19;;14183:116:0;7968:404:1;14183:116:0;14335:57;14344:6;10087:10;14385:6;14366:16;:25;14335:8;:57::i;:::-;-1:-1:-1;14423:4:0;;13906:529;-1:-1:-1;;;;13906:529:0:o;14840:290::-;10087:10;14953:4;15042:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15042:34:0;;;;;;;;;;14953:4;;14970:130;;15020:7;;15042:47;;15079:10;;15042:47;:::i;:::-;14970:8;:130::i;30193:170::-;30258:10;;-1:-1:-1;;;;;30258:10:0;30244;:24;30236:66;;;;-1:-1:-1;;;30236:66:0;;8841:2:1;30236:66:0;;;8823:21:1;8880:2;8860:18;;;8853:30;8919:31;8899:18;;;8892:59;8968:18;;30236:66:0;8639:353:1;30236:66:0;30313:10;;:42;;-1:-1:-1;;;;;30313:10:0;;;;30333:21;30313:42;;;;;:10;:42;:10;:42;30333:21;30313:10;:42;;;;;;;;;;;;;;;;;;;;;30193:170::o;29633:243::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;12209:12;;29691:14:::1;:30:::0;12209:12;;29732:18:::1;:34:::0;29782:33:::1;29801:13;12209:12:::0;;;12121:108;29801:13:::1;29782:33;::::0;2384:25:1;;;2372:2;2357:18;29782:33:0::1;;;;;;;29831:37;29854:13;12209:12:::0;;;12121:108;29854:13:::1;29831:37;::::0;2384:25:1;;;2372:2;2357:18;29831:37:0::1;;;;;;;29633:243::o:0;29131:316::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;29311:5:::1;29291:16;29275:13;12209:12:::0;;;12121:108;29275:13:::1;:32;;;;:::i;:::-;29274:42;;;;:::i;:::-;29259:12;:57:::0;29373:5:::1;29359:10:::0;29343:13:::1;12209:12:::0;;;12121:108;29343:13:::1;:26;;;;:::i;:::-;29342:36;;;;:::i;:::-;29327:12;:51:::0;29394:45:::1;::::0;;7889:25:1;;;7945:2;7930:18;;7923:34;;;29394:45:0::1;::::0;7862:18:1;29394:45:0::1;7715:248:1::0;22340:103:0;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;22405:30:::1;22432:1;22405:18;:30::i;:::-;22340:103::o:0;28837:286::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;28948:1:::1;28932:12;:17;;28924:64;;;::::0;-1:-1:-1;;;28924:64:0;;9594:2:1;28924:64:0::1;::::0;::::1;9576:21:1::0;9633:2;9613:18;;;9606:30;9672:34;9652:18;;;9645:62;-1:-1:-1;;;9723:18:1;;;9716:32;9765:19;;28924:64:0::1;9392:398:1::0;28924:64:0::1;29053:4;29037:12;29021:13;12209:12:::0;;;12121:108;29021:13:::1;:28;;;;:::i;:::-;29020:37;;;;:::i;:::-;28999:18;:58:::0;;;29073:42:::1;::::0;2384:25:1;;;29073:42:0::1;::::0;2372:2:1;2357:18;29073:42:0::1;2238:177:1::0;27391:1009:0;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;27455:11:::1;::::0;-1:-1:-1;;;27455:11:0;::::1;;;27454:12;27446:48;;;::::0;-1:-1:-1;;;27446:48:0;;9997:2:1;27446:48:0::1;::::0;::::1;9979:21:1::0;10036:2;10016:18;;;10009:30;10075:25;10055:18;;;10048:53;10118:18;;27446:48:0::1;9795:347:1::0;27446:48:0::1;27505:15;:96:::0;;-1:-1:-1;;;;;;27505:96:0::1;27548:42;27505:96:::0;;::::1;::::0;;;27612:64:::1;::::0;27629:4:::1;::::0;27662:13:::1;12209:12:::0;;;12121:108;27612:64:::1;27715:15;;;;;;;;;-1:-1:-1::0;;;;;27715:15:0::1;-1:-1:-1::0;;;;;27715:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27703:49:0::1;;27775:4;27795:15;;;;;;;;;-1:-1:-1::0;;;;;27795:15:0::1;-1:-1:-1::0;;;;;27795:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27703:125;::::0;-1:-1:-1;;;;;;27703:125:0::1;::::0;;;;;;-1:-1:-1;;;;;10633:15:1;;;27703:125:0::1;::::0;::::1;10615:34:1::0;10685:15;;10665:18;;;10658:43;10550:18;;27703:125:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27687:13;:141:::0;;-1:-1:-1;;;;;27687:141:0;;::::1;-1:-1:-1::0;;;;;;27687:141:0;;::::1;;::::0;;27839:15:::1;::::0;::::1;:31;27878:21;27923:4;27943:24;27923:4:::0;-1:-1:-1;;;;;12409:18:0;12382:7;12409:18;;;;;;;;;;;;12292:143;27943:24:::1;27982:1;27998::::0;28014:7:::1;21762:6:::0;;-1:-1:-1;;;;;21762:6:0;;21689:87;28014:7:::1;27839:223;::::0;::::1;::::0;;;-1:-1:-1;;;;;;27839:223:0;;;-1:-1:-1;;;;;11071:15:1;;;27839:223:0::1;::::0;::::1;11053:34:1::0;11103:18;;;11096:34;;;;11146:18;;;11139:34;;;;11189:18;;;11182:34;11253:15;;;11232:19;;;11225:44;28036:15:0::1;11285:19:1::0;;;11278:35;10987:19;;27839:223:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;28080:13:0::1;::::0;28111:15:::1;::::0;28073:71:::1;::::0;-1:-1:-1;;;28073:71:0;;-1:-1:-1;;;;;28111:15:0;;::::1;28073:71;::::0;::::1;11809:51:1::0;-1:-1:-1;;11876:18:1;;;11869:34;28080:13:0;::::1;::::0;-1:-1:-1;28073:29:0::1;::::0;11782:18:1;;28073:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;28155:11:0::1;:18:::0;;-1:-1:-1;;;;28184:18:0;-1:-1:-1;;;28184:18:0;;;28226:12:::1;28213:10;:25:::0;;;28249:15:::1;:38:::0;;-1:-1:-1;;28249:38:0::1;;::::0;;::::1;::::0;;;::::1;::::0;;;28325:4:::1;-1:-1:-1::0;28298:33:0;;;:18:::1;:33;::::0;;;;;:40;;-1:-1:-1;;28298:40:0::1;-1:-1:-1::0;28298:40:0::1;::::0;;-1:-1:-1;28349:10:0;;;;28377:15;;::::1;::::0;-1:-1:-1;28377:15:0::1;27391:1009::o:0;34275:436::-;34354:10;;-1:-1:-1;;;;;34354:10:0;34340;:24;;:49;;-1:-1:-1;21762:6:0;;-1:-1:-1;;;;;21762:6:0;34368:10;:21;34340:49;34318:128;;;;-1:-1:-1;;;34318:128:0;;8841:2:1;34318:128:0;;;8823:21:1;8880:2;8860:18;;;8853:30;8919:31;8899:18;;;8892:59;8968:18;;34318:128:0;8639:353:1;34318:128:0;34506:4;34457:28;12409:18;;;;;;;;;;;34525:38;12409:18;34525:16;:38::i;:::-;34603:21;34639:22;;34635:69;;34678:14;:12;:14::i;:::-;34307:404;;34275:436::o;11220:104::-;11276:13;11309:7;11302:14;;;;;:::i;15629:475::-;10087:10;15747:4;15791:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15791:34:0;;;;;;;;;;15858:35;;;;15836:122;;;;-1:-1:-1;;;15836:122:0;;12366:2:1;15836:122:0;;;12348:21:1;12405:2;12385:18;;;12378:30;12444:34;12424:18;;;12417:62;-1:-1:-1;;;12495:18:1;;;12488:35;12540:19;;15836:122:0;12164:401:1;15836:122:0;15994:67;10087:10;16017:7;16045:15;16026:16;:34;15994:8;:67::i;:::-;-1:-1:-1;16092:4:0;;15629:475;-1:-1:-1;;;15629:475:0:o;12648:200::-;12759:4;12776:42;10087:10;12800:9;12811:6;12776:9;:42::i;28575:254::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;28674:1:::1;28662:8;:13;;28654:56;;;::::0;-1:-1:-1;;;28654:56:0;;12772:2:1;28654:56:0::1;::::0;::::1;12754:21:1::0;12811:2;12791:18;;;12784:30;12850:32;12830:18;;;12823:60;12900:18;;28654:56:0::1;12570:354:1::0;28654:56:0::1;28767:4;28755:8;28739:13;12209:12:::0;;;12121:108;28739:13:::1;:24;;;;:::i;:::-;28738:33;;;;:::i;:::-;28721:14;:50:::0;;;28787:34:::1;::::0;2384:25:1;;;28787:34:0::1;::::0;2372:2:1;2357:18;28787:34:0::1;2238:177:1::0;22598:238:0;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22701:22:0;::::1;22679:110;;;::::0;-1:-1:-1;;;22679:110:0;;13131:2:1;22679:110:0::1;::::0;::::1;13113:21:1::0;13170:2;13150:18;;;13143:30;13209:34;13189:18;;;13182:62;-1:-1:-1;;;13260:18:1;;;13253:36;13306:19;;22679:110:0::1;12929:402:1::0;22679:110:0::1;22800:28;22819:8;22800:18;:28::i;30371:207::-:0;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;30485:9:::1;30480:91;30500:14:::0;;::::1;30480:91;;;30553:6;30536;:14;30543:3;;30547:1;30543:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;30536:14:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;30536:14:0;:23;;-1:-1:-1;;30536:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30516:3;::::1;::::0;::::1;:::i;:::-;;;;30480:91;;;;30371:207:::0;;;:::o;19412:380::-;-1:-1:-1;;;;;19548:19:0;;19540:68;;;;-1:-1:-1;;;19540:68:0;;13810:2:1;19540:68:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:34;13868:18;;;13861:62;-1:-1:-1;;;13939:18:1;;;13932:34;13983:19;;19540:68:0;13608:400:1;19540:68:0;-1:-1:-1;;;;;19627:21:0;;19619:68;;;;-1:-1:-1;;;19619:68:0;;14215:2:1;19619:68:0;;;14197:21:1;14254:2;14234:18;;;14227:30;14293:34;14273:18;;;14266:62;-1:-1:-1;;;14344:18:1;;;14337:32;14386:19;;19619:68:0;14013:398:1;19619:68:0;-1:-1:-1;;;;;19700:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19752:32;;2384:25:1;;;19752:32:0;;2357:18:1;19752:32:0;;;;;;;19412:380;;;:::o;31266:2683::-;-1:-1:-1;;;;;31398:18:0;;31390:68;;;;-1:-1:-1;;;31390:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31477:16:0;;31469:64;;;;-1:-1:-1;;;31469:64:0;;;;;;;:::i;:::-;31561:1;31552:6;:10;31544:64;;;;-1:-1:-1;;;31544:64:0;;15428:2:1;31544:64:0;;;15410:21:1;15467:2;15447:18;;;15440:30;15506:34;15486:18;;;15479:62;-1:-1:-1;;;15557:18:1;;;15550:39;15606:19;;31544:64:0;15226:405:1;31544:64:0;31619:17;31663:7;21762:6;;-1:-1:-1;;;;;21762:6:0;;21689:87;31663:7;-1:-1:-1;;;;;31655:15:0;:4;-1:-1:-1;;;;;31655:15:0;;;:32;;;;-1:-1:-1;21762:6:0;;-1:-1:-1;;;;;31674:13:0;;;21762:6;;31674:13;;31655:32;:43;;;;-1:-1:-1;31692:6:0;;-1:-1:-1;;;31692:6:0;;;;31691:7;31655:43;31651:2127;;;31719:10;;-1:-1:-1;;;31719:10:0;;;;31715:89;;;-1:-1:-1;;;;;31757:12:0;;;;;;:6;:12;;;;;;;;;:26;;-1:-1:-1;;;;;;31773:10:0;;;;;;:6;:10;;;;;;;;31757:26;31749:39;;;;-1:-1:-1;;;31749:39:0;;15838:2:1;31749:39:0;;;15820:21:1;-1:-1:-1;15857:18:1;;;15850:29;15896:18;;31749:39:0;15636:284:1;31749:39:0;31832:27;31855:3;31832:18;31843:6;;31832;:10;;:18;;;;:::i;:::-;:22;;:27::i;:::-;31906:13;;31820:39;;-1:-1:-1;;;;;;31898:21:0;;;31906:13;;31898:21;:72;;;;-1:-1:-1;31954:15:0;;-1:-1:-1;;;;;31940:30:0;;;31954:15;;31940:30;;31898:72;:116;;;;-1:-1:-1;;;;;;31992:22:0;;;;;;:18;:22;;;;;;;;31991:23;31898:116;31876:568;;;32067:14;;32057:6;:24;;32049:64;;;;-1:-1:-1;;;32049:64:0;;16127:2:1;32049:64:0;;;16109:21:1;16166:2;16146:18;;;16139:30;16205:29;16185:18;;;16178:57;16252:18;;32049:64:0;15925:351:1;32049:64:0;32188:18;;32178:6;32162:13;32172:2;-1:-1:-1;;;;;12409:18:0;12382:7;12409:18;;;;;;;;;;;;12292:143;32162:13;:22;;;;:::i;:::-;:44;;32132:144;;;;-1:-1:-1;;;32132:144:0;;16483:2:1;32132:144:0;;;16465:21:1;16522:2;16502:18;;;16495:30;16561:28;16541:18;;;16534:56;16607:18;;32132:144:0;16281:350:1;32132:144:0;32318:12;32301:10;;32314:1;32301:14;;;;:::i;:::-;:29;32297:102;;;34203:20;;34251:8;32355:24;;;;;;32417:9;:11;;;:9;:11;;;:::i;:::-;;;;;;31876:568;32470:13;;-1:-1:-1;;;;;32464:19:0;;;32470:13;;32464:19;;;;:46;;-1:-1:-1;;;;;;32488:22:0;;;;;;:18;:22;;;;;;;;32487:23;32464:46;32460:231;;;32587:18;;32577:6;32561:13;32571:2;-1:-1:-1;;;;;12409:18:0;12382:7;12409:18;;;;;;;;;;;;12292:143;32561:13;:22;;;;:::i;:::-;:44;;32531:144;;;;-1:-1:-1;;;32531:144:0;;16483:2:1;32531:144:0;;;16465:21:1;16522:2;16502:18;;;16495:30;16561:28;16541:18;;;16534:56;16607:18;;32531:144:0;16281:350:1;32531:144:0;32717:13;;-1:-1:-1;;;;;32711:19:0;;;32717:13;;32711:19;:44;;;;-1:-1:-1;;;;;;32734:21:0;;32750:4;32734:21;;32711:44;32707:125;;;32788:28;32812:3;32788:19;32799:7;;32788:6;:10;;:19;;;;:::i;:28::-;32776:40;;32707:125;-1:-1:-1;;;;;32872:21:0;;32888:4;32872:21;;;;:63;;-1:-1:-1;32922:13:0;;-1:-1:-1;;;;;32914:21:0;;;32922:13;;32914:21;;32872:63;:103;;;;-1:-1:-1;32962:13:0;;-1:-1:-1;;;;;32956:19:0;;;32962:13;;32956:19;;32872:103;:134;;;;-1:-1:-1;32996:10:0;;-1:-1:-1;;;32996:10:0;;;;32872:134;32850:225;;;-1:-1:-1;33053:6:0;32850:225;33140:4;33091:28;12409:18;;;;;;;;;;;33184:6;;-1:-1:-1;;;33184:6:0;;;;33183:7;:47;;;;-1:-1:-1;33217:13:0;;-1:-1:-1;;;;;33211:19:0;;;33217:13;;33211:19;33183:47;:79;;;;-1:-1:-1;33251:11:0;;-1:-1:-1;;;33251:11:0;;;;33183:79;:135;;;;;33306:12;;33283:20;:35;33183:135;:186;;;;;33351:18;;33339:9;;:30;33183:186;:246;;;;-1:-1:-1;33390:15:0;;33416:12;33390:39;;;;:15;;:39;;33183:246;33161:606;;;33465:114;33504:56;33508:10;:6;33517:1;33508:10;:::i;:::-;33520:39;33524:20;33546:12;;33520:3;:39::i;:::-;33504:3;:56::i;:::-;33465:16;:114::i;:::-;33627:21;33671:22;;33667:85;;33718:14;:12;:14::i;:::-;33445:322;33161:606;31700:2078;31651:2127;33794:13;;33790:93;;33824:47;33840:4;33854;33861:9;33824:15;:47::i;:::-;33893:48;33909:4;33915:2;33919:21;:6;33930:9;33919:10;:21::i;:::-;33893:15;:48::i;22996:191::-;23089:6;;;-1:-1:-1;;;;;23106:17:0;;;-1:-1:-1;;;;;;23106:17:0;;;;;;;23139:40;;23089:6;;;23106:17;23089:6;;23139:40;;23070:16;;23139:40;23059:128;22996:191;:::o;34719:532::-;26649:6;:13;;-1:-1:-1;;;;26649:13:0;-1:-1:-1;;;26649:13:0;;;34797:15:::1;:38:::0;;::::1;34822:12;34797:38;-1:-1:-1::0;;34797:38:0;;::::1;;::::0;;34870:16:::1;::::0;;34884:1:::1;34870:16:::0;;;;;::::1;::::0;;-1:-1:-1;;34870:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;34870:16:0::1;34846:40;;34915:4;34897;34902:1;34897:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34897:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;34941:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;34941:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;34897:7;;34941:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34931:4;34936:1;34931:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34931:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;35006:15:::1;::::0;34974:62:::1;::::0;34991:4:::1;::::0;35006:15:::1;35024:11:::0;34974:8:::1;:62::i;:::-;35047:15;::::0;:196:::1;::::0;-1:-1:-1;;;35047:196:0;;-1:-1:-1;;;;;35047:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;35128:11;;35047:15:::1;::::0;35170:4;;35197::::1;::::0;35217:15:::1;::::0;35047:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;26685:6:0;:14;;-1:-1:-1;;;;26685:14:0;;;-1:-1:-1;;;;34719:532:0:o;35259:170::-;35347:10;;35339:82;;35302:12;;-1:-1:-1;;;;;35347:10:0;;35371:21;;35302:12;35339:82;35302:12;35339:82;35371:21;35347:10;35339:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3366:98;3424:7;3451:5;3455:1;3451;:5;:::i;:::-;3444:12;3366:98;-1:-1:-1;;;3366:98:0:o;3765:::-;3823:7;3850:5;3854:1;3850;:5;:::i;33957:107::-;34014:7;34046:1;34042;:5;34041:15;;34055:1;34041:15;;;-1:-1:-1;34051:1:0;33957:107;-1:-1:-1;33957:107:0:o;16594:770::-;-1:-1:-1;;;;;16734:20:0;;16726:70;;;;-1:-1:-1;;;16726:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16815:23:0;;16807:71;;;;-1:-1:-1;;;16807:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16975:17:0;;16951:21;16975:17;;;;;;;;;;;17025:23;;;;17003:111;;;;-1:-1:-1;;;17003:111:0;;18165:2:1;17003:111:0;;;18147:21:1;18204:2;18184:18;;;18177:30;18243:34;18223:18;;;18216:62;-1:-1:-1;;;18294:18:1;;;18287:36;18340:19;;17003:111:0;17963:402:1;17003:111:0;-1:-1:-1;;;;;17150:17:0;;;:9;:17;;;;;;;;;;;17170:22;;;17150:42;;17214:20;;;;;;;;:30;;17186:6;;17150:9;17214:30;;17186:6;;17214:30;:::i;:::-;;;;;;;;17279:9;-1:-1:-1;;;;;17262:35:0;17271:6;-1:-1:-1;;;;;17262:35:0;;17290:6;17262:35;;;;2384:25:1;;2372:2;2357:18;;2238:177;17262:35:0;;;;;;;;17310:46;20392:125;3009:98;3067:7;3094:5;3098:1;3094;:5;:::i;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:118;236:5;229:13;222:21;215:5;212:32;202:60;;258:1;255;248:12;273:382;338:6;346;399:2;387:9;378:7;374:23;370:32;367:52;;;415:1;412;405:12;367:52;454:9;441:23;473:31;498:5;473:31;:::i;:::-;523:5;-1:-1:-1;580:2:1;565:18;;552:32;593:30;552:32;593:30;:::i;:::-;642:7;632:17;;;273:382;;;;;:::o;660:548::-;772:4;801:2;830;819:9;812:21;862:6;856:13;905:6;900:2;889:9;885:18;878:34;930:1;940:140;954:6;951:1;948:13;940:140;;;1049:14;;;1045:23;;1039:30;1015:17;;;1034:2;1011:26;1004:66;969:10;;940:140;;;944:3;1129:1;1124:2;1115:6;1104:9;1100:22;1096:31;1089:42;1199:2;1192;1188:7;1183:2;1175:6;1171:15;1167:29;1156:9;1152:45;1148:54;1140:62;;;;660:548;;;;:::o;1213:315::-;1281:6;1289;1342:2;1330:9;1321:7;1317:23;1313:32;1310:52;;;1358:1;1355;1348:12;1310:52;1397:9;1384:23;1416:31;1441:5;1416:31;:::i;:::-;1466:5;1518:2;1503:18;;;;1490:32;;-1:-1:-1;;;1213:315:1:o;1725:255::-;1792:6;1845:2;1833:9;1824:7;1820:23;1816:32;1813:52;;;1861:1;1858;1851:12;1813:52;1900:9;1887:23;1919:31;1944:5;1919:31;:::i;1985:248::-;2053:6;2061;2114:2;2102:9;2093:7;2089:23;2085:32;2082:52;;;2130:1;2127;2120:12;2082:52;-1:-1:-1;;2153:23:1;;;2223:2;2208:18;;;2195:32;;-1:-1:-1;1985:248:1:o;2420:456::-;2497:6;2505;2513;2566:2;2554:9;2545:7;2541:23;2537:32;2534:52;;;2582:1;2579;2572:12;2534:52;2621:9;2608:23;2640:31;2665:5;2640:31;:::i;:::-;2690:5;-1:-1:-1;2747:2:1;2732:18;;2719:32;2760:33;2719:32;2760:33;:::i;:::-;2420:456;;2812:7;;-1:-1:-1;;;2866:2:1;2851:18;;;;2838:32;;2420:456::o;3322:180::-;3381:6;3434:2;3422:9;3413:7;3409:23;3405:32;3402:52;;;3450:1;3447;3440:12;3402:52;-1:-1:-1;3473:23:1;;3322:180;-1:-1:-1;3322:180:1:o;3715:388::-;3783:6;3791;3844:2;3832:9;3823:7;3819:23;3815:32;3812:52;;;3860:1;3857;3850:12;3812:52;3899:9;3886:23;3918:31;3943:5;3918:31;:::i;:::-;3968:5;-1:-1:-1;4025:2:1;4010:18;;3997:32;4038:33;3997:32;4038:33;:::i;4648:750::-;4740:6;4748;4756;4809:2;4797:9;4788:7;4784:23;4780:32;4777:52;;;4825:1;4822;4815:12;4777:52;4865:9;4852:23;4894:18;4935:2;4927:6;4924:14;4921:34;;;4951:1;4948;4941:12;4921:34;4989:6;4978:9;4974:22;4964:32;;5034:7;5027:4;5023:2;5019:13;5015:27;5005:55;;5056:1;5053;5046:12;5005:55;5096:2;5083:16;5122:2;5114:6;5111:14;5108:34;;;5138:1;5135;5128:12;5108:34;5193:7;5186:4;5176:6;5173:1;5169:14;5165:2;5161:23;5157:34;5154:47;5151:67;;;5214:1;5211;5204:12;5151:67;5245:4;5237:13;;;;-1:-1:-1;5269:6:1;-1:-1:-1;;5310:20:1;;5297:34;5340:28;5297:34;5340:28;:::i;:::-;5387:5;5377:15;;;4648:750;;;;;:::o;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;6053:380::-;6132:1;6128:12;;;;6175;;;6196:61;;6250:4;6242:6;6238:17;6228:27;;6196:61;6303:2;6295:6;6292:14;6272:18;6269:38;6266:161;;6349:10;6344:3;6340:20;6337:1;6330:31;6384:4;6381:1;6374:15;6412:4;6409:1;6402:15;8377:127;8438:10;8433:3;8429:20;8426:1;8419:31;8469:4;8466:1;8459:15;8493:4;8490:1;8483:15;8509:125;8574:9;;;8595:10;;;8592:36;;;8608:18;;:::i;8997:168::-;9070:9;;;9101;;9118:15;;;9112:22;;9098:37;9088:71;;9139:18;;:::i;9170:217::-;9210:1;9236;9226:132;;9280:10;9275:3;9271:20;9268:1;9261:31;9315:4;9312:1;9305:15;9343:4;9340:1;9333:15;9226:132;-1:-1:-1;9372:9:1;;9170:217::o;10147:251::-;10217:6;10270:2;10258:9;10249:7;10245:23;10241:32;10238:52;;;10286:1;10283;10276:12;10238:52;10318:9;10312:16;10337:31;10362:5;10337:31;:::i;11324:306::-;11412:6;11420;11428;11481:2;11469:9;11460:7;11456:23;11452:32;11449:52;;;11497:1;11494;11487:12;11449:52;11526:9;11520:16;11510:26;;11576:2;11565:9;11561:18;11555:25;11545:35;;11620:2;11609:9;11605:18;11599:25;11589:35;;11324:306;;;;;:::o;11914:245::-;11981:6;12034:2;12022:9;12013:7;12009:23;12005:32;12002:52;;;12050:1;12047;12040:12;12002:52;12082:9;12076:16;12101:28;12123:5;12101:28;:::i;13336:127::-;13397:10;13392:3;13388:20;13385:1;13378:31;13428:4;13425:1;13418:15;13452:4;13449:1;13442:15;13468:135;13507:3;13528:17;;;13525:43;;13548:18;;:::i;:::-;-1:-1:-1;13595:1:1;13584:13;;13468:135::o;14416:401::-;14618:2;14600:21;;;14657:2;14637:18;;;14630:30;14696:34;14691:2;14676:18;;14669:62;-1:-1:-1;;;14762:2:1;14747:18;;14740:35;14807:3;14792:19;;14416:401::o;14822:399::-;15024:2;15006:21;;;15063:2;15043:18;;;15036:30;15102:34;15097:2;15082:18;;15075:62;-1:-1:-1;;;15168:2:1;15153:18;;15146:33;15211:3;15196:19;;14822:399::o;16768:980::-;17030:4;17078:3;17067:9;17063:19;17109:6;17098:9;17091:25;17135:2;17173:6;17168:2;17157:9;17153:18;17146:34;17216:3;17211:2;17200:9;17196:18;17189:31;17240:6;17275;17269:13;17306:6;17298;17291:22;17344:3;17333:9;17329:19;17322:26;;17383:2;17375:6;17371:15;17357:29;;17404:1;17414:195;17428:6;17425:1;17422:13;17414:195;;;17493:13;;-1:-1:-1;;;;;17489:39:1;17477:52;;17584:15;;;;17549:12;;;;17525:1;17443:9;17414:195;;;-1:-1:-1;;;;;;;17665:32:1;;;;17660:2;17645:18;;17638:60;-1:-1:-1;;;17729:3:1;17714:19;17707:35;17626:3;16768:980;-1:-1:-1;;;16768:980:1:o;18370:128::-;18437:9;;;18458:11;;;18455:37;;;18472:18;;:::i
Swarm Source
ipfs://94749e04c0b0980710a4d34e9060cab7531bbfc24bf1c7a56ed1abe7625bda2e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.