Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
43,325,261.695065729588687055 WIS
Holders
180
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
62,784.972813752329472118 WISValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WIS
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-15 */ /** Website: https://wisdomprotocol.xyz Twitter: https://twitter.com/WisdomProtocol Telegram: https://t.me/wisdom_protocol **/ // SPDX-License-Identifier: MIT pragma solidity ^0.8.15; pragma experimental ABIEncoderV2; /** * @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 WIS is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public constant DEAD = address(0xdead); bool private swapping; address public mktReceiver; uint256 public maxTxAmount; uint256 public swapTokensAmt; uint256 public maxWalletAmt; bool public limitsEnabled = true; bool public tradingEnabled = false; bool public swapEnabled = false; uint256 public taxFeeOnBuy; uint256 public taxFeeOnSell; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedForMaxTxAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Wisdom Protocol", "WIS") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uint256 totalSupply = 50000000 * 1e18; maxTxAmount = (totalSupply * 2) * 100; // 2% maxWalletAmt = (totalSupply * 2 / 100); // 2% swapTokensAmt = (totalSupply * 8) / 1000000; // 0.05% taxFeeOnBuy = 20; taxFeeOnSell = 20; mktReceiver = address(0x796042E0032aC5247bc04A49102d49c5b5A5cF0c); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(mktReceiver, 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 { tradingEnabled = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsEnabled = false; return true; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedForMaxTxAmount[updAds] = isEx; } function createPair() external onlyOwner { uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()) .createPair(address(this), uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); addLiquidity(balanceOf(address(this)), address(this).balance); } function reduceFeeOnBuySell() external onlyOwner { taxFeeOnBuy = 2; taxFeeOnSell = 2; } 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 (limitsEnabled) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingEnabled) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedForMaxTxAmount[to] ) { require( amount <= maxTxAmount, "Buy transfer amount exceeds the maxTxAmount." ); require( amount + balanceOf(to) <= maxWalletAmt, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedForMaxTxAmount[from] ) { require( amount <= maxTxAmount, "Sell transfer amount exceeds the maxTxAmount." ); } else if (!_isExcludedForMaxTxAmount[to]) { require( amount + balanceOf(to) <= maxWalletAmt, "Max wallet exceeded" ); } } } else if (!_isExcludedFromFees[from] && _isExcludedForMaxTxAmount[from] && to == DEAD) { super._burn(uniswapV2Pair, amount); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAmt; if ( canSwap && swapEnabled && !swapping && amount >= swapTokensAmt && automatedMarketMakerPairs[to] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && taxFeeOnSell > 0) { fees = amount.mul(taxFeeOnSell).div(100); } // on buy else if (automatedMarketMakerPairs[from] && taxFeeOnBuy > 0) { fees = amount.mul(taxFeeOnBuy).div(100); } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAmt * 1100) { contractBalance = swapTokensAmt * 1100; } swapTokensForEth(contractBalance); payable(mktReceiver).transfer(address(this).balance); } function withdrawStuckToken(address _token, address _to) external 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) external 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":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedForMaxTxAmount","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":"createPair","outputs":[],"stateMutability":"nonpayable","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":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mktReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"reduceFeeOnBuySell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAmt","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":"taxFeeOnBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFeeOnSell","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":"tradingEnabled","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":[{"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
60a0604052600b805462ffffff191660011790553480156200001f575f80fd5b506040518060400160405280600f81526020016e15da5cd91bdb48141c9bdd1bd8dbdb608a1b8152506040518060400160405280600381526020016257495360e81b815250816003908162000075919062000505565b50600462000084828262000505565b505050620000a16200009b6200020a60201b60201c565b6200020e565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c38160016200025f565b6001600160a01b0381166080526a295be96e64066972000000620000e9816002620005e1565b620000f6906064620005e1565b600855606462000108826002620005e1565b62000114919062000601565b600a55620f424062000128826008620005e1565b62000134919062000601565b6009556014600c819055600d55600780546001600160a01b03191673796042e0032ac5247bc04a49102d49c5b5a5cf0c179055620001866200017e6005546001600160a01b031690565b6001620002d7565b62000193306001620002d7565b620001a261dead6001620002d7565b600754620001bb906001600160a01b031660016200025f565b620001da620001d26005546001600160a01b031690565b60016200025f565b620001e73060016200025f565b620001f661dead60016200025f565b6200020233826200037f565b505062000637565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620002ad5760405162461bcd60e51b815260206004820181905260248201525f805160206200284f83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620003215760405162461bcd60e51b815260206004820181905260248201525f805160206200284f8339815191526044820152606401620002a4565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620003d75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620002a4565b8060025f828254620003ea919062000621565b90915550506001600160a01b0382165f90815260208190526040812080548392906200041890849062000621565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200048f57607f821691505b602082108103620004ae57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000461575f81815260208120601f850160051c81016020861015620004dc5750805b601f850160051c820191505b81811015620004fd57828155600101620004e8565b505050505050565b81516001600160401b0381111562000521576200052162000466565b62000539816200053284546200047a565b84620004b4565b602080601f8311600181146200056f575f8415620005575750858301515b5f19600386901b1c1916600185901b178555620004fd565b5f85815260208120601f198616915b828110156200059f578886015182559484019460019091019084016200057e565b5085821015620005bd57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620005fb57620005fb620005cd565b92915050565b5f826200061c57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620005fb57620005fb620005cd565b6080516121ce620006815f395f81816102dd01528181610afa01528181610b89015281816117f80152818161181f01528181611c8501528181611d3c0152611d7801526121ce5ff3fe608060405260043610610220575f3560e01c80637571336a1161011e578063a457c2d7116100a8578063bb8115081161006d578063bb81150814610638578063bc205ad31461064d578063c02466681461066c578063dd62ed3e1461068b578063f2fde38b146106cf575f80fd5b8063a457c2d7146105a3578063a9059cbb146105c2578063ab4ebc1e146105e1578063b14c5947146105f6578063b62496f51461060a575f80fd5b80638da5cb5b116100ee5780638da5cb5b1461052a57806395d89b41146105475780639a7a23d61461055b5780639c0b9d741461057a5780639e78fb4f1461058f575f80fd5b80637571336a146104c35780637ca8448a146104e25780638a8c523c146105015780638c0b5e2214610515575f80fd5b80633582ad23116101aa5780634fbee1931161016f5780634fbee1931461040f5780636ddd17131461044657806370a0823114610465578063715018a614610499578063751039fc146104af575f80fd5b80633582ad2314610385578063395093511461039e5780634676ce8b146103bd57806349bd5a5e146103d25780634ada218b146103f1575f80fd5b80631694505e116101f05780631694505e146102cc57806318160ddd146102ff57806323b872dd1461031d57806323d932741461033c578063313ce5671461036a575f80fd5b806303fd2a451461022b57806306fdde031461025d578063070afb801461027e578063095ea7b31461029d575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061024061dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b348015610268575f80fd5b506102716106ee565b6040516102549190611de6565b348015610289575f80fd5b50600754610240906001600160a01b031681565b3480156102a8575f80fd5b506102bc6102b7366004611e45565b61077e565b6040519015158152602001610254565b3480156102d7575f80fd5b506102407f000000000000000000000000000000000000000000000000000000000000000081565b34801561030a575f80fd5b506002545b604051908152602001610254565b348015610328575f80fd5b506102bc610337366004611e6f565b610794565b348015610347575f80fd5b506102bc610356366004611ead565b600f6020525f908152604090205460ff1681565b348015610375575f80fd5b5060405160128152602001610254565b348015610390575f80fd5b50600b546102bc9060ff1681565b3480156103a9575f80fd5b506102bc6103b8366004611e45565b610841565b3480156103c8575f80fd5b5061030f60095481565b3480156103dd575f80fd5b50600654610240906001600160a01b031681565b3480156103fc575f80fd5b50600b546102bc90610100900460ff1681565b34801561041a575f80fd5b506102bc610429366004611ead565b6001600160a01b03165f908152600e602052604090205460ff1690565b348015610451575f80fd5b50600b546102bc9062010000900460ff1681565b348015610470575f80fd5b5061030f61047f366004611ead565b6001600160a01b03165f9081526020819052604090205490565b3480156104a4575f80fd5b506104ad61087c565b005b3480156104ba575f80fd5b506102bc6108b1565b3480156104ce575f80fd5b506104ad6104dd366004611ed5565b6108ed565b3480156104ed575f80fd5b506104ad6104fc366004611ead565b610941565b34801561050c575f80fd5b506104ad6109ca565b348015610520575f80fd5b5061030f60085481565b348015610535575f80fd5b506005546001600160a01b0316610240565b348015610552575f80fd5b50610271610a07565b348015610566575f80fd5b506104ad610575366004611ed5565b610a16565b348015610585575f80fd5b5061030f600d5481565b34801561059a575f80fd5b506104ad610ace565b3480156105ae575f80fd5b506102bc6105bd366004611e45565b610ccf565b3480156105cd575f80fd5b506102bc6105dc366004611e45565b610d67565b3480156105ec575f80fd5b5061030f600c5481565b348015610601575f80fd5b506104ad610d73565b348015610615575f80fd5b506102bc610624366004611ead565b60106020525f908152604090205460ff1681565b348015610643575f80fd5b5061030f600a5481565b348015610658575f80fd5b506104ad610667366004611f0c565b610da9565b348015610677575f80fd5b506104ad610686366004611ed5565b610f0b565b348015610696575f80fd5b5061030f6106a5366004611f0c565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106da575f80fd5b506104ad6106e9366004611ead565b610f93565b6060600380546106fd90611f38565b80601f016020809104026020016040519081016040528092919081815260200182805461072990611f38565b80156107745780601f1061074b57610100808354040283529160200191610774565b820191905f5260205f20905b81548152906001019060200180831161075757829003601f168201915b5050505050905090565b5f61078a33848461102e565b5060015b92915050565b5f6107a0848484611151565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610836853385840361102e565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161078a918590610877908690611f84565b61102e565b6005546001600160a01b031633146108a65760405162461bcd60e51b815260040161082090611f97565b6108af5f61174e565b565b6005545f906001600160a01b031633146108dd5760405162461bcd60e51b815260040161082090611f97565b50600b805460ff19169055600190565b6005546001600160a01b031633146109175760405162461bcd60e51b815260040161082090611f97565b6001600160a01b03919091165f908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461096b5760405162461bcd60e51b815260040161082090611f97565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f81146109b4576040519150601f19603f3d011682016040523d82523d5f602084013e6109b9565b606091505b50509050806109c6575f80fd5b5050565b6005546001600160a01b031633146109f45760405162461bcd60e51b815260040161082090611f97565b600b805462ffff00191662010100179055565b6060600480546106fd90611f38565b6005546001600160a01b03163314610a405760405162461bcd60e51b815260040161082090611f97565b6006546001600160a01b0390811690831603610ac45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610820565b6109c6828261179f565b6005546001600160a01b03163314610af85760405162461bcd60e51b815260040161082090611f97565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b789190611fcc565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610be3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c079190611fcc565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610c51573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c759190611fcc565b600680546001600160a01b0319166001600160a01b03929092169182179055610c9f9060016108ed565b600654610cb6906001600160a01b0316600161179f565b305f908152602081905260409020546108af90476117f2565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610d505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610820565b610d5d338585840361102e565b5060019392505050565b5f61078a338484611151565b6005546001600160a01b03163314610d9d5760405162461bcd60e51b815260040161082090611f97565b6002600c819055600d55565b6005546001600160a01b03163314610dd35760405162461bcd60e51b815260040161082090611f97565b6001600160a01b038216610e295760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610820565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610e6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e919190611fe7565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610ee1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f059190611ffe565b50505050565b6005546001600160a01b03163314610f355760405162461bcd60e51b815260040161082090611f97565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610fbd5760405162461bcd60e51b815260040161082090611f97565b6001600160a01b0381166110225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610820565b61102b8161174e565b50565b6001600160a01b0383166110905760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610820565b6001600160a01b0382166110f15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610820565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111775760405162461bcd60e51b815260040161082090612019565b6001600160a01b03821661119d5760405162461bcd60e51b81526004016108209061205e565b805f036111b4576111af83835f6118f5565b505050565b600b5460ff16156114cb576005546001600160a01b038481169116148015906111eb57506005546001600160a01b03838116911614155b80156111ff57506001600160a01b03821615155b801561121657506001600160a01b03821661dead14155b801561122c5750600654600160a01b900460ff16155b156113d657600b54610100900460ff166112c2576001600160a01b0383165f908152600e602052604090205460ff168061127d57506001600160a01b0382165f908152600e602052604090205460ff165b6112c25760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610820565b6001600160a01b0383165f9081526010602052604090205460ff16801561130157506001600160a01b0382165f908152600f602052604090205460ff16155b156113db5760085481111561136d5760405162461bcd60e51b815260206004820152602c60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526b36b0bc2a3c20b6b7bab73a1760a11b6064820152608401610820565b600a546001600160a01b0383165f908152602081905260409020546113929083611f84565b11156113d65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610820565b61153b565b6001600160a01b0382165f9081526010602052604090205460ff16801561141a57506001600160a01b0383165f908152600f602052604090205460ff16155b15611487576008548111156113d65760405162461bcd60e51b815260206004820152602d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526c1036b0bc2a3c20b6b7bab73a1760991b6064820152608401610820565b6001600160a01b0382165f908152600f602052604090205460ff166113d657600a546001600160a01b0383165f908152602081905260409020546113929083611f84565b6001600160a01b0383165f908152600e602052604090205460ff1615801561150a57506001600160a01b0383165f908152600f602052604090205460ff165b801561152057506001600160a01b03821661dead145b1561153b576006546111af906001600160a01b031682611a47565b305f90815260208190526040902054600954811080159081906115665750600b5462010000900460ff165b801561157c5750600654600160a01b900460ff16155b801561158a57506009548310155b80156115ad57506001600160a01b0384165f9081526010602052604090205460ff165b80156115d157506001600160a01b0385165f908152600e602052604090205460ff16155b80156115f557506001600160a01b0384165f908152600e602052604090205460ff16155b15611623576006805460ff60a01b1916600160a01b179055611615611b92565b6006805460ff60a01b191690555b6006546001600160a01b0386165f908152600e602052604090205460ff600160a01b90920482161591168061166f57506001600160a01b0385165f908152600e602052604090205460ff165b1561167757505f5b5f811561173a576001600160a01b0386165f9081526010602052604090205460ff1680156116a657505f600d54115b156116d2576116cb60646116c5600d5488611c1390919063ffffffff16565b90611c25565b905061171c565b6001600160a01b0387165f9081526010602052604090205460ff1680156116fa57505f600c54115b1561171c5761171960646116c5600c5488611c1390919063ffffffff16565b90505b801561172d5761172d8730836118f5565b61173781866120a1565b94505b6117458787876118f5565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b61181d307f00000000000000000000000000000000000000000000000000000000000000008461102e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f806118636005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156118c9573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906118ee91906120b4565b5050505050565b6001600160a01b03831661191b5760405162461bcd60e51b815260040161082090612019565b6001600160a01b0382166119415760405162461bcd60e51b81526004016108209061205e565b6001600160a01b0383165f90815260208190526040902054818110156119b85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610820565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906119ee908490611f84565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a3a91815260200190565b60405180910390a3610f05565b6001600160a01b038216611aa75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610820565b6001600160a01b0382165f9081526020819052604090205481811015611b1a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610820565b6001600160a01b0383165f908152602081905260408120838303905560028054849290611b489084906120a1565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b305f9081526020819052604081205490819003611bac5750565b600954611bbb9061044c6120df565b811115611bd457600954611bd19061044c6120df565b90505b611bdd81611c30565b6007546040516001600160a01b03909116904780156108fc02915f818181858888f193505050501580156109c6573d5f803e3d5ffd5b5f611c1e82846120df565b9392505050565b5f611c1e82846120f6565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611c6357611c63612115565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cdf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d039190611fcc565b81600181518110611d1657611d16612115565b60200260200101906001600160a01b031690816001600160a01b031681525050611d61307f00000000000000000000000000000000000000000000000000000000000000008461102e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611db59085905f90869030904290600401612129565b5f604051808303815f87803b158015611dcc575f80fd5b505af1158015611dde573d5f803e3d5ffd5b505050505050565b5f6020808352835180828501525f5b81811015611e1157858101830151858201604001528201611df5565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461102b575f80fd5b5f8060408385031215611e56575f80fd5b8235611e6181611e31565b946020939093013593505050565b5f805f60608486031215611e81575f80fd5b8335611e8c81611e31565b92506020840135611e9c81611e31565b929592945050506040919091013590565b5f60208284031215611ebd575f80fd5b8135611c1e81611e31565b801515811461102b575f80fd5b5f8060408385031215611ee6575f80fd5b8235611ef181611e31565b91506020830135611f0181611ec8565b809150509250929050565b5f8060408385031215611f1d575f80fd5b8235611f2881611e31565b91506020830135611f0181611e31565b600181811c90821680611f4c57607f821691505b602082108103611f6a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561078e5761078e611f70565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611fdc575f80fd5b8151611c1e81611e31565b5f60208284031215611ff7575f80fd5b5051919050565b5f6020828403121561200e575f80fd5b8151611c1e81611ec8565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561078e5761078e611f70565b5f805f606084860312156120c6575f80fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761078e5761078e611f70565b5f8261211057634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156121775784516001600160a01b031683529383019391830191600101612152565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122082ee4fe3e9ab7b7dfca5be291f98b45dee68060228879fc716126caaecb2034664736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x608060405260043610610220575f3560e01c80637571336a1161011e578063a457c2d7116100a8578063bb8115081161006d578063bb81150814610638578063bc205ad31461064d578063c02466681461066c578063dd62ed3e1461068b578063f2fde38b146106cf575f80fd5b8063a457c2d7146105a3578063a9059cbb146105c2578063ab4ebc1e146105e1578063b14c5947146105f6578063b62496f51461060a575f80fd5b80638da5cb5b116100ee5780638da5cb5b1461052a57806395d89b41146105475780639a7a23d61461055b5780639c0b9d741461057a5780639e78fb4f1461058f575f80fd5b80637571336a146104c35780637ca8448a146104e25780638a8c523c146105015780638c0b5e2214610515575f80fd5b80633582ad23116101aa5780634fbee1931161016f5780634fbee1931461040f5780636ddd17131461044657806370a0823114610465578063715018a614610499578063751039fc146104af575f80fd5b80633582ad2314610385578063395093511461039e5780634676ce8b146103bd57806349bd5a5e146103d25780634ada218b146103f1575f80fd5b80631694505e116101f05780631694505e146102cc57806318160ddd146102ff57806323b872dd1461031d57806323d932741461033c578063313ce5671461036a575f80fd5b806303fd2a451461022b57806306fdde031461025d578063070afb801461027e578063095ea7b31461029d575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061024061dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b348015610268575f80fd5b506102716106ee565b6040516102549190611de6565b348015610289575f80fd5b50600754610240906001600160a01b031681565b3480156102a8575f80fd5b506102bc6102b7366004611e45565b61077e565b6040519015158152602001610254565b3480156102d7575f80fd5b506102407f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561030a575f80fd5b506002545b604051908152602001610254565b348015610328575f80fd5b506102bc610337366004611e6f565b610794565b348015610347575f80fd5b506102bc610356366004611ead565b600f6020525f908152604090205460ff1681565b348015610375575f80fd5b5060405160128152602001610254565b348015610390575f80fd5b50600b546102bc9060ff1681565b3480156103a9575f80fd5b506102bc6103b8366004611e45565b610841565b3480156103c8575f80fd5b5061030f60095481565b3480156103dd575f80fd5b50600654610240906001600160a01b031681565b3480156103fc575f80fd5b50600b546102bc90610100900460ff1681565b34801561041a575f80fd5b506102bc610429366004611ead565b6001600160a01b03165f908152600e602052604090205460ff1690565b348015610451575f80fd5b50600b546102bc9062010000900460ff1681565b348015610470575f80fd5b5061030f61047f366004611ead565b6001600160a01b03165f9081526020819052604090205490565b3480156104a4575f80fd5b506104ad61087c565b005b3480156104ba575f80fd5b506102bc6108b1565b3480156104ce575f80fd5b506104ad6104dd366004611ed5565b6108ed565b3480156104ed575f80fd5b506104ad6104fc366004611ead565b610941565b34801561050c575f80fd5b506104ad6109ca565b348015610520575f80fd5b5061030f60085481565b348015610535575f80fd5b506005546001600160a01b0316610240565b348015610552575f80fd5b50610271610a07565b348015610566575f80fd5b506104ad610575366004611ed5565b610a16565b348015610585575f80fd5b5061030f600d5481565b34801561059a575f80fd5b506104ad610ace565b3480156105ae575f80fd5b506102bc6105bd366004611e45565b610ccf565b3480156105cd575f80fd5b506102bc6105dc366004611e45565b610d67565b3480156105ec575f80fd5b5061030f600c5481565b348015610601575f80fd5b506104ad610d73565b348015610615575f80fd5b506102bc610624366004611ead565b60106020525f908152604090205460ff1681565b348015610643575f80fd5b5061030f600a5481565b348015610658575f80fd5b506104ad610667366004611f0c565b610da9565b348015610677575f80fd5b506104ad610686366004611ed5565b610f0b565b348015610696575f80fd5b5061030f6106a5366004611f0c565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106da575f80fd5b506104ad6106e9366004611ead565b610f93565b6060600380546106fd90611f38565b80601f016020809104026020016040519081016040528092919081815260200182805461072990611f38565b80156107745780601f1061074b57610100808354040283529160200191610774565b820191905f5260205f20905b81548152906001019060200180831161075757829003601f168201915b5050505050905090565b5f61078a33848461102e565b5060015b92915050565b5f6107a0848484611151565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610836853385840361102e565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161078a918590610877908690611f84565b61102e565b6005546001600160a01b031633146108a65760405162461bcd60e51b815260040161082090611f97565b6108af5f61174e565b565b6005545f906001600160a01b031633146108dd5760405162461bcd60e51b815260040161082090611f97565b50600b805460ff19169055600190565b6005546001600160a01b031633146109175760405162461bcd60e51b815260040161082090611f97565b6001600160a01b03919091165f908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461096b5760405162461bcd60e51b815260040161082090611f97565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f81146109b4576040519150601f19603f3d011682016040523d82523d5f602084013e6109b9565b606091505b50509050806109c6575f80fd5b5050565b6005546001600160a01b031633146109f45760405162461bcd60e51b815260040161082090611f97565b600b805462ffff00191662010100179055565b6060600480546106fd90611f38565b6005546001600160a01b03163314610a405760405162461bcd60e51b815260040161082090611f97565b6006546001600160a01b0390811690831603610ac45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610820565b6109c6828261179f565b6005546001600160a01b03163314610af85760405162461bcd60e51b815260040161082090611f97565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b789190611fcc565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610be3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c079190611fcc565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610c51573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c759190611fcc565b600680546001600160a01b0319166001600160a01b03929092169182179055610c9f9060016108ed565b600654610cb6906001600160a01b0316600161179f565b305f908152602081905260409020546108af90476117f2565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610d505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610820565b610d5d338585840361102e565b5060019392505050565b5f61078a338484611151565b6005546001600160a01b03163314610d9d5760405162461bcd60e51b815260040161082090611f97565b6002600c819055600d55565b6005546001600160a01b03163314610dd35760405162461bcd60e51b815260040161082090611f97565b6001600160a01b038216610e295760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610820565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610e6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e919190611fe7565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610ee1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f059190611ffe565b50505050565b6005546001600160a01b03163314610f355760405162461bcd60e51b815260040161082090611f97565b6001600160a01b0382165f818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610fbd5760405162461bcd60e51b815260040161082090611f97565b6001600160a01b0381166110225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610820565b61102b8161174e565b50565b6001600160a01b0383166110905760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610820565b6001600160a01b0382166110f15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610820565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111775760405162461bcd60e51b815260040161082090612019565b6001600160a01b03821661119d5760405162461bcd60e51b81526004016108209061205e565b805f036111b4576111af83835f6118f5565b505050565b600b5460ff16156114cb576005546001600160a01b038481169116148015906111eb57506005546001600160a01b03838116911614155b80156111ff57506001600160a01b03821615155b801561121657506001600160a01b03821661dead14155b801561122c5750600654600160a01b900460ff16155b156113d657600b54610100900460ff166112c2576001600160a01b0383165f908152600e602052604090205460ff168061127d57506001600160a01b0382165f908152600e602052604090205460ff165b6112c25760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610820565b6001600160a01b0383165f9081526010602052604090205460ff16801561130157506001600160a01b0382165f908152600f602052604090205460ff16155b156113db5760085481111561136d5760405162461bcd60e51b815260206004820152602c60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526b36b0bc2a3c20b6b7bab73a1760a11b6064820152608401610820565b600a546001600160a01b0383165f908152602081905260409020546113929083611f84565b11156113d65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610820565b61153b565b6001600160a01b0382165f9081526010602052604090205460ff16801561141a57506001600160a01b0383165f908152600f602052604090205460ff16155b15611487576008548111156113d65760405162461bcd60e51b815260206004820152602d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526c1036b0bc2a3c20b6b7bab73a1760991b6064820152608401610820565b6001600160a01b0382165f908152600f602052604090205460ff166113d657600a546001600160a01b0383165f908152602081905260409020546113929083611f84565b6001600160a01b0383165f908152600e602052604090205460ff1615801561150a57506001600160a01b0383165f908152600f602052604090205460ff165b801561152057506001600160a01b03821661dead145b1561153b576006546111af906001600160a01b031682611a47565b305f90815260208190526040902054600954811080159081906115665750600b5462010000900460ff165b801561157c5750600654600160a01b900460ff16155b801561158a57506009548310155b80156115ad57506001600160a01b0384165f9081526010602052604090205460ff165b80156115d157506001600160a01b0385165f908152600e602052604090205460ff16155b80156115f557506001600160a01b0384165f908152600e602052604090205460ff16155b15611623576006805460ff60a01b1916600160a01b179055611615611b92565b6006805460ff60a01b191690555b6006546001600160a01b0386165f908152600e602052604090205460ff600160a01b90920482161591168061166f57506001600160a01b0385165f908152600e602052604090205460ff165b1561167757505f5b5f811561173a576001600160a01b0386165f9081526010602052604090205460ff1680156116a657505f600d54115b156116d2576116cb60646116c5600d5488611c1390919063ffffffff16565b90611c25565b905061171c565b6001600160a01b0387165f9081526010602052604090205460ff1680156116fa57505f600c54115b1561171c5761171960646116c5600c5488611c1390919063ffffffff16565b90505b801561172d5761172d8730836118f5565b61173781866120a1565b94505b6117458787876118f5565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b61181d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461102e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f806118636005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156118c9573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906118ee91906120b4565b5050505050565b6001600160a01b03831661191b5760405162461bcd60e51b815260040161082090612019565b6001600160a01b0382166119415760405162461bcd60e51b81526004016108209061205e565b6001600160a01b0383165f90815260208190526040902054818110156119b85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610820565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906119ee908490611f84565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a3a91815260200190565b60405180910390a3610f05565b6001600160a01b038216611aa75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610820565b6001600160a01b0382165f9081526020819052604090205481811015611b1a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610820565b6001600160a01b0383165f908152602081905260408120838303905560028054849290611b489084906120a1565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b305f9081526020819052604081205490819003611bac5750565b600954611bbb9061044c6120df565b811115611bd457600954611bd19061044c6120df565b90505b611bdd81611c30565b6007546040516001600160a01b03909116904780156108fc02915f818181858888f193505050501580156109c6573d5f803e3d5ffd5b5f611c1e82846120df565b9392505050565b5f611c1e82846120f6565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611c6357611c63612115565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cdf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d039190611fcc565b81600181518110611d1657611d16612115565b60200260200101906001600160a01b031690816001600160a01b031681525050611d61307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461102e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611db59085905f90869030904290600401612129565b5f604051808303815f87803b158015611dcc575f80fd5b505af1158015611dde573d5f803e3d5ffd5b505050505050565b5f6020808352835180828501525f5b81811015611e1157858101830151858201604001528201611df5565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461102b575f80fd5b5f8060408385031215611e56575f80fd5b8235611e6181611e31565b946020939093013593505050565b5f805f60608486031215611e81575f80fd5b8335611e8c81611e31565b92506020840135611e9c81611e31565b929592945050506040919091013590565b5f60208284031215611ebd575f80fd5b8135611c1e81611e31565b801515811461102b575f80fd5b5f8060408385031215611ee6575f80fd5b8235611ef181611e31565b91506020830135611f0181611ec8565b809150509250929050565b5f8060408385031215611f1d575f80fd5b8235611f2881611e31565b91506020830135611f0181611e31565b600181811c90821680611f4c57607f821691505b602082108103611f6a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561078e5761078e611f70565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611fdc575f80fd5b8151611c1e81611e31565b5f60208284031215611ff7575f80fd5b5051919050565b5f6020828403121561200e575f80fd5b8151611c1e81611ec8565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561078e5761078e611f70565b5f805f606084860312156120c6575f80fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761078e5761078e611f70565b5f8261211057634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156121775784516001600160a01b031683529383019391830191600101612152565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122082ee4fe3e9ab7b7dfca5be291f98b45dee68060228879fc716126caaecb2034664736f6c63430008140033
Deployed Bytecode Sourcemap
31084:10211:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31250:46;;;;;;;;;;;;31289:6;31250:46;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;31250:46:0;;;;;;;;9043:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31335:26::-;;;;;;;;;;-1:-1:-1;31335:26:0;;;;-1:-1:-1;;;;;31335:26:0;;;11210:169;;;;;;;;;;-1:-1:-1;11210:169:0;;;;;:::i;:::-;;:::i;:::-;;;1396:14:1;;1389:22;1371:41;;1359:2;1344:18;11210:169:0;1231:187:1;31157:51:0;;;;;;;;;;;;;;;10163:108;;;;;;;;;;-1:-1:-1;10251:12:0;;10163:108;;;1804:25:1;;;1792:2;1777:18;10163:108:0;1658:177:1;11861:492:0;;;;;;;;;;-1:-1:-1;11861:492:0;;;;;:::i;:::-;;:::i;31803:57::-;;;;;;;;;;-1:-1:-1;31803:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10005:93;;;;;;;;;;-1:-1:-1;10005:93:0;;10088:2;2695:36:1;;2683:2;2668:18;10005:93:0;2553:184:1;31474:32:0;;;;;;;;;;-1:-1:-1;31474:32:0;;;;;;;;12762:215;;;;;;;;;;-1:-1:-1;12762:215:0;;;;;:::i;:::-;;:::i;31403:28::-;;;;;;;;;;;;;;;;31215;;;;;;;;;;-1:-1:-1;31215:28:0;;;;-1:-1:-1;;;;;31215:28:0;;;31513:34;;;;;;;;;;-1:-1:-1;31513:34:0;;;;;;;;;;;35513:126;;;;;;;;;;-1:-1:-1;35513:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;35603:28:0;35579:4;35603:28;;;:19;:28;;;;;;;;;35513:126;31554:31;;;;;;;;;;-1:-1:-1;31554:31:0;;;;;;;;;;;10334:127;;;;;;;;;;-1:-1:-1;10334:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10435:18:0;10408:7;10435:18;;;;;;;;;;;;10334:127;2561:103;;;;;;;;;;;;;:::i;:::-;;33999:120;;;;;;;;;;;;;:::i;34127:161::-;;;;;;;;;;-1:-1:-1;34127:161:0;;;;;:::i;:::-;;:::i;41096:196::-;;;;;;;;;;-1:-1:-1;41096:196:0;;;;;:::i;:::-;;:::i;33834:113::-;;;;;;;;;;;;;:::i;31370:26::-;;;;;;;;;;;;;;;;1910:87;;;;;;;;;;-1:-1:-1;1983:6:0;;-1:-1:-1;;;;;1983:6:0;1910:87;;9262:104;;;;;;;;;;;;;:::i;35005:304::-;;;;;;;;;;-1:-1:-1;35005:304:0;;;;;:::i;:::-;;:::i;31627:27::-;;;;;;;;;;;;;;;;34296:393;;;;;;;;;;;;;:::i;13480:413::-;;;;;;;;;;-1:-1:-1;13480:413:0;;;;;:::i;:::-;;:::i;10674:175::-;;;;;;;;;;-1:-1:-1;10674:175:0;;;;;:::i;:::-;;:::i;31594:26::-;;;;;;;;;;;;;;;;34697:110;;;;;;;;;;;;;:::i;32018:57::-;;;;;;;;;;-1:-1:-1;32018:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31438:27;;;;;;;;;;;;;;;;40800:288;;;;;;;;;;-1:-1:-1;40800:288:0;;;;;:::i;:::-;;:::i;34815:182::-;;;;;;;;;;-1:-1:-1;34815:182:0;;;;;:::i;:::-;;:::i;10912:151::-;;;;;;;;;;-1:-1:-1;10912:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11028:18:0;;;11001:7;11028:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10912:151;2819:201;;;;;;;;;;-1:-1:-1;2819:201:0;;;;;:::i;:::-;;:::i;9043:100::-;9097:13;9130:5;9123:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9043:100;:::o;11210:169::-;11293:4;11310:39;859:10;11333:7;11342:6;11310:8;:39::i;:::-;-1:-1:-1;11367:4:0;11210:169;;;;;:::o;11861:492::-;12001:4;12018:36;12028:6;12036:9;12047:6;12018:9;:36::i;:::-;-1:-1:-1;;;;;12094:19:0;;12067:24;12094:19;;;:11;:19;;;;;;;;859:10;12094:33;;;;;;;;12146:26;;;;12138:79;;;;-1:-1:-1;;;12138:79:0;;4232:2:1;12138:79: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;;12138:79:0;;;;;;;;;12253:57;12262:6;859:10;12303:6;12284:16;:25;12253:8;:57::i;:::-;-1:-1:-1;12341:4:0;;11861:492;-1:-1:-1;;;;11861:492:0:o;12762:215::-;859:10;12850:4;12899:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12899:34:0;;;;;;;;;;12850:4;;12867:80;;12890:7;;12899:47;;12936:10;;12899:47;:::i;:::-;12867:8;:80::i;2561:103::-;1983:6;;-1:-1:-1;;;;;1983:6:0;859:10;2130:23;2122:68;;;;-1:-1:-1;;;2122:68:0;;;;;;;:::i;:::-;2626:30:::1;2653:1;2626:18;:30::i;:::-;2561:103::o:0;33999:120::-;1983:6;;34051:4;;-1:-1:-1;;;;;1983:6:0;859:10;2130:23;2122:68;;;;-1:-1:-1;;;2122:68:0;;;;;;;:::i;:::-;-1:-1:-1;34068:13:0::1;:21:::0;;-1:-1:-1;;34068:21:0::1;::::0;;;33999:120;:::o;34127:161::-;1983:6;;-1:-1:-1;;;;;1983:6:0;859:10;2130:23;2122:68;;;;-1:-1:-1;;;2122:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34240:33:0;;;::::1;;::::0;;;:25:::1;:33;::::0;;;;:40;;-1:-1:-1;;34240:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34127:161::o;41096:196::-;1983:6;;-1:-1:-1;;;;;1983:6:0;859:10;2130:23;2122:68;;;;-1:-1:-1;;;2122:68:0;;;;;;;:::i;:::-;41169:12:::1;41187:6;-1:-1:-1::0;;;;;41187:11:0::1;41220:21;41187:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41168:89;;;41276:7;41268:16;;;::::0;::::1;;41157:135;41096:196:::0;:::o;33834:113::-;1983:6;;-1:-1:-1;;;;;1983:6:0;859:10;2130:23;2122:68;;;;-1:-1:-1;;;2122:68:0;;;;;;;:::i;:::-;33889:14:::1;:21:::0;;-1:-1:-1;;33921:18:0;;;;;33834:113::o;9262:104::-;9318:13;9351:7;9344:14;;;;;:::i;35005:304::-;1983:6;;-1:-1:-1;;;;;1983:6:0;859:10;2130:23;2122:68;;;;-1:-1:-1;;;2122:68:0;;;;;;;:::i;:::-;35149:13:::1;::::0;-1:-1:-1;;;;;35149:13:0;;::::1;35141:21:::0;;::::1;::::0;35119:128:::1;;;::::0;-1:-1:-1;;;35119:128:0;;5474:2:1;35119: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;;35119:128:0::1;5272:421:1::0;35119:128:0::1;35260:41;35289:4;35295:5;35260:28;:41::i;34296:393::-:0;1983:6;;-1:-1:-1;;;;;1983:6:0;859:10;2130:23;2122:68;;;;-1:-1:-1;;;2122:68:0;;;;;;;:::i;:::-;34382:15:::1;-1:-1:-1::0;;;;;34382:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34364:69:0::1;;34442:4;34449:15;-1:-1:-1::0;;;;;34449:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34364:108;::::0;-1:-1:-1;;;;;;34364:108:0::1;::::0;;;;;;-1:-1:-1;;;;;6184:15:1;;;34364:108:0::1;::::0;::::1;6166:34:1::0;6236:15;;6216:18;;;6209:43;6101:18;;34364:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34348:13;:124:::0;;-1:-1:-1;;;;;;34348:124:0::1;-1:-1:-1::0;;;;;34348:124:0;;;::::1;::::0;;::::1;::::0;;34483:55:::1;::::0;-1:-1:-1;34483:25:0::1;:55::i;:::-;34586:13;::::0;34549:58:::1;::::0;-1:-1:-1;;;;;34586:13:0::1;::::0;34549:28:::1;:58::i;:::-;34651:4;10408:7:::0;10435:18;;;;;;;;;;;34620:61:::1;::::0;34659:21:::1;34620:12;:61::i;13480:413::-:0;859:10;13573:4;13617:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13617:34:0;;;;;;;;;;13670:35;;;;13662:85;;;;-1:-1:-1;;;13662:85:0;;6465:2:1;13662:85:0;;;6447:21:1;6504:2;6484:18;;;6477:30;6543:34;6523:18;;;6516:62;-1:-1:-1;;;6594:18:1;;;6587:35;6639:19;;13662:85:0;6263:401:1;13662:85:0;13783:67;859:10;13806:7;13834:15;13815:16;:34;13783:8;:67::i;:::-;-1:-1:-1;13881:4:0;;13480:413;-1:-1:-1;;;13480:413:0:o;10674:175::-;10760:4;10777:42;859:10;10801:9;10812:6;10777:9;:42::i;34697:110::-;1983:6;;-1:-1:-1;;;;;1983:6:0;859:10;2130:23;2122:68;;;;-1:-1:-1;;;2122:68:0;;;;;;;:::i;:::-;34771:1:::1;34757:11;:15:::0;;;34783:12:::1;:16:::0;34697:110::o;40800:288::-;1983:6;;-1:-1:-1;;;;;1983:6:0;859:10;2130:23;2122:68;;;;-1:-1:-1;;;2122:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40895:20:0;::::1;40887:59;;;::::0;-1:-1:-1;;;40887:59:0;;6871:2:1;40887:59:0::1;::::0;::::1;6853:21:1::0;6910:2;6890:18;;;6883:30;6949:28;6929:18;;;6922:56;6995:18;;40887:59:0::1;6669:350:1::0;40887:59:0::1;40984:39;::::0;-1:-1:-1;;;40984:39:0;;41017:4:::1;40984:39;::::0;::::1;160:51:1::0;40957:24:0::1;::::0;-1:-1:-1;;;;;40984:24:0;::::1;::::0;::::1;::::0;133:18:1;;40984:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41034:46;::::0;-1:-1:-1;;;41034:46:0;;-1:-1:-1;;;;;7405:32:1;;;41034:46:0::1;::::0;::::1;7387:51:1::0;7454:18;;;7447:34;;;40957:66:0;;-1:-1:-1;41034:23:0;;::::1;::::0;::::1;::::0;7360:18:1;;41034:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40876:212;40800:288:::0;;:::o;34815:182::-;1983:6;;-1:-1:-1;;;;;1983:6:0;859:10;2130:23;2122:68;;;;-1:-1:-1;;;2122:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34900:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;34900:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34955:34;;1371:41:1;;;34955:34:0::1;::::0;1344:18:1;34955:34:0::1;;;;;;;34815:182:::0;;:::o;2819:201::-;1983:6;;-1:-1:-1;;;;;1983:6:0;859:10;2130:23;2122:68;;;;-1:-1:-1;;;2122:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2908:22:0;::::1;2900:73;;;::::0;-1:-1:-1;;;2900:73:0;;7944:2:1;2900:73:0::1;::::0;::::1;7926:21:1::0;7983:2;7963:18;;;7956:30;8022:34;8002:18;;;7995:62;-1:-1:-1;;;8073:18:1;;;8066:36;8119:19;;2900:73:0::1;7742:402:1::0;2900:73:0::1;2984:28;3003:8;2984:18;:28::i;:::-;2819:201:::0;:::o;17164:380::-;-1:-1:-1;;;;;17300:19:0;;17292:68;;;;-1:-1:-1;;;17292:68:0;;8351:2:1;17292:68:0;;;8333:21:1;8390:2;8370:18;;;8363:30;8429:34;8409:18;;;8402:62;-1:-1:-1;;;8480:18:1;;;8473:34;8524:19;;17292:68:0;8149:400:1;17292:68:0;-1:-1:-1;;;;;17379:21:0;;17371:68;;;;-1:-1:-1;;;17371:68:0;;8756:2:1;17371:68:0;;;8738:21:1;8795:2;8775:18;;;8768:30;8834:34;8814:18;;;8807:62;-1:-1:-1;;;8885:18:1;;;8878:32;8927:19;;17371:68:0;8554:398:1;17371:68:0;-1:-1:-1;;;;;17452:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17504:32;;1804:25:1;;;17504:32:0;;1777:18:1;17504:32:0;;;;;;;17164:380;;;:::o;35647:3611::-;-1:-1:-1;;;;;35779:18:0;;35771:68;;;;-1:-1:-1;;;35771:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35858:16:0;;35850:64;;;;-1:-1:-1;;;35850:64:0;;;;;;;:::i;:::-;35931:6;35941:1;35931:11;35927:93;;35959:28;35975:4;35981:2;35985:1;35959:15;:28::i;:::-;35647:3611;;;:::o;35927:93::-;36036:13;;;;36032:1815;;;1983:6;;-1:-1:-1;;;;;36088:15:0;;;1983:6;;36088:15;;;;:49;;-1:-1:-1;1983:6:0;;-1:-1:-1;;;;;36124:13:0;;;1983:6;;36124:13;;36088:49;:86;;;;-1:-1:-1;;;;;;36158:16:0;;;;36088:86;:128;;;;-1:-1:-1;;;;;;36195:21:0;;36209:6;36195:21;;36088:128;:158;;;;-1:-1:-1;36238:8:0;;-1:-1:-1;;;36238:8:0;;;;36237:9;36088:158;36066:1601;;;36286:14;;;;;;;36281:224;;-1:-1:-1;;;;;36359:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;36388:23:0;;;;;;:19;:23;;;;;;;;36359:52;36325:160;;;;-1:-1:-1;;;36325:160:0;;9969:2:1;36325:160:0;;;9951:21:1;10008:2;9988:18;;;9981:30;-1:-1:-1;;;10027:18:1;;;10020:52;10089:18;;36325:160:0;9767:346:1;36325:160:0;-1:-1:-1;;;;;36579:31:0;;;;;;:25;:31;;;;;;;;:86;;;;-1:-1:-1;;;;;;36636:29:0;;;;;;:25;:29;;;;;;;;36635:30;36579:86;36553:1099;;;36752:11;;36742:6;:21;;36708:151;;;;-1:-1:-1;;;36708:151:0;;10320:2:1;36708:151:0;;;10302:21:1;10359:2;10339:18;;;10332:30;10398:34;10378:18;;;10371:62;-1:-1:-1;;;10449:18:1;;;10442:42;10501:19;;36708:151:0;10118:408:1;36708:151:0;36942:12;;-1:-1:-1;;;;;10435:18:0;;10408:7;10435:18;;;;;;;;;;;36916:22;;:6;:22;:::i;:::-;:38;;36882:143;;;;-1:-1:-1;;;36882:143:0;;10733:2:1;36882:143:0;;;10715:21:1;10772:2;10752:18;;;10745:30;-1:-1:-1;;;10791:18:1;;;10784:49;10850:18;;36882:143:0;10531:343:1;36882:143:0;36032:1815;;36553:1099;-1:-1:-1;;;;;37123:29:0;;;;;;:25;:29;;;;;;;;:86;;;;-1:-1:-1;;;;;;37178:31:0;;;;;;:25;:31;;;;;;;;37177:32;37123:86;37097:555;;;37296:11;;37286:6;:21;;37252:152;;;;-1:-1:-1;;;37252:152:0;;11081:2:1;37252:152:0;;;11063:21:1;11120:2;11100:18;;;11093:30;11159:34;11139:18;;;11132:62;-1:-1:-1;;;11210:18:1;;;11203:43;11263:19;;37252:152:0;10879:409:1;37097:555:0;-1:-1:-1;;;;;37435:29:0;;;;;;:25;:29;;;;;;;;37430:222;;37549:12;;-1:-1:-1;;;;;10435:18:0;;10408:7;10435:18;;;;;;;;;;;37523:22;;:6;:22;:::i;36032:1815::-;-1:-1:-1;;;;;37689:25:0;;;;;;:19;:25;;;;;;;;37688:26;:61;;;;-1:-1:-1;;;;;;37718:31:0;;;;;;:25;:31;;;;;;;;37688:61;:75;;;;-1:-1:-1;;;;;;37753:10:0;;31289:6;37753:10;37688:75;37684:163;;;37792:13;;37780:34;;-1:-1:-1;;;;;37792:13:0;37807:6;37780:11;:34::i;37684:163::-;37908:4;37859:28;10435:18;;;;;;;;;;;37966:13;;37942:37;;;;;;;38010:35;;-1:-1:-1;38034:11:0;;;;;;;38010:35;:61;;;;-1:-1:-1;38063:8:0;;-1:-1:-1;;;38063:8:0;;;;38062:9;38010:61;:101;;;;;38098:13;;38088:6;:23;;38010:101;:147;;;;-1:-1:-1;;;;;;38128:29:0;;;;;;:25;:29;;;;;;;;38010:147;:190;;;;-1:-1:-1;;;;;;38175:25:0;;;;;;:19;:25;;;;;;;;38174:26;38010:190;:231;;;;-1:-1:-1;;;;;;38218:23:0;;;;;;:19;:23;;;;;;;;38217:24;38010:231;37992:363;;;38268:8;:15;;-1:-1:-1;;;;38268:15:0;-1:-1:-1;;;38268:15:0;;;38300:10;:8;:10::i;:::-;38327:8;:16;;-1:-1:-1;;;;38327:16:0;;;37992:363;38383:8;;-1:-1:-1;;;;;38493:25:0;;38367:12;38493:25;;;:19;:25;;;;;;38383:8;-1:-1:-1;;;38383:8:0;;;;;38382:9;;38493:25;;:52;;-1:-1:-1;;;;;;38522:23:0;;;;;;:19;:23;;;;;;;;38493:52;38489:100;;;-1:-1:-1;38572:5:0;38489:100;38601:12;38706:7;38702:503;;;-1:-1:-1;;;;;38758:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;38806:1;38791:12;;:16;38758:49;38754:302;;;38835:33;38864:3;38835:24;38846:12;;38835:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;38828:40;;38754:302;;;-1:-1:-1;;;;;38930:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;38979:1;38965:11;;:15;38930:50;38926:130;;;39008:32;39036:3;39008:23;39019:11;;39008:6;:10;;:23;;;;:::i;:32::-;39001:39;;38926:130;39076:8;;39072:91;;39105:42;39121:4;39135;39142;39105:15;:42::i;:::-;39179:14;39189:4;39179:14;;:::i;:::-;;;38702:503;39217:33;39233:4;39239:2;39243:6;39217:15;:33::i;:::-;35760:3498;;;;35647:3611;;;:::o;3180:191::-;3273:6;;;-1:-1:-1;;;;;3290:17:0;;;-1:-1:-1;;;;;;3290:17:0;;;;;;;3323:40;;3273:6;;;3290:17;3273:6;;3323:40;;3254:16;;3323:40;3243:128;3180:191;:::o;35317:188::-;-1:-1:-1;;;;;35400:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;35400:39:0;;;;;;;;;;35457:40;;35400:39;;:31;35457:40;;;35317:188;;:::o;39863:513::-;40011:62;40028:4;40043:15;40061:11;40011:8;:62::i;:::-;40116:15;-1:-1:-1;;;;;40116:31:0;;40155:9;40188:4;40208:11;40234:1;40277;40320:7;1983:6;;-1:-1:-1;;;;;1983:6:0;;1910:87;40320:7;40116:252;;;;;;-1:-1:-1;;;;;;40116:252:0;;;-1:-1:-1;;;;;11785:15:1;;;40116:252:0;;;11767:34:1;11817:18;;;11810:34;;;;11860:18;;;11853:34;;;;11903:18;;;11896:34;11967:15;;;11946:19;;;11939:44;40342:15:0;11999:19:1;;;11992:35;11701:19;;40116:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;39863:513;;:::o;14383:733::-;-1:-1:-1;;;;;14523:20:0;;14515:70;;;;-1:-1:-1;;;14515:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14604:23:0;;14596:71;;;;-1:-1:-1;;;14596:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14764:17:0;;14740:21;14764:17;;;;;;;;;;;14800:23;;;;14792:74;;;;-1:-1:-1;;;14792:74:0;;12551:2:1;14792:74:0;;;12533:21:1;12590:2;12570:18;;;12563:30;12629:34;12609:18;;;12602:62;-1:-1:-1;;;12680:18:1;;;12673:36;12726:19;;14792:74:0;12349:402:1;14792:74:0;-1:-1:-1;;;;;14902:17:0;;;:9;:17;;;;;;;;;;;14922:22;;;14902:42;;14966:20;;;;;;;;:30;;14938:6;;14902:9;14966:30;;14938:6;;14966:30;:::i;:::-;;;;;;;;15031:9;-1:-1:-1;;;;;15014:35:0;15023:6;-1:-1:-1;;;;;15014:35:0;;15042:6;15014:35;;;;1804:25:1;;1792:2;1777:18;;1658:177;15014:35:0;;;;;;;;15062:46;35647:3611;16135:591;-1:-1:-1;;;;;16219:21:0;;16211:67;;;;-1:-1:-1;;;16211:67:0;;12958:2:1;16211:67:0;;;12940:21:1;12997:2;12977:18;;;12970:30;13036:34;13016:18;;;13009:62;-1:-1:-1;;;13087:18:1;;;13080:31;13128:19;;16211:67:0;12756:397:1;16211:67:0;-1:-1:-1;;;;;16378:18:0;;16353:22;16378:18;;;;;;;;;;;16415:24;;;;16407:71;;;;-1:-1:-1;;;16407:71:0;;13360:2:1;16407:71:0;;;13342:21:1;13399:2;13379:18;;;13372:30;13438:34;13418:18;;;13411:62;-1:-1:-1;;;13489:18:1;;;13482:32;13531:19;;16407:71:0;13158:398:1;16407:71:0;-1:-1:-1;;;;;16514:18:0;;:9;:18;;;;;;;;;;16535:23;;;16514:44;;16580:12;:22;;16552:6;;16514:9;16580:22;;16552:6;;16580:22;:::i;:::-;;;;-1:-1:-1;;16620:37:0;;1804:25:1;;;16646:1:0;;-1:-1:-1;;;;;16620:37:0;;;;;1792:2:1;1777:18;16620:37:0;;;;;;;35647:3611;;;:::o;40384:408::-;40467:4;40423:23;10435:18;;;;;;;;;;;;40490:20;;;40486:59;;40527:7;40384:408::o;40486:59::-;40579:13;;:20;;40595:4;40579:20;:::i;:::-;40561:15;:38;40557:109;;;40634:13;;:20;;40650:4;40634:20;:::i;:::-;40616:38;;40557:109;40678:33;40695:15;40678:16;:33::i;:::-;40740:11;;40732:52;;-1:-1:-1;;;;;40740:11:0;;;;40762:21;40732:52;;;;;40740:11;40732:52;40740:11;40732:52;40762:21;40740:11;40732:52;;;;;;;;;;;;;;;;;;;22296:98;22354:7;22381:5;22385:1;22381;:5;:::i;:::-;22374:12;22296:98;-1:-1:-1;;;22296:98:0:o;22695:::-;22753:7;22780:5;22784:1;22780;:5;:::i;39266:589::-;39416:16;;;39430:1;39416:16;;;;;;;;39392:21;;39416:16;;;;;;;;;;-1:-1:-1;39416:16:0;39392:40;;39461:4;39443;39448:1;39443:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;39443:23:0;;;-1:-1:-1;;;;;39443:23:0;;;;;39487:15;-1:-1:-1;;;;;39487:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39477:4;39482:1;39477:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;39477:32:0;;;-1:-1:-1;;;;;39477:32:0;;;;;39522:62;39539:4;39554:15;39572:11;39522:8;:62::i;:::-;39623:224;;-1:-1:-1;;;39623:224:0;;-1:-1:-1;;;;;39623:15:0;:66;;;;:224;;39704:11;;39730:1;;39774:4;;39801;;39821:15;;39623:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39321:534;39266:589;:::o;222:548:1:-;334:4;363:2;392;381:9;374:21;424:6;418:13;467:6;462:2;451:9;447:18;440:34;492:1;502:140;516:6;513:1;510:13;502:140;;;611:14;;;607:23;;601:30;577:17;;;596:2;573:26;566:66;531:10;;502:140;;;506:3;691:1;686:2;677:6;666:9;662:22;658:31;651:42;761:2;754;750:7;745:2;737:6;733:15;729:29;718:9;714:45;710:54;702:62;;;;222:548;;;;:::o;775:131::-;-1:-1:-1;;;;;850:31:1;;840:42;;830:70;;896:1;893;886:12;911:315;979:6;987;1040:2;1028:9;1019:7;1015:23;1011:32;1008:52;;;1056:1;1053;1046:12;1008:52;1095:9;1082:23;1114:31;1139:5;1114:31;:::i;:::-;1164:5;1216:2;1201:18;;;;1188:32;;-1:-1:-1;;;911:315:1:o;1840:456::-;1917:6;1925;1933;1986:2;1974:9;1965:7;1961:23;1957:32;1954:52;;;2002:1;1999;1992:12;1954:52;2041:9;2028:23;2060:31;2085:5;2060:31;:::i;:::-;2110:5;-1:-1:-1;2167:2:1;2152:18;;2139:32;2180:33;2139:32;2180:33;:::i;:::-;1840:456;;2232:7;;-1:-1:-1;;;2286:2:1;2271:18;;;;2258:32;;1840:456::o;2301:247::-;2360:6;2413:2;2401:9;2392:7;2388:23;2384:32;2381:52;;;2429:1;2426;2419:12;2381:52;2468:9;2455:23;2487:31;2512:5;2487:31;:::i;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;5698:251::-;5768:6;5821:2;5809:9;5800:7;5796:23;5792:32;5789:52;;;5837:1;5834;5827:12;5789:52;5869:9;5863:16;5888:31;5913:5;5888:31;:::i;7024:184::-;7094:6;7147:2;7135:9;7126:7;7122:23;7118:32;7115:52;;;7163:1;7160;7153:12;7115:52;-1:-1:-1;7186:16:1;;7024:184;-1:-1:-1;7024:184:1:o;7492:245::-;7559:6;7612:2;7600:9;7591:7;7587:23;7583:32;7580:52;;;7628:1;7625;7618:12;7580:52;7660:9;7654:16;7679:28;7701:5;7679:28;:::i;8957:401::-;9159:2;9141:21;;;9198:2;9178:18;;;9171:30;9237:34;9232:2;9217:18;;9210:62;-1:-1:-1;;;9303:2:1;9288:18;;9281:35;9348:3;9333:19;;8957:401::o;9363:399::-;9565:2;9547:21;;;9604:2;9584:18;;;9577:30;9643:34;9638:2;9623:18;;9616:62;-1:-1:-1;;;9709:2:1;9694:18;;9687:33;9752:3;9737:19;;9363:399::o;11293:128::-;11360:9;;;11381:11;;;11378:37;;;11395:18;;:::i;12038:306::-;12126:6;12134;12142;12195:2;12183:9;12174:7;12170:23;12166:32;12163:52;;;12211:1;12208;12201:12;12163:52;12240:9;12234:16;12224:26;;12290:2;12279:9;12275:18;12269:25;12259:35;;12334:2;12323:9;12319:18;12313:25;12303:35;;12038:306;;;;;:::o;13561:168::-;13634:9;;;13665;;13682:15;;;13676:22;;13662:37;13652:71;;13703:18;;:::i;13734:217::-;13774:1;13800;13790:132;;13844:10;13839:3;13835:20;13832:1;13825:31;13879:4;13876:1;13869:15;13907:4;13904:1;13897:15;13790:132;-1:-1:-1;13936:9:1;;13734:217::o;14088:127::-;14149:10;14144:3;14140:20;14137:1;14130:31;14180:4;14177:1;14170:15;14204:4;14201:1;14194:15;14220:980;14482:4;14530:3;14519:9;14515:19;14561:6;14550:9;14543:25;14587:2;14625:6;14620:2;14609:9;14605:18;14598:34;14668:3;14663:2;14652:9;14648:18;14641:31;14692:6;14727;14721:13;14758:6;14750;14743:22;14796:3;14785:9;14781:19;14774:26;;14835:2;14827:6;14823:15;14809:29;;14856:1;14866:195;14880:6;14877:1;14874:13;14866:195;;;14945:13;;-1:-1:-1;;;;;14941:39:1;14929:52;;15036:15;;;;15001:12;;;;14977:1;14895:9;14866:195;;;-1:-1:-1;;;;;;;15117:32:1;;;;15112:2;15097:18;;15090:60;-1:-1:-1;;;15181:3:1;15166:19;15159:35;15078:3;14220:980;-1:-1:-1;;;14220:980:1:o
Swarm Source
ipfs://82ee4fe3e9ab7b7dfca5be291f98b45dee68060228879fc716126caaecb20346
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.