ERC-20
Overview
Max Total Supply
1,000,000,000 WEB7
Holders
64
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,947,458.992852111093562056 WEB7Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WEB7
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-30 */ // SPDX-License-Identifier: Unlicensed pragma solidity 0.8.15; /** * @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); } /** * @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); } 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 Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. * 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 guidelines: functions revert instead * of 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 _createSupply(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 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SignedSafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SignedSafeMath { /** * @dev Returns the multiplication of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { return a * b; } /** * @dev Returns the integer division of two signed integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(int256 a, int256 b) internal pure returns (int256) { return a / b; } /** * @dev Returns the subtraction of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { return a - b; } /** * @dev Returns the addition of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { return a + b; } } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. 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; } } } /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits"); return uint224(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits"); return uint96(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits. */ function toUint8(uint256 value) internal pure returns (uint8) { require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128) { require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits"); return int128(value); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64) { require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits"); return int64(value); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32) { require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits"); return int32(value); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16) { require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits"); return int16(value); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits. * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8) { require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits"); return int8(value); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256"); return int256(value); } } contract WEB7 is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public immutable uniswapV2Pair; bool private inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public maxTransactionAmount = 1000000000 * (10**18); uint256 public swapTokensAtAmount = 300000 * (10**18); uint256 public liquidityFee = 1; uint256 public marketingFee = 4; address payable public marketingWallet = payable(0x1166236991F0717767A20677b5e5125Ba3bef587); // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; event ExcludeFromFees(address indexed account, bool isExcluded); event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensIntoLiqudity, uint256 ethReceived ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor(address _owner) ERC20("Web of Truth", "WEB7") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; // exclude from paying fees or having max transaction amount excludeFromFees(_owner, true); excludeFromFees(marketingWallet, true); excludeFromFees(address(this), true); /* an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _createSupply(_owner, 1000000000 * (10**18)); } 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(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]){ require(amount <= maxTransactionAmount, "amount exceeds the maxTransactionAmount."); } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount; if( overMinTokenBalance && !inSwapAndLiquify && to == uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = swapTokensAtAmount; swapAndLiquify(contractTokenBalance); } // if any account belongs to _isExcludedFromFee account then remove the fee if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { uint256 fees = amount.mul(liquidityFee.add(marketingFee)).div(100); amount = amount.sub(fees); if (fees > 0) { super._transfer(from, address(this), fees); } } super._transfer(from, to, amount); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 tokensForLiquidity = contractTokenBalance.mul(liquidityFee).div(liquidityFee.add(marketingFee)); // split the Liquidity token balance into halves uint256 half = tokensForLiquidity.div(2); uint256 otherHalf = tokensForLiquidity.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); // swap and Send to Marketing address swapTokensForEth(contractTokenBalance.sub(tokensForLiquidity)); marketingWallet.transfer(address(this).balance); emit SwapAndLiquify(half, newBalance); } 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(); if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) { _approve(address(this), address(uniswapV2Router), ~uint256(0)); } // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function setFee(uint256 _liquidityFee, uint256 _marketingFee) public onlyOwner { require(_liquidityFee.add(_marketingFee) <= 10, "tax too high"); liquidityFee = _liquidityFee; marketingFee = _marketingFee; } function setMaxTransaction(uint256 _maxTxAmount) public onlyOwner { maxTransactionAmount = _maxTxAmount; require(maxTransactionAmount >= totalSupply().div(300), "value too high"); } function excludeFromFees(address account, bool excluded) public onlyOwner { require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'"); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } receive() external payable { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"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":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","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":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"setMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526006805460ff60a81b1916600160a81b1790556b033b2e3c9fd0803ce8000000600755693f870857a3e0e380000060085560016009556004600a55600b80546001600160a01b031916731166236991f0717767a20677b5e5125ba3bef5871790553480156200007257600080fd5b5060405162001f6338038062001f6383398101604081905262000095916200057b565b6040518060400160405280600c81526020016b0aecac440decc40a8e4eae8d60a31b815250604051806040016040528060048152602001635745423760e01b8152508160039081620000e8919062000651565b506004620000f7828262000651565b505050620001146200010e620002f760201b60201c565b620002fb565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200016e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019491906200057b565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020891906200057b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000256573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027c91906200057b565b600680546001600160a01b0319166001600160a01b038581169190911790915581166080529050620002b08360016200034d565b600b54620002c9906001600160a01b031660016200034d565b620002d63060016200034d565b620002ee836b033b2e3c9fd0803ce800000062000491565b50505062000744565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b0382166000908152600c602052604090205481151560ff909116151503620004325760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401620003a4565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004e95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003a4565b8060026000828254620004fd91906200071d565b90915550506001600160a01b038216600090815260208190526040812080548392906200052c9084906200071d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b6000602082840312156200058e57600080fd5b81516001600160a01b0381168114620005a657600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005d857607f821691505b602082108103620005f957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200057657600081815260208120601f850160051c81016020861015620006285750805b601f850160051c820191505b81811015620006495782815560010162000634565b505050505050565b81516001600160401b038111156200066d576200066d620005ad565b62000685816200067e8454620005c3565b84620005ff565b602080601f831160018114620006bd5760008415620006a45750858301515b600019600386901b1c1916600185901b17855562000649565b600085815260208120601f198616915b82811015620006ee57888601518255948401946001909101908401620006cd565b50858210156200070d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082198211156200073f57634e487b7160e01b600052601160045260246000fd5b500190565b6080516117fc62000767600039600081816102cc0152610d7b01526117fc6000f3fe6080604052600436106101a05760003560e01c8063715018a6116100ec578063ab5a18871161008a578063c8c8ebe411610064578063c8c8ebe4146104d4578063dd62ed3e146104ea578063e2f4560514610530578063f2fde38b1461054657600080fd5b8063ab5a188714610474578063c024666814610494578063c49b9a80146104b457600080fd5b806395d89b41116100c657806395d89b411461040957806398118cb41461041e578063a457c2d714610434578063a9059cbb1461045457600080fd5b8063715018a6146103b657806375f0a874146103cb5780638da5cb5b146103eb57600080fd5b806339509351116101595780634fbee193116101335780634fbee1931461030f57806352f7c988146103485780636b67c4df1461036a57806370a082311461038057600080fd5b8063395093511461029a57806349bd5a5e146102ba5780634a74bb02146102ee57600080fd5b806306fdde03146101ac578063095ea7b3146101d75780631694505e1461020757806318160ddd1461023f57806323b872dd1461025e578063313ce5671461027e57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101c1610566565b6040516101ce91906113aa565b60405180910390f35b3480156101e357600080fd5b506101f76101f2366004611414565b6105f8565b60405190151581526020016101ce565b34801561021357600080fd5b50600654610227906001600160a01b031681565b6040516001600160a01b0390911681526020016101ce565b34801561024b57600080fd5b506002545b6040519081526020016101ce565b34801561026a57600080fd5b506101f7610279366004611440565b61060e565b34801561028a57600080fd5b50604051601281526020016101ce565b3480156102a657600080fd5b506101f76102b5366004611414565b6106bd565b3480156102c657600080fd5b506102277f000000000000000000000000000000000000000000000000000000000000000081565b3480156102fa57600080fd5b506006546101f790600160a81b900460ff1681565b34801561031b57600080fd5b506101f761032a366004611481565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561035457600080fd5b5061036861036336600461149e565b6106f9565b005b34801561037657600080fd5b50610250600a5481565b34801561038c57600080fd5b5061025061039b366004611481565b6001600160a01b031660009081526020819052604090205490565b3480156103c257600080fd5b50610368610777565b3480156103d757600080fd5b50600b54610227906001600160a01b031681565b3480156103f757600080fd5b506005546001600160a01b0316610227565b34801561041557600080fd5b506101c16107ad565b34801561042a57600080fd5b5061025060095481565b34801561044057600080fd5b506101f761044f366004611414565b6107bc565b34801561046057600080fd5b506101f761046f366004611414565b610855565b34801561048057600080fd5b5061036861048f3660046114c0565b610862565b3480156104a057600080fd5b506103686104af3660046114ee565b6108eb565b3480156104c057600080fd5b506103686104cf366004611523565b6109f7565b3480156104e057600080fd5b5061025060075481565b3480156104f657600080fd5b5061025061050536600461153e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561053c57600080fd5b5061025060085481565b34801561055257600080fd5b50610368610561366004611481565b610a79565b60606003805461057590611577565b80601f01602080910402602001604051908101604052809291908181526020018280546105a190611577565b80156105ee5780601f106105c3576101008083540402835291602001916105ee565b820191906000526020600020905b8154815290600101906020018083116105d157829003601f168201915b5050505050905090565b6000610605338484610b11565b50600192915050565b600061061b848484610c35565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106a55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6106b28533858403610b11565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106059185906106f49086906115c7565b610b11565b6005546001600160a01b031633146107235760405162461bcd60e51b815260040161069c906115df565b600a61072f8383610e79565b111561076c5760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b604482015260640161069c565b600991909155600a55565b6005546001600160a01b031633146107a15760405162461bcd60e51b815260040161069c906115df565b6107ab6000610e8c565b565b60606004805461057590611577565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561083e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161069c565b61084b3385858403610b11565b5060019392505050565b6000610605338484610c35565b6005546001600160a01b0316331461088c5760405162461bcd60e51b815260040161069c906115df565b60078190556108a661012c6108a060025490565b90610ede565b60075410156108e85760405162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40e8dede40d0d2ced60931b604482015260640161069c565b50565b6005546001600160a01b031633146109155760405162461bcd60e51b815260040161069c906115df565b6001600160a01b0382166000908152600c602052604090205481151560ff9091161515036109985760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b606482015260840161069c565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610a215760405162461bcd60e51b815260040161069c906115df565b60068054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610a6e90831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610aa35760405162461bcd60e51b815260040161069c906115df565b6001600160a01b038116610b085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069c565b6108e881610e8c565b6001600160a01b038316610b735760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161069c565b6001600160a01b038216610bd45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161069c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c5b5760405162461bcd60e51b815260040161069c90611614565b6001600160a01b038216610c815760405162461bcd60e51b815260040161069c90611659565b80600003610c9a57610c9583836000610eea565b505050565b6001600160a01b0383166000908152600c602052604090205460ff16158015610cdc57506001600160a01b0382166000908152600c602052604090205460ff16155b15610d4457600754811115610d445760405162461bcd60e51b815260206004820152602860248201527f616d6f756e74206578636565647320746865206d61785472616e73616374696f6044820152673720b6b7bab73a1760c11b606482015260840161069c565b3060009081526020819052604090205460085481108015908190610d725750600654600160a01b900460ff16155b8015610daf57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b8015610dc45750600654600160a81b900460ff165b15610dd7576008549150610dd78261103f565b6001600160a01b0385166000908152600c602052604090205460ff16158015610e1957506001600160a01b0384166000908152600c602052604090205460ff16155b15610e67576000610e4660646108a0610e3f600a54600954610e7990919063ffffffff16565b8790611151565b9050610e52848261115d565b93508015610e6557610e65863083610eea565b505b610e72858585610eea565b5050505050565b6000610e8582846115c7565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610e85828461169c565b6001600160a01b038316610f105760405162461bcd60e51b815260040161069c90611614565b6001600160a01b038216610f365760405162461bcd60e51b815260040161069c90611659565b6001600160a01b03831660009081526020819052604090205481811015610fae5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161069c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610fe59084906115c7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161103191815260200190565b60405180910390a350505050565b6006805460ff60a01b1916600160a01b179055600a546009546000916110769161106891610e79565b6009546108a0908590611151565b90506000611085826002610ede565b90506000611093838361115d565b90504761109f83611169565b60006110ab478361115d565b90506110b783826112f4565b6110c96110c4878761115d565b611169565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611102573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506006805460ff60a01b1916905550505050565b6000610e8582846116be565b6000610e8582846116dd565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061119e5761119e6116f4565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121b919061170a565b8160018151811061122e5761122e6116f4565b6001600160a01b0392831660209182029290920181019190915260065430600090815260018352604080822092909416815291522054821115611285576006546112859030906001600160a01b0316600019610b11565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906112be908590600090869030904290600401611727565b600060405180830381600087803b1580156112d857600080fd5b505af11580156112ec573d6000803e3d6000fd5b505050505050565b6006546001600160a01b031663f305d71982308560008061131d6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611385573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e729190611798565b600060208083528351808285015260005b818110156113d7578581018301518582016040015282016113bb565b818111156113e9576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146108e857600080fd5b6000806040838503121561142757600080fd5b8235611432816113ff565b946020939093013593505050565b60008060006060848603121561145557600080fd5b8335611460816113ff565b92506020840135611470816113ff565b929592945050506040919091013590565b60006020828403121561149357600080fd5b8135610e85816113ff565b600080604083850312156114b157600080fd5b50508035926020909101359150565b6000602082840312156114d257600080fd5b5035919050565b803580151581146114e957600080fd5b919050565b6000806040838503121561150157600080fd5b823561150c816113ff565b915061151a602084016114d9565b90509250929050565b60006020828403121561153557600080fd5b610e85826114d9565b6000806040838503121561155157600080fd5b823561155c816113ff565b9150602083013561156c816113ff565b809150509250929050565b600181811c9082168061158b57607f821691505b6020821081036115ab57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156115da576115da6115b1565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000826116b957634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156116d8576116d86115b1565b500290565b6000828210156116ef576116ef6115b1565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561171c57600080fd5b8151610e85816113ff565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117775784516001600160a01b031683529383019391830191600101611752565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156117ad57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212200dd9b50fd963165bf4e781d61259027636fee6e9f6e53fe369491f5df938865e64736f6c634300080f003300000000000000000000000086682f651c5f8edfa1878f64f53bdc7c7e54325b
Deployed Bytecode
0x6080604052600436106101a05760003560e01c8063715018a6116100ec578063ab5a18871161008a578063c8c8ebe411610064578063c8c8ebe4146104d4578063dd62ed3e146104ea578063e2f4560514610530578063f2fde38b1461054657600080fd5b8063ab5a188714610474578063c024666814610494578063c49b9a80146104b457600080fd5b806395d89b41116100c657806395d89b411461040957806398118cb41461041e578063a457c2d714610434578063a9059cbb1461045457600080fd5b8063715018a6146103b657806375f0a874146103cb5780638da5cb5b146103eb57600080fd5b806339509351116101595780634fbee193116101335780634fbee1931461030f57806352f7c988146103485780636b67c4df1461036a57806370a082311461038057600080fd5b8063395093511461029a57806349bd5a5e146102ba5780634a74bb02146102ee57600080fd5b806306fdde03146101ac578063095ea7b3146101d75780631694505e1461020757806318160ddd1461023f57806323b872dd1461025e578063313ce5671461027e57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101c1610566565b6040516101ce91906113aa565b60405180910390f35b3480156101e357600080fd5b506101f76101f2366004611414565b6105f8565b60405190151581526020016101ce565b34801561021357600080fd5b50600654610227906001600160a01b031681565b6040516001600160a01b0390911681526020016101ce565b34801561024b57600080fd5b506002545b6040519081526020016101ce565b34801561026a57600080fd5b506101f7610279366004611440565b61060e565b34801561028a57600080fd5b50604051601281526020016101ce565b3480156102a657600080fd5b506101f76102b5366004611414565b6106bd565b3480156102c657600080fd5b506102277f0000000000000000000000004f8624de6f79e200b5c5cd2c24543904e84b675181565b3480156102fa57600080fd5b506006546101f790600160a81b900460ff1681565b34801561031b57600080fd5b506101f761032a366004611481565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561035457600080fd5b5061036861036336600461149e565b6106f9565b005b34801561037657600080fd5b50610250600a5481565b34801561038c57600080fd5b5061025061039b366004611481565b6001600160a01b031660009081526020819052604090205490565b3480156103c257600080fd5b50610368610777565b3480156103d757600080fd5b50600b54610227906001600160a01b031681565b3480156103f757600080fd5b506005546001600160a01b0316610227565b34801561041557600080fd5b506101c16107ad565b34801561042a57600080fd5b5061025060095481565b34801561044057600080fd5b506101f761044f366004611414565b6107bc565b34801561046057600080fd5b506101f761046f366004611414565b610855565b34801561048057600080fd5b5061036861048f3660046114c0565b610862565b3480156104a057600080fd5b506103686104af3660046114ee565b6108eb565b3480156104c057600080fd5b506103686104cf366004611523565b6109f7565b3480156104e057600080fd5b5061025060075481565b3480156104f657600080fd5b5061025061050536600461153e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561053c57600080fd5b5061025060085481565b34801561055257600080fd5b50610368610561366004611481565b610a79565b60606003805461057590611577565b80601f01602080910402602001604051908101604052809291908181526020018280546105a190611577565b80156105ee5780601f106105c3576101008083540402835291602001916105ee565b820191906000526020600020905b8154815290600101906020018083116105d157829003601f168201915b5050505050905090565b6000610605338484610b11565b50600192915050565b600061061b848484610c35565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106a55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6106b28533858403610b11565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106059185906106f49086906115c7565b610b11565b6005546001600160a01b031633146107235760405162461bcd60e51b815260040161069c906115df565b600a61072f8383610e79565b111561076c5760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b604482015260640161069c565b600991909155600a55565b6005546001600160a01b031633146107a15760405162461bcd60e51b815260040161069c906115df565b6107ab6000610e8c565b565b60606004805461057590611577565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561083e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161069c565b61084b3385858403610b11565b5060019392505050565b6000610605338484610c35565b6005546001600160a01b0316331461088c5760405162461bcd60e51b815260040161069c906115df565b60078190556108a661012c6108a060025490565b90610ede565b60075410156108e85760405162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40e8dede40d0d2ced60931b604482015260640161069c565b50565b6005546001600160a01b031633146109155760405162461bcd60e51b815260040161069c906115df565b6001600160a01b0382166000908152600c602052604090205481151560ff9091161515036109985760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b606482015260840161069c565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610a215760405162461bcd60e51b815260040161069c906115df565b60068054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610a6e90831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610aa35760405162461bcd60e51b815260040161069c906115df565b6001600160a01b038116610b085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069c565b6108e881610e8c565b6001600160a01b038316610b735760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161069c565b6001600160a01b038216610bd45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161069c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c5b5760405162461bcd60e51b815260040161069c90611614565b6001600160a01b038216610c815760405162461bcd60e51b815260040161069c90611659565b80600003610c9a57610c9583836000610eea565b505050565b6001600160a01b0383166000908152600c602052604090205460ff16158015610cdc57506001600160a01b0382166000908152600c602052604090205460ff16155b15610d4457600754811115610d445760405162461bcd60e51b815260206004820152602860248201527f616d6f756e74206578636565647320746865206d61785472616e73616374696f6044820152673720b6b7bab73a1760c11b606482015260840161069c565b3060009081526020819052604090205460085481108015908190610d725750600654600160a01b900460ff16155b8015610daf57507f0000000000000000000000004f8624de6f79e200b5c5cd2c24543904e84b67516001600160a01b0316846001600160a01b0316145b8015610dc45750600654600160a81b900460ff165b15610dd7576008549150610dd78261103f565b6001600160a01b0385166000908152600c602052604090205460ff16158015610e1957506001600160a01b0384166000908152600c602052604090205460ff16155b15610e67576000610e4660646108a0610e3f600a54600954610e7990919063ffffffff16565b8790611151565b9050610e52848261115d565b93508015610e6557610e65863083610eea565b505b610e72858585610eea565b5050505050565b6000610e8582846115c7565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610e85828461169c565b6001600160a01b038316610f105760405162461bcd60e51b815260040161069c90611614565b6001600160a01b038216610f365760405162461bcd60e51b815260040161069c90611659565b6001600160a01b03831660009081526020819052604090205481811015610fae5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161069c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610fe59084906115c7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161103191815260200190565b60405180910390a350505050565b6006805460ff60a01b1916600160a01b179055600a546009546000916110769161106891610e79565b6009546108a0908590611151565b90506000611085826002610ede565b90506000611093838361115d565b90504761109f83611169565b60006110ab478361115d565b90506110b783826112f4565b6110c96110c4878761115d565b611169565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611102573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506006805460ff60a01b1916905550505050565b6000610e8582846116be565b6000610e8582846116dd565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061119e5761119e6116f4565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121b919061170a565b8160018151811061122e5761122e6116f4565b6001600160a01b0392831660209182029290920181019190915260065430600090815260018352604080822092909416815291522054821115611285576006546112859030906001600160a01b0316600019610b11565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906112be908590600090869030904290600401611727565b600060405180830381600087803b1580156112d857600080fd5b505af11580156112ec573d6000803e3d6000fd5b505050505050565b6006546001600160a01b031663f305d71982308560008061131d6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611385573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e729190611798565b600060208083528351808285015260005b818110156113d7578581018301518582016040015282016113bb565b818111156113e9576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146108e857600080fd5b6000806040838503121561142757600080fd5b8235611432816113ff565b946020939093013593505050565b60008060006060848603121561145557600080fd5b8335611460816113ff565b92506020840135611470816113ff565b929592945050506040919091013590565b60006020828403121561149357600080fd5b8135610e85816113ff565b600080604083850312156114b157600080fd5b50508035926020909101359150565b6000602082840312156114d257600080fd5b5035919050565b803580151581146114e957600080fd5b919050565b6000806040838503121561150157600080fd5b823561150c816113ff565b915061151a602084016114d9565b90509250929050565b60006020828403121561153557600080fd5b610e85826114d9565b6000806040838503121561155157600080fd5b823561155c816113ff565b9150602083013561156c816113ff565b809150509250929050565b600181811c9082168061158b57607f821691505b6020821081036115ab57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156115da576115da6115b1565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000826116b957634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156116d8576116d86115b1565b500290565b6000828210156116ef576116ef6115b1565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561171c57600080fd5b8151610e85816113ff565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117775784516001600160a01b031683529383019391830191600101611752565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156117ad57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212200dd9b50fd963165bf4e781d61259027636fee6e9f6e53fe369491f5df938865e64736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000086682f651c5f8edfa1878f64f53bdc7c7e54325b
-----Decoded View---------------
Arg [0] : _owner (address): 0x86682f651C5F8edfA1878f64f53bdC7c7e54325B
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000086682f651c5f8edfa1878f64f53bdc7c7e54325b
Deployed Bytecode Sourcemap
39622:6968:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5485:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7652:169;;;;;;;;;;-1:-1:-1;7652:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;7652:169:0;1072:187:1;39698:41:0;;;;;;;;;;-1:-1:-1;39698:41:0;;;;-1:-1:-1;;;;;39698:41:0;;;;;;-1:-1:-1;;;;;1455:32:1;;;1437:51;;1425:2;1410:18;39698:41:0;1264:230:1;6605:108:0;;;;;;;;;;-1:-1:-1;6693:12:0;;6605:108;;;1645:25:1;;;1633:2;1618:18;6605:108:0;1499:177:1;8303:492:0;;;;;;;;;;-1:-1:-1;8303:492:0;;;;;:::i;:::-;;:::i;6447:93::-;;;;;;;;;;-1:-1:-1;6447:93:0;;6530:2;2284:36:1;;2272:2;2257:18;6447:93:0;2142:184:1;9204:215:0;;;;;;;;;;-1:-1:-1;9204:215:0;;;;;:::i;:::-;;:::i;39746:38::-;;;;;;;;;;;;;;;39829:40;;;;;;;;;;-1:-1:-1;39829:40:0;;;;-1:-1:-1;;;39829:40:0;;;;;;46231:125;;;;;;;;;;-1:-1:-1;46231:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;46320:28:0;46296:4;46320:28;;;:19;:28;;;;;;;;;46231:125;45468:240;;;;;;;;;;-1:-1:-1;45468:240:0;;;;;:::i;:::-;;:::i;:::-;;40044:31;;;;;;;;;;;;;;;;6776:127;;;;;;;;;;-1:-1:-1;6776:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;6877:18:0;6850:7;6877:18;;;;;;;;;;;;6776:127;17015:94;;;;;;;;;;;;;:::i;40082:93::-;;;;;;;;;;-1:-1:-1;40082:93:0;;;;-1:-1:-1;;;;;40082:93:0;;;16364:87;;;;;;;;;;-1:-1:-1;16437:6:0;;-1:-1:-1;;;;;16437:6:0;16364:87;;5704:104;;;;;;;;;;;;;:::i;40006:31::-;;;;;;;;;;;;;;;;9922:413;;;;;;;;;;-1:-1:-1;9922:413:0;;;;;:::i;:::-;;:::i;7116:175::-;;;;;;;;;;-1:-1:-1;7116:175:0;;;;;:::i;:::-;;:::i;45716:204::-;;;;;;;;;;-1:-1:-1;45716:204:0;;;;;:::i;:::-;;:::i;45929:290::-;;;;;;;;;;-1:-1:-1;45929:290:0;;;;;:::i;:::-;;:::i;46368:171::-;;;;;;;;;;-1:-1:-1;46368:171:0;;;;;:::i;:::-;;:::i;39878:59::-;;;;;;;;;;;;;;;;7354:151;;;;;;;;;;-1:-1:-1;7354:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;7470:18:0;;;7443:7;7470:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7354:151;39944:53;;;;;;;;;;;;;;;;17264:192;;;;;;;;;;-1:-1:-1;17264:192:0;;;;;:::i;:::-;;:::i;5485:100::-;5539:13;5572:5;5565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5485:100;:::o;7652:169::-;7735:4;7752:39;3475:10;7775:7;7784:6;7752:8;:39::i;:::-;-1:-1:-1;7809:4:0;7652:169;;;;:::o;8303:492::-;8443:4;8460:36;8470:6;8478:9;8489:6;8460:9;:36::i;:::-;-1:-1:-1;;;;;8536:19:0;;8509:24;8536:19;;;:11;:19;;;;;;;;3475:10;8536:33;;;;;;;;8588:26;;;;8580:79;;;;-1:-1:-1;;;8580:79:0;;5103:2:1;8580:79:0;;;5085:21:1;5142:2;5122:18;;;5115:30;5181:34;5161:18;;;5154:62;-1:-1:-1;;;5232:18:1;;;5225:38;5280:19;;8580:79:0;;;;;;;;;8695:57;8704:6;3475:10;8745:6;8726:16;:25;8695:8;:57::i;:::-;-1:-1:-1;8783:4:0;;8303:492;-1:-1:-1;;;;8303:492:0:o;9204:215::-;3475:10;9292:4;9341:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9341:34:0;;;;;;;;;;9292:4;;9309:80;;9332:7;;9341:47;;9378:10;;9341:47;:::i;:::-;9309:8;:80::i;45468:240::-;16437:6;;-1:-1:-1;;;;;16437:6:0;3475:10;16584:23;16576:68;;;;-1:-1:-1;;;16576:68:0;;;;;;;:::i;:::-;45602:2:::1;45566:32;:13:::0;45584;45566:17:::1;:32::i;:::-;:38;;45558:63;;;::::0;-1:-1:-1;;;45558:63:0;;6138:2:1;45558:63:0::1;::::0;::::1;6120:21:1::0;6177:2;6157:18;;;6150:30;-1:-1:-1;;;6196:18:1;;;6189:42;6248:18;;45558:63:0::1;5936:336:1::0;45558:63:0::1;45632:12;:28:::0;;;;45671:12:::1;:28:::0;45468:240::o;17015:94::-;16437:6;;-1:-1:-1;;;;;16437:6:0;3475:10;16584:23;16576:68;;;;-1:-1:-1;;;16576:68:0;;;;;;;:::i;:::-;17080:21:::1;17098:1;17080:9;:21::i;:::-;17015:94::o:0;5704:104::-;5760:13;5793:7;5786:14;;;;;:::i;9922:413::-;3475:10;10015:4;10059:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10059:34:0;;;;;;;;;;10112:35;;;;10104:85;;;;-1:-1:-1;;;10104:85:0;;6479:2:1;10104:85:0;;;6461:21:1;6518:2;6498:18;;;6491:30;6557:34;6537:18;;;6530:62;-1:-1:-1;;;6608:18:1;;;6601:35;6653:19;;10104:85:0;6277:401:1;10104:85:0;10225:67;3475:10;10248:7;10276:15;10257:16;:34;10225:8;:67::i;:::-;-1:-1:-1;10323:4:0;;9922:413;-1:-1:-1;;;9922:413:0:o;7116:175::-;7202:4;7219:42;3475:10;7243:9;7254:6;7219:9;:42::i;45716:204::-;16437:6;;-1:-1:-1;;;;;16437:6:0;3475:10;16584:23;16576:68;;;;-1:-1:-1;;;16576:68:0;;;;;;;:::i;:::-;45793:20:::1;:35:::0;;;45871:22:::1;45889:3;45871:13;6693:12:::0;;;6605:108;45871:13:::1;:17:::0;::::1;:22::i;:::-;45847:20;;:46;;45839:73;;;::::0;-1:-1:-1;;;45839:73:0;;6885:2:1;45839:73:0::1;::::0;::::1;6867:21:1::0;6924:2;6904:18;;;6897:30;-1:-1:-1;;;6943:18:1;;;6936:44;6997:18;;45839:73:0::1;6683:338:1::0;45839:73:0::1;45716:204:::0;:::o;45929:290::-;16437:6;;-1:-1:-1;;;;;16437:6:0;3475:10;16584:23;16576:68;;;;-1:-1:-1;;;16576:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46022:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;46014:95:::1;;;::::0;-1:-1:-1;;;46014:95:0;;7228:2:1;46014:95:0::1;::::0;::::1;7210:21:1::0;7267:2;7247:18;;;7240:30;7306:34;7286:18;;;7279:62;-1:-1:-1;;;7357:18:1;;;7350:40;7407:19;;46014:95:0::1;7026:406:1::0;46014:95:0::1;-1:-1:-1::0;;;;;46120:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;46120:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;46177:34;;1212:41:1;;;46177:34:0::1;::::0;1185:18:1;46177:34:0::1;;;;;;;45929:290:::0;;:::o;46368:171::-;16437:6;;-1:-1:-1;;;;;16437:6:0;3475:10;16584:23;16576:68;;;;-1:-1:-1;;;16576:68:0;;;;;;;:::i;:::-;46445:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;46445:32:0::1;-1:-1:-1::0;;;;46445:32:0;;::::1;;::::0;;46493:38:::1;::::0;::::1;::::0;::::1;::::0;46469:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;46493:38:0::1;;;;;;;;46368:171:::0;:::o;17264:192::-;16437:6;;-1:-1:-1;;;;;16437:6:0;3475:10;16584:23;16576:68;;;;-1:-1:-1;;;16576:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17353:22:0;::::1;17345:73;;;::::0;-1:-1:-1;;;17345:73:0;;7639:2:1;17345:73:0::1;::::0;::::1;7621:21:1::0;7678:2;7658:18;;;7651:30;7717:34;7697:18;;;7690:62;-1:-1:-1;;;7768:18:1;;;7761:36;7814:19;;17345:73:0::1;7437:402:1::0;17345:73:0::1;17429:19;17439:8;17429:9;:19::i;13614:380::-:0;-1:-1:-1;;;;;13750:19:0;;13742:68;;;;-1:-1:-1;;;13742:68:0;;8046:2:1;13742:68:0;;;8028:21:1;8085:2;8065:18;;;8058:30;8124:34;8104:18;;;8097:62;-1:-1:-1;;;8175:18:1;;;8168:34;8219:19;;13742:68:0;7844:400:1;13742:68:0;-1:-1:-1;;;;;13829:21:0;;13821:68;;;;-1:-1:-1;;;13821:68:0;;8451:2:1;13821:68:0;;;8433:21:1;8490:2;8470:18;;;8463:30;8529:34;8509:18;;;8502:62;-1:-1:-1;;;8580:18:1;;;8573:32;8622:19;;13821:68:0;8249:398:1;13821:68:0;-1:-1:-1;;;;;13902:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13954:32;;1645:25:1;;;13954:32:0;;1618:18:1;13954:32:0;;;;;;;13614:380;;;:::o;41623:1470::-;-1:-1:-1;;;;;41755:18:0;;41747:68;;;;-1:-1:-1;;;41747:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41834:16:0;;41826:64;;;;-1:-1:-1;;;41826:64:0;;;;;;;:::i;:::-;41906:6;41916:1;41906:11;41903:92;;41934:28;41950:4;41956:2;41960:1;41934:15;:28::i;:::-;41623:1470;;;:::o;41903:92::-;-1:-1:-1;;;;;42019:25:0;;;;;;:19;:25;;;;;;;;42018:26;:54;;;;-1:-1:-1;;;;;;42049:23:0;;;;;;:19;:23;;;;;;;;42048:24;42018:54;42015:168;;;42106:20;;42096:6;:30;;42088:83;;;;-1:-1:-1;;;42088:83:0;;9664:2:1;42088:83:0;;;9646:21:1;9703:2;9683:18;;;9676:30;9742:34;9722:18;;;9715:62;-1:-1:-1;;;9793:18:1;;;9786:38;9841:19;;42088:83:0;9462:404:1;42088:83:0;42241:4;42192:28;6877:18;;;;;;;;;;;42319;;42295:42;;;;;;;42374:53;;-1:-1:-1;42411:16:0;;-1:-1:-1;;;42411:16:0;;;;42410:17;42374:53;:89;;;;;42450:13;-1:-1:-1;;;;;42444:19:0;:2;-1:-1:-1;;;;;42444:19:0;;42374:89;:128;;;;-1:-1:-1;42481:21:0;;-1:-1:-1;;;42481:21:0;;;;42374:128;42357:276;;;42552:18;;42529:41;;42585:36;42600:20;42585:14;:36::i;:::-;-1:-1:-1;;;;;42735:25:0;;;;;;:19;:25;;;;;;;;42734:26;:54;;;;-1:-1:-1;;;;;;42765:23:0;;;;;;:19;:23;;;;;;;;42764:24;42734:54;42731:307;;;42802:12;42817:51;42864:3;42817:42;42828:30;42845:12;;42828;;:16;;:30;;;;:::i;:::-;42817:6;;:10;:42::i;:51::-;42802:66;-1:-1:-1;42889:16:0;:6;42802:66;42889:10;:16::i;:::-;42880:25;-1:-1:-1;42926:8:0;;42922:91;;42955:42;42971:4;42985;42992;42955:15;:42::i;:::-;42790:248;42731:307;43050:33;43066:4;43072:2;43076:6;43050:15;:33::i;:::-;41736:1357;;41623:1470;;;:::o;27518:98::-;27576:7;27603:5;27607:1;27603;:5;:::i;:::-;27596:12;27518:98;-1:-1:-1;;;27518:98:0:o;17464:173::-;17539:6;;;-1:-1:-1;;;;;17556:17:0;;;-1:-1:-1;;;;;;17556:17:0;;;;;;;17589:40;;17539:6;;;17556:17;17539:6;;17589:40;;17520:16;;17589:40;17509:128;17464:173;:::o;28655:98::-;28713:7;28740:5;28744:1;28740;:5;:::i;10825:733::-;-1:-1:-1;;;;;10965:20:0;;10957:70;;;;-1:-1:-1;;;10957:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11046:23:0;;11038:71;;;;-1:-1:-1;;;11038:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11206:17:0;;11182:21;11206:17;;;;;;;;;;;11242:23;;;;11234:74;;;;-1:-1:-1;;;11234:74:0;;10295:2:1;11234:74:0;;;10277:21:1;10334:2;10314:18;;;10307:30;10373:34;10353:18;;;10346:62;-1:-1:-1;;;10424:18:1;;;10417:36;10470:19;;11234:74:0;10093:402:1;11234:74:0;-1:-1:-1;;;;;11344:17:0;;;:9;:17;;;;;;;;;;;11364:22;;;11344:42;;11408:20;;;;;;;;:30;;11380:6;;11344:9;11408:30;;11380:6;;11408:30;:::i;:::-;;;;;;;;11473:9;-1:-1:-1;;;;;11456:35:0;11465:6;-1:-1:-1;;;;;11456:35:0;;11484:6;11456:35;;;;1645:25:1;;1633:2;1618:18;;1499:177;11456:35:0;;;;;;;;10946:612;10825:733;;;:::o;43102:1269::-;40652:16;:23;;-1:-1:-1;;;;40652:23:0;-1:-1:-1;;;40652:23:0;;;43276:12:::1;::::0;43259::::1;::::0;40652:23;;43216:74:::1;::::0;43259:30:::1;::::0;:16:::1;:30::i;:::-;43241:12;::::0;43216:38:::1;::::0;:20;;:24:::1;:38::i;:74::-;43187:103:::0;-1:-1:-1;43365:12:0::1;43380:25;43187:103:::0;43403:1:::1;43380:22;:25::i;:::-;43365:40:::0;-1:-1:-1;43416:17:0::1;43436:28;:18:::0;43365:40;43436:22:::1;:28::i;:::-;43416:48:::0;-1:-1:-1;43767:21:0::1;43833:22;43850:4:::0;43833:16:::1;:22::i;:::-;43986:18;44007:41;:21;44033:14:::0;44007:25:::1;:41::i;:::-;43986:62;;44098:35;44111:9;44122:10;44098:12;:35::i;:::-;44193:62;44210:44;:20:::0;44235:18;44210:24:::1;:44::i;:::-;44193:16;:62::i;:::-;44266:15;::::0;:47:::1;::::0;-1:-1:-1;;;;;44266:15:0;;::::1;::::0;44291:21:::1;44266:47:::0;::::1;;;::::0;:15:::1;:47:::0;:15;:47;44291:21;44266:15;:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;44331:32:0::1;::::0;;10674:25:1;;;10730:2;10715:18;;10708:34;;;44331:32:0::1;::::0;10647:18:1;44331:32:0::1;;;;;;;-1:-1:-1::0;;40698:16:0;:24;;-1:-1:-1;;;;40698:24:0;;;-1:-1:-1;;;;43102:1269:0:o;28256:98::-;28314:7;28341:5;28345:1;28341;:5;:::i;27899:98::-;27957:7;27984:5;27988:1;27984;:5;:::i;44379:692::-;44529:16;;;44543:1;44529:16;;;;;;;;44505:21;;44529:16;;;;;;;;;;-1:-1:-1;44529:16:0;44505:40;;44574:4;44556;44561:1;44556:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;44556:23:0;;;:7;;;;;;;;;;:23;;;;44600:15;;:22;;;-1:-1:-1;;;44600:22:0;;;;:15;;;;;:20;;:22;;;;;44556:7;;44600:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44590:4;44595:1;44590:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;44590:32:0;;;:7;;;;;;;;;;:32;;;;44671:15;;44656:4;7443:7;7470:18;;;:11;:18;;;;;;44671:15;;;;7470:27;;;;;;44691:11;-1:-1:-1;44635:156:0;;;44749:15;;44717:62;;44734:4;;-1:-1:-1;;;;;44749:15:0;-1:-1:-1;;44717:8:0;:62::i;:::-;44829:15;;:224;;-1:-1:-1;;;44829:224:0;;-1:-1:-1;;;;;44829:15:0;;;;:66;;:224;;44910:11;;44829:15;;44980:4;;45007;;45027:15;;44829:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44434:637;44379:692;:::o;45079:381::-;45190:15;;-1:-1:-1;;;;;45190:15:0;:31;45229:9;45262:4;45282:11;45190:15;;45394:7;16437:6;;-1:-1:-1;;;;;16437:6:0;;16364:87;45394:7;45190:252;;;;;;-1:-1:-1;;;;;;45190:252:0;;;-1:-1:-1;;;;;12920:15:1;;;45190:252:0;;;12902:34:1;12952:18;;;12945:34;;;;12995:18;;;12988:34;;;;13038:18;;;13031:34;13102:15;;;13081:19;;;13074:44;45416:15:0;13134:19:1;;;13127:35;12836:19;;45190:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1681:456::-;1758:6;1766;1774;1827:2;1815:9;1806:7;1802:23;1798:32;1795:52;;;1843:1;1840;1833:12;1795:52;1882:9;1869:23;1901:31;1926:5;1901:31;:::i;:::-;1951:5;-1:-1:-1;2008:2:1;1993:18;;1980:32;2021:33;1980:32;2021:33;:::i;:::-;1681:456;;2073:7;;-1:-1:-1;;;2127:2:1;2112:18;;;;2099:32;;1681:456::o;2539:247::-;2598:6;2651:2;2639:9;2630:7;2626:23;2622:32;2619:52;;;2667:1;2664;2657:12;2619:52;2706:9;2693:23;2725:31;2750:5;2725:31;:::i;2791:248::-;2859:6;2867;2920:2;2908:9;2899:7;2895:23;2891:32;2888:52;;;2936:1;2933;2926:12;2888:52;-1:-1:-1;;2959:23:1;;;3029:2;3014:18;;;3001:32;;-1:-1:-1;2791:248:1:o;3268:180::-;3327:6;3380:2;3368:9;3359:7;3355:23;3351:32;3348:52;;;3396:1;3393;3386:12;3348:52;-1:-1:-1;3419:23:1;;3268:180;-1:-1:-1;3268:180:1:o;3453:160::-;3518:20;;3574:13;;3567:21;3557:32;;3547:60;;3603:1;3600;3593:12;3547:60;3453:160;;;:::o;3618:315::-;3683:6;3691;3744:2;3732:9;3723:7;3719:23;3715:32;3712:52;;;3760:1;3757;3750:12;3712:52;3799:9;3786:23;3818:31;3843:5;3818:31;:::i;:::-;3868:5;-1:-1:-1;3892:35:1;3923:2;3908:18;;3892:35;:::i;:::-;3882:45;;3618:315;;;;;:::o;3938:180::-;3994:6;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4086:26;4102:9;4086:26;:::i;4123:388::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4307:9;4294:23;4326:31;4351:5;4326:31;:::i;:::-;4376:5;-1:-1:-1;4433:2:1;4418:18;;4405:32;4446:33;4405:32;4446:33;:::i;:::-;4498:7;4488:17;;;4123:388;;;;;:::o;4516:380::-;4595:1;4591:12;;;;4638;;;4659:61;;4713:4;4705:6;4701:17;4691:27;;4659:61;4766:2;4758:6;4755:14;4735:18;4732:38;4729:161;;4812:10;4807:3;4803:20;4800:1;4793:31;4847:4;4844:1;4837:15;4875:4;4872:1;4865:15;4729:161;;4516:380;;;:::o;5310:127::-;5371:10;5366:3;5362:20;5359:1;5352:31;5402:4;5399:1;5392:15;5426:4;5423:1;5416:15;5442:128;5482:3;5513:1;5509:6;5506:1;5503:13;5500:39;;;5519:18;;:::i;:::-;-1:-1:-1;5555:9:1;;5442:128::o;5575:356::-;5777:2;5759:21;;;5796:18;;;5789:30;5855:34;5850:2;5835:18;;5828:62;5922:2;5907:18;;5575:356::o;8652:401::-;8854:2;8836:21;;;8893:2;8873:18;;;8866:30;8932:34;8927:2;8912:18;;8905:62;-1:-1:-1;;;8998:2:1;8983:18;;8976:35;9043:3;9028:19;;8652:401::o;9058:399::-;9260:2;9242:21;;;9299:2;9279:18;;;9272:30;9338:34;9333:2;9318:18;;9311:62;-1:-1:-1;;;9404:2:1;9389:18;;9382:33;9447:3;9432:19;;9058:399::o;9871:217::-;9911:1;9937;9927:132;;9981:10;9976:3;9972:20;9969:1;9962:31;10016:4;10013:1;10006:15;10044:4;10041:1;10034:15;9927:132;-1:-1:-1;10073:9:1;;9871:217::o;10753:168::-;10793:7;10859:1;10855;10851:6;10847:14;10844:1;10841:21;10836:1;10829:9;10822:17;10818:45;10815:71;;;10866:18;;:::i;:::-;-1:-1:-1;10906:9:1;;10753:168::o;10926:125::-;10966:4;10994:1;10991;10988:8;10985:34;;;10999:18;;:::i;:::-;-1:-1:-1;11036:9:1;;10926:125::o;11188:127::-;11249:10;11244:3;11240:20;11237:1;11230:31;11280:4;11277:1;11270:15;11304:4;11301:1;11294:15;11320:251;11390:6;11443:2;11431:9;11422:7;11418:23;11414:32;11411:52;;;11459:1;11456;11449:12;11411:52;11491:9;11485:16;11510:31;11535:5;11510:31;:::i;11576:980::-;11838:4;11886:3;11875:9;11871:19;11917:6;11906:9;11899:25;11943:2;11981:6;11976:2;11965:9;11961:18;11954:34;12024:3;12019:2;12008:9;12004:18;11997:31;12048:6;12083;12077:13;12114:6;12106;12099:22;12152:3;12141:9;12137:19;12130:26;;12191:2;12183:6;12179:15;12165:29;;12212:1;12222:195;12236:6;12233:1;12230:13;12222:195;;;12301:13;;-1:-1:-1;;;;;12297:39:1;12285:52;;12392:15;;;;12357:12;;;;12333:1;12251:9;12222:195;;;-1:-1:-1;;;;;;;12473:32:1;;;;12468:2;12453:18;;12446:60;-1:-1:-1;;;12537:3:1;12522:19;12515:35;12434:3;11576:980;-1:-1:-1;;;11576:980:1:o;13173:306::-;13261:6;13269;13277;13330:2;13318:9;13309:7;13305:23;13301:32;13298:52;;;13346:1;13343;13336:12;13298:52;13375:9;13369:16;13359:26;;13425:2;13414:9;13410:18;13404:25;13394:35;;13469:2;13458:9;13454:18;13448:25;13438:35;;13173:306;;;;;:::o
Swarm Source
ipfs://0dd9b50fd963165bf4e781d61259027636fee6e9f6e53fe369491f5df938865e
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.