ERC-20
Overview
Max Total Supply
100,000,000 WASH
Holders
105
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
295,795.75051965825564826 WASHValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ZeroXWash
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-01-08 */ // SPDX-License-Identifier: MIT // // $$$$$$\ $$\ $$\ $$\ // $$$ __$$\ $$ | $\ $$ | $$ | // $$$$\ $$ |$$\ $$\ $$ |$$$\ $$ | $$$$$$\ $$$$$$$\ $$$$$$$\ // $$\$$\$$ |\$$\ $$ |$$ $$ $$\$$ | \____$$\ $$ _____|$$ __$$\ // $$ \$$$$ | \$$$$ / $$$$ _$$$$ | $$$$$$$ |\$$$$$$\ $$ | $$ | // $$ |\$$$ | $$ $$< $$$ / \$$$ |$$ __$$ | \____$$\ $$ | $$ | // \$$$$$$ /$$ /\$$\ $$ / \$$ |\$$$$$$$ |$$$$$$$ |$$ | $$ | // \______/ \__/ \__|\__/ \__| \_______|\_______/ \__| \__| // // // Wash your dirty shit into clean cryptocurrency. // // https://t.me/zeroxwash // https://twitter.com/0xwash // https://0xwash.gitbook.io/docs/ // // pragma solidity 0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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 ); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); 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 updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { 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 {} } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ 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 IUniswapV2Factory { 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; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn( address to ) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { 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 ZeroXWash is ERC20, Ownable { IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address public immutable teamWallet; uint256 public maxTransactionAmount; uint256 public immutable swapTokensAtAmount; uint256 public maxWallet; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 public buyTeamShareFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellTeamShareFee; uint256 public sellLiquidityFee; uint256 public tokensForRevShare; uint256 public tokensForLiquidity; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("0xWash", "WASH") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyTeamFee = 10; uint256 _buyLiquidityFee = 10; uint256 _sellTeamShareFee = 10; uint256 _sellLiquidityFee = 10; uint256 totalSupply = 100_000_000 * 1e18; maxTransactionAmount = 1_000_000 * 1e18; maxWallet = 1_000_000 * 1e18; swapTokensAtAmount = (totalSupply * 5) / 10000; buyTeamShareFee = _buyTeamFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyTeamShareFee + buyLiquidityFee; sellTeamShareFee = _sellTeamShareFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellTeamShareFee + sellLiquidityFee; teamWallet = address(0x8B42aECdf5Ce51eE862397677D43e8d3AE8128af); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } function updateLimitsAndFees() external onlyOwner { maxTransactionAmount = 2_500_000 * (10 ** 18); maxWallet = 2_500_000 * (10 ** 18); buyTeamShareFee = 4; buyLiquidityFee = 1; buyTotalFees = 5; sellTeamShareFee = 4; sellLiquidityFee = 1; sellTotalFees = 5; } function excludeFromMaxTransaction( address updAds, bool isEx ) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } 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"); if (amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = (amount * sellTotalFees) / 100; tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForRevShare += (fees * sellTeamShareFee) / sellTotalFees; } else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = (amount * buyTotalFees) / 100; tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForRevShare += (fees * buyTeamShareFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { 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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForRevShare; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance - liquidityTokens; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance - initialETHBalance; uint256 ethForRevShare = (ethBalance * tokensForRevShare) / (totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForLiquidity = ethBalance - ethForRevShare; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } tokensForLiquidity = 0; tokensForRevShare = 0; (success, ) = address(teamWallet).call{ value: address(this).balance }(""); } function withdrawStuckToken( address _token, address _to ) public onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) public onlyOwner { (bool success, ) = toAddr.call{value: address(this).balance}(""); require(success); } }
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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"updateLimitsAndFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101006040526008805461ffff191690553480156200001c575f80fd5b5060405180604001604052806006815260200165060f0aec2e6d60d31b815250604051806040016040528060048152602001630ae82a6960e31b81525081600390816200006a91906200069e565b5060046200007982826200069e565b50505062000096620000906200035060201b60201c565b62000354565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000b8816001620003a5565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000101573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000127919062000766565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000173573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000199919062000766565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200020a919062000766565b6001600160a01b031660a081905262000225906001620003a5565b60a051620002359060016200041d565b69d3c21bcecceda10000006006819055600755600a8080806a52b7d2dcc80cd2e400000061271062000269826005620007a9565b620002759190620007c9565b60e052600a859055600b8490556200028e8486620007e9565b600955600d839055600e829055620002a78284620007e9565b600c55738b42aecdf5ce51ee862397677d43e8d3ae8128af60c052620002e1620002d96005546001600160a01b031690565b600162000470565b620002ee30600162000470565b620002fd61dead600162000470565b6200031c620003146005546001600160a01b031690565b6001620003a5565b62000329306001620003a5565b6200033861dead6001620003a5565b62000344338262000518565b505050505050620007ff565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620003f35760405162461bcd60e51b815260206004820181905260248201525f80516020620029a083398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601260205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004ba5760405162461bcd60e51b815260206004820181905260248201525f80516020620029a08339815191526044820152606401620003ea565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005705760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003ea565b8060025f828254620005839190620007e9565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005b1908490620007e9565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200062857607f821691505b6020821081036200064757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005fa575f81815260208120601f850160051c81016020861015620006755750805b601f850160051c820191505b81811015620006965782815560010162000681565b505050505050565b81516001600160401b03811115620006ba57620006ba620005ff565b620006d281620006cb845462000613565b846200064d565b602080601f83116001811462000708575f8415620006f05750858301515b5f19600386901b1c1916600185901b17855562000696565b5f85815260208120601f198616915b82811015620007385788860151825594840194600190910190840162000717565b50858210156200075657878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000777575f80fd5b81516001600160a01b03811681146200078e575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620007c357620007c362000795565b92915050565b5f82620007e457634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620007c357620007c362000795565b60805160a05160c05160e051612127620008795f395f81816106db015281816113b3015281816118b301526118e501525f818161042f0152611a0b01525f81816103c50152610a8601525f81816102d901528181611ad401528181611b8b01528181611bc701528181611c3b0152611c6201526121275ff3fe608060405260043610610236575f3560e01c80638da5cb5b11610129578063c0246668116100a8578063e6461df91161006d578063e6461df9146106fd578063f11a24d314610712578063f2fde38b14610727578063f637434214610746578063f8b45b051461075b575f80fd5b8063c02466681461063d578063c8c8ebe41461065c578063d85ba06314610671578063dd62ed3e14610686578063e2f45605146106ca575f80fd5b8063a457c2d7116100ee578063a457c2d714610599578063a9059cbb146105b8578063b62496f5146105d7578063bbc0c74214610605578063bc205ad31461061e575f80fd5b80638da5cb5b1461052057806395d89b411461053d5780639a7a23d6146105515780639b096459146105705780639c6868af14610585575f80fd5b806349bd5a5e116101b557806370a082311161017a57806370a0823114610484578063715018a6146104b85780637571336a146104ce5780637ca8448a146104ed5780638a8c523c1461050c575f80fd5b806349bd5a5e146103b45780634fbee193146103e7578063599270441461041e5780636a486a8e146104515780636ddd171314610466575f80fd5b80631a8145bb116101fb5780631a8145bb1461033157806323b872dd1461034657806324b9f3c114610365578063313ce5671461037a5780633950935114610395575f80fd5b806306fdde0314610241578063095ea7b31461026b57806310d5de531461029a5780631694505e146102c857806318160ddd14610313575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b50610255610770565b6040516102629190611d38565b60405180910390f35b348015610276575f80fd5b5061028a610285366004611d97565b610800565b6040519015158152602001610262565b3480156102a5575f80fd5b5061028a6102b4366004611dc1565b60126020525f908152604090205460ff1681565b3480156102d3575f80fd5b506102fb7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610262565b34801561031e575f80fd5b506002545b604051908152602001610262565b34801561033c575f80fd5b5061032360105481565b348015610351575f80fd5b5061028a610360366004611de3565b610816565b348015610370575f80fd5b50610323600f5481565b348015610385575f80fd5b5060405160128152602001610262565b3480156103a0575f80fd5b5061028a6103af366004611d97565b6108c3565b3480156103bf575f80fd5b506102fb7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103f2575f80fd5b5061028a610401366004611dc1565b6001600160a01b03165f9081526011602052604090205460ff1690565b348015610429575f80fd5b506102fb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561045c575f80fd5b50610323600c5481565b348015610471575f80fd5b5060085461028a90610100900460ff1681565b34801561048f575f80fd5b5061032361049e366004611dc1565b6001600160a01b03165f9081526020819052604090205490565b3480156104c3575f80fd5b506104cc6108fe565b005b3480156104d9575f80fd5b506104cc6104e8366004611e2e565b610933565b3480156104f8575f80fd5b506104cc610507366004611dc1565b610987565b348015610517575f80fd5b506104cc610a10565b34801561052b575f80fd5b506005546001600160a01b03166102fb565b348015610548575f80fd5b50610255610a4b565b34801561055c575f80fd5b506104cc61056b366004611e2e565b610a5a565b34801561057b575f80fd5b50610323600a5481565b348015610590575f80fd5b506104cc610b35565b3480156105a4575f80fd5b5061028a6105b3366004611d97565b610b96565b3480156105c3575f80fd5b5061028a6105d2366004611d97565b610c2e565b3480156105e2575f80fd5b5061028a6105f1366004611dc1565b60136020525f908152604090205460ff1681565b348015610610575f80fd5b5060085461028a9060ff1681565b348015610629575f80fd5b506104cc610638366004611e65565b610c3a565b348015610648575f80fd5b506104cc610657366004611e2e565b610d9c565b348015610667575f80fd5b5061032360065481565b34801561067c575f80fd5b5061032360095481565b348015610691575f80fd5b506103236106a0366004611e65565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106d5575f80fd5b506103237f000000000000000000000000000000000000000000000000000000000000000081565b348015610708575f80fd5b50610323600d5481565b34801561071d575f80fd5b50610323600b5481565b348015610732575f80fd5b506104cc610741366004611dc1565b610e24565b348015610751575f80fd5b50610323600e5481565b348015610766575f80fd5b5061032360075481565b60606003805461077f90611e91565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab90611e91565b80156107f65780601f106107cd576101008083540402835291602001916107f6565b820191905f5260205f20905b8154815290600101906020018083116107d957829003601f168201915b5050505050905090565b5f61080c338484610ebf565b5060015b92915050565b5f610822848484610fe2565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108ab5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108b88533858403610ebf565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161080c9185906108f9908690611edd565b610ebf565b6005546001600160a01b031633146109285760405162461bcd60e51b81526004016108a290611ef0565b6109315f61167e565b565b6005546001600160a01b0316331461095d5760405162461bcd60e51b81526004016108a290611ef0565b6001600160a01b03919091165f908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109b15760405162461bcd60e51b81526004016108a290611ef0565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f81146109fa576040519150601f19603f3d011682016040523d82523d5f602084013e6109ff565b606091505b5050905080610a0c575f80fd5b5050565b6005546001600160a01b03163314610a3a5760405162461bcd60e51b81526004016108a290611ef0565b6008805461ffff1916610101179055565b60606004805461077f90611e91565b6005546001600160a01b03163314610a845760405162461bcd60e51b81526004016108a290611ef0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610b2b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016108a2565b610a0c82826116cf565b6005546001600160a01b03163314610b5f5760405162461bcd60e51b81526004016108a290611ef0565b6a021165458500521280000060068190556007556004600a8190556001600b81905560056009819055600d92909255600e55600c55565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610c175760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108a2565b610c243385858403610ebf565b5060019392505050565b5f61080c338484610fe2565b6005546001600160a01b03163314610c645760405162461bcd60e51b81526004016108a290611ef0565b6001600160a01b038216610cba5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f74206265203000000000000060448201526064016108a2565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610cfe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d229190611f25565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610d72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d969190611f3c565b50505050565b6005546001600160a01b03163314610dc65760405162461bcd60e51b81526004016108a290611ef0565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e4e5760405162461bcd60e51b81526004016108a290611ef0565b6001600160a01b038116610eb35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a2565b610ebc8161167e565b50565b6001600160a01b038316610f215760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108a2565b6001600160a01b038216610f825760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108a2565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110085760405162461bcd60e51b81526004016108a290611f57565b6001600160a01b03821661102e5760405162461bcd60e51b81526004016108a290611f9c565b805f036110455761104083835f611722565b505050565b6005546001600160a01b0384811691161480159061107157506005546001600160a01b03838116911614155b801561108557506001600160a01b03821615155b801561109c57506001600160a01b03821661dead14155b80156110b25750600554600160a01b900460ff16155b156113a25760085460ff16611143576001600160a01b0383165f9081526011602052604090205460ff16806110fe57506001600160a01b0382165f9081526011602052604090205460ff165b6111435760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108a2565b6001600160a01b0383165f9081526013602052604090205460ff16801561118257506001600160a01b0382165f9081526012602052604090205460ff16155b15611265576006548111156111f75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108a2565b6007546001600160a01b0383165f9081526020819052604090205461121c9083611edd565b11156112605760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108a2565b6113a2565b6001600160a01b0382165f9081526013602052604090205460ff1680156112a457506001600160a01b0383165f9081526012602052604090205460ff16155b1561131a576006548111156112605760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108a2565b6001600160a01b0382165f9081526012602052604090205460ff166113a2576007546001600160a01b0383165f9081526020819052604090205461135e9083611edd565b11156113a25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108a2565b305f908152602081905260409020547f0000000000000000000000000000000000000000000000000000000000000000811080159081906113ea5750600854610100900460ff165b80156114005750600554600160a01b900460ff16155b801561142457506001600160a01b0385165f9081526013602052604090205460ff16155b801561144857506001600160a01b0385165f9081526011602052604090205460ff16155b801561146c57506001600160a01b0384165f9081526011602052604090205460ff16155b1561149a576005805460ff60a01b1916600160a01b17905561148c611874565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526011602052604090205460ff600160a01b9092048216159116806114e657506001600160a01b0385165f9081526011602052604090205460ff165b156114ee57505f5b5f811561166a576001600160a01b0386165f9081526013602052604090205460ff16801561151d57505f600c54115b156115a3576064600c54866115329190611fdf565b61153c9190611ff6565b9050600c54600e548261154f9190611fdf565b6115599190611ff6565b60105f8282546115699190611edd565b9091555050600c54600d5461157e9083611fdf565b6115889190611ff6565b600f5f8282546115989190611edd565b9091555061164c9050565b6001600160a01b0387165f9081526013602052604090205460ff1680156115cb57505f600954115b1561164c576064600954866115e09190611fdf565b6115ea9190611ff6565b9050600954600b54826115fd9190611fdf565b6116079190611ff6565b60105f8282546116179190611edd565b9091555050600954600a5461162c9083611fdf565b6116369190611ff6565b600f5f8282546116469190611edd565b90915550505b801561165d5761165d873083611722565b6116678186612015565b94505b611675878787611722565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166117485760405162461bcd60e51b81526004016108a290611f57565b6001600160a01b03821661176e5760405162461bcd60e51b81526004016108a290611f9c565b6001600160a01b0383165f90815260208190526040902054818110156117e55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108a2565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061181b908490611edd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161186791815260200190565b60405180910390a3610d96565b305f9081526020819052604081205490505f600f546010546118969190611edd565b90505f8215806118a4575081155b156118ae57505050565b6118d97f00000000000000000000000000000000000000000000000000000000000000006014611fdf565b83111561190e5761190b7f00000000000000000000000000000000000000000000000000000000000000006014611fdf565b92505b5f600283601054866119209190611fdf565b61192a9190611ff6565b6119349190611ff6565b90505f6119418286612015565b90504761194d82611a7f565b5f6119588247612015565b90505f600260105461196a9190611ff6565b6119749088612015565b600f546119819084611fdf565b61198b9190611ff6565b90505f6119988284612015565b90505f861180156119a857505f81115b156119fb576119b78682611c35565b601054604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f6010819055600f8190556040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169147919081818185875af1925050503d805f8114611a6c576040519150601f19603f3d011682016040523d82523d5f602084013e611a71565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611ab257611ab2612028565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b2e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b52919061203c565b81600181518110611b6557611b65612028565b60200260200101906001600160a01b031690816001600160a01b031681525050611bb0307f000000000000000000000000000000000000000000000000000000000000000084610ebf565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c049085905f90869030904290600401612057565b5f604051808303815f87803b158015611c1b575f80fd5b505af1158015611c2d573d5f803e3d5ffd5b505050505050565b611c60307f000000000000000000000000000000000000000000000000000000000000000084610ebf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80611ca66005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611d0c573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611d3191906120c6565b5050505050565b5f6020808352835180828501525f5b81811015611d6357858101830151858201604001528201611d47565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ebc575f80fd5b5f8060408385031215611da8575f80fd5b8235611db381611d83565b946020939093013593505050565b5f60208284031215611dd1575f80fd5b8135611ddc81611d83565b9392505050565b5f805f60608486031215611df5575f80fd5b8335611e0081611d83565b92506020840135611e1081611d83565b929592945050506040919091013590565b8015158114610ebc575f80fd5b5f8060408385031215611e3f575f80fd5b8235611e4a81611d83565b91506020830135611e5a81611e21565b809150509250929050565b5f8060408385031215611e76575f80fd5b8235611e8181611d83565b91506020830135611e5a81611d83565b600181811c90821680611ea557607f821691505b602082108103611ec357634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561081057610810611ec9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611f35575f80fd5b5051919050565b5f60208284031215611f4c575f80fd5b8151611ddc81611e21565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761081057610810611ec9565b5f8261201057634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561081057610810611ec9565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561204c575f80fd5b8151611ddc81611d83565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156120a55784516001600160a01b031683529383019391830191600101612080565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f606084860312156120d8575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a273742864c2d0becf9c3e191eeb1d0a5bdb6728b0688bc1d9db98f4b606a1ff64736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x608060405260043610610236575f3560e01c80638da5cb5b11610129578063c0246668116100a8578063e6461df91161006d578063e6461df9146106fd578063f11a24d314610712578063f2fde38b14610727578063f637434214610746578063f8b45b051461075b575f80fd5b8063c02466681461063d578063c8c8ebe41461065c578063d85ba06314610671578063dd62ed3e14610686578063e2f45605146106ca575f80fd5b8063a457c2d7116100ee578063a457c2d714610599578063a9059cbb146105b8578063b62496f5146105d7578063bbc0c74214610605578063bc205ad31461061e575f80fd5b80638da5cb5b1461052057806395d89b411461053d5780639a7a23d6146105515780639b096459146105705780639c6868af14610585575f80fd5b806349bd5a5e116101b557806370a082311161017a57806370a0823114610484578063715018a6146104b85780637571336a146104ce5780637ca8448a146104ed5780638a8c523c1461050c575f80fd5b806349bd5a5e146103b45780634fbee193146103e7578063599270441461041e5780636a486a8e146104515780636ddd171314610466575f80fd5b80631a8145bb116101fb5780631a8145bb1461033157806323b872dd1461034657806324b9f3c114610365578063313ce5671461037a5780633950935114610395575f80fd5b806306fdde0314610241578063095ea7b31461026b57806310d5de531461029a5780631694505e146102c857806318160ddd14610313575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b50610255610770565b6040516102629190611d38565b60405180910390f35b348015610276575f80fd5b5061028a610285366004611d97565b610800565b6040519015158152602001610262565b3480156102a5575f80fd5b5061028a6102b4366004611dc1565b60126020525f908152604090205460ff1681565b3480156102d3575f80fd5b506102fb7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610262565b34801561031e575f80fd5b506002545b604051908152602001610262565b34801561033c575f80fd5b5061032360105481565b348015610351575f80fd5b5061028a610360366004611de3565b610816565b348015610370575f80fd5b50610323600f5481565b348015610385575f80fd5b5060405160128152602001610262565b3480156103a0575f80fd5b5061028a6103af366004611d97565b6108c3565b3480156103bf575f80fd5b506102fb7f000000000000000000000000ce48b09eee4c4490e27255e125101ca93da4122f81565b3480156103f2575f80fd5b5061028a610401366004611dc1565b6001600160a01b03165f9081526011602052604090205460ff1690565b348015610429575f80fd5b506102fb7f0000000000000000000000008b42aecdf5ce51ee862397677d43e8d3ae8128af81565b34801561045c575f80fd5b50610323600c5481565b348015610471575f80fd5b5060085461028a90610100900460ff1681565b34801561048f575f80fd5b5061032361049e366004611dc1565b6001600160a01b03165f9081526020819052604090205490565b3480156104c3575f80fd5b506104cc6108fe565b005b3480156104d9575f80fd5b506104cc6104e8366004611e2e565b610933565b3480156104f8575f80fd5b506104cc610507366004611dc1565b610987565b348015610517575f80fd5b506104cc610a10565b34801561052b575f80fd5b506005546001600160a01b03166102fb565b348015610548575f80fd5b50610255610a4b565b34801561055c575f80fd5b506104cc61056b366004611e2e565b610a5a565b34801561057b575f80fd5b50610323600a5481565b348015610590575f80fd5b506104cc610b35565b3480156105a4575f80fd5b5061028a6105b3366004611d97565b610b96565b3480156105c3575f80fd5b5061028a6105d2366004611d97565b610c2e565b3480156105e2575f80fd5b5061028a6105f1366004611dc1565b60136020525f908152604090205460ff1681565b348015610610575f80fd5b5060085461028a9060ff1681565b348015610629575f80fd5b506104cc610638366004611e65565b610c3a565b348015610648575f80fd5b506104cc610657366004611e2e565b610d9c565b348015610667575f80fd5b5061032360065481565b34801561067c575f80fd5b5061032360095481565b348015610691575f80fd5b506103236106a0366004611e65565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106d5575f80fd5b506103237f000000000000000000000000000000000000000000000a968163f0a57b40000081565b348015610708575f80fd5b50610323600d5481565b34801561071d575f80fd5b50610323600b5481565b348015610732575f80fd5b506104cc610741366004611dc1565b610e24565b348015610751575f80fd5b50610323600e5481565b348015610766575f80fd5b5061032360075481565b60606003805461077f90611e91565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab90611e91565b80156107f65780601f106107cd576101008083540402835291602001916107f6565b820191905f5260205f20905b8154815290600101906020018083116107d957829003601f168201915b5050505050905090565b5f61080c338484610ebf565b5060015b92915050565b5f610822848484610fe2565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108ab5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108b88533858403610ebf565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161080c9185906108f9908690611edd565b610ebf565b6005546001600160a01b031633146109285760405162461bcd60e51b81526004016108a290611ef0565b6109315f61167e565b565b6005546001600160a01b0316331461095d5760405162461bcd60e51b81526004016108a290611ef0565b6001600160a01b03919091165f908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109b15760405162461bcd60e51b81526004016108a290611ef0565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f81146109fa576040519150601f19603f3d011682016040523d82523d5f602084013e6109ff565b606091505b5050905080610a0c575f80fd5b5050565b6005546001600160a01b03163314610a3a5760405162461bcd60e51b81526004016108a290611ef0565b6008805461ffff1916610101179055565b60606004805461077f90611e91565b6005546001600160a01b03163314610a845760405162461bcd60e51b81526004016108a290611ef0565b7f000000000000000000000000ce48b09eee4c4490e27255e125101ca93da4122f6001600160a01b0316826001600160a01b031603610b2b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016108a2565b610a0c82826116cf565b6005546001600160a01b03163314610b5f5760405162461bcd60e51b81526004016108a290611ef0565b6a021165458500521280000060068190556007556004600a8190556001600b81905560056009819055600d92909255600e55600c55565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610c175760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108a2565b610c243385858403610ebf565b5060019392505050565b5f61080c338484610fe2565b6005546001600160a01b03163314610c645760405162461bcd60e51b81526004016108a290611ef0565b6001600160a01b038216610cba5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f74206265203000000000000060448201526064016108a2565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610cfe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d229190611f25565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610d72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d969190611f3c565b50505050565b6005546001600160a01b03163314610dc65760405162461bcd60e51b81526004016108a290611ef0565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e4e5760405162461bcd60e51b81526004016108a290611ef0565b6001600160a01b038116610eb35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a2565b610ebc8161167e565b50565b6001600160a01b038316610f215760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108a2565b6001600160a01b038216610f825760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108a2565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110085760405162461bcd60e51b81526004016108a290611f57565b6001600160a01b03821661102e5760405162461bcd60e51b81526004016108a290611f9c565b805f036110455761104083835f611722565b505050565b6005546001600160a01b0384811691161480159061107157506005546001600160a01b03838116911614155b801561108557506001600160a01b03821615155b801561109c57506001600160a01b03821661dead14155b80156110b25750600554600160a01b900460ff16155b156113a25760085460ff16611143576001600160a01b0383165f9081526011602052604090205460ff16806110fe57506001600160a01b0382165f9081526011602052604090205460ff165b6111435760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108a2565b6001600160a01b0383165f9081526013602052604090205460ff16801561118257506001600160a01b0382165f9081526012602052604090205460ff16155b15611265576006548111156111f75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108a2565b6007546001600160a01b0383165f9081526020819052604090205461121c9083611edd565b11156112605760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108a2565b6113a2565b6001600160a01b0382165f9081526013602052604090205460ff1680156112a457506001600160a01b0383165f9081526012602052604090205460ff16155b1561131a576006548111156112605760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108a2565b6001600160a01b0382165f9081526012602052604090205460ff166113a2576007546001600160a01b0383165f9081526020819052604090205461135e9083611edd565b11156113a25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108a2565b305f908152602081905260409020547f000000000000000000000000000000000000000000000a968163f0a57b400000811080159081906113ea5750600854610100900460ff165b80156114005750600554600160a01b900460ff16155b801561142457506001600160a01b0385165f9081526013602052604090205460ff16155b801561144857506001600160a01b0385165f9081526011602052604090205460ff16155b801561146c57506001600160a01b0384165f9081526011602052604090205460ff16155b1561149a576005805460ff60a01b1916600160a01b17905561148c611874565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526011602052604090205460ff600160a01b9092048216159116806114e657506001600160a01b0385165f9081526011602052604090205460ff165b156114ee57505f5b5f811561166a576001600160a01b0386165f9081526013602052604090205460ff16801561151d57505f600c54115b156115a3576064600c54866115329190611fdf565b61153c9190611ff6565b9050600c54600e548261154f9190611fdf565b6115599190611ff6565b60105f8282546115699190611edd565b9091555050600c54600d5461157e9083611fdf565b6115889190611ff6565b600f5f8282546115989190611edd565b9091555061164c9050565b6001600160a01b0387165f9081526013602052604090205460ff1680156115cb57505f600954115b1561164c576064600954866115e09190611fdf565b6115ea9190611ff6565b9050600954600b54826115fd9190611fdf565b6116079190611ff6565b60105f8282546116179190611edd565b9091555050600954600a5461162c9083611fdf565b6116369190611ff6565b600f5f8282546116469190611edd565b90915550505b801561165d5761165d873083611722565b6116678186612015565b94505b611675878787611722565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166117485760405162461bcd60e51b81526004016108a290611f57565b6001600160a01b03821661176e5760405162461bcd60e51b81526004016108a290611f9c565b6001600160a01b0383165f90815260208190526040902054818110156117e55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108a2565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061181b908490611edd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161186791815260200190565b60405180910390a3610d96565b305f9081526020819052604081205490505f600f546010546118969190611edd565b90505f8215806118a4575081155b156118ae57505050565b6118d97f000000000000000000000000000000000000000000000a968163f0a57b4000006014611fdf565b83111561190e5761190b7f000000000000000000000000000000000000000000000a968163f0a57b4000006014611fdf565b92505b5f600283601054866119209190611fdf565b61192a9190611ff6565b6119349190611ff6565b90505f6119418286612015565b90504761194d82611a7f565b5f6119588247612015565b90505f600260105461196a9190611ff6565b6119749088612015565b600f546119819084611fdf565b61198b9190611ff6565b90505f6119988284612015565b90505f861180156119a857505f81115b156119fb576119b78682611c35565b601054604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f6010819055600f8190556040517f0000000000000000000000008b42aecdf5ce51ee862397677d43e8d3ae8128af6001600160a01b03169147919081818185875af1925050503d805f8114611a6c576040519150601f19603f3d011682016040523d82523d5f602084013e611a71565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611ab257611ab2612028565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b2e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b52919061203c565b81600181518110611b6557611b65612028565b60200260200101906001600160a01b031690816001600160a01b031681525050611bb0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610ebf565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c049085905f90869030904290600401612057565b5f604051808303815f87803b158015611c1b575f80fd5b505af1158015611c2d573d5f803e3d5ffd5b505050505050565b611c60307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610ebf565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80611ca66005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611d0c573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611d3191906120c6565b5050505050565b5f6020808352835180828501525f5b81811015611d6357858101830151858201604001528201611d47565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ebc575f80fd5b5f8060408385031215611da8575f80fd5b8235611db381611d83565b946020939093013593505050565b5f60208284031215611dd1575f80fd5b8135611ddc81611d83565b9392505050565b5f805f60608486031215611df5575f80fd5b8335611e0081611d83565b92506020840135611e1081611d83565b929592945050506040919091013590565b8015158114610ebc575f80fd5b5f8060408385031215611e3f575f80fd5b8235611e4a81611d83565b91506020830135611e5a81611e21565b809150509250929050565b5f8060408385031215611e76575f80fd5b8235611e8181611d83565b91506020830135611e5a81611d83565b600181811c90821680611ea557607f821691505b602082108103611ec357634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561081057610810611ec9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611f35575f80fd5b5051919050565b5f60208284031215611f4c575f80fd5b8151611ddc81611e21565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761081057610810611ec9565b5f8261201057634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561081057610810611ec9565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561204c575f80fd5b8151611ddc81611d83565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156120a55784516001600160a01b031683529383019391830191600101612080565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f606084860312156120d8575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a273742864c2d0becf9c3e191eeb1d0a5bdb6728b0688bc1d9db98f4b606a1ff64736f6c63430008140033
Deployed Bytecode Sourcemap
32189:10835:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9888:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12121:194;;;;;;;;;;-1:-1:-1;12121:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12121:194:0;1023:187:1;32978:63:0;;;;;;;;;;-1:-1:-1;32978:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32233:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;32233:51:0;1467:230:1;11008:108:0;;;;;;;;;;-1:-1:-1;11096:12:0;;11008:108;;;1848:25:1;;;1836:2;1821:18;11008:108:0;1702:177:1;32877:33:0;;;;;;;;;;;;;;;;12797:529;;;;;;;;;;-1:-1:-1;12797:529:0;;;;;:::i;:::-;;:::i;32838:32::-;;;;;;;;;;;;;;;;10850:93;;;;;;;;;;-1:-1:-1;10850:93:0;;10933:2;2487:36:1;;2475:2;2460:18;10850:93:0;2345:184:1;13735:290:0;;;;;;;;;;-1:-1:-1;13735:290:0;;;;;:::i;:::-;;:::i;32291:38::-;;;;;;;;;;;;;;;36745:126;;;;;;;;;;-1:-1:-1;36745:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;36835:28:0;36811:4;36835:28;;;:19;:28;;;;;;;;;36745:126;32366:35;;;;;;;;;;;;;;;32725:28;;;;;;;;;;;;;;;;32575:31;;;;;;;;;;-1:-1:-1;32575:31:0;;;;;;;;;;;11179:143;;;;;;;;;;-1:-1:-1;11179:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;11296:18:0;11269:7;11296:18;;;;;;;;;;;;11179:143;3284:103;;;;;;;;;;;;;:::i;:::-;;35868:169;;;;;;;;;;-1:-1:-1;35868:169:0;;;;;:::i;:::-;;:::i;42850:::-;;;;;;;;;;-1:-1:-1;42850:169:0;;;;;:::i;:::-;;:::i;35395:112::-;;;;;;;;;;;;;:::i;2633:87::-;;;;;;;;;;-1:-1:-1;2706:6:0;;-1:-1:-1;;;;;2706:6:0;2633:87;;10107:104;;;;;;;;;;;;;:::i;36235:306::-;;;;;;;;;;-1:-1:-1;36235:306:0;;;;;:::i;:::-;;:::i;32649:30::-;;;;;;;;;;;;;;;;35515:345;;;;;;;;;;;;;:::i;14528:475::-;;;;;;;;;;-1:-1:-1;14528:475:0;;;;;:::i;:::-;;:::i;11535:200::-;;;;;;;;;;-1:-1:-1;11535:200:0;;;;;:::i;:::-;;:::i;33050:57::-;;;;;;;;;;-1:-1:-1;33050:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32535:33;;;;;;;;;;-1:-1:-1;32535:33:0;;;;;;;;42531:311;;;;;;;;;;-1:-1:-1;42531:311:0;;;;;:::i;:::-;;:::i;36045:182::-;;;;;;;;;;-1:-1:-1;36045:182:0;;;;;:::i;:::-;;:::i;32410:35::-;;;;;;;;;;;;;;;;32615:27;;;;;;;;;;;;;;;;11798:176;;;;;;;;;;-1:-1:-1;11798:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;11939:18:0;;;11912:7;11939:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11798:176;32452:43;;;;;;;;;;;;;;;32760:31;;;;;;;;;;;;;;;;32686:30;;;;;;;;;;;;;;;;3542:238;;;;;;;;;;-1:-1:-1;3542:238:0;;;;;:::i;:::-;;:::i;32798:31::-;;;;;;;;;;;;;;;;32502:24;;;;;;;;;;;;;;;;9888:100;9942:13;9975:5;9968:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9888:100;:::o;12121:194::-;12229:4;12246:39;1555:10;12269:7;12278:6;12246:8;:39::i;:::-;-1:-1:-1;12303:4:0;12121:194;;;;;:::o;12797:529::-;12937:4;12954:36;12964:6;12972:9;12983:6;12954:9;:36::i;:::-;-1:-1:-1;;;;;13030:19:0;;13003:24;13030:19;;;:11;:19;;;;;;;;1555:10;13030:33;;;;;;;;13096:26;;;;13074:116;;;;-1:-1:-1;;;13074:116:0;;4232:2:1;13074:116:0;;;4214:21:1;4271:2;4251:18;;;4244:30;4310:34;4290:18;;;4283:62;-1:-1:-1;;;4361:18:1;;;4354:38;4409:19;;13074:116:0;;;;;;;;;13226:57;13235:6;1555:10;13276:6;13257:16;:25;13226:8;:57::i;:::-;-1:-1:-1;13314:4:0;;12797:529;-1:-1:-1;;;;12797:529:0:o;13735:290::-;1555:10;13848:4;13937:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13937:34:0;;;;;;;;;;13848:4;;13865:130;;13915:7;;13937:47;;13974:10;;13937:47;:::i;:::-;13865:8;:130::i;3284:103::-;2706:6;;-1:-1:-1;;;;;2706:6:0;1555:10;2853:23;2845:68;;;;-1:-1:-1;;;2845:68:0;;;;;;;:::i;:::-;3349:30:::1;3376:1;3349:18;:30::i;:::-;3284:103::o:0;35868:169::-;2706:6;;-1:-1:-1;;;;;2706:6:0;1555:10;2853:23;2845:68;;;;-1:-1:-1;;;2845:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35983:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;35983:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35868:169::o;42850:::-;2706:6;;-1:-1:-1;;;;;2706:6:0;1555:10;2853:23;2845:68;;;;-1:-1:-1;;;2845:68:0;;;;;;;:::i;:::-;42921:12:::1;42939:6;-1:-1:-1::0;;;;;42939:11:0::1;42958:21;42939:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42920:64;;;43003:7;42995:16;;;::::0;::::1;;42909:110;42850:169:::0;:::o;35395:112::-;2706:6;;-1:-1:-1;;;;;2706:6:0;1555:10;2853:23;2845:68;;;;-1:-1:-1;;;2845:68:0;;;;;;;:::i;:::-;35450:13:::1;:20:::0;;-1:-1:-1;;35481:18:0;;;;;35395:112::o;10107:104::-;10163:13;10196:7;10189:14;;;;;:::i;36235:306::-;2706:6;;-1:-1:-1;;;;;2706:6:0;1555:10;2853:23;2845:68;;;;-1:-1:-1;;;2845:68:0;;;;;;;:::i;:::-;36381:13:::1;-1:-1:-1::0;;;;;36373:21:0::1;:4;-1:-1:-1::0;;;;;36373:21:0::1;::::0;36351:128:::1;;;::::0;-1:-1:-1;;;36351:128:0;;5474:2:1;36351:128:0::1;::::0;::::1;5456:21:1::0;5513:2;5493:18;;;5486:30;5552:34;5532:18;;;5525:62;5623:27;5603:18;;;5596:55;5668:19;;36351:128:0::1;5272:421:1::0;36351:128:0::1;36492:41;36521:4;36527:5;36492:28;:41::i;35515:345::-:0;2706:6;;-1:-1:-1;;;;;2706:6:0;1555:10;2853:23;2845:68;;;;-1:-1:-1;;;2845:68:0;;;;;;;:::i;:::-;35599:22:::1;35576:20;:45:::0;;;35633:9:::1;:34:::0;35699:1:::1;35681:15;:19:::0;;;35730:1:::1;35712:15;:19:::0;;;35757:1:::1;35742:12;:16:::0;;;35771::::1;:20:::0;;;;35803:16:::1;:20:::0;35835:13:::1;:17:::0;35515:345::o;14528:475::-;1555:10;14646:4;14690:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14690:34:0;;;;;;;;;;14757:35;;;;14735:122;;;;-1:-1:-1;;;14735:122:0;;5900:2:1;14735:122:0;;;5882:21:1;5939:2;5919:18;;;5912:30;5978:34;5958:18;;;5951:62;-1:-1:-1;;;6029:18:1;;;6022:35;6074:19;;14735:122:0;5698:401:1;14735:122:0;14893:67;1555:10;14916:7;14944:15;14925:16;:34;14893:8;:67::i;:::-;-1:-1:-1;14991:4:0;;14528:475;-1:-1:-1;;;14528:475:0:o;11535:200::-;11646:4;11663:42;1555:10;11687:9;11698:6;11663:9;:42::i;42531:311::-;2706:6;;-1:-1:-1;;;;;2706:6:0;1555:10;2853:23;2845:68;;;;-1:-1:-1;;;2845:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42649:20:0;::::1;42641:59;;;::::0;-1:-1:-1;;;42641:59:0;;6306:2:1;42641:59:0::1;::::0;::::1;6288:21:1::0;6345:2;6325:18;;;6318:30;6384:28;6364:18;;;6357:56;6430:18;;42641:59:0::1;6104:350:1::0;42641:59:0::1;42738:39;::::0;-1:-1:-1;;;42738:39:0;;42771:4:::1;42738:39;::::0;::::1;1640:51:1::0;42711:24:0::1;::::0;-1:-1:-1;;;;;42738:24:0;::::1;::::0;::::1;::::0;1613:18:1;;42738:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42788:46;::::0;-1:-1:-1;;;42788:46:0;;-1:-1:-1;;;;;6840:32:1;;;42788:46:0::1;::::0;::::1;6822:51:1::0;6889:18;;;6882:34;;;42711:66:0;;-1:-1:-1;42788:23:0;;::::1;::::0;::::1;::::0;6795:18:1;;42788:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42630:212;42531:311:::0;;:::o;36045:182::-;2706:6;;-1:-1:-1;;;;;2706:6:0;1555:10;2853:23;2845:68;;;;-1:-1:-1;;;2845:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36130:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;36130:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36185:34;;1163:41:1;;;36185:34:0::1;::::0;1136:18:1;36185:34:0::1;;;;;;;36045:182:::0;;:::o;3542:238::-;2706:6;;-1:-1:-1;;;;;2706:6:0;1555:10;2853:23;2845:68;;;;-1:-1:-1;;;2845:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3645:22:0;::::1;3623:110;;;::::0;-1:-1:-1;;;3623:110:0;;7379:2:1;3623:110:0::1;::::0;::::1;7361:21:1::0;7418:2;7398:18;;;7391:30;7457:34;7437:18;;;7430:62;-1:-1:-1;;;7508:18:1;;;7501:36;7554:19;;3623:110:0::1;7177:402:1::0;3623:110:0::1;3744:28;3763:8;3744:18;:28::i;:::-;3542:238:::0;:::o;18311:380::-;-1:-1:-1;;;;;18447:19:0;;18439:68;;;;-1:-1:-1;;;18439:68:0;;7786:2:1;18439:68:0;;;7768:21:1;7825:2;7805:18;;;7798:30;7864:34;7844:18;;;7837:62;-1:-1:-1;;;7915:18:1;;;7908:34;7959:19;;18439:68:0;7584:400:1;18439:68:0;-1:-1:-1;;;;;18526:21:0;;18518:68;;;;-1:-1:-1;;;18518:68:0;;8191:2:1;18518:68:0;;;8173:21:1;8230:2;8210:18;;;8203:30;8269:34;8249:18;;;8242:62;-1:-1:-1;;;8320:18:1;;;8313:32;8362:19;;18518:68:0;7989:398:1;18518:68:0;-1:-1:-1;;;;;18599:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18651:32;;1848:25:1;;;18651:32:0;;1821:18:1;18651:32:0;;;;;;;18311:380;;;:::o;36879:3309::-;-1:-1:-1;;;;;37011:18:0;;37003:68;;;;-1:-1:-1;;;37003:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37090:16:0;;37082:64;;;;-1:-1:-1;;;37082:64:0;;;;;;;:::i;:::-;37163:6;37173:1;37163:11;37159:93;;37191:28;37207:4;37213:2;37217:1;37191:15;:28::i;:::-;36879:3309;;;:::o;37159:93::-;2706:6;;-1:-1:-1;;;;;37282:15:0;;;2706:6;;37282:15;;;;:45;;-1:-1:-1;2706:6:0;;-1:-1:-1;;;;;37314:13:0;;;2706:6;;37314:13;;37282:45;:78;;;;-1:-1:-1;;;;;;37344:16:0;;;;37282:78;:116;;;;-1:-1:-1;;;;;;37377:21:0;;37391:6;37377:21;;37282:116;:142;;;;-1:-1:-1;37416:8:0;;-1:-1:-1;;;37416:8:0;;;;37415:9;37282:142;37264:1433;;;37456:13;;;;37451:203;;-1:-1:-1;;;;;37520:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;37549:23:0;;;;;;:19;:23;;;;;;;;37520:52;37490:148;;;;-1:-1:-1;;;37490:148:0;;9404:2:1;37490:148:0;;;9386:21:1;9443:2;9423:18;;;9416:30;-1:-1:-1;;;9462:18:1;;;9455:52;9524:18;;37490:148:0;9202:346:1;37490:148:0;-1:-1:-1;;;;;37692:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;37745:35:0;;;;;;:31;:35;;;;;;;;37744:36;37692:88;37670:1016;;;37855:20;;37845:6;:30;;37815:157;;;;-1:-1:-1;;;37815:157:0;;9755:2:1;37815:157:0;;;9737:21:1;9794:2;9774:18;;;9767:30;9833:34;9813:18;;;9806:62;-1:-1:-1;;;9884:18:1;;;9877:51;9945:19;;37815:157:0;9553:417:1;37815:157:0;38047:9;;-1:-1:-1;;;;;11296:18:0;;11269:7;11296:18;;;;;;;;;;;38021:22;;:6;:22;:::i;:::-;:35;;37991:128;;;;-1:-1:-1;;;37991:128:0;;10177:2:1;37991:128:0;;;10159:21:1;10216:2;10196:18;;;10189:30;-1:-1:-1;;;10235:18:1;;;10228:49;10294:18;;37991:128:0;9975:343:1;37991:128:0;37670:1016;;;-1:-1:-1;;;;;38178:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;38229:37:0;;;;;;:31;:37;;;;;;;;38228:38;38178:88;38156:530;;;38341:20;;38331:6;:30;;38301:158;;;;-1:-1:-1;;;38301:158:0;;10525:2:1;38301:158:0;;;10507:21:1;10564:2;10544:18;;;10537:30;10603:34;10583:18;;;10576:62;-1:-1:-1;;;10654:18:1;;;10647:52;10716:19;;38301:158:0;10323:418:1;38156:530:0;-1:-1:-1;;;;;38486:35:0;;;;;;:31;:35;;;;;;;;38481:205;;38598:9;;-1:-1:-1;;;;;11296:18:0;;11269:7;11296:18;;;;;;;;;;;38572:22;;:6;:22;:::i;:::-;:35;;38542:128;;;;-1:-1:-1;;;38542:128:0;;10177:2:1;38542:128:0;;;10159:21:1;10216:2;10196:18;;;10189:30;-1:-1:-1;;;10235:18:1;;;10228:49;10294:18;;38542:128:0;9975:343:1;38542:128:0;38758:4;38709:28;11296:18;;;;;;;;;;;38816;38792:42;;;;;;;38865:35;;-1:-1:-1;38889:11:0;;;;;;;38865:35;:61;;;;-1:-1:-1;38918:8:0;;-1:-1:-1;;;38918:8:0;;;;38917:9;38865:61;:110;;;;-1:-1:-1;;;;;;38944:31:0;;;;;;:25;:31;;;;;;;;38943:32;38865:110;:153;;;;-1:-1:-1;;;;;;38993:25:0;;;;;;:19;:25;;;;;;;;38992:26;38865:153;:194;;;;-1:-1:-1;;;;;;39036:23:0;;;;;;:19;:23;;;;;;;;39035:24;38865:194;38847:326;;;39086:8;:15;;-1:-1:-1;;;;39086:15:0;-1:-1:-1;;;39086:15:0;;;39118:10;:8;:10::i;:::-;39145:8;:16;;-1:-1:-1;;;;39145:16:0;;;38847:326;39201:8;;-1:-1:-1;;;;;39226:25:0;;39185:12;39226:25;;;:19;:25;;;;;;39201:8;-1:-1:-1;;;39201:8:0;;;;;39200:9;;39226:25;;:52;;-1:-1:-1;;;;;;39255:23:0;;;;;;:19;:23;;;;;;;;39226:52;39222:100;;;-1:-1:-1;39305:5:0;39222:100;39334:12;39365:7;39361:774;;;-1:-1:-1;;;;;39393:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;39442:1;39426:13;;:17;39393:50;39389:597;;;39498:3;39481:13;;39472:6;:22;;;;:::i;:::-;39471:30;;;;:::i;:::-;39464:37;;39570:13;;39550:16;;39543:4;:23;;;;:::i;:::-;39542:41;;;;:::i;:::-;39520:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;39651:13:0;;39631:16;;39624:23;;:4;:23;:::i;:::-;39623:41;;;;:::i;:::-;39602:17;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;39389:597:0;;-1:-1:-1;39389:597:0;;-1:-1:-1;;;;;39703:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;39753:1;39738:12;;:16;39703:51;39699:287;;;39808:3;39792:12;;39783:6;:21;;;;:::i;:::-;39782:29;;;;:::i;:::-;39775:36;;39879:12;;39860:15;;39853:4;:22;;;;:::i;:::-;39852:39;;;;:::i;:::-;39830:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;39958:12:0;;39939:15;;39932:22;;:4;:22;:::i;:::-;39931:39;;;;:::i;:::-;39910:17;;:60;;;;;;;:::i;:::-;;;;-1:-1:-1;;39699:287:0;40006:8;;40002:91;;40035:42;40051:4;40065;40072;40035:15;:42::i;:::-;40109:14;40119:4;40109:14;;:::i;:::-;;;39361:774;40147:33;40163:4;40169:2;40173:6;40147:15;:33::i;:::-;36992:3196;;;;36879:3309;;;:::o;3940:191::-;4033:6;;;-1:-1:-1;;;;;4050:17:0;;;-1:-1:-1;;;;;;4050:17:0;;;;;;;4083:40;;4033:6;;;4050:17;4033:6;;4083:40;;4014:16;;4083:40;4003:128;3940:191;:::o;36549:188::-;-1:-1:-1;;;;;36632:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;36632:39:0;;;;;;;;;;36689:40;;36632:39;;:31;36689:40;;;36549:188;;:::o;15493:770::-;-1:-1:-1;;;;;15633:20:0;;15625:70;;;;-1:-1:-1;;;15625:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15714:23:0;;15706:71;;;;-1:-1:-1;;;15706:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15874:17:0;;15850:21;15874:17;;;;;;;;;;;15924:23;;;;15902:111;;;;-1:-1:-1;;;15902:111:0;;11476:2:1;15902:111:0;;;11458:21:1;11515:2;11495:18;;;11488:30;11554:34;11534:18;;;11527:62;-1:-1:-1;;;11605:18:1;;;11598:36;11651:19;;15902:111:0;11274:402:1;15902:111:0;-1:-1:-1;;;;;16049:17:0;;;:9;:17;;;;;;;;;;;16069:22;;;16049:42;;16113:20;;;;;;;;:30;;16085:6;;16049:9;16113:30;;16085:6;;16113:30;:::i;:::-;;;;;;;;16178:9;-1:-1:-1;;;;;16161:35:0;16170:6;-1:-1:-1;;;;;16161:35:0;;16189:6;16161:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;16161:35:0;;;;;;;;16209:46;36879:3309;41052:1471;41135:4;41091:23;11296:18;;;;;;;;;;;41091:50;;41152:25;41201:17;;41180:18;;:38;;;;:::i;:::-;41152:66;-1:-1:-1;41229:12:0;41258:20;;;:46;;-1:-1:-1;41282:22:0;;41258:46;41254:85;;;41321:7;;;41052:1471::o;41254:85::-;41373:23;:18;41394:2;41373:23;:::i;:::-;41355:15;:41;41351:115;;;41431:23;:18;41452:2;41431:23;:::i;:::-;41413:41;;41351:115;41478:23;41591:1;41558:17;41523:18;;41505:15;:36;;;;:::i;:::-;41504:71;;;;:::i;:::-;:88;;;;:::i;:::-;41478:114;-1:-1:-1;41603:26:0;41632:33;41478:114;41632:15;:33;:::i;:::-;41603:62;-1:-1:-1;41706:21:0;41740:36;41603:62;41740:16;:36::i;:::-;41789:18;41810:41;41834:17;41810:21;:41;:::i;:::-;41789:62;;41864:22;41980:1;41959:18;;:22;;;;:::i;:::-;41938:44;;:17;:44;:::i;:::-;41903:17;;41890:30;;:10;:30;:::i;:::-;41889:94;;;;:::i;:::-;41864:119;-1:-1:-1;41996:23:0;42022:27;41864:119;42022:10;:27;:::i;:::-;41996:53;;42084:1;42066:15;:19;:42;;;;;42107:1;42089:15;:19;42066:42;42062:278;;;42125:46;42138:15;42155;42125:12;:46::i;:::-;42295:18;;42191:137;;;11883:25:1;;;11939:2;11924:18;;11917:34;;;11967:18;;;11960:34;;;;42191:137:0;;;;;;11871:2:1;42191:137:0;;;42062:278;42373:1;42352:18;:22;;;42385:17;:21;;;42433:82;;42441:10;-1:-1:-1;;;;;42433:24:0;;42479:21;;42433:82;;42373:1;42433:82;42479:21;42433:24;:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;41052:1471:0:o;40196:476::-;40286:16;;;40300:1;40286:16;;;;;;;;40262:21;;40286:16;;;;;;;;;;-1:-1:-1;40286:16:0;40262:40;;40331:4;40313;40318:1;40313:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40313:23:0;;;-1:-1:-1;;;;;40313:23:0;;;;;40357:15;-1:-1:-1;;;;;40357:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40347:4;40352:1;40347:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;40347:32:0;;;-1:-1:-1;;;;;40347:32:0;;;;;40392:62;40409:4;40424:15;40442:11;40392:8;:62::i;:::-;40467:197;;-1:-1:-1;;;40467:197:0;;-1:-1:-1;;;;;40467:15:0;:66;;;;:197;;40548:11;;40574:1;;40591:4;;40618;;40638:15;;40467:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40251:421;40196:476;:::o;40680:364::-;40761:62;40778:4;40793:15;40811:11;40761:8;:62::i;:::-;40836:15;-1:-1:-1;;;;;40836:31:0;;40875:9;40908:4;40928:11;40954:1;40971;40988:7;2706:6;;-1:-1:-1;;;;;2706:6:0;;2633:87;40988:7;40836:200;;;;;;-1:-1:-1;;;;;;40836:200:0;;;-1:-1:-1;;;;;13869:15:1;;;40836:200:0;;;13851:34:1;13901:18;;;13894:34;;;;13944:18;;;13937:34;;;;13987:18;;;13980:34;14051:15;;;14030:19;;;14023:44;41010:15:0;14083:19:1;;;14076:35;13785:19;;40836:200:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40680:364;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;:::-;1451:5;1215:247;-1:-1:-1;;;1215:247:1:o;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:118::-;2828:5;2821:13;2814:21;2807:5;2804:32;2794:60;;2850:1;2847;2840:12;2865:382;2930:6;2938;2991:2;2979:9;2970:7;2966:23;2962:32;2959:52;;;3007:1;3004;2997:12;2959:52;3046:9;3033:23;3065:31;3090:5;3065:31;:::i;:::-;3115:5;-1:-1:-1;3172:2:1;3157:18;;3144:32;3185:30;3144:32;3185:30;:::i;:::-;3234:7;3224:17;;;2865:382;;;;;:::o;3252:388::-;3320:6;3328;3381:2;3369:9;3360:7;3356:23;3352:32;3349:52;;;3397:1;3394;3387:12;3349:52;3436:9;3423:23;3455:31;3480:5;3455:31;:::i;:::-;3505:5;-1:-1:-1;3562:2:1;3547:18;;3534:32;3575:33;3534:32;3575:33;:::i;3645:380::-;3724:1;3720:12;;;;3767;;;3788:61;;3842:4;3834:6;3830:17;3820:27;;3788:61;3895:2;3887:6;3884:14;3864:18;3861:38;3858:161;;3941:10;3936:3;3932:20;3929:1;3922:31;3976:4;3973:1;3966:15;4004:4;4001:1;3994:15;3858:161;;3645:380;;;:::o;4439:127::-;4500:10;4495:3;4491:20;4488:1;4481:31;4531:4;4528:1;4521:15;4555:4;4552:1;4545:15;4571:125;4636:9;;;4657:10;;;4654:36;;;4670:18;;:::i;4701:356::-;4903:2;4885:21;;;4922:18;;;4915:30;4981:34;4976:2;4961:18;;4954:62;5048:2;5033:18;;4701:356::o;6459:184::-;6529:6;6582:2;6570:9;6561:7;6557:23;6553:32;6550:52;;;6598:1;6595;6588:12;6550:52;-1:-1:-1;6621:16:1;;6459:184;-1:-1:-1;6459:184:1:o;6927:245::-;6994:6;7047:2;7035:9;7026:7;7022:23;7018:32;7015:52;;;7063:1;7060;7053:12;7015:52;7095:9;7089:16;7114:28;7136:5;7114:28;:::i;8392:401::-;8594:2;8576:21;;;8633:2;8613:18;;;8606:30;8672:34;8667:2;8652:18;;8645:62;-1:-1:-1;;;8738:2:1;8723:18;;8716:35;8783:3;8768:19;;8392:401::o;8798:399::-;9000:2;8982:21;;;9039:2;9019:18;;;9012:30;9078:34;9073:2;9058:18;;9051:62;-1:-1:-1;;;9144:2:1;9129:18;;9122:33;9187:3;9172:19;;8798:399::o;10746:168::-;10819:9;;;10850;;10867:15;;;10861:22;;10847:37;10837:71;;10888:18;;:::i;10919:217::-;10959:1;10985;10975:132;;11029:10;11024:3;11020:20;11017:1;11010:31;11064:4;11061:1;11054:15;11092:4;11089:1;11082:15;10975:132;-1:-1:-1;11121:9:1;;10919:217::o;11141:128::-;11208:9;;;11229:11;;;11226:37;;;11243:18;;:::i;12137:127::-;12198:10;12193:3;12189:20;12186:1;12179:31;12229:4;12226:1;12219:15;12253:4;12250:1;12243:15;12269:251;12339:6;12392:2;12380:9;12371:7;12367:23;12363:32;12360:52;;;12408:1;12405;12398:12;12360:52;12440:9;12434:16;12459:31;12484:5;12459:31;:::i;12525:980::-;12787:4;12835:3;12824:9;12820:19;12866:6;12855:9;12848:25;12892:2;12930:6;12925:2;12914:9;12910:18;12903:34;12973:3;12968:2;12957:9;12953:18;12946:31;12997:6;13032;13026:13;13063:6;13055;13048:22;13101:3;13090:9;13086:19;13079:26;;13140:2;13132:6;13128:15;13114:29;;13161:1;13171:195;13185:6;13182:1;13179:13;13171:195;;;13250:13;;-1:-1:-1;;;;;13246:39:1;13234:52;;13341:15;;;;13306:12;;;;13282:1;13200:9;13171:195;;;-1:-1:-1;;;;;;;13422:32:1;;;;13417:2;13402:18;;13395:60;-1:-1:-1;;;13486:3:1;13471:19;13464:35;13383:3;12525:980;-1:-1:-1;;;12525:980:1:o;14122:306::-;14210:6;14218;14226;14279:2;14267:9;14258:7;14254:23;14250:32;14247:52;;;14295:1;14292;14285:12;14247:52;14324:9;14318:16;14308:26;;14374:2;14363:9;14359:18;14353:25;14343:35;;14418:2;14407:9;14403:18;14397:25;14387:35;;14122:306;;;;;:::o
Swarm Source
ipfs://a273742864c2d0becf9c3e191eeb1d0a5bdb6728b0688bc1d9db98f4b606a1ff
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.