ERC-20
Overview
Max Total Supply
10,000,000,000 $ZFG
Holders
94
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
6,071,882.284193717952257286 $ZFGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ZFG
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-08 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; 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); } } /* * @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 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); } /** * @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 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 _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 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); } } library IterableMapping { // Iterable mapping from address to uint; struct Map { address[] keys; mapping(address => uint) values; mapping(address => uint) indexOf; mapping(address => bool) inserted; } function get(Map storage map, address key) public view returns (uint) { return map.values[key]; } function getIndexOfKey(Map storage map, address key) public view returns (int) { if(!map.inserted[key]) { return -1; } return int(map.indexOf[key]); } function getKeyAtIndex(Map storage map, uint index) public view returns (address) { return map.keys[index]; } function size(Map storage map) public view returns (uint) { return map.keys.length; } function set(Map storage map, address key, uint val) public { if (map.inserted[key]) { map.values[key] = val; } else { map.inserted[key] = true; map.values[key] = val; map.indexOf[key] = map.keys.length; map.keys.push(key); } } function remove(Map storage map, address key) public { if (!map.inserted[key]) { return; } delete map.inserted[key]; delete map.values[key]; uint index = map.indexOf[key]; uint lastIndex = map.keys.length - 1; address lastKey = map.keys[lastIndex]; map.indexOf[lastKey] = index; delete map.indexOf[key]; map.keys[index] = lastKey; map.keys.pop(); } } /// @title Dividend-Paying Token Optional Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev OPTIONAL functions for a dividend-paying token contract. interface DividendPayingTokenOptionalInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) external view returns(uint256); } /// @title Dividend-Paying Token Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev An interface for a dividend-paying token contract. interface DividendPayingTokenInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) external view returns(uint256); /// @notice Distributes ether to token holders as dividends. /// @dev SHOULD distribute the paid ether to token holders as dividends. /// SHOULD NOT directly transfer ether to token holders in this function. /// MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0. function distributeDividends() external payable; /// @notice Withdraws the ether distributed to the sender. /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer. /// MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0. function withdrawDividend() external; /// @dev This event MUST emit when ether is distributed to token holders. /// @param from The address which sends ether to this contract. /// @param weiAmount The amount of distributed ether in wei. event DividendsDistributed( address indexed from, uint256 weiAmount ); /// @dev This event MUST emit when an address withdraws their dividend. /// @param to The address which withdraws ether from this contract. /// @param weiAmount The amount of withdrawn ether in wei. event DividendWithdrawn( address indexed to, uint256 weiAmount ); } /// @title Dividend-Paying Token /// @author Roger Wu (https://github.com/roger-wu) /// @dev A mintable ERC20 token that allows anyone to pay and distribute ether /// to token holders as dividends and allows token holders to withdraw their dividends. /// Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code contract DividendPayingToken is ERC20, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface { using SafeMath for uint256; using SignedSafeMath for int256; using SafeCast for uint256; using SafeCast for int256; // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small. // For more discussion about choosing the value of `magnitude`, // see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728 uint256 constant internal magnitude = 2**128; uint256 internal magnifiedDividendPerShare; // About dividendCorrection: // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with: // `dividendOf(_user) = dividendPerShare * balanceOf(_user)`. // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens), // `dividendOf(_user)` should not be changed, // but the computed value of `dividendPerShare * balanceOf(_user)` is changed. // To keep the `dividendOf(_user)` unchanged, we add a correction term: // `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`, // where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed: // `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`. // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed. mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; uint256 public totalDividendsDistributed; constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) { } /// @dev Distributes dividends whenever ether is paid to this contract. receive() external payable { distributeDividends(); } /// @notice Distributes ether to token holders as dividends. /// @dev It reverts if the total supply of tokens is 0. /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0. /// About undistributed ether: /// In each distribution, there is a small amount of ether not distributed, /// the magnified amount of which is /// `(msg.value * magnitude) % totalSupply()`. /// With a well-chosen `magnitude`, the amount of undistributed ether /// (de-magnified) in a distribution can be less than 1 wei. /// We can actually keep track of the undistributed ether in a distribution /// and try to distribute it in the next distribution, /// but keeping track of such data on-chain costs much more than /// the saved ether, so we don't do that. function distributeDividends() public override payable { require(totalSupply() > 0); if (msg.value > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (msg.value).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, msg.value); totalDividendsDistributed = totalDividendsDistributed.add(msg.value); } } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function withdrawDividend() public virtual override { _withdrawDividendOfUser(payable(msg.sender)); } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function _withdrawDividendOfUser(address payable user) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend); emit DividendWithdrawn(user, _withdrawableDividend); (bool success,) = user.call{value: _withdrawableDividend, gas: 3000}(""); if(!success) { withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend); return 0; } return _withdrawableDividend; } return 0; } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) public view override returns(uint256) { return withdrawableDividendOf(_owner); } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) public view override returns(uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) public view override returns(uint256) { return withdrawnDividends[_owner]; } /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) public view override returns(uint256) { return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256() .add(magnifiedDividendCorrections[_owner]).toUint256() / magnitude; } /// @dev Internal function that transfer tokens from one address to another. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param from The address to transfer from. /// @param to The address to transfer to. /// @param value The amount to be transferred. function _transfer(address from, address to, uint256 value) internal virtual override { require(false); int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256(); magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection); magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection); } /// @dev Internal function that mints tokens to an account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account that will receive the created tokens. /// @param value The amount that will be created. function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .sub( (magnifiedDividendPerShare.mul(value)).toInt256() ); } /// @dev Internal function that burns an amount of the token of a given account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account whose tokens will be burnt. /// @param value The amount that will be burnt. function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .add( (magnifiedDividendPerShare.mul(value)).toInt256() ); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if(newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if(newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } } contract $ZFGDividendTracker is DividendPayingToken, Ownable { using SafeMath for uint256; using SignedSafeMath for int256; using IterableMapping for IterableMapping.Map; IterableMapping.Map private tokenHoldersMap; uint256 public lastProcessedIndex; mapping (address => bool) public excludedFromDividends; mapping (address => uint256) public lastClaimTimes; uint256 public claimWait; uint256 public minimumTokenBalanceForDividends; event ExcludeFromDividends(address indexed account); event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue); event Claim(address indexed account, uint256 amount, bool indexed automatic); constructor() DividendPayingToken("$ZFG_Dividend_Tracker", "$ZFG_Dividend_Tracker") { claimWait = 172800; minimumTokenBalanceForDividends = 100000 * (10**18); //must hold 100000+ tokens } function _transfer(address, address, uint256) internal pure override { require(false, "$ZFG_Dividend_Tracker: No transfers allowed"); } function withdrawDividend() public pure override { require(false, "$ZFG_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main $ZFG contract."); } function excludeFromDividends(address account) external onlyOwner { require(!excludedFromDividends[account]); excludedFromDividends[account] = true; _setBalance(account, 0); tokenHoldersMap.remove(account); emit ExcludeFromDividends(account); } function setMinimumTokensForHolds(uint256 _amount) external onlyOwner { minimumTokenBalanceForDividends = _amount *(10**18); } function updateClaimWait(uint256 newClaimWait) external onlyOwner { require(newClaimWait >= 3600 && newClaimWait <= 604800, "$ZFG_Dividend_Tracker: claimWait must be updated to between 1 and 7 days"); require(newClaimWait != claimWait, "$ZFG_Dividend_Tracker: Cannot update claimWait to same value"); emit ClaimWaitUpdated(newClaimWait, claimWait); claimWait = newClaimWait; } function getLastProcessedIndex() external view returns(uint256) { return lastProcessedIndex; } function getNumberOfTokenHolders() external view returns(uint256) { return tokenHoldersMap.keys.length; } function getAccount(address _account) public view returns ( address account, int256 index, int256 iterationsUntilProcessed, uint256 withdrawableDividends, uint256 totalDividends, uint256 lastClaimTime, uint256 nextClaimTime, uint256 secondsUntilAutoClaimAvailable) { account = _account; index = tokenHoldersMap.getIndexOfKey(account); iterationsUntilProcessed = -1; if(index >= 0) { if(uint256(index) > lastProcessedIndex) { iterationsUntilProcessed = index.sub(int256(lastProcessedIndex)); } else { uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ? tokenHoldersMap.keys.length.sub(lastProcessedIndex) : 0; iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray)); } } withdrawableDividends = withdrawableDividendOf(account); totalDividends = accumulativeDividendOf(account); lastClaimTime = lastClaimTimes[account]; nextClaimTime = lastClaimTime > 0 ? lastClaimTime.add(claimWait) : 0; secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ? nextClaimTime.sub(block.timestamp) : 0; } function getAccountAtIndex(uint256 index) public view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { if(index >= tokenHoldersMap.size()) { return (0x0000000000000000000000000000000000000000, -1, -1, 0, 0, 0, 0, 0); } address account = tokenHoldersMap.getKeyAtIndex(index); return getAccount(account); } function canAutoClaim(uint256 lastClaimTime) private view returns (bool) { if(lastClaimTime > block.timestamp) { return false; } return block.timestamp.sub(lastClaimTime) >= claimWait; } function setBalance(address payable account, uint256 newBalance) external onlyOwner { if(excludedFromDividends[account]) { return; } if(newBalance >= minimumTokenBalanceForDividends) { _setBalance(account, newBalance); tokenHoldersMap.set(account, newBalance); } else { _setBalance(account, 0); tokenHoldersMap.remove(account); } processAccount(account, true); } function process(uint256 gas) public returns (uint256, uint256, uint256) { uint256 numberOfTokenHolders = tokenHoldersMap.keys.length; if(numberOfTokenHolders == 0) { return (0, 0, lastProcessedIndex); } uint256 _lastProcessedIndex = lastProcessedIndex; uint256 gasUsed = 0; uint256 gasLeft = gasleft(); uint256 iterations = 0; uint256 claims = 0; while(gasUsed < gas && iterations < numberOfTokenHolders) { _lastProcessedIndex++; if(_lastProcessedIndex >= tokenHoldersMap.keys.length) { _lastProcessedIndex = 0; } address account = tokenHoldersMap.keys[_lastProcessedIndex]; if(canAutoClaim(lastClaimTimes[account])) { if(processAccount(payable(account), true)) { claims++; } } iterations++; uint256 newGasLeft = gasleft(); if(gasLeft > newGasLeft) { gasUsed = gasUsed.add(gasLeft.sub(newGasLeft)); } gasLeft = newGasLeft; } lastProcessedIndex = _lastProcessedIndex; return (iterations, claims, lastProcessedIndex); } function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) { uint256 amount = _withdrawDividendOfUser(account); if(amount > 0) { lastClaimTimes[account] = block.timestamp; emit Claim(account, amount, automatic); return true; } return false; } } contract ZFG is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public immutable uniswapV2Pair; bool private inSwapAndLiquify; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; bool public limitsInEffect = true; bool public swapAndLiquifyEnabled = true; bool public tradingActive = false; uint256 public tradingActiveBlock = 0; // 0 means trading is not active mapping(address => bool) public boughtEarly; // mapping to track addresses that buy within the first 2 blocks pay a 3x tax for 24 hours to sell uint256 public earlyBuyPenaltyEnd; // determines when snipers/bots can sell without extra penalty $ZFGDividendTracker public dividendTracker; uint256 public maxSellTransactionAmount = 100000000 * (10**18); //1% uint256 public maxBuyTransactionAmount = 100000000 * (10**18); //1% uint256 public swapTokensAtAmount = 10000000 * (10**18); //0.1% uint256 public maxWalletToken = 200000000 * (10**18); //2% uint256 public ETHRewardsFee; uint256 public liquidityFee; uint256 public totalFees; uint256 public marketingFee; uint256 public onSellETHRewardsFee; uint256 public onSellliquidityFee; uint256 public onSelltotalFees; uint256 public onSellmarketingFee; address payable public marketingWallet; // use by default 300,000 gas to process auto-claiming dividends uint256 public gasForProcessing = 300000; // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedFromMaxTx; mapping(address => bool) public _isBlacklisted; // 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 ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event BoughtEarly(address indexed sniper); event RemovedSniper(address indexed notsnipersupposedly); event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensIntoLiqudity, uint256 ethReceived ); event SendDividends( uint256 tokensSwapped, uint256 amount ); event ProcessedDividendTracker( uint256 iterations, uint256 claims, uint256 lastProcessedIndex, bool indexed automatic, uint256 gas, address indexed processor ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } function setFee(uint256 _ethRewardFee, uint256 _liquidityFee, uint256 _marketingFee) public onlyOwner { ETHRewardsFee = _ethRewardFee; liquidityFee = _liquidityFee; marketingFee = _marketingFee; totalFees = ETHRewardsFee.add(liquidityFee).add(marketingFee); // total fee transfer and buy require(totalFees <= 20, "bUY FEE SHOULD BE 20% or less"); } // remove limits after token is stable - 30-60 minutes function removeLimits() external onlyOwner returns (bool){ limitsInEffect = false; transferDelayEnabled = false; return true; } // disable Transfer delay function disableTransferDelay() external onlyOwner returns (bool){ transferDelayEnabled = false; return true; } function blacklistAddress(address account, bool value) external onlyOwner{ _isBlacklisted[account] = value; } function setSellFee(uint256 _onSellEthRewardFee, uint256 _onSellliuidityFee, uint256 _onSellMarketingFee) public onlyOwner { onSellETHRewardsFee = _onSellEthRewardFee; onSellliquidityFee = _onSellliuidityFee; onSellmarketingFee = _onSellMarketingFee; onSelltotalFees = onSellETHRewardsFee.add(onSellliquidityFee).add(onSellmarketingFee); require(onSelltotalFees <= 30, "Buy Fee should be 30% or less"); } function setMaxWalletTokens(uint256 _maxToken) external onlyOwner { maxWalletToken = _maxToken * (10**18); } function setMarketingWallet(address payable _newMarketingWallet) public onlyOwner { marketingWallet = _newMarketingWallet; } constructor() ERC20("Zero Fvcks Given", "$ZFG") { ETHRewardsFee = 0; liquidityFee = 3; marketingFee = 3; onSellETHRewardsFee = 7; onSellliquidityFee = 5; onSellmarketingFee = 8; marketingWallet = payable(0x37202411d10D550e45dc4465B074A4E399Da9be9); totalFees = ETHRewardsFee.add(liquidityFee).add(marketingFee); // total fee transfer and buy onSelltotalFees = onSellETHRewardsFee.add(onSellliquidityFee).add(onSellmarketingFee); dividendTracker = new $ZFGDividendTracker(); 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; _setAutomatedMarketMakerPair(_uniswapV2Pair, true); // exclude from receiving dividends dividendTracker.excludeFromDividends(address(dividendTracker)); dividendTracker.excludeFromDividends(address(this)); dividendTracker.excludeFromDividends(owner()); dividendTracker.excludeFromDividends(address(_uniswapV2Router)); dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(0x64E69904Fc69991916AEf940A8A8Ce4799A99a4C, true); excludeFromFees(marketingWallet, true); excludeFromFees(address(this), true); // exclude from max tx _isExcludedFromMaxTx[owner()] = true; _isExcludedFromMaxTx[address(this)] = true; _isExcludedFromMaxTx[marketingWallet] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(owner(), 10000000000 * (10**18)); } receive() external payable { } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapAndLiquifyEnabled = true; tradingActiveBlock = block.number; earlyBuyPenaltyEnd = block.timestamp + 72 hours; } function updateUniswapV2Router(address newAddress) public onlyOwner { require(newAddress != address(uniswapV2Router), "$ZFG: The router already has that address"); emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router)); uniswapV2Router = IUniswapV2Router02(newAddress); } function setMaxBuyTrxAmount(uint256 _amount) external onlyOwner { maxBuyTransactionAmount = _amount * (10**18); } function setMaxSellTrxAmount(uint256 _amount) external onlyOwner { maxSellTransactionAmount = _amount * (10**18); } function excludeFromFees(address account, bool excluded) public onlyOwner { require(_isExcludedFromFees[account] != excluded, "$ZFG: Account is already the value of 'excluded'"); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setExcludeFromMaxTx(address _address, bool value) public onlyOwner { _isExcludedFromMaxTx[_address] = value; } function setExcludeFromAll(address _address) public onlyOwner { _isExcludedFromMaxTx[_address] = true; _isExcludedFromFees[_address] = true; dividendTracker.excludeFromDividends(_address); } function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner { for(uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = excluded; } emit ExcludeMultipleAccountsFromFees(accounts, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "$ZFG: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function setSWapToensAtAmount(uint256 _newAmount) public onlyOwner { swapTokensAtAmount = _newAmount * (10**18); } function _setAutomatedMarketMakerPair(address pair, bool value) private { require(automatedMarketMakerPairs[pair] != value, "$ZFG: Automated market maker pair is already set to that value"); automatedMarketMakerPairs[pair] = value; if(value) { dividendTracker.excludeFromDividends(pair); } emit SetAutomatedMarketMakerPair(pair, value); } function updateGasForProcessing(uint256 newValue) public onlyOwner { require(newValue >= 200000 && newValue <= 500000, "$ZFG: gasForProcessing must be between 200,000 and 500,000"); require(newValue != gasForProcessing, "$ZFG: Cannot update gasForProcessing to same value"); emit GasForProcessingUpdated(newValue, gasForProcessing); gasForProcessing = newValue; } function updateClaimWait(uint256 claimWait) external onlyOwner { dividendTracker.updateClaimWait(claimWait); } function getClaimWait() external view returns(uint256) { return dividendTracker.claimWait(); } function getTotalDividendsDistributed() external view returns (uint256) { return dividendTracker.totalDividendsDistributed(); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function isExcludedFromMaxTx(address account) public view returns(bool) { return _isExcludedFromMaxTx[account]; } function withdrawableDividendOf(address account) public view returns(uint256) { return dividendTracker.withdrawableDividendOf(account); } function dividendTokenBalanceOf(address account) public view returns (uint256) { return dividendTracker.balanceOf(account); } function getAccountDividendsInfo(address account) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { return dividendTracker.getAccount(account); } function getAccountDividendsInfoAtIndex(uint256 index) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { return dividendTracker.getAccountAtIndex(index); } function processDividendTracker(uint256 gas) external { (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) = dividendTracker.process(gas); emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, false, gas, tx.origin); } function claim() external { dividendTracker.processAccount(payable(msg.sender), false); } function getLastProcessedIndex() external view returns(uint256) { return dividendTracker.getLastProcessedIndex(); } function getNumberOfDividendTokenHolders() external view returns(uint256) { return dividendTracker.getNumberOfTokenHolders(); } //this will be used to exclude from dividends the presale smart contract address function excludeFromDividends(address account) external onlyOwner { dividendTracker.excludeFromDividends(account); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!_isBlacklisted[from] && !_isBlacklisted[to], "Blacklisted address"); if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active yet."); } if(amount == 0) { super._transfer(from, to, 0); return; } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && to != uniswapV2Pair ) { if(from != owner() && to != uniswapV2Pair && block.number == tradingActiveBlock){ boughtEarly[to] = true; emit BoughtEarly(to); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[to] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[to] = block.number; } } uint256 contractBalanceRecepient = balanceOf(to); require( contractBalanceRecepient + amount <= maxWalletToken, "Exceeds maximum wallet token amount." ); } //when sell if(automatedMarketMakerPairs[to] && (!_isExcludedFromMaxTx[from]) && (!_isExcludedFromMaxTx[to])){ if(balanceOf(from) >= maxSellTransactionAmount){ require(amount <= balanceOf(from)/2); } } //when buy if(automatedMarketMakerPairs[from] && (!_isExcludedFromMaxTx[from]) && (!_isExcludedFromMaxTx[to])){ require(amount <= maxBuyTransactionAmount, "Sell transfer amount exceeds the maxBuyTransactionAmount."); } } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount; if( overMinTokenBalance && !inSwapAndLiquify && !automatedMarketMakerPairs[from] && swapAndLiquifyEnabled ) { swapAndLiquify(contractTokenBalance); } // if any account belongs to _isExcludedFromFee account then remove the fee if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { uint256 fees = (amount*totalFees)/100; if(automatedMarketMakerPairs[to]) { fees =(amount*onSelltotalFees)/100; // higher tax if bought in the same block as trading active for 72 hours (sniper protect) if(boughtEarly[from] && earlyBuyPenaltyEnd > block.timestamp){ fees = fees * 2; } } amount = amount-fees; super._transfer(from, address(this), fees); // get total fee first } super._transfer(from, to, amount); try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {} try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {} if(!inSwapAndLiquify) { uint256 gas = gasForProcessing; try dividendTracker.process(gas) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) { emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gas, tx.origin); } catch { } } } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // take liquidity fee, keep a half token // halfLiquidityToken = totalAmount * (liquidityFee/2totalFee) uint256 tokensToAddLiquidityWith = contractTokenBalance.div(onSelltotalFees.mul(2)).mul(onSellliquidityFee); // swap the remaining to BNB uint256 toSwap = contractTokenBalance-tokensToAddLiquidityWith; // 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 swapTokensForBnb(toSwap, address(this)); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered uint256 deltaBalance = address(this).balance-initialBalance; // take worthy amount bnb to add liquidity // worthyBNB = deltaBalance * liquidity/(2totalFees - liquidityFee) uint256 bnbToAddLiquidityWith = deltaBalance.mul(onSellliquidityFee).div(onSelltotalFees.mul(2).sub(onSellliquidityFee)); // add liquidity to uniswap addLiquidity(tokensToAddLiquidityWith, bnbToAddLiquidityWith); // worthy marketing fee uint256 marketingAmount = deltaBalance.sub(bnbToAddLiquidityWith).div(onSelltotalFees.sub(onSellliquidityFee)).mul(onSellmarketingFee); marketingWallet.transfer(marketingAmount); uint256 dividends = address(this).balance; (bool success,) = address(dividendTracker).call{value: dividends}(""); if(success) { emit SendDividends(toSwap-tokensToAddLiquidityWith, dividends); } emit SwapAndLiquify(tokensToAddLiquidityWith, deltaBalance); } function swapTokensForBnb(uint256 tokenAmount, address _to) 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, _to, 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 withdrawStuckETh() external onlyOwner{ require (address(this).balance > 0, "Can't withdraw negative or zero"); payable(owner()).transfer(address(this).balance); } function removeBoughtEarly(address account) external onlyOwner { boughtEarly[account] = false; emit RemovedSniper(account); } function removeStuckToken(address _address) external onlyOwner { require(_address != address(this), "Can't withdraw tokens destined for liquidity"); require(IERC20(_address).balanceOf(address(this)) > 0, "Can't withdraw 0"); IERC20(_address).transfer(owner(), IERC20(_address).balanceOf(address(this))); } }
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":"sniper","type":"address"}],"name":"BoughtEarly","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":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","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":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"notsnipersupposedly","type":"address"}],"name":"RemovedSniper","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","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":"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"},{"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":"ETHRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"boughtEarly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract $ZFGDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyBuyPenaltyEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","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":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","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":"maxBuyTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","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":"onSellETHRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onSellliquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onSellmarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onSelltotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBoughtEarly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeStuckToken","outputs":[],"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":[{"internalType":"address","name":"_address","type":"address"}],"name":"setExcludeFromAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ethRewardFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newMarketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxBuyTrxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSellTrxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToken","type":"uint256"}],"name":"setMaxWalletTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSWapToensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_onSellEthRewardFee","type":"uint256"},{"internalType":"uint256","name":"_onSellliuidityFee","type":"uint256"},{"internalType":"uint256","name":"_onSellMarketingFee","type":"uint256"}],"name":"setSellFee","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":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETh","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526008805463ffffffff19166201010117905560006009556a52b7d2dcc80cd2e4000000600d819055600e556a084595161401484a000000600f556aa56fa5b99019a5c8000000601055620493e0601a553480156200006157600080fd5b50604080518082018252601081526f2d32b93790233b31b5b99023b4bb32b760811b602080830191825283518085019094526004845263245a464760e01b908401528151919291620000b69160039162000a94565b508051620000cc90600490602084019062000a94565b505050620000e9620000e36200068760201b60201c565b6200068b565b60006011819055600360128190556014819055600760155560056016556008601855601980547337202411d10d550e45dc4465b074a4e399da9be96001600160a01b03199091161790556200016491620001509082620006dd602090811b620023b917901c565b620006dd60201b620023b91790919060201c565b6013819055506200018f60185462000150601654601554620006dd60201b620023b91790919060201c565b601755604051620001a09062000b23565b604051809103906000f080158015620001bd573d6000803e3d6000fd5b50600c60006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000264919062000b48565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d8919062000b48565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000326573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034c919062000b48565b600680546001600160a01b0319166001600160a01b03858116919091179091558116608052905062000380816001620006f2565b600c5460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b158015620003c757600080fd5b505af1158015620003dc573d6000803e3d6000fd5b5050600c5460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200042657600080fd5b505af11580156200043b573d6000803e3d6000fd5b5050600c546001600160a01b031691506331e79db09050620004656005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015620004a757600080fd5b505af1158015620004bc573d6000803e3d6000fd5b5050600c5460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200050857600080fd5b505af11580156200051d573d6000803e3d6000fd5b5050600c5460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200056957600080fd5b505af11580156200057e573d6000803e3d6000fd5b505050506200059e620005966200085a60201b60201c565b600162000869565b620005bf7364e69904fc69991916aef940a8a8ce4799a99a4c600162000869565b601954620005d8906001600160a01b0316600162000869565b620005e530600162000869565b6001601c6000620005fe6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152601c9093528183208054851660019081179091556019549091168352912080549092161790556200067f6200066c6005546001600160a01b031690565b6b204fce5e3e25026110000000620009af565b505062000bd6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000620006eb828462000b73565b9392505050565b6001600160a01b0382166000908152601e602052604090205481151560ff9091161515036200078e5760405162461bcd60e51b815260206004820152603e60248201527f245a46473a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c7565000060648201526084015b60405180910390fd5b6001600160a01b0382166000908152601e60205260409020805460ff191682158015919091179091556200081e57600c5460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156200080457600080fd5b505af115801562000819573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031690565b6005546001600160a01b03163314620008c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000785565b6001600160a01b0382166000908152601b602052604090205481151560ff909116151503620009505760405162461bcd60e51b815260206004820152603060248201527f245a46473a204163636f756e7420697320616c7265616479207468652076616c60448201526f7565206f6620276578636c756465642760801b606482015260840162000785565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b03821662000a075760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000785565b806002600082825462000a1b919062000b73565b90915550506001600160a01b0382166000908152602081905260408120805483929062000a4a90849062000b73565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b82805462000aa29062000b9a565b90600052602060002090601f01602090048101928262000ac6576000855562000b11565b82601f1062000ae157805160ff191683800117855562000b11565b8280016001018555821562000b11579182015b8281111562000b1157825182559160200191906001019062000af4565b5062000b1f92915062000b31565b5090565b6121f6806200478783390190565b5b8082111562000b1f576000815560010162000b32565b60006020828403121562000b5b57600080fd5b81516001600160a01b0381168114620006eb57600080fd5b6000821982111562000b9557634e487b7160e01b600052601160045260246000fd5b500190565b600181811c9082168062000baf57607f821691505b60208210810362000bd057634e487b7160e01b600052602260045260246000fd5b50919050565b608051613b7962000c0e6000396000818161070b01528181611a8e015281816126e00152818161273501526128060152613b796000f3fe60806040526004361061044b5760003560e01c8063700bb19111610234578063a9059cbb1161012e578063e083e922116100b6578063e884f2601161007a578063e884f26014610d46578063e98030c714610d5b578063ee40166e14610d7b578063f27fd25414610d91578063f2fde38b14610db157600080fd5b8063e083e92214610cc5578063e2f4560514610ce5578063e6c75f7114610cfb578063e7841ec014610d11578063e7b8f69714610d2657600080fd5b8063c0246668116100fd578063c024666814610c05578063c492f04614610c25578063c49b9a8014610c45578063c876d0b914610c65578063dd62ed3e14610c7f57600080fd5b8063a9059cbb14610b2f578063ad56c13c14610b4f578063b62496f514610bb4578063bbc0c74214610be457600080fd5b80638a8c523c116101bc5780639a7a23d6116101805780639a7a23d614610aa45780639c1b8af514610ac4578063a26579ad14610ada578063a457c2d714610aef578063a8b9d24014610b0f57600080fd5b80638a8c523c14610a305780638c0344db14610a455780638da5cb5b14610a5b57806395d89b4114610a7957806398118cb414610a8e57600080fd5b806375f0a8741161020357806375f0a874146109945780637719c8c6146109b457806383e1b7d8146109ca57806385ecfd28146109e0578063871c128d14610a1057600080fd5b8063700bb1911461092a57806370a082311461094a578063715018a61461096a578063751039fc1461097f57600080fd5b8063455a4396116103455780635aa821a9116102cd57806364b0f6531161029157806364b0f65314610886578063658c27a91461089b57806365b8dbc0146108d45780636843cd84146108f45780636b67c4df1461091457600080fd5b80635aa821a9146107f05780635b65b9ab146108065780635b89029c146108265780635bb988c9146108465780635d098b381461086657600080fd5b80634a74bb02116103145780634a74bb021461074c5780634c1fa5201461076c5780634e71d92d146107825780634fbee193146107975780635290c250146107d057600080fd5b8063455a4396146106b957806349928a50146106d957806349bd5a5e146106f95780634a62bb651461072d57600080fd5b806318160ddd116103d35780632c1f5216116103975780632c1f52161461062857806330bb4cff14610648578063313ce5671461065d57806331e79db014610679578063395093511461069957600080fd5b806318160ddd1461058d5780631cdd3be3146105a25780631d865c30146105d25780631fc851bd146105f257806323b872dd1461060857600080fd5b80630b4ae4201161041a5780630b4ae420146104f45780630fec5dd01461050957806310beae951461052957806313114a9d1461053f5780631694505e1461055557600080fd5b806302259e9e1461045757806306fdde0314610480578063095ea7b3146104a25780630a088000146104d257600080fd5b3661045257005b600080fd5b34801561046357600080fd5b5061046d600d5481565b6040519081526020015b60405180910390f35b34801561048c57600080fd5b50610495610dd1565b6040516104779190613591565b3480156104ae57600080fd5b506104c26104bd3660046135fb565b610e63565b6040519015158152602001610477565b3480156104de57600080fd5b506104f26104ed366004613627565b610e79565b005b34801561050057600080fd5b506104f2610ec4565b34801561051557600080fd5b506104f2610524366004613627565b610f7a565b34801561053557600080fd5b5061046d60185481565b34801561054b57600080fd5b5061046d60135481565b34801561056157600080fd5b50600654610575906001600160a01b031681565b6040516001600160a01b039091168152602001610477565b34801561059957600080fd5b5060025461046d565b3480156105ae57600080fd5b506104c26105bd366004613640565b601d6020526000908152604090205460ff1681565b3480156105de57600080fd5b506104f26105ed36600461365d565b610fbc565b3480156105fe57600080fd5b5061046d600b5481565b34801561061457600080fd5b506104c2610623366004613689565b611063565b34801561063457600080fd5b50600c54610575906001600160a01b031681565b34801561065457600080fd5b5061046d61110d565b34801561066957600080fd5b5060405160128152602001610477565b34801561068557600080fd5b506104f2610694366004613640565b611180565b3480156106a557600080fd5b506104c26106b43660046135fb565b61120d565b3480156106c557600080fd5b506104f26106d43660046136d8565b611249565b3480156106e557600080fd5b506104f26106f4366004613640565b61129e565b34801561070557600080fd5b506105757f000000000000000000000000000000000000000000000000000000000000000081565b34801561073957600080fd5b506008546104c290610100900460ff1681565b34801561075857600080fd5b506008546104c29062010000900460ff1681565b34801561077857600080fd5b5061046d60165481565b34801561078e57600080fd5b506104f261132f565b3480156107a357600080fd5b506104c26107b2366004613640565b6001600160a01b03166000908152601b602052604090205460ff1690565b3480156107dc57600080fd5b506104f26107eb366004613627565b6113a4565b3480156107fc57600080fd5b5061046d600e5481565b34801561081257600080fd5b506104f261082136600461365d565b6113e6565b34801561083257600080fd5b506104f26108413660046136d8565b611482565b34801561085257600080fd5b506104f2610861366004613640565b6114d7565b34801561087257600080fd5b506104f2610881366004613640565b61154a565b34801561089257600080fd5b5061046d611596565b3480156108a757600080fd5b506104c26108b6366004613640565b6001600160a01b03166000908152601c602052604090205460ff1690565b3480156108e057600080fd5b506104f26108ef366004613640565b6115e0565b34801561090057600080fd5b5061046d61090f366004613640565b6116d7565b34801561092057600080fd5b5061046d60145481565b34801561093657600080fd5b506104f2610945366004613627565b61174d565b34801561095657600080fd5b5061046d610965366004613640565b611820565b34801561097657600080fd5b506104f261183b565b34801561098b57600080fd5b506104c2611871565b3480156109a057600080fd5b50601954610575906001600160a01b031681565b3480156109c057600080fd5b5061046d60175481565b3480156109d657600080fd5b5061046d60155481565b3480156109ec57600080fd5b506104c26109fb366004613640565b600a6020526000908152604090205460ff1681565b348015610a1c57600080fd5b506104f2610a2b366004613627565b6118af565b348015610a3c57600080fd5b506104f2611a00565b348015610a5157600080fd5b5061046d60115481565b348015610a6757600080fd5b506005546001600160a01b0316610575565b348015610a8557600080fd5b50610495611a53565b348015610a9a57600080fd5b5061046d60125481565b348015610ab057600080fd5b506104f2610abf3660046136d8565b611a62565b348015610ad057600080fd5b5061046d601a5481565b348015610ae657600080fd5b5061046d611b55565b348015610afb57600080fd5b506104c2610b0a3660046135fb565b611b9f565b348015610b1b57600080fd5b5061046d610b2a366004613640565b611c38565b348015610b3b57600080fd5b506104c2610b4a3660046135fb565b611c6b565b348015610b5b57600080fd5b50610b6f610b6a366004613640565b611c78565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610477565b348015610bc057600080fd5b506104c2610bcf366004613640565b601e6020526000908152604090205460ff1681565b348015610bf057600080fd5b506008546104c2906301000000900460ff1681565b348015610c1157600080fd5b506104f2610c203660046136d8565b611d13565b348015610c3157600080fd5b506104f2610c40366004613711565b611e25565b348015610c5157600080fd5b506104f2610c60366004613797565b611f01565b348015610c7157600080fd5b506008546104c29060ff1681565b348015610c8b57600080fd5b5061046d610c9a3660046137b4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610cd157600080fd5b506104f2610ce0366004613640565b611f81565b348015610cf157600080fd5b5061046d600f5481565b348015610d0757600080fd5b5061046d60105481565b348015610d1d57600080fd5b5061046d6121bb565b348015610d3257600080fd5b506104f2610d41366004613627565b612205565b348015610d5257600080fd5b506104c2612247565b348015610d6757600080fd5b506104f2610d76366004613627565b612284565b348015610d8757600080fd5b5061046d60095481565b348015610d9d57600080fd5b50610b6f610dac366004613627565b6122df565b348015610dbd57600080fd5b506104f2610dcc366004613640565b612321565b606060038054610de0906137e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0c906137e2565b8015610e595780601f10610e2e57610100808354040283529160200191610e59565b820191906000526020600020905b815481529060010190602001808311610e3c57829003601f168201915b5050505050905090565b6000610e703384846123cc565b50600192915050565b6005546001600160a01b03163314610eac5760405162461bcd60e51b8152600401610ea39061381c565b60405180910390fd5b610ebe81670de0b6b3a7640000613867565b600e5550565b6005546001600160a01b03163314610eee5760405162461bcd60e51b8152600401610ea39061381c565b60004711610f3e5760405162461bcd60e51b815260206004820152601f60248201527f43616e2774207769746864726177206e65676174697665206f72207a65726f006044820152606401610ea3565b6005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610f77573d6000803e3d6000fd5b50565b6005546001600160a01b03163314610fa45760405162461bcd60e51b8152600401610ea39061381c565b610fb681670de0b6b3a7640000613867565b60105550565b6005546001600160a01b03163314610fe65760405162461bcd60e51b8152600401610ea39061381c565b6015839055601682905560188190556110098161100385856123b9565b906123b9565b6017819055601e101561105e5760405162461bcd60e51b815260206004820152601d60248201527f427579204665652073686f756c6420626520333025206f72206c6573730000006044820152606401610ea3565b505050565b60006110708484846124f0565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156110f55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610ea3565b61110285338584036123cc565b506001949350505050565b600c54604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015611157573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117b9190613886565b905090565b6005546001600160a01b031633146111aa5760405162461bcd60e51b8152600401610ea39061381c565b600c5460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b1580156111f257600080fd5b505af1158015611206573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610e7091859061124490869061389f565b6123cc565b6005546001600160a01b031633146112735760405162461bcd60e51b8152600401610ea39061381c565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112c85760405162461bcd60e51b8152600401610ea39061381c565b6001600160a01b038181166000818152601c602090815260408083208054600160ff199182168117909255601b9093529281902080549092169092179055600c54905163031e79db60e41b81526004810192909252909116906331e79db0906024016111d8565b600c5460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af1158015611380573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7791906138b7565b6005546001600160a01b031633146113ce5760405162461bcd60e51b8152600401610ea39061381c565b6113e081670de0b6b3a7640000613867565b600f5550565b6005546001600160a01b031633146114105760405162461bcd60e51b8152600401610ea39061381c565b60118390556012829055601481905561142d8161100385856123b9565b60138190556014101561105e5760405162461bcd60e51b815260206004820152601d60248201527f625559204645452053484f554c4420424520323025206f72206c6573730000006044820152606401610ea3565b6005546001600160a01b031633146114ac5760405162461bcd60e51b8152600401610ea39061381c565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146115015760405162461bcd60e51b8152600401610ea39061381c565b6001600160a01b0381166000818152600a6020526040808220805460ff19169055517fccaa6e1cfd4cf9506fa856fdc8e0a00894b2621ece1d60ab36209873305944989190a250565b6005546001600160a01b031633146115745760405162461bcd60e51b8152600401610ea39061381c565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b600c54604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015611157573d6000803e3d6000fd5b6005546001600160a01b0316331461160a5760405162461bcd60e51b8152600401610ea39061381c565b6006546001600160a01b039081169082160361167a5760405162461bcd60e51b815260206004820152602960248201527f245a46473a2054686520726f7574657220616c7265616479206861732074686160448201526874206164647265737360b81b6064820152608401610ea3565b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b600c546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa158015611723573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117479190613886565b92915050565b600c546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af11580156117a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c491906138d4565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146118655760405162461bcd60e51b8152600401610ea39061381c565b61186f6000612e2b565b565b6005546000906001600160a01b0316331461189e5760405162461bcd60e51b8152600401610ea39061381c565b506008805461ffff19169055600190565b6005546001600160a01b031633146118d95760405162461bcd60e51b8152600401610ea39061381c565b62030d4081101580156118ef57506207a1208111155b6119615760405162461bcd60e51b815260206004820152603a60248201527f245a46473a20676173466f7250726f63657373696e67206d757374206265206260448201527f65747765656e203230302c30303020616e64203530302c3030300000000000006064820152608401610ea3565b601a5481036119cd5760405162461bcd60e51b815260206004820152603260248201527f245a46473a2043616e6e6f742075706461746520676173466f7250726f63657360448201527173696e6720746f2073616d652076616c756560701b6064820152608401610ea3565b601a5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601a55565b6005546001600160a01b03163314611a2a5760405162461bcd60e51b8152600401610ea39061381c565b6008805463ffff00001916630101000017905543600955611a4e426203f48061389f565b600b55565b606060048054610de0906137e2565b6005546001600160a01b03163314611a8c5760405162461bcd60e51b8152600401610ea39061381c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603611b475760405162461bcd60e51b815260206004820152604b60248201527f245a46473a205468652050616e63616b655377617020706169722063616e6e6f60448201527f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b6560648201526a744d616b6572506169727360a81b608482015260a401610ea3565b611b518282612e7d565b5050565b600c5460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015611157573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015611c215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ea3565b611c2e33858584036123cc565b5060019392505050565b600c546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401611706565b6000610e703384846124f0565b600c5460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b61010060405180830381865afa158015611cd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf89190613902565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b03163314611d3d5760405162461bcd60e51b8152600401610ea39061381c565b6001600160a01b0382166000908152601b602052604090205481151560ff909116151503611dc65760405162461bcd60e51b815260206004820152603060248201527f245a46473a204163636f756e7420697320616c7265616479207468652076616c60448201526f7565206f6620276578636c756465642760801b6064820152608401610ea3565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314611e4f5760405162461bcd60e51b8152600401610ea39061381c565b60005b82811015611ec05781601b6000868685818110611e7157611e7161396c565b9050602002016020810190611e869190613640565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611eb881613982565b915050611e52565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051611ef49392919061399b565b60405180910390a1505050565b6005546001600160a01b03163314611f2b5760405162461bcd60e51b8152600401610ea39061381c565b60088054821515620100000262ff0000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990611f7690831515815260200190565b60405180910390a150565b6005546001600160a01b03163314611fab5760405162461bcd60e51b8152600401610ea39061381c565b306001600160a01b038216036120185760405162461bcd60e51b815260206004820152602c60248201527f43616e277420776974686472617720746f6b656e732064657374696e6564206660448201526b6f72206c697175696469747960a01b6064820152608401610ea3565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561205f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120839190613886565b116120c35760405162461bcd60e51b815260206004820152601060248201526f043616e277420776974686472617720360841b6044820152606401610ea3565b806001600160a01b031663a9059cbb6120e46005546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015612128573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214c9190613886565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015612197573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b5191906138b7565b600c546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015611157573d6000803e3d6000fd5b6005546001600160a01b0316331461222f5760405162461bcd60e51b8152600401610ea39061381c565b61224181670de0b6b3a7640000613867565b600d5550565b6005546000906001600160a01b031633146122745760405162461bcd60e51b8152600401610ea39061381c565b506008805460ff19169055600190565b6005546001600160a01b031633146122ae5760405162461bcd60e51b8152600401610ea39061381c565b600c5460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c7906024016111d8565b600c54604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611cb6565b6005546001600160a01b0316331461234b5760405162461bcd60e51b8152600401610ea39061381c565b6001600160a01b0381166123b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ea3565b610f7781612e2b565b60006123c5828461389f565b9392505050565b6001600160a01b03831661242e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ea3565b6001600160a01b03821661248f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ea3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166125165760405162461bcd60e51b8152600401610ea3906139f4565b6001600160a01b03821661253c5760405162461bcd60e51b8152600401610ea390613a39565b6001600160a01b0383166000908152601d602052604090205460ff1615801561257e57506001600160a01b0382166000908152601d602052604090205460ff16155b6125c05760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610ea3565b6008546301000000900460ff1661265c576001600160a01b0383166000908152601b602052604090205460ff168061261057506001600160a01b0382166000908152601b602052604090205460ff165b61265c5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610ea3565b806000036126705761105e83836000612fdc565b600854610100900460ff1615612af2576005546001600160a01b038481169116148015906126ac57506005546001600160a01b03838116911614155b80156126c057506001600160a01b03821615155b80156126d757506001600160a01b03821661dead14155b801561271557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15612972576005546001600160a01b0384811691161480159061276a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015612777575060095443145b156127c6576001600160a01b0382166000818152600a6020526040808220805460ff19166001179055517fb90badc1cf1c52268f4fa9afb5276aebf640bcca3300cdfc9cf37db17daa13e29190a25b60085460ff16156128fb576005546001600160a01b038381169116148015906127fd57506006546001600160a01b03838116911614155b801561283b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156128fb576001600160a01b03821660009081526007602052604090205443116128df5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610ea3565b6001600160a01b03821660009081526007602052604090204390555b600061290683611820565b601054909150612916838361389f565b11156129705760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610ea3565b505b6001600160a01b0382166000908152601e602052604090205460ff1680156129b357506001600160a01b0383166000908152601c602052604090205460ff16155b80156129d857506001600160a01b0382166000908152601c602052604090205460ff16155b15612a0f57600d546129e984611820565b10612a0f5760026129f984611820565b612a039190613a7c565b811115612a0f57600080fd5b6001600160a01b0383166000908152601e602052604090205460ff168015612a5057506001600160a01b0383166000908152601c602052604090205460ff16155b8015612a7557506001600160a01b0382166000908152601c602052604090205460ff16155b15612af257600e54811115612af25760405162461bcd60e51b815260206004820152603960248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61784275795472616e73616374696f6e416d6f756e742e000000000000006064820152608401610ea3565b6000612afd30611820565b600f5490915081108015908190612b1e5750600654600160a01b900460ff16155b8015612b4357506001600160a01b0385166000908152601e602052604090205460ff16155b8015612b57575060085462010000900460ff165b15612b6557612b6582613123565b6001600160a01b0385166000908152601b602052604090205460ff16158015612ba757506001600160a01b0384166000908152601b602052604090205460ff16155b15612c5e576000606460135485612bbe9190613867565b612bc89190613a7c565b6001600160a01b0386166000908152601e602052604090205490915060ff1615612c4557606460175485612bfc9190613867565b612c069190613a7c565b6001600160a01b0387166000908152600a602052604090205490915060ff168015612c32575042600b54115b15612c4557612c42816002613867565b90505b612c4f8185613a9e565b9350612c5c863083612fdc565b505b612c69858585612fdc565b600c546001600160a01b031663e30443bc86612c8481611820565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612cca57600080fd5b505af1925050508015612cdb575060015b50600c546001600160a01b031663e30443bc85612cf781611820565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612d3d57600080fd5b505af1925050508015612d4e575060015b50600654600160a01b900460ff1661120657601a54600c546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af1925050508015612dcd575060408051601f3d908101601f19168201909252612dca918101906138d4565b60015b15612e235760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601e602052604090205481151560ff909116151503612f135760405162461bcd60e51b815260206004820152603e60248201527f245a46473a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c756500006064820152608401610ea3565b6001600160a01b0382166000908152601e60205260409020805460ff19168215801591909117909155612fa057600c5460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b158015612f8757600080fd5b505af1158015612f9b573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166130025760405162461bcd60e51b8152600401610ea3906139f4565b6001600160a01b0382166130285760405162461bcd60e51b8152600401610ea390613a39565b6001600160a01b038316600090815260208190526040902054818110156130a05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ea3565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906130d790849061389f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161181291815260200190565b6006805460ff60a01b1916600160a01b17905560165460175460009161315f916131599061315290600261332b565b8590613337565b9061332b565b9050600061316d8284613a9e565b90504761317a8230613343565b60006131868247613a9e565b905060006131c36131af6016546131a9600260175461332b90919063ffffffff16565b906134cf565b6016546131bd90859061332b565b90613337565b90506131cf85826134db565b60006131fb6018546131596131f16016546017546134cf90919063ffffffff16565b6131bd87876134cf565b6019546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015613236573d6000803e3d6000fd5b50600c5460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114613288576040519150601f19603f3d011682016040523d82523d6000602084013e61328d565b606091505b5050905080156132da577f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc36132c28989613a9e565b60408051918252602082018590520160405180910390a15b60408051898152602081018790527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506006805460ff60a01b1916905550505050505050565b60006123c58284613867565b60006123c58284613a7c565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106133785761337861396c565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156133d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133f59190613ab5565b816001815181106134085761340861396c565b6001600160a01b039283166020918202929092018101919091526006543060009081526001835260408082209290941681529152205483111561345f5760065461345f9030906001600160a01b03166000196123cc565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790613498908690600090869088904290600401613ad2565b600060405180830381600087803b1580156134b257600080fd5b505af11580156134c6573d6000803e3d6000fd5b50505050505050565b60006123c58284613a9e565b6006546001600160a01b031663f305d7198230856000806135046005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561356c573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061120691906138d4565b600060208083528351808285015260005b818110156135be578581018301518582016040015282016135a2565b818111156135d0576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610f7757600080fd5b6000806040838503121561360e57600080fd5b8235613619816135e6565b946020939093013593505050565b60006020828403121561363957600080fd5b5035919050565b60006020828403121561365257600080fd5b81356123c5816135e6565b60008060006060848603121561367257600080fd5b505081359360208301359350604090920135919050565b60008060006060848603121561369e57600080fd5b83356136a9816135e6565b925060208401356136b9816135e6565b929592945050506040919091013590565b8015158114610f7757600080fd5b600080604083850312156136eb57600080fd5b82356136f6816135e6565b91506020830135613706816136ca565b809150509250929050565b60008060006040848603121561372657600080fd5b833567ffffffffffffffff8082111561373e57600080fd5b818601915086601f83011261375257600080fd5b81358181111561376157600080fd5b8760208260051b850101111561377657600080fd5b6020928301955093505084013561378c816136ca565b809150509250925092565b6000602082840312156137a957600080fd5b81356123c5816136ca565b600080604083850312156137c757600080fd5b82356137d2816135e6565b91506020830135613706816135e6565b600181811c908216806137f657607f821691505b60208210810361381657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561388157613881613851565b500290565b60006020828403121561389857600080fd5b5051919050565b600082198211156138b2576138b2613851565b500190565b6000602082840312156138c957600080fd5b81516123c5816136ca565b6000806000606084860312156138e957600080fd5b8351925060208401519150604084015190509250925092565b600080600080600080600080610100898b03121561391f57600080fd5b885161392a816135e6565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b634e487b7160e01b600052603260045260246000fd5b60006001820161399457613994613851565b5060010190565b6040808252810183905260008460608301825b868110156139de5782356139c1816135e6565b6001600160a01b03168252602092830192909101906001016139ae565b5080925050508215156020830152949350505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082613a9957634e487b7160e01b600052601260045260246000fd5b500490565b600082821015613ab057613ab0613851565b500390565b600060208284031215613ac757600080fd5b81516123c5816135e6565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015613b225784516001600160a01b031683529383019391830191600101613afd565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205c0209f5d236502bbda8ec7c6b30621d9d2d86d405907332e73421f03041ce0764736f6c634300080e003360806040523480156200001157600080fd5b5060408051808201825260158082527f245a46475f4469766964656e645f547261636b65720000000000000000000000602080840182815285518087019096529285528401528151919291839183916200006e9160039162000114565b5080516200008490600490602084019062000114565b5050505050620000a36200009d620000be60201b60201c565b620000c2565b6202a30060115569152d02c7e14af6800000601255620001f6565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012290620001ba565b90600052602060002090601f01602090048101928262000146576000855562000191565b82601f106200016157805160ff191683800117855562000191565b8280016001018555821562000191579182015b828111156200019157825182559160200191906001019062000174565b506200019f929150620001a3565b5090565b5b808211156200019f5760008155600101620001a4565b600181811c90821680620001cf57607f821691505b602082108103620001f057634e487b7160e01b600052602260045260246000fd5b50919050565b611ff080620002066000396000f3fe6080604052600436106102135760003560e01c8063715018a611610118578063bc4c4b37116100a0578063e7841ec01161006f578063e7841ec01461066d578063e98030c714610682578063f2fde38b146106a2578063fbcbc0f1146106c2578063ffb2c479146106e257600080fd5b8063bc4c4b37146105d1578063be10b614146105f1578063dd62ed3e14610607578063e30443bc1461064d57600080fd5b806395d89b41116100e757806395d89b4114610526578063a457c2d71461053b578063a8b9d2401461055b578063a9059cbb1461057b578063aafd847a1461059b57600080fd5b8063715018a6146104b357806385a6b3ae146104c85780638da5cb5b146104de57806391b89fba1461050657600080fd5b80633009a6091161019b5780634e7b827f1161016a5780634e7b827f146103bd5780635183d6fd146103ed5780636a474002146104525780636f2789ec1461046757806370a082311461047d57600080fd5b80633009a6091461034b578063313ce5671461036157806331e79db01461037d578063395093511461039d57600080fd5b806318160ddd116101e257806318160ddd146102a9578063226cfa3d146102be57806323b872dd146102eb57806325910e861461030b57806327ce01471461032b57600080fd5b806303c833021461022757806306fdde031461022f578063095ea7b31461025a57806309bbedde1461028a57600080fd5b366102225761022061071d565b005b600080fd5b61022061071d565b34801561023b57600080fd5b506102446107b0565b6040516102519190611c67565b60405180910390f35b34801561026657600080fd5b5061027a610275366004611cd1565b610842565b6040519015158152602001610251565b34801561029657600080fd5b50600a545b604051908152602001610251565b3480156102b557600080fd5b5060025461029b565b3480156102ca57600080fd5b5061029b6102d9366004611cfd565b60106020526000908152604090205481565b3480156102f757600080fd5b5061027a610306366004611d1a565b610859565b34801561031757600080fd5b50610220610326366004611d5b565b610908565b34801561033757600080fd5b5061029b610346366004611cfd565b61094a565b34801561035757600080fd5b5061029b600e5481565b34801561036d57600080fd5b5060405160128152602001610251565b34801561038957600080fd5b50610220610398366004611cfd565b6109a6565b3480156103a957600080fd5b5061027a6103b8366004611cd1565b610acd565b3480156103c957600080fd5b5061027a6103d8366004611cfd565b600f6020526000908152604090205460ff1681565b3480156103f957600080fd5b5061040d610408366004611d5b565b610b09565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610251565b34801561045e57600080fd5b50610220610c5d565b34801561047357600080fd5b5061029b60115481565b34801561048957600080fd5b5061029b610498366004611cfd565b6001600160a01b031660009081526020819052604090205490565b3480156104bf57600080fd5b50610220610cff565b3480156104d457600080fd5b5061029b60085481565b3480156104ea57600080fd5b506009546040516001600160a01b039091168152602001610251565b34801561051257600080fd5b5061029b610521366004611cfd565b610d33565b34801561053257600080fd5b50610244610d3e565b34801561054757600080fd5b5061027a610556366004611cd1565b610d4d565b34801561056757600080fd5b5061029b610576366004611cfd565b610de6565b34801561058757600080fd5b5061027a610596366004611cd1565b610e12565b3480156105a757600080fd5b5061029b6105b6366004611cfd565b6001600160a01b031660009081526007602052604090205490565b3480156105dd57600080fd5b5061027a6105ec366004611d74565b610e1f565b3480156105fd57600080fd5b5061029b60125481565b34801561061357600080fd5b5061029b610622366004611db2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561065957600080fd5b50610220610668366004611cd1565b610ecd565b34801561067957600080fd5b50600e5461029b565b34801561068e57600080fd5b5061022061069d366004611d5b565b611037565b3480156106ae57600080fd5b506102206106bd366004611cfd565b6111a3565b3480156106ce57600080fd5b5061040d6106dd366004611cfd565b61123e565b3480156106ee57600080fd5b506107026106fd366004611d5b565b6113a7565b60408051938452602084019290925290820152606001610251565b600061072860025490565b1161073257600080fd5b34156107ae5761076561074460025490565b61075234600160801b6114c4565b61075c9190611df6565b600554906114d7565b60055560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a26008546107aa90346114d7565b6008555b565b6060600380546107bf90611e18565b80601f01602080910402602001604051908101604052809291908181526020018280546107eb90611e18565b80156108385780601f1061080d57610100808354040283529160200191610838565b820191906000526020600020905b81548152906001019060200180831161081b57829003601f168201915b5050505050905090565b600061084f3384846114e3565b5060015b92915050565b6000610866848484611607565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108f05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108fd85338584036114e3565b506001949350505050565b6009546001600160a01b031633146109325760405162461bcd60e51b81526004016108e790611e52565b61094481670de0b6b3a7640000611e87565b60125550565b6001600160a01b03811660009081526006602090815260408083205491839052822054600554600160801b9261099c92610997926109919161098c91906114c4565b611663565b906116d1565b6116dd565b6108539190611df6565b6009546001600160a01b031633146109d05760405162461bcd60e51b81526004016108e790611e52565b6001600160a01b0381166000908152600f602052604090205460ff16156109f657600080fd5b6001600160a01b0381166000908152600f60205260408120805460ff19166001179055610a2490829061172f565b60405163131836e760e21b8152600a60048201526001600160a01b038216602482015273a268a890a8047871d71f93cecc9af0b35e32e6e190634c60db9c9060440160006040518083038186803b158015610a7e57600080fd5b505af4158015610a92573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161084f918590610b04908690611ea6565b6114e3565b600080600080600080600080600a73a268a890a8047871d71f93cecc9af0b35e32e6e163deb3d89690916040518263ffffffff1660e01b8152600401610b5191815260200190565b602060405180830381865af4158015610b6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b929190611ebe565b8910610bb7575060009650600019955085945086935083925082915081905080610c52565b6040516368d54f3f60e11b8152600a6004820152602481018a905260009073a268a890a8047871d71f93cecc9af0b35e32e6e19063d1aa9e7e90604401602060405180830381865af4158015610c11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c359190611ed7565b9050610c408161123e565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b815260206004820152606560248201527f245a46475f4469766964656e645f547261636b65723a2077697468647261774460448201527f69766964656e642064697361626c65642e20557365207468652027636c61696d60648201527f272066756e6374696f6e206f6e20746865206d61696e20245a464720636f6e746084820152643930b1ba1760d91b60a482015260c4016108e7565b6009546001600160a01b03163314610d295760405162461bcd60e51b81526004016108e790611e52565b6107ae6000611794565b600061085382610de6565b6060600480546107bf90611e18565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610dcf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108e7565b610ddc33858584036114e3565b5060019392505050565b6001600160a01b03811660009081526007602052604081205461085390610e0c8461094a565b906117e6565b600061084f338484611607565b6009546000906001600160a01b03163314610e4c5760405162461bcd60e51b81526004016108e790611e52565b6000610e57846117f2565b90508015610ec3576001600160a01b038416600081815260106020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610eb19085815260200190565b60405180910390a36001915050610853565b5060009392505050565b6009546001600160a01b03163314610ef75760405162461bcd60e51b81526004016108e790611e52565b6001600160a01b0382166000908152600f602052604090205460ff16611033576012548110610fa857610f2a828261172f565b604051632f0ad01760e21b8152600a60048201526001600160a01b03831660248201526044810182905273a268a890a8047871d71f93cecc9af0b35e32e6e19063bc2b405c9060640160006040518083038186803b158015610f8b57600080fd5b505af4158015610f9f573d6000803e3d6000fd5b50505050611026565b610fb382600061172f565b60405163131836e760e21b8152600a60048201526001600160a01b038316602482015273a268a890a8047871d71f93cecc9af0b35e32e6e190634c60db9c9060440160006040518083038186803b15801561100d57600080fd5b505af4158015611021573d6000803e3d6000fd5b505050505b611031826001610e1f565b505b5050565b6009546001600160a01b031633146110615760405162461bcd60e51b81526004016108e790611e52565b610e108110158015611076575062093a808111155b6110f95760405162461bcd60e51b815260206004820152604860248201527f245a46475f4469766964656e645f547261636b65723a20636c61696d5761697460448201527f206d757374206265207570646174656420746f206265747765656e203120616e606482015267642037206461797360c01b608482015260a4016108e7565b60115481036111705760405162461bcd60e51b815260206004820152603c60248201527f245a46475f4469766964656e645f547261636b65723a2043616e6e6f7420757060448201527f6461746520636c61696d5761697420746f2073616d652076616c75650000000060648201526084016108e7565b60115460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601155565b6009546001600160a01b031633146111cd5760405162461bcd60e51b81526004016108e790611e52565b6001600160a01b0381166112325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e7565b61123b81611794565b50565b6040516317e142d160e01b8152600a60048201526001600160a01b0382166024820152819060009081908190819081908190819073a268a890a8047871d71f93cecc9af0b35e32e6e1906317e142d190604401602060405180830381865af41580156112ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d29190611ebe565b965060001995506000871261133457600e5487111561130057600e546112f9908890611938565b9550611334565b600e54600a5460009110611315576000611324565b600e54600a54611324916117e6565b905061133088826116d1565b9650505b61133d88610de6565b94506113488861094a565b6001600160a01b038916600090815260106020526040902054909450925082611372576000611380565b6011546113809084906114d7565b915042821161139057600061139a565b61139a82426117e6565b9050919395975091939597565b600a54600090819081908082036113c9575050600e54600092508291506114bd565b600e546000805a90506000805b89841080156113e457508582105b156114ac57846113f381611ef4565b600a549096508610905061140657600094505b6000600a600001868154811061141e5761141e611f0d565b60009182526020808320909101546001600160a01b0316808352601090915260409091205490915061144f90611944565b156114725761145f816001610e1f565b15611472578161146e81611ef4565b9250505b8261147c81611ef4565b93505060005a9050808511156114a3576114a061149986836117e6565b87906114d7565b95505b93506113d69050565b600e85905590975095509193505050505b9193909250565b60006114d08284611e87565b9392505050565b60006114d08284611ea6565b6001600160a01b0383166115455760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108e7565b6001600160a01b0382166115a65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108e7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152602b60248201527f245a46475f4469766964656e645f547261636b65723a204e6f207472616e736660448201526a195c9cc8185b1b1bddd95960aa1b60648201526084016108e7565b60006001600160ff1b038211156116cd5760405162461bcd60e51b815260206004820152602860248201527f53616665436173743a2076616c756520646f65736e27742066697420696e2061604482015267371034b73a191a9b60c11b60648201526084016108e7565b5090565b60006114d08284611f23565b6000808212156116cd5760405162461bcd60e51b815260206004820181905260248201527f53616665436173743a2076616c7565206d75737420626520706f73697469766560448201526064016108e7565b6001600160a01b0382166000908152602081905260409020548082111561176e57600061175c83836117e6565b9050611768848261196b565b50611031565b8082101561103157600061178282846117e6565b905061178e84826119cf565b50505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006114d08284611f64565b6000806117fe83610de6565b9050801561192f576001600160a01b03831660009081526007602052604090205461182990826114d7565b6001600160a01b038416600081815260076020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d906118789084815260200190565b60405180910390a26000836001600160a01b031682610bb890604051600060405180830381858888f193505050503d80600081146118d2576040519150601f19603f3d011682016040523d82523d6000602084013e6118d7565b606091505b5050905080611928576001600160a01b03841660009081526007602052604090205461190390836117e6565b6001600160a01b03909416600090815260076020526040812094909455509192915050565b5092915050565b50600092915050565b60006114d08284611f7b565b60004282111561195657506000919050565b60115461196342846117e6565b101592915050565b6119758282611a13565b6119af61199061098c836005546114c490919063ffffffff16565b6001600160a01b03841660009081526006602052604090205490611938565b6001600160a01b0390921660009081526006602052604090209190915550565b6119d98282611b06565b6119af6119f461098c836005546114c490919063ffffffff16565b6001600160a01b038416600090815260066020526040902054906116d1565b6001600160a01b038216611a695760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108e7565b611a7560008383611031565b8060026000828254611a879190611ea6565b90915550506001600160a01b03821660009081526020819052604081208054839290611ab4908490611ea6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361103360008383611031565b6001600160a01b038216611b665760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108e7565b611b7282600083611031565b6001600160a01b03821660009081526020819052604090205481811015611be65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108e7565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611c15908490611f64565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361103183600084611031565b600060208083528351808285015260005b81811015611c9457858101830151858201604001528201611c78565b81811115611ca6576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461123b57600080fd5b60008060408385031215611ce457600080fd5b8235611cef81611cbc565b946020939093013593505050565b600060208284031215611d0f57600080fd5b81356114d081611cbc565b600080600060608486031215611d2f57600080fd5b8335611d3a81611cbc565b92506020840135611d4a81611cbc565b929592945050506040919091013590565b600060208284031215611d6d57600080fd5b5035919050565b60008060408385031215611d8757600080fd5b8235611d9281611cbc565b915060208301358015158114611da757600080fd5b809150509250929050565b60008060408385031215611dc557600080fd5b8235611dd081611cbc565b91506020830135611da781611cbc565b634e487b7160e01b600052601160045260246000fd5b600082611e1357634e487b7160e01b600052601260045260246000fd5b500490565b600181811c90821680611e2c57607f821691505b602082108103611e4c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615611ea157611ea1611de0565b500290565b60008219821115611eb957611eb9611de0565b500190565b600060208284031215611ed057600080fd5b5051919050565b600060208284031215611ee957600080fd5b81516114d081611cbc565b600060018201611f0657611f06611de0565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600080821280156001600160ff1b0384900385131615611f4557611f45611de0565b600160ff1b8390038412811615611f5e57611f5e611de0565b50500190565b600082821015611f7657611f76611de0565b500390565b60008083128015600160ff1b850184121615611f9957611f99611de0565b6001600160ff1b0384018313811615611fb457611fb4611de0565b5050039056fea2646970667358221220c6231f1706697671ad02297216150950459b646eb3d06d55c50c61681494c30664736f6c634300080e0033
Deployed Bytecode
0x60806040526004361061044b5760003560e01c8063700bb19111610234578063a9059cbb1161012e578063e083e922116100b6578063e884f2601161007a578063e884f26014610d46578063e98030c714610d5b578063ee40166e14610d7b578063f27fd25414610d91578063f2fde38b14610db157600080fd5b8063e083e92214610cc5578063e2f4560514610ce5578063e6c75f7114610cfb578063e7841ec014610d11578063e7b8f69714610d2657600080fd5b8063c0246668116100fd578063c024666814610c05578063c492f04614610c25578063c49b9a8014610c45578063c876d0b914610c65578063dd62ed3e14610c7f57600080fd5b8063a9059cbb14610b2f578063ad56c13c14610b4f578063b62496f514610bb4578063bbc0c74214610be457600080fd5b80638a8c523c116101bc5780639a7a23d6116101805780639a7a23d614610aa45780639c1b8af514610ac4578063a26579ad14610ada578063a457c2d714610aef578063a8b9d24014610b0f57600080fd5b80638a8c523c14610a305780638c0344db14610a455780638da5cb5b14610a5b57806395d89b4114610a7957806398118cb414610a8e57600080fd5b806375f0a8741161020357806375f0a874146109945780637719c8c6146109b457806383e1b7d8146109ca57806385ecfd28146109e0578063871c128d14610a1057600080fd5b8063700bb1911461092a57806370a082311461094a578063715018a61461096a578063751039fc1461097f57600080fd5b8063455a4396116103455780635aa821a9116102cd57806364b0f6531161029157806364b0f65314610886578063658c27a91461089b57806365b8dbc0146108d45780636843cd84146108f45780636b67c4df1461091457600080fd5b80635aa821a9146107f05780635b65b9ab146108065780635b89029c146108265780635bb988c9146108465780635d098b381461086657600080fd5b80634a74bb02116103145780634a74bb021461074c5780634c1fa5201461076c5780634e71d92d146107825780634fbee193146107975780635290c250146107d057600080fd5b8063455a4396146106b957806349928a50146106d957806349bd5a5e146106f95780634a62bb651461072d57600080fd5b806318160ddd116103d35780632c1f5216116103975780632c1f52161461062857806330bb4cff14610648578063313ce5671461065d57806331e79db014610679578063395093511461069957600080fd5b806318160ddd1461058d5780631cdd3be3146105a25780631d865c30146105d25780631fc851bd146105f257806323b872dd1461060857600080fd5b80630b4ae4201161041a5780630b4ae420146104f45780630fec5dd01461050957806310beae951461052957806313114a9d1461053f5780631694505e1461055557600080fd5b806302259e9e1461045757806306fdde0314610480578063095ea7b3146104a25780630a088000146104d257600080fd5b3661045257005b600080fd5b34801561046357600080fd5b5061046d600d5481565b6040519081526020015b60405180910390f35b34801561048c57600080fd5b50610495610dd1565b6040516104779190613591565b3480156104ae57600080fd5b506104c26104bd3660046135fb565b610e63565b6040519015158152602001610477565b3480156104de57600080fd5b506104f26104ed366004613627565b610e79565b005b34801561050057600080fd5b506104f2610ec4565b34801561051557600080fd5b506104f2610524366004613627565b610f7a565b34801561053557600080fd5b5061046d60185481565b34801561054b57600080fd5b5061046d60135481565b34801561056157600080fd5b50600654610575906001600160a01b031681565b6040516001600160a01b039091168152602001610477565b34801561059957600080fd5b5060025461046d565b3480156105ae57600080fd5b506104c26105bd366004613640565b601d6020526000908152604090205460ff1681565b3480156105de57600080fd5b506104f26105ed36600461365d565b610fbc565b3480156105fe57600080fd5b5061046d600b5481565b34801561061457600080fd5b506104c2610623366004613689565b611063565b34801561063457600080fd5b50600c54610575906001600160a01b031681565b34801561065457600080fd5b5061046d61110d565b34801561066957600080fd5b5060405160128152602001610477565b34801561068557600080fd5b506104f2610694366004613640565b611180565b3480156106a557600080fd5b506104c26106b43660046135fb565b61120d565b3480156106c557600080fd5b506104f26106d43660046136d8565b611249565b3480156106e557600080fd5b506104f26106f4366004613640565b61129e565b34801561070557600080fd5b506105757f000000000000000000000000780841013d9b000062872d7b263b7db6083efeab81565b34801561073957600080fd5b506008546104c290610100900460ff1681565b34801561075857600080fd5b506008546104c29062010000900460ff1681565b34801561077857600080fd5b5061046d60165481565b34801561078e57600080fd5b506104f261132f565b3480156107a357600080fd5b506104c26107b2366004613640565b6001600160a01b03166000908152601b602052604090205460ff1690565b3480156107dc57600080fd5b506104f26107eb366004613627565b6113a4565b3480156107fc57600080fd5b5061046d600e5481565b34801561081257600080fd5b506104f261082136600461365d565b6113e6565b34801561083257600080fd5b506104f26108413660046136d8565b611482565b34801561085257600080fd5b506104f2610861366004613640565b6114d7565b34801561087257600080fd5b506104f2610881366004613640565b61154a565b34801561089257600080fd5b5061046d611596565b3480156108a757600080fd5b506104c26108b6366004613640565b6001600160a01b03166000908152601c602052604090205460ff1690565b3480156108e057600080fd5b506104f26108ef366004613640565b6115e0565b34801561090057600080fd5b5061046d61090f366004613640565b6116d7565b34801561092057600080fd5b5061046d60145481565b34801561093657600080fd5b506104f2610945366004613627565b61174d565b34801561095657600080fd5b5061046d610965366004613640565b611820565b34801561097657600080fd5b506104f261183b565b34801561098b57600080fd5b506104c2611871565b3480156109a057600080fd5b50601954610575906001600160a01b031681565b3480156109c057600080fd5b5061046d60175481565b3480156109d657600080fd5b5061046d60155481565b3480156109ec57600080fd5b506104c26109fb366004613640565b600a6020526000908152604090205460ff1681565b348015610a1c57600080fd5b506104f2610a2b366004613627565b6118af565b348015610a3c57600080fd5b506104f2611a00565b348015610a5157600080fd5b5061046d60115481565b348015610a6757600080fd5b506005546001600160a01b0316610575565b348015610a8557600080fd5b50610495611a53565b348015610a9a57600080fd5b5061046d60125481565b348015610ab057600080fd5b506104f2610abf3660046136d8565b611a62565b348015610ad057600080fd5b5061046d601a5481565b348015610ae657600080fd5b5061046d611b55565b348015610afb57600080fd5b506104c2610b0a3660046135fb565b611b9f565b348015610b1b57600080fd5b5061046d610b2a366004613640565b611c38565b348015610b3b57600080fd5b506104c2610b4a3660046135fb565b611c6b565b348015610b5b57600080fd5b50610b6f610b6a366004613640565b611c78565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610477565b348015610bc057600080fd5b506104c2610bcf366004613640565b601e6020526000908152604090205460ff1681565b348015610bf057600080fd5b506008546104c2906301000000900460ff1681565b348015610c1157600080fd5b506104f2610c203660046136d8565b611d13565b348015610c3157600080fd5b506104f2610c40366004613711565b611e25565b348015610c5157600080fd5b506104f2610c60366004613797565b611f01565b348015610c7157600080fd5b506008546104c29060ff1681565b348015610c8b57600080fd5b5061046d610c9a3660046137b4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610cd157600080fd5b506104f2610ce0366004613640565b611f81565b348015610cf157600080fd5b5061046d600f5481565b348015610d0757600080fd5b5061046d60105481565b348015610d1d57600080fd5b5061046d6121bb565b348015610d3257600080fd5b506104f2610d41366004613627565b612205565b348015610d5257600080fd5b506104c2612247565b348015610d6757600080fd5b506104f2610d76366004613627565b612284565b348015610d8757600080fd5b5061046d60095481565b348015610d9d57600080fd5b50610b6f610dac366004613627565b6122df565b348015610dbd57600080fd5b506104f2610dcc366004613640565b612321565b606060038054610de0906137e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0c906137e2565b8015610e595780601f10610e2e57610100808354040283529160200191610e59565b820191906000526020600020905b815481529060010190602001808311610e3c57829003601f168201915b5050505050905090565b6000610e703384846123cc565b50600192915050565b6005546001600160a01b03163314610eac5760405162461bcd60e51b8152600401610ea39061381c565b60405180910390fd5b610ebe81670de0b6b3a7640000613867565b600e5550565b6005546001600160a01b03163314610eee5760405162461bcd60e51b8152600401610ea39061381c565b60004711610f3e5760405162461bcd60e51b815260206004820152601f60248201527f43616e2774207769746864726177206e65676174697665206f72207a65726f006044820152606401610ea3565b6005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610f77573d6000803e3d6000fd5b50565b6005546001600160a01b03163314610fa45760405162461bcd60e51b8152600401610ea39061381c565b610fb681670de0b6b3a7640000613867565b60105550565b6005546001600160a01b03163314610fe65760405162461bcd60e51b8152600401610ea39061381c565b6015839055601682905560188190556110098161100385856123b9565b906123b9565b6017819055601e101561105e5760405162461bcd60e51b815260206004820152601d60248201527f427579204665652073686f756c6420626520333025206f72206c6573730000006044820152606401610ea3565b505050565b60006110708484846124f0565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156110f55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610ea3565b61110285338584036123cc565b506001949350505050565b600c54604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015611157573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117b9190613886565b905090565b6005546001600160a01b031633146111aa5760405162461bcd60e51b8152600401610ea39061381c565b600c5460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b1580156111f257600080fd5b505af1158015611206573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610e7091859061124490869061389f565b6123cc565b6005546001600160a01b031633146112735760405162461bcd60e51b8152600401610ea39061381c565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112c85760405162461bcd60e51b8152600401610ea39061381c565b6001600160a01b038181166000818152601c602090815260408083208054600160ff199182168117909255601b9093529281902080549092169092179055600c54905163031e79db60e41b81526004810192909252909116906331e79db0906024016111d8565b600c5460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af1158015611380573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7791906138b7565b6005546001600160a01b031633146113ce5760405162461bcd60e51b8152600401610ea39061381c565b6113e081670de0b6b3a7640000613867565b600f5550565b6005546001600160a01b031633146114105760405162461bcd60e51b8152600401610ea39061381c565b60118390556012829055601481905561142d8161100385856123b9565b60138190556014101561105e5760405162461bcd60e51b815260206004820152601d60248201527f625559204645452053484f554c4420424520323025206f72206c6573730000006044820152606401610ea3565b6005546001600160a01b031633146114ac5760405162461bcd60e51b8152600401610ea39061381c565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146115015760405162461bcd60e51b8152600401610ea39061381c565b6001600160a01b0381166000818152600a6020526040808220805460ff19169055517fccaa6e1cfd4cf9506fa856fdc8e0a00894b2621ece1d60ab36209873305944989190a250565b6005546001600160a01b031633146115745760405162461bcd60e51b8152600401610ea39061381c565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b600c54604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015611157573d6000803e3d6000fd5b6005546001600160a01b0316331461160a5760405162461bcd60e51b8152600401610ea39061381c565b6006546001600160a01b039081169082160361167a5760405162461bcd60e51b815260206004820152602960248201527f245a46473a2054686520726f7574657220616c7265616479206861732074686160448201526874206164647265737360b81b6064820152608401610ea3565b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b600c546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa158015611723573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117479190613886565b92915050565b600c546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af11580156117a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c491906138d4565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146118655760405162461bcd60e51b8152600401610ea39061381c565b61186f6000612e2b565b565b6005546000906001600160a01b0316331461189e5760405162461bcd60e51b8152600401610ea39061381c565b506008805461ffff19169055600190565b6005546001600160a01b031633146118d95760405162461bcd60e51b8152600401610ea39061381c565b62030d4081101580156118ef57506207a1208111155b6119615760405162461bcd60e51b815260206004820152603a60248201527f245a46473a20676173466f7250726f63657373696e67206d757374206265206260448201527f65747765656e203230302c30303020616e64203530302c3030300000000000006064820152608401610ea3565b601a5481036119cd5760405162461bcd60e51b815260206004820152603260248201527f245a46473a2043616e6e6f742075706461746520676173466f7250726f63657360448201527173696e6720746f2073616d652076616c756560701b6064820152608401610ea3565b601a5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601a55565b6005546001600160a01b03163314611a2a5760405162461bcd60e51b8152600401610ea39061381c565b6008805463ffff00001916630101000017905543600955611a4e426203f48061389f565b600b55565b606060048054610de0906137e2565b6005546001600160a01b03163314611a8c5760405162461bcd60e51b8152600401610ea39061381c565b7f000000000000000000000000780841013d9b000062872d7b263b7db6083efeab6001600160a01b0316826001600160a01b031603611b475760405162461bcd60e51b815260206004820152604b60248201527f245a46473a205468652050616e63616b655377617020706169722063616e6e6f60448201527f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b6560648201526a744d616b6572506169727360a81b608482015260a401610ea3565b611b518282612e7d565b5050565b600c5460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015611157573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015611c215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ea3565b611c2e33858584036123cc565b5060019392505050565b600c546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401611706565b6000610e703384846124f0565b600c5460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b61010060405180830381865afa158015611cd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf89190613902565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b03163314611d3d5760405162461bcd60e51b8152600401610ea39061381c565b6001600160a01b0382166000908152601b602052604090205481151560ff909116151503611dc65760405162461bcd60e51b815260206004820152603060248201527f245a46473a204163636f756e7420697320616c7265616479207468652076616c60448201526f7565206f6620276578636c756465642760801b6064820152608401610ea3565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314611e4f5760405162461bcd60e51b8152600401610ea39061381c565b60005b82811015611ec05781601b6000868685818110611e7157611e7161396c565b9050602002016020810190611e869190613640565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611eb881613982565b915050611e52565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051611ef49392919061399b565b60405180910390a1505050565b6005546001600160a01b03163314611f2b5760405162461bcd60e51b8152600401610ea39061381c565b60088054821515620100000262ff0000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990611f7690831515815260200190565b60405180910390a150565b6005546001600160a01b03163314611fab5760405162461bcd60e51b8152600401610ea39061381c565b306001600160a01b038216036120185760405162461bcd60e51b815260206004820152602c60248201527f43616e277420776974686472617720746f6b656e732064657374696e6564206660448201526b6f72206c697175696469747960a01b6064820152608401610ea3565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561205f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120839190613886565b116120c35760405162461bcd60e51b815260206004820152601060248201526f043616e277420776974686472617720360841b6044820152606401610ea3565b806001600160a01b031663a9059cbb6120e46005546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015612128573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214c9190613886565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015612197573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b5191906138b7565b600c546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015611157573d6000803e3d6000fd5b6005546001600160a01b0316331461222f5760405162461bcd60e51b8152600401610ea39061381c565b61224181670de0b6b3a7640000613867565b600d5550565b6005546000906001600160a01b031633146122745760405162461bcd60e51b8152600401610ea39061381c565b506008805460ff19169055600190565b6005546001600160a01b031633146122ae5760405162461bcd60e51b8152600401610ea39061381c565b600c5460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c7906024016111d8565b600c54604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611cb6565b6005546001600160a01b0316331461234b5760405162461bcd60e51b8152600401610ea39061381c565b6001600160a01b0381166123b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ea3565b610f7781612e2b565b60006123c5828461389f565b9392505050565b6001600160a01b03831661242e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ea3565b6001600160a01b03821661248f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ea3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166125165760405162461bcd60e51b8152600401610ea3906139f4565b6001600160a01b03821661253c5760405162461bcd60e51b8152600401610ea390613a39565b6001600160a01b0383166000908152601d602052604090205460ff1615801561257e57506001600160a01b0382166000908152601d602052604090205460ff16155b6125c05760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610ea3565b6008546301000000900460ff1661265c576001600160a01b0383166000908152601b602052604090205460ff168061261057506001600160a01b0382166000908152601b602052604090205460ff165b61265c5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610ea3565b806000036126705761105e83836000612fdc565b600854610100900460ff1615612af2576005546001600160a01b038481169116148015906126ac57506005546001600160a01b03838116911614155b80156126c057506001600160a01b03821615155b80156126d757506001600160a01b03821661dead14155b801561271557507f000000000000000000000000780841013d9b000062872d7b263b7db6083efeab6001600160a01b0316826001600160a01b031614155b15612972576005546001600160a01b0384811691161480159061276a57507f000000000000000000000000780841013d9b000062872d7b263b7db6083efeab6001600160a01b0316826001600160a01b031614155b8015612777575060095443145b156127c6576001600160a01b0382166000818152600a6020526040808220805460ff19166001179055517fb90badc1cf1c52268f4fa9afb5276aebf640bcca3300cdfc9cf37db17daa13e29190a25b60085460ff16156128fb576005546001600160a01b038381169116148015906127fd57506006546001600160a01b03838116911614155b801561283b57507f000000000000000000000000780841013d9b000062872d7b263b7db6083efeab6001600160a01b0316826001600160a01b031614155b156128fb576001600160a01b03821660009081526007602052604090205443116128df5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610ea3565b6001600160a01b03821660009081526007602052604090204390555b600061290683611820565b601054909150612916838361389f565b11156129705760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610ea3565b505b6001600160a01b0382166000908152601e602052604090205460ff1680156129b357506001600160a01b0383166000908152601c602052604090205460ff16155b80156129d857506001600160a01b0382166000908152601c602052604090205460ff16155b15612a0f57600d546129e984611820565b10612a0f5760026129f984611820565b612a039190613a7c565b811115612a0f57600080fd5b6001600160a01b0383166000908152601e602052604090205460ff168015612a5057506001600160a01b0383166000908152601c602052604090205460ff16155b8015612a7557506001600160a01b0382166000908152601c602052604090205460ff16155b15612af257600e54811115612af25760405162461bcd60e51b815260206004820152603960248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61784275795472616e73616374696f6e416d6f756e742e000000000000006064820152608401610ea3565b6000612afd30611820565b600f5490915081108015908190612b1e5750600654600160a01b900460ff16155b8015612b4357506001600160a01b0385166000908152601e602052604090205460ff16155b8015612b57575060085462010000900460ff165b15612b6557612b6582613123565b6001600160a01b0385166000908152601b602052604090205460ff16158015612ba757506001600160a01b0384166000908152601b602052604090205460ff16155b15612c5e576000606460135485612bbe9190613867565b612bc89190613a7c565b6001600160a01b0386166000908152601e602052604090205490915060ff1615612c4557606460175485612bfc9190613867565b612c069190613a7c565b6001600160a01b0387166000908152600a602052604090205490915060ff168015612c32575042600b54115b15612c4557612c42816002613867565b90505b612c4f8185613a9e565b9350612c5c863083612fdc565b505b612c69858585612fdc565b600c546001600160a01b031663e30443bc86612c8481611820565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612cca57600080fd5b505af1925050508015612cdb575060015b50600c546001600160a01b031663e30443bc85612cf781611820565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612d3d57600080fd5b505af1925050508015612d4e575060015b50600654600160a01b900460ff1661120657601a54600c546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af1925050508015612dcd575060408051601f3d908101601f19168201909252612dca918101906138d4565b60015b15612e235760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601e602052604090205481151560ff909116151503612f135760405162461bcd60e51b815260206004820152603e60248201527f245a46473a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c756500006064820152608401610ea3565b6001600160a01b0382166000908152601e60205260409020805460ff19168215801591909117909155612fa057600c5460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b158015612f8757600080fd5b505af1158015612f9b573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166130025760405162461bcd60e51b8152600401610ea3906139f4565b6001600160a01b0382166130285760405162461bcd60e51b8152600401610ea390613a39565b6001600160a01b038316600090815260208190526040902054818110156130a05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ea3565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906130d790849061389f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161181291815260200190565b6006805460ff60a01b1916600160a01b17905560165460175460009161315f916131599061315290600261332b565b8590613337565b9061332b565b9050600061316d8284613a9e565b90504761317a8230613343565b60006131868247613a9e565b905060006131c36131af6016546131a9600260175461332b90919063ffffffff16565b906134cf565b6016546131bd90859061332b565b90613337565b90506131cf85826134db565b60006131fb6018546131596131f16016546017546134cf90919063ffffffff16565b6131bd87876134cf565b6019546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015613236573d6000803e3d6000fd5b50600c5460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114613288576040519150601f19603f3d011682016040523d82523d6000602084013e61328d565b606091505b5050905080156132da577f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc36132c28989613a9e565b60408051918252602082018590520160405180910390a15b60408051898152602081018790527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506006805460ff60a01b1916905550505050505050565b60006123c58284613867565b60006123c58284613a7c565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106133785761337861396c565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156133d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133f59190613ab5565b816001815181106134085761340861396c565b6001600160a01b039283166020918202929092018101919091526006543060009081526001835260408082209290941681529152205483111561345f5760065461345f9030906001600160a01b03166000196123cc565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790613498908690600090869088904290600401613ad2565b600060405180830381600087803b1580156134b257600080fd5b505af11580156134c6573d6000803e3d6000fd5b50505050505050565b60006123c58284613a9e565b6006546001600160a01b031663f305d7198230856000806135046005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561356c573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061120691906138d4565b600060208083528351808285015260005b818110156135be578581018301518582016040015282016135a2565b818111156135d0576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610f7757600080fd5b6000806040838503121561360e57600080fd5b8235613619816135e6565b946020939093013593505050565b60006020828403121561363957600080fd5b5035919050565b60006020828403121561365257600080fd5b81356123c5816135e6565b60008060006060848603121561367257600080fd5b505081359360208301359350604090920135919050565b60008060006060848603121561369e57600080fd5b83356136a9816135e6565b925060208401356136b9816135e6565b929592945050506040919091013590565b8015158114610f7757600080fd5b600080604083850312156136eb57600080fd5b82356136f6816135e6565b91506020830135613706816136ca565b809150509250929050565b60008060006040848603121561372657600080fd5b833567ffffffffffffffff8082111561373e57600080fd5b818601915086601f83011261375257600080fd5b81358181111561376157600080fd5b8760208260051b850101111561377657600080fd5b6020928301955093505084013561378c816136ca565b809150509250925092565b6000602082840312156137a957600080fd5b81356123c5816136ca565b600080604083850312156137c757600080fd5b82356137d2816135e6565b91506020830135613706816135e6565b600181811c908216806137f657607f821691505b60208210810361381657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561388157613881613851565b500290565b60006020828403121561389857600080fd5b5051919050565b600082198211156138b2576138b2613851565b500190565b6000602082840312156138c957600080fd5b81516123c5816136ca565b6000806000606084860312156138e957600080fd5b8351925060208401519150604084015190509250925092565b600080600080600080600080610100898b03121561391f57600080fd5b885161392a816135e6565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b634e487b7160e01b600052603260045260246000fd5b60006001820161399457613994613851565b5060010190565b6040808252810183905260008460608301825b868110156139de5782356139c1816135e6565b6001600160a01b03168252602092830192909101906001016139ae565b5080925050508215156020830152949350505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082613a9957634e487b7160e01b600052601260045260246000fd5b500490565b600082821015613ab057613ab0613851565b500390565b600060208284031215613ac757600080fd5b81516123c5816135e6565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015613b225784516001600160a01b031683529383019391830191600101613afd565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205c0209f5d236502bbda8ec7c6b30621d9d2d86d405907332e73421f03041ce0764736f6c634300080e0033
Deployed Bytecode Sourcemap
60125:20753:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61068:62;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;61068:62:0;;;;;;;;28051:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30218:169::-;;;;;;;;;;-1:-1:-1;30218:169:0;;;;;:::i;:::-;;:::i;:::-;;;1419:14:1;;1412:22;1394:41;;1382:2;1367:18;30218:169:0;1254:187:1;67847:129:0;;;;;;;;;;-1:-1:-1;67847:129:0;;;;;:::i;:::-;;:::i;:::-;;80172:194;;;;;;;;;;;;;:::i;64783:120::-;;;;;;;;;;-1:-1:-1;64783:120:0;;;;;:::i;:::-;;:::i;61607:33::-;;;;;;;;;;;;;;;;61422:24;;;;;;;;;;;;;;;;60198:41;;;;;;;;;;-1:-1:-1;60198:41:0;;;;-1:-1:-1;;;;;60198:41:0;;;;;;-1:-1:-1;;;;;1821:32:1;;;1803:51;;1791:2;1776:18;60198:41:0;1631:229:1;29171:108:0;;;;;;;;;;-1:-1:-1;29259:12:0;;29171:108;;61993:46;;;;;;;;;;-1:-1:-1;61993:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;64319:456;;;;;;;;;;-1:-1:-1;64319:456:0;;;;;:::i;:::-;;:::i;60912:33::-;;;;;;;;;;;;;;;;30869:492;;;;;;;;;;-1:-1:-1;30869:492:0;;;;;:::i;:::-;;:::i;61017:42::-;;;;;;;;;;-1:-1:-1;61017:42:0;;;;-1:-1:-1;;;;;61017:42:0;;;70599:141;;;;;;;;;;;;;:::i;29013:93::-;;;;;;;;;;-1:-1:-1;29013:93:0;;29096:2;3287:36:1;;3275:2;3260:18;29013:93:0;3145:184:1;72700:130:0;;;;;;;;;;-1:-1:-1;72700:130:0;;;;;:::i;:::-;;:::i;31770:215::-;;;;;;;;;;-1:-1:-1;31770:215:0;;;;;:::i;:::-;;:::i;64188:123::-;;;;;;;;;;-1:-1:-1;64188:123:0;;;;;:::i;:::-;;:::i;68573:222::-;;;;;;;;;;-1:-1:-1;68573:222:0;;;;;:::i;:::-;;:::i;60246:38::-;;;;;;;;;;;;;;;60555:33;;;;;;;;;;-1:-1:-1;60555:33:0;;;;;;;;;;;60597:40;;;;;;;;;;-1:-1:-1;60597:40:0;;;;;;;;;;;61530:33;;;;;;;;;;;;;;;;72230:97;;;;;;;;;;;;;:::i;70748:125::-;;;;;;;;;;-1:-1:-1;70748:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;70837:28:0;70813:4;70837:28;;;:19;:28;;;;;;;;;70748:125;69390:128;;;;;;;;;;-1:-1:-1;69390:128:0;;;;;:::i;:::-;;:::i;61143:61::-;;;;;;;;;;;;;;;;63375:400;;;;;;;;;;-1:-1:-1;63375:400:0;;;;;:::i;:::-;;:::i;68431:134::-;;;;;;;;;;-1:-1:-1;68431:134:0;;;;;:::i;:::-;;:::i;80374:148::-;;;;;;;;;;-1:-1:-1;80374:148:0;;;;;:::i;:::-;;:::i;64915:138::-;;;;;;;;;;-1:-1:-1;64915:138:0;;;;;:::i;:::-;;:::i;72469:141::-;;;;;;;;;;;;;:::i;70885:127::-;;;;;;;;;;-1:-1:-1;70885:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;70975:29:0;70951:4;70975:29;;;:20;:29;;;;;;;;;70885:127;67526:313;;;;;;;;;;-1:-1:-1;67526:313:0;;;;;:::i;:::-;;:::i;71172:130::-;;;;;;;;;;-1:-1:-1;71172:130:0;;;;;:::i;:::-;;:::i;61453:27::-;;;;;;;;;;;;;;;;71963:259;;;;;;;;;;-1:-1:-1;71963:259:0;;;;;:::i;:::-;;:::i;29342:127::-;;;;;;;;;;-1:-1:-1;29342:127:0;;;;;:::i;:::-;;:::i;39573:94::-;;;;;;;;;;;;;:::i;63843:159::-;;;;;;;;;;;;;:::i;61649:39::-;;;;;;;;;;-1:-1:-1;61649:39:0;;;;-1:-1:-1;;;;;61649:39:0;;;61570:30;;;;;;;;;;;;;;;;61489:34;;;;;;;;;;;;;;;;60763:43;;;;;;;;;;-1:-1:-1;60763:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;69939:404;;;;;;;;;;-1:-1:-1;69939:404:0;;;;;:::i;:::-;;:::i;67294:224::-;;;;;;;;;;;;;:::i;61353:28::-;;;;;;;;;;;;;;;;38922:87;;;;;;;;;;-1:-1:-1;38995:6:0;;-1:-1:-1;;;;;38995:6:0;38922:87;;28270:104;;;;;;;;;;;;;:::i;61388:27::-;;;;;;;;;;;;;;;;69115:262;;;;;;;;;;-1:-1:-1;69115:262:0;;;;;:::i;:::-;;:::i;61765:40::-;;;;;;;;;;;;;;;;70483:108;;;;;;;;;;;;;:::i;32488:413::-;;;;;;;;;;-1:-1:-1;32488:413:0;;;;;:::i;:::-;;:::i;71020:147::-;;;;;;;;;;-1:-1:-1;71020:147:0;;;;;:::i;:::-;;:::i;29682:175::-;;;;;;;;;;-1:-1:-1;29682:175:0;;;;;:::i;:::-;;:::i;71310:318::-;;;;;;;;;;-1:-1:-1;71310:318:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4893:32:1;;;4875:51;;4957:2;4942:18;;4935:34;;;;4985:18;;;4978:34;;;;5043:2;5028:18;;5021:34;;;;5086:3;5071:19;;5064:35;4913:3;5115:19;;5108:35;5174:3;5159:19;;5152:35;5218:3;5203:19;;5196:35;4862:3;4847:19;71310:318:0;4536:701:1;62197:58:0;;;;;;;;;;-1:-1:-1;62197:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;60644:33;;;;;;;;;;-1:-1:-1;60644:33:0;;;;;;;;;;;68123:296;;;;;;;;;;-1:-1:-1;68123:296:0;;;;;:::i;:::-;;:::i;68803:304::-;;;;;;;;;;-1:-1:-1;68803:304:0;;;;;:::i;:::-;;:::i;72838:171::-;;;;;;;;;;-1:-1:-1;72838:171:0;;;;;:::i;:::-;;:::i;60509:39::-;;;;;;;;;;-1:-1:-1;60509:39:0;;;;;;;;29920:151;;;;;;;;;;-1:-1:-1;29920:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;30036:18:0;;;30009:7;30036:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29920:151;80530:339;;;;;;;;;;-1:-1:-1;80530:339:0;;;;;:::i;:::-;;:::i;61216:55::-;;;;;;;;;;;;;;;;61287:52;;;;;;;;;;;;;;;;72335:126;;;;;;;;;;;;;:::i;67984:131::-;;;;;;;;;;-1:-1:-1;67984:131:0;;;;;:::i;:::-;;:::i;64045:134::-;;;;;;;;;;;;;:::i;70351:124::-;;;;;;;;;;-1:-1:-1;70351:124:0;;;;;:::i;:::-;;:::i;60686:37::-;;;;;;;;;;;;;;;;71633:325;;;;;;;;;;-1:-1:-1;71633:325:0;;;;;:::i;:::-;;:::i;39822:192::-;;;;;;;;;;-1:-1:-1;39822:192:0;;;;;:::i;:::-;;:::i;28051:100::-;28105:13;28138:5;28131:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28051:100;:::o;30218:169::-;30301:4;30318:39;22657:10;30341:7;30350:6;30318:8;:39::i;:::-;-1:-1:-1;30375:4:0;30218:169;;;;:::o;67847:129::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;;;;;;;;;67948:18:::1;:7:::0;67959:6:::1;67948:18;:::i;:::-;67922:23;:44:::0;-1:-1:-1;67847:129:0:o;80172:194::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;80262:1:::1;80238:21;:25;80229:70;;;::::0;-1:-1:-1;;;80229:70:0;;7889:2:1;80229:70:0::1;::::0;::::1;7871:21:1::0;7928:2;7908:18;;;7901:30;7967:33;7947:18;;;7940:61;8018:18;;80229:70:0::1;7687:355:1::0;80229:70:0::1;38995:6:::0;;80310:48:::1;::::0;-1:-1:-1;;;;;38995:6:0;;;;80336:21:::1;80310:48:::0;::::1;;;::::0;::::1;::::0;;;80336:21;38995:6;80310:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;80172:194::o:0;64783:120::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;64876:20:::1;:9:::0;64889:6:::1;64876:20;:::i;:::-;64859:14;:37:::0;-1:-1:-1;64783:120:0:o;64319:456::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;64453:19:::1;:41:::0;;;64505:18:::1;:39:::0;;;64555:18:::1;:40:::0;;;64626:67:::1;64576:19:::0;64626:43:::1;64475:19:::0;64526:18;64626:23:::1;:43::i;:::-;:47:::0;::::1;:67::i;:::-;64608:15;:85:::0;;;64731:2:::1;-1:-1:-1::0;64712:21:0::1;64704:63;;;::::0;-1:-1:-1;;;64704:63:0;;8249:2:1;64704:63:0::1;::::0;::::1;8231:21:1::0;8288:2;8268:18;;;8261:30;8327:31;8307:18;;;8300:59;8376:18;;64704:63:0::1;8047:353:1::0;64704:63:0::1;64319:456:::0;;;:::o;30869:492::-;31009:4;31026:36;31036:6;31044:9;31055:6;31026:9;:36::i;:::-;-1:-1:-1;;;;;31102:19:0;;31075:24;31102:19;;;:11;:19;;;;;;;;22657:10;31102:33;;;;;;;;31154:26;;;;31146:79;;;;-1:-1:-1;;;31146:79:0;;8607:2:1;31146:79:0;;;8589:21:1;8646:2;8626:18;;;8619:30;8685:34;8665:18;;;8658:62;-1:-1:-1;;;8736:18:1;;;8729:38;8784:19;;31146:79:0;8405:404:1;31146:79:0;31261:57;31270:6;22657:10;31311:6;31292:16;:25;31261:8;:57::i;:::-;-1:-1:-1;31349:4:0;;30869:492;-1:-1:-1;;;;30869:492:0:o;70599:141::-;70689:15;;:43;;;-1:-1:-1;;;70689:43:0;;;;70662:7;;-1:-1:-1;;;;;70689:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70682:50;;70599:141;:::o;72700:130::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;72777:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;72777:45:0;;-1:-1:-1;;;;;1821:32:1;;;72777:45:0::1;::::0;::::1;1803:51:1::0;72777:15:0;;::::1;::::0;:36:::1;::::0;1776:18:1;;72777:45:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;72700:130:::0;:::o;31770:215::-;22657:10;31858:4;31907:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;31907:34:0;;;;;;;;;;31858:4;;31875:80;;31898:7;;31907:47;;31944:10;;31907:47;:::i;:::-;31875:8;:80::i;64188:123::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;64272:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:31;;-1:-1:-1;;64272:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64188:123::o;68573:222::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;68646:30:0;;::::1;;::::0;;;:20:::1;:30;::::0;;;;;;;:37;;68679:4:::1;-1:-1:-1::0;;68646:37:0;;::::1;::::0;::::1;::::0;;;68694:19:::1;:29:::0;;;;;;;:36;;;;::::1;::::0;;::::1;::::0;;68741:15:::1;::::0;:46;;-1:-1:-1;;;68741:46:0;;::::1;::::0;::::1;1803:51:1::0;;;;68741:15:0;;::::1;::::0;:36:::1;::::0;1776:18:1;;68741:46:0::1;1631:229:1::0;72230:97:0;72261:15;;:58;;-1:-1:-1;;;72261:58:0;;72300:10;72261:58;;;9320:51:1;72261:15:0;9387:18:1;;;9380:50;-1:-1:-1;;;;;72261:15:0;;;;:30;;9293:18:1;;72261:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;69390:128::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;69489:21:::1;:10:::0;69503:6:::1;69489:21;:::i;:::-;69468:18;:42:::0;-1:-1:-1;69390:128:0:o;63375:400::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;63488:13:::1;:29:::0;;;63528:12:::1;:28:::0;;;63567:12:::1;:28:::0;;;63620:49:::1;63582:13:::0;63620:31:::1;63504:13:::0;63543;63620:17:::1;:31::i;:49::-;63608:9;:61:::0;;;63731:2:::1;-1:-1:-1::0;63718:15:0::1;63710:57;;;::::0;-1:-1:-1;;;63710:57:0;;9893:2:1;63710:57:0::1;::::0;::::1;9875:21:1::0;9932:2;9912:18;;;9905:30;9971:31;9951:18;;;9944:59;10020:18;;63710:57:0::1;9691:353:1::0;68431:134:0;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;68519:30:0;;;::::1;;::::0;;;:20:::1;:30;::::0;;;;:38;;-1:-1:-1;;68519:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;68431:134::o;80374:148::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;80448:20:0;::::1;80471:5;80448:20:::0;;;:11:::1;:20;::::0;;;;;:28;;-1:-1:-1;;80448:28:0::1;::::0;;80492:22;::::1;::::0;80471:5;80492:22:::1;80374:148:::0;:::o;64915:138::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;65008:15:::1;:37:::0;;-1:-1:-1;;;;;;65008:37:0::1;-1:-1:-1::0;;;;;65008:37:0;;;::::1;::::0;;;::::1;::::0;;64915:138::o;72469:141::-;72561:15;;:41;;;-1:-1:-1;;;72561:41:0;;;;72534:7;;-1:-1:-1;;;;;72561:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;;;;;67526:313;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;67635:15:::1;::::0;-1:-1:-1;;;;;67635:15:0;;::::1;67613:38:::0;;::::1;::::0;67605:92:::1;;;::::0;-1:-1:-1;;;67605:92:0;;10251:2:1;67605:92:0::1;::::0;::::1;10233:21:1::0;10290:2;10270:18;;;10263:30;10329:34;10309:18;;;10302:62;-1:-1:-1;;;10380:18:1;;;10373:39;10429:19;;67605:92:0::1;10049:405:1::0;67605:92:0::1;67755:15;::::0;67713:59:::1;::::0;-1:-1:-1;;;;;67755:15:0;;::::1;::::0;67713:59;::::1;::::0;::::1;::::0;67755:15:::1;::::0;67713:59:::1;67783:15;:48:::0;;-1:-1:-1;;;;;;67783:48:0::1;-1:-1:-1::0;;;;;67783:48:0;;;::::1;::::0;;;::::1;::::0;;67526:313::o;71172:130::-;71263:15;;:34;;-1:-1:-1;;;71263:34:0;;-1:-1:-1;;;;;1821:32:1;;;71263:34:0;;;1803:51:1;71242:7:0;;71263:15;;:25;;1776:18:1;;71263:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71256:41;71172:130;-1:-1:-1;;71172:130:0:o;71963:259::-;72089:15;;:28;;-1:-1:-1;;;;;;72089:28:0;;;;;160:25:1;;;72023:18:0;;;;;;-1:-1:-1;;;;;72089:15:0;;:23;;133:18:1;;72089:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72127:87;;;11001:25:1;;;11057:2;11042:18;;11035:34;;;11085:18;;;11078:34;;;11143:2;11128:18;;11121:34;;;72022:95:0;;-1:-1:-1;72022:95:0;;-1:-1:-1;72022:95:0;-1:-1:-1;72204:9:0;;72192:5;;72127:87;;10988:3:1;10973:19;72127:87:0;;;;;;;;72017:205;;;71963:259;:::o;29342:127::-;-1:-1:-1;;;;;29443:18:0;29416:7;29443:18;;;;;;;;;;;;29342:127::o;39573:94::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;39638:21:::1;39656:1;39638:9;:21::i;:::-;39573:94::o:0;63843:159::-;38995:6;;63895:4;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;-1:-1:-1;63911:14:0::1;:22:::0;;-1:-1:-1;;63944:28:0;;;63911:14:::1;63843:159:::0;:::o;69939:404::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;70037:6:::1;70025:8;:18;;:40;;;;;70059:6;70047:8;:18;;70025:40;70017:111;;;::::0;-1:-1:-1;;;70017:111:0;;11368:2:1;70017:111:0::1;::::0;::::1;11350:21:1::0;11407:2;11387:18;;;11380:30;11446:34;11426:18;;;11419:62;11517:28;11497:18;;;11490:56;11563:19;;70017:111:0::1;11166:422:1::0;70017:111:0::1;70159:16;;70147:8;:28:::0;70139:91:::1;;;::::0;-1:-1:-1;;;70139:91:0;;11795:2:1;70139:91:0::1;::::0;::::1;11777:21:1::0;11834:2;11814:18;;;11807:30;11873:34;11853:18;;;11846:62;-1:-1:-1;;;11924:18:1;;;11917:48;11982:19;;70139:91:0::1;11593:414:1::0;70139:91:0::1;70280:16;::::0;70246:51:::1;::::0;70270:8;;70246:51:::1;::::0;;;::::1;70308:16;:27:::0;69939:404::o;67294:224::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;67349:13:::1;:20:::0;;-1:-1:-1;;67380:28:0;;;;;67440:12:::1;67419:18;:33:::0;67484:26:::1;:15;67502:8;67484:26;:::i;:::-;67463:18;:47:::0;67294:224::o;28270:104::-;28326:13;28359:7;28352:14;;;;;:::i;69115:262::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;69222:13:::1;-1:-1:-1::0;;;;;69214:21:0::1;:4;-1:-1:-1::0;;;;;69214:21:0::1;::::0;69206:109:::1;;;::::0;-1:-1:-1;;;69206:109:0;;12214:2:1;69206:109:0::1;::::0;::::1;12196:21:1::0;12253:2;12233:18;;;12226:30;12292:34;12272:18;;;12265:62;12363:34;12343:18;;;12336:62;-1:-1:-1;;;12414:19:1;;;12407:42;12466:19;;69206:109:0::1;12012:479:1::0;69206:109:0::1;69328:41;69357:4;69363:5;69328:28;:41::i;:::-;69115:262:::0;;:::o;70483:108::-;70556:15;;:27;;;-1:-1:-1;;;70556:27:0;;;;70529:7;;-1:-1:-1;;;;;70556:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;;;;;32488:413;22657:10;32581:4;32625:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;32625:34:0;;;;;;;;;;32678:35;;;;32670:85;;;;-1:-1:-1;;;32670:85:0;;12698:2:1;32670:85:0;;;12680:21:1;12737:2;12717:18;;;12710:30;12776:34;12756:18;;;12749:62;-1:-1:-1;;;12827:18:1;;;12820:35;12872:19;;32670:85:0;12496:401:1;32670:85:0;32791:67;22657:10;32814:7;32842:15;32823:16;:34;32791:8;:67::i;:::-;-1:-1:-1;32889:4:0;;32488:413;-1:-1:-1;;;32488:413:0:o;71020:147::-;71113:15;;:47;;-1:-1:-1;;;71113:47:0;;-1:-1:-1;;;;;1821:32:1;;;71113:47:0;;;1803:51:1;71089:7:0;;71113:15;;:38;;1776:18:1;;71113:47:0;1631:229:1;29682:175:0;29768:4;29785:42;22657:10;29809:9;29820:6;29785:9;:42::i;71310:318::-;71585:15;;:35;;-1:-1:-1;;;71585:35:0;;-1:-1:-1;;;;;1821:32:1;;;71585:35:0;;;1803:51:1;71406:7:0;;;;;;;;;;;;;;;;71585:15;;;:26;;1776:18:1;;71585:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71578:42;;;;;;;;;;;;;;;;71310:318;;;;;;;;;:::o;68123:296::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;68216:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;68208:101:::1;;;::::0;-1:-1:-1;;;68208:101:0;;13790:2:1;68208:101:0::1;::::0;::::1;13772:21:1::0;13829:2;13809:18;;;13802:30;13868:34;13848:18;;;13841:62;-1:-1:-1;;;13919:18:1;;;13912:46;13975:19;;68208:101:0::1;13588:412:1::0;68208:101:0::1;-1:-1:-1::0;;;;;68320:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;68320:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;68377:34;;1394:41:1;;;68377:34:0::1;::::0;1367:18:1;68377:34:0::1;;;;;;;68123:296:::0;;:::o;68803:304::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;68920:9:::1;68916:115;68935:19:::0;;::::1;68916:115;;;69011:8;68976:19;:32;68996:8;;69005:1;68996:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;68976:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;68976:32:0;:43;;-1:-1:-1;;68976:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;68956:3;::::1;::::0;::::1;:::i;:::-;;;;68916:115;;;;69048:51;69080:8;;69090;69048:51;;;;;;;;:::i;:::-;;;;;;;;68803:304:::0;;;:::o;72838:171::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;72915:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;72915:32:0;;::::1;;::::0;;72963:38:::1;::::0;::::1;::::0;::::1;::::0;72939:8;1419:14:1;1412:22;1394:41;;1382:2;1367:18;;1254:187;72963:38:0::1;;;;;;;;72838:171:::0;:::o;80530:339::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;80632:4:::1;-1:-1:-1::0;;;;;80612:25:0;::::1;::::0;80604:82:::1;;;::::0;-1:-1:-1;;;80604:82:0;;15278:2:1;80604:82:0::1;::::0;::::1;15260:21:1::0;15317:2;15297:18;;;15290:30;15356:34;15336:18;;;15329:62;-1:-1:-1;;;15407:18:1;;;15400:42;15459:19;;80604:82:0::1;15076:408:1::0;80604:82:0::1;80705:41;::::0;-1:-1:-1;;;80705:41:0;;80740:4:::1;80705:41;::::0;::::1;1803:51:1::0;80749:1:0::1;::::0;-1:-1:-1;;;;;80705:26:0;::::1;::::0;::::1;::::0;1776:18:1;;80705:41:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:45;80697:74;;;::::0;-1:-1:-1;;;80697:74:0;;15691:2:1;80697:74:0::1;::::0;::::1;15673:21:1::0;15730:2;15710:18;;;15703:30;-1:-1:-1;;;15749:18:1;;;15742:46;15805:18;;80697:74:0::1;15489:340:1::0;80697:74:0::1;80791:8;-1:-1:-1::0;;;;;80784:25:0::1;;80810:7;38995:6:::0;;-1:-1:-1;;;;;38995:6:0;;38922:87;80810:7:::1;80819:41;::::0;-1:-1:-1;;;80819:41:0;;80854:4:::1;80819:41;::::0;::::1;1803:51:1::0;-1:-1:-1;;;;;80819:26:0;::::1;::::0;::::1;::::0;1776:18:1;;80819:41:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;80784:77;::::0;-1:-1:-1;;;;;;80784:77:0::1;::::0;;;;;;-1:-1:-1;;;;;16026:32:1;;;80784:77:0::1;::::0;::::1;16008:51:1::0;16075:18;;;16068:34;15981:18;;80784:77:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;72335:126::-:0;72414:15;;:39;;;-1:-1:-1;;;72414:39:0;;;;72390:7;;-1:-1:-1;;;;;72414:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;67984:131;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;68087:18:::1;:7:::0;68098:6:::1;68087:18;:::i;:::-;68060:24;:45:::0;-1:-1:-1;67984:131:0:o;64045:134::-;38995:6;;64105:4;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;-1:-1:-1;64121:20:0::1;:28:::0;;-1:-1:-1;;64121:28:0::1;::::0;;;64045:134;:::o;70351:124::-;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;70425:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;70425:42:0;;::::1;::::0;::::1;160:25:1::0;;;-1:-1:-1;;;;;70425:15:0;;::::1;::::0;:31:::1;::::0;133:18:1;;70425:42:0::1;14:177:1::0;71633:325:0;71910:15;;:40;;-1:-1:-1;;;71910:40:0;;;;;160:25:1;;;71734:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;71910:15:0;;;;:33;;133:18:1;;71910:40:0;14:177:1;39822:192:0;38995:6;;-1:-1:-1;;;;;38995:6:0;22657:10;39142:23;39134:68;;;;-1:-1:-1;;;39134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39911:22:0;::::1;39903:73;;;::::0;-1:-1:-1;;;39903:73:0;;16315:2:1;39903:73:0::1;::::0;::::1;16297:21:1::0;16354:2;16334:18;;;16327:30;16393:34;16373:18;;;16366:62;-1:-1:-1;;;16444:18:1;;;16437:36;16490:19;;39903:73:0::1;16113:402:1::0;39903:73:0::1;39987:19;39997:8;39987:9;:19::i;9934:98::-:0;9992:7;10019:5;10023:1;10019;:5;:::i;:::-;10012:12;9934:98;-1:-1:-1;;;9934:98:0:o;36172:380::-;-1:-1:-1;;;;;36308:19:0;;36300:68;;;;-1:-1:-1;;;36300:68:0;;16722:2:1;36300:68:0;;;16704:21:1;16761:2;16741:18;;;16734:30;16800:34;16780:18;;;16773:62;-1:-1:-1;;;16851:18:1;;;16844:34;16895:19;;36300:68:0;16520:400:1;36300:68:0;-1:-1:-1;;;;;36387:21:0;;36379:68;;;;-1:-1:-1;;;36379:68:0;;17127:2:1;36379:68:0;;;17109:21:1;17166:2;17146:18;;;17139:30;17205:34;17185:18;;;17178:62;-1:-1:-1;;;17256:18:1;;;17249:32;17298:19;;36379:68:0;16925:398:1;36379:68:0;-1:-1:-1;;;;;36460:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36512:32;;160:25:1;;;36512:32:0;;133:18:1;36512:32:0;;;;;;;36172:380;;;:::o;73017:4089::-;-1:-1:-1;;;;;73149:18:0;;73141:68;;;;-1:-1:-1;;;73141:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;73228:16:0;;73220:64;;;;-1:-1:-1;;;73220:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;73304:20:0;;;;;;:14;:20;;;;;;;;73303:21;:44;;;;-1:-1:-1;;;;;;73329:18:0;;;;;;:14;:18;;;;;;;;73328:19;73303:44;73295:76;;;;-1:-1:-1;;;73295:76:0;;18340:2:1;73295:76:0;;;18322:21:1;18379:2;18359:18;;;18352:30;-1:-1:-1;;;18398:18:1;;;18391:49;18457:18;;73295:76:0;18138:343:1;73295:76:0;73387:13;;;;;;;73383:136;;-1:-1:-1;;;;;73424:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;73453:23:0;;;;;;:19;:23;;;;;;;;73424:52;73416:91;;;;-1:-1:-1;;;73416:91:0;;18688:2:1;73416:91:0;;;18670:21:1;18727:2;18707:18;;;18700:30;18766:28;18746:18;;;18739:56;18812:18;;73416:91:0;18486:350:1;73416:91:0;73532:6;73542:1;73532:11;73529:92;;73560:28;73576:4;73582:2;73586:1;73560:15;:28::i;73529:92::-;73636:14;;;;;;;73633:1813;;;38995:6;;-1:-1:-1;;;;;73685:15:0;;;38995:6;;73685:15;;;;:45;;-1:-1:-1;38995:6:0;;-1:-1:-1;;;;;73717:13:0;;;38995:6;;73717:13;;73685:45;:78;;;;-1:-1:-1;;;;;;73747:16:0;;;;73685:78;:116;;;;-1:-1:-1;;;;;;73780:21:0;;73794:6;73780:21;;73685:116;:152;;;;;73824:13;-1:-1:-1;;;;;73818:19:0;:2;-1:-1:-1;;;;;73818:19:0;;;73685:152;73667:1206;;;38995:6;;-1:-1:-1;;;;;73870:15:0;;;38995:6;;73870:15;;;;:38;;;73895:13;-1:-1:-1;;;;;73889:19:0;:2;-1:-1:-1;;;;;73889:19:0;;;73870:38;:76;;;;;73928:18;;73912:12;:34;73870:76;73867:188;;;-1:-1:-1;;;;;73970:15:0;;;;;;:11;:15;;;;;;:22;;-1:-1:-1;;73970:22:0;73988:4;73970:22;;;74020:15;;;73970;74020;73867:188;74214:20;;;;74210:409;;;38995:6;;-1:-1:-1;;;;;74262:13:0;;;38995:6;;74262:13;;;;:47;;-1:-1:-1;74293:15:0;;-1:-1:-1;;;;;74279:30:0;;;74293:15;;74279:30;;74262:47;:79;;;;;74327:13;-1:-1:-1;;;;;74313:28:0;:2;-1:-1:-1;;;;;74313:28:0;;;74262:79;74258:342;;;-1:-1:-1;;;;;74377:32:0;;;;;;:28;:32;;;;;;74412:12;-1:-1:-1;74369:133:0;;;;-1:-1:-1;;;74369:133:0;;19043:2:1;74369:133:0;;;19025:21:1;19082:2;19062:18;;;19055:30;19121:34;19101:18;;;19094:62;19192:34;19172:18;;;19165:62;-1:-1:-1;;;19243:19:1;;;19236:40;19293:19;;74369:133:0;18841:477:1;74369:133:0;-1:-1:-1;;;;;74529:32:0;;;;;;:28;:32;;;;;74564:12;74529:47;;74258:342;74635:32;74670:13;74680:2;74670:9;:13::i;:::-;74761:14;;74635:48;;-1:-1:-1;74724:33:0;74751:6;74635:48;74724:33;:::i;:::-;:51;;74698:149;;;;-1:-1:-1;;;74698:149:0;;19525:2:1;74698:149:0;;;19507:21:1;19564:2;19544:18;;;19537:30;19603:34;19583:18;;;19576:62;-1:-1:-1;;;19654:18:1;;;19647:34;19698:19;;74698:149:0;19323:400:1;74698:149:0;73849:1024;73667:1206;-1:-1:-1;;;;;74911:29:0;;;;;;:25;:29;;;;;;;;:62;;;;-1:-1:-1;;;;;;74946:26:0;;;;;;:20;:26;;;;;;;;74945:27;74911:62;:93;;;;-1:-1:-1;;;;;;74979:24:0;;;;;;:20;:24;;;;;;;;74978:25;74911:93;74908:265;;;75042:24;;75023:15;75033:4;75023:9;:15::i;:::-;:43;75020:142;;75132:1;75116:15;75126:4;75116:9;:15::i;:::-;:17;;;;:::i;:::-;75106:6;:27;;75098:36;;;;;;-1:-1:-1;;;;;75209:31:0;;;;;;:25;:31;;;;;;;;:64;;;;-1:-1:-1;;;;;;75246:26:0;;;;;;:20;:26;;;;;;;;75245:27;75209:64;:95;;;;-1:-1:-1;;;;;;75279:24:0;;;;;;:20;:24;;;;;;;;75278:25;75209:95;75206:229;;;75338:23;;75328:6;:33;;75320:103;;;;-1:-1:-1;;;75320:103:0;;20152:2:1;75320:103:0;;;20134:21:1;20191:2;20171:18;;;20164:30;20230:34;20210:18;;;20203:62;20301:27;20281:18;;;20274:55;20346:19;;75320:103:0;19950:421:1;75320:103:0;75458:28;75489:24;75507:4;75489:9;:24::i;:::-;75585:18;;75458:55;;-1:-1:-1;75561:42:0;;;;;;;75640:53;;-1:-1:-1;75677:16:0;;-1:-1:-1;;;75677:16:0;;;;75676:17;75640:53;:102;;;;-1:-1:-1;;;;;;75711:31:0;;;;;;:25;:31;;;;;;;;75710:32;75640:102;:141;;;;-1:-1:-1;75760:21:0;;;;;;;75640:141;75623:233;;;75808:36;75823:20;75808:14;:36::i;:::-;-1:-1:-1;;;;;75957:25:0;;;;;;:19;:25;;;;;;;;75956:26;:54;;;;-1:-1:-1;;;;;;75987:23:0;;;;;;:19;:23;;;;;;;;75986:24;75956:54;75953:595;;;76024:12;76058:3;76047:9;;76040:6;:16;;;;:::i;:::-;76039:22;;;;:::i;:::-;-1:-1:-1;;;;;76081:29:0;;;;;;:25;:29;;;;;;76024:37;;-1:-1:-1;76081:29:0;;76078:347;;;76162:3;76145:15;;76138:6;:22;;;;:::i;:::-;76137:28;;;;:::i;:::-;-1:-1:-1;;;;;76294:17:0;;;;;;:11;:17;;;;;;76131:34;;-1:-1:-1;76294:17:0;;:57;;;;;76336:15;76315:18;;:36;76294:57;76291:119;;;76382:8;:4;76389:1;76382:8;:::i;:::-;76375:15;;76291:119;76445:11;76452:4;76445:6;:11;:::i;:::-;76436:20;;76471:42;76487:4;76501;76508;76471:15;:42::i;:::-;76012:536;75953:595;76560:33;76576:4;76582:2;76586:6;76560:15;:33::i;:::-;76610:15;;-1:-1:-1;;;;;76610:15:0;:26;76645:4;76652:15;76645:4;76652:9;:15::i;:::-;76610:58;;-1:-1:-1;;;;;;76610:58:0;;;;;;;-1:-1:-1;;;;;16026:32:1;;;76610:58:0;;;16008:51:1;16075:18;;;16068:34;15981:18;;76610:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76606:74;76694:15;;-1:-1:-1;;;;;76694:15:0;:26;76729:2;76734:13;76729:2;76734:9;:13::i;:::-;76694:54;;-1:-1:-1;;;;;;76694:54:0;;;;;;;-1:-1:-1;;;;;16026:32:1;;;76694:54:0;;;16008:51:1;16075:18;;;16068:34;15981:18;;76694:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76690:70;76776:16;;-1:-1:-1;;;76776:16:0;;;;76772:327;;76817:16;;76848:15;;:28;;-1:-1:-1;;;;;;76848:28:0;;;;;160:25:1;;;-1:-1:-1;;;;;76848:15:0;;;;:23;;133:18:1;;76848:28:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;76848:28:0;;;;;;;;-1:-1:-1;;76848:28:0;;;;;;;;;;;;:::i;:::-;;;76844:244;;;76965:86;;;11001:25:1;;;11057:2;11042:18;;11035:34;;;11085:18;;;11078:34;;;11143:2;11128:18;;11121:34;;;77041:9:0;;77030:4;;76965:86;;10988:3:1;10973:19;76965:86:0;;;;;;;76877:184;;;76844:244;76794:305;73130:3976;;73017:4089;;;:::o;40022:173::-;40097:6;;;-1:-1:-1;;;;;40114:17:0;;;-1:-1:-1;;;;;;40114:17:0;;;;;;;40147:40;;40097:6;;;40114:17;40097:6;;40147:40;;40078:16;;40147:40;40067:128;40022:173;:::o;69526:405::-;-1:-1:-1;;;;;69617:31:0;;;;;;:25;:31;;;;;;:40;;;:31;;;;:40;;;69609:115;;;;-1:-1:-1;;;69609:115:0;;21003:2:1;69609:115:0;;;20985:21:1;21042:2;21022:18;;;21015:30;21081:34;21061:18;;;21054:62;21152:32;21132:18;;;21125:60;21202:19;;69609:115:0;20801:426:1;69609:115:0;-1:-1:-1;;;;;69735:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;69735:39:0;;;;;;;;;;;;69787:79;;69812:15;;:42;;-1:-1:-1;;;69812:42:0;;-1:-1:-1;;;;;1821:32:1;;;69812:42:0;;;1803:51:1;69812:15:0;;;;:36;;1776:18:1;;69812:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69787:79;69883:40;;;;;;-1:-1:-1;;;;;69883:40:0;;;;;;;;69526:405;;:::o;33391:733::-;-1:-1:-1;;;;;33531:20:0;;33523:70;;;;-1:-1:-1;;;33523:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33612:23:0;;33604:71;;;;-1:-1:-1;;;33604:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33772:17:0;;33748:21;33772:17;;;;;;;;;;;33808:23;;;;33800:74;;;;-1:-1:-1;;;33800:74:0;;21434:2:1;33800:74:0;;;21416:21:1;21473:2;21453:18;;;21446:30;21512:34;21492:18;;;21485:62;-1:-1:-1;;;21563:18:1;;;21556:36;21609:19;;33800:74:0;21232:402:1;33800:74:0;-1:-1:-1;;;;;33910:17:0;;;:9;:17;;;;;;;;;;;33930:22;;;33910:42;;33974:20;;;;;;;;:30;;33946:6;;33910:9;33974:30;;33946:6;;33974:30;:::i;:::-;;;;;;;;34039:9;-1:-1:-1;;;;;34022:35:0;34031:6;-1:-1:-1;;;;;34022:35:0;;34050:6;34022:35;;;;160:25:1;;148:2;133:18;;14:177;77114:1924:0;63289:16;:23;;-1:-1:-1;;;;63289:23:0;-1:-1:-1;;;63289:23:0;;;77409:18:::1;::::0;77381:15:::1;::::0;63289:23;;77356:72:::1;::::0;:48:::1;::::0;77381:22:::1;::::0;77401:1:::1;77381:19;:22::i;:::-;77356:20:::0;;:24:::1;:48::i;:::-;:52:::0;::::1;:72::i;:::-;77321:107:::0;-1:-1:-1;77477:14:0::1;77494:45;77321:107:::0;77494:20;:45:::1;:::i;:::-;77477:62:::0;-1:-1:-1;77840:21:0::1;77906:39;77477:62:::0;77939:4:::1;77906:16;:39::i;:::-;78028:20;78051:36;78073:14:::0;78051:21:::1;:36;:::i;:::-;78028:59;;78229:29;78261:88;78302:46;78329:18;;78302:22;78322:1;78302:15;;:19;;:22;;;;:::i;:::-;:26:::0;::::1;:46::i;:::-;78278:18;::::0;78261:36:::1;::::0;:12;;:16:::1;:36::i;:::-;:40:::0;::::1;:88::i;:::-;78229:120;;78407:61;78420:24;78446:21;78407:12;:61::i;:::-;78512:23;78538:108;78627:18;;78538:84;78582:39;78602:18;;78582:15;;:19;;:39;;;;:::i;:::-;78538;:12:::0;78555:21;78538:16:::1;:39::i;:108::-;78657:15;::::0;:41:::1;::::0;78512:134;;-1:-1:-1;;;;;;78657:15:0::1;::::0;:41;::::1;;;::::0;78512:134;;78657:15:::1;:41:::0;:15;:41;78512:134;78657:15;:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;78799:15:0::1;::::0;78791:51:::1;::::0;78741:21:::1;::::0;78721:17:::1;::::0;-1:-1:-1;;;;;78799:15:0;;::::1;::::0;78741:21;;78721:17;78791:51;78721:17;78791:51;78741:21;78799:15;78791:51:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78773:69;;;78858:7;78855:96;;;78882:57;78896:31;78903:24:::0;78896:6;:31:::1;:::i;:::-;78882:57;::::0;;22023:25:1;;;22079:2;22064:18;;22057:34;;;21996:18;78882:57:0::1;;;;;;;78855:96;78976:54;::::0;;22023:25:1;;;22079:2;22064:18;;22057:34;;;78976:54:0::1;::::0;21996:18:1;78976:54:0::1;;;;;;;-1:-1:-1::0;;63335:16:0;:24;;-1:-1:-1;;;;63335:24:0;;;-1:-1:-1;;;;;;;77114:1924:0:o;10672:98::-;10730:7;10757:5;10761:1;10757;:5;:::i;11071:98::-;11129:7;11156:5;11160:1;11156;:5;:::i;79046:707::-;79221:16;;;79235:1;79221:16;;;;;;;;79197:21;;79221:16;;;;;;;;;;-1:-1:-1;79221:16:0;79197:40;;79266:4;79248;79253:1;79248:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;79248:23:0;;;:7;;;;;;;;;;:23;;;;79292:15;;:22;;;-1:-1:-1;;;79292:22:0;;;;:15;;;;;:20;;:22;;;;;79248:7;;79292:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;79282:4;79287:1;79282:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;79282:32:0;;;:7;;;;;;;;;;:32;;;;79363:15;;79348:4;30009:7;30036:18;;;:11;:18;;;;;;79363:15;;;;30036:27;;;;;;79383:11;-1:-1:-1;79327:156:0;;;79441:15;;79409:62;;79426:4;;-1:-1:-1;;;;;79441:15:0;-1:-1:-1;;79409:8:0;:62::i;:::-;79521:15;;:214;;-1:-1:-1;;;79521:214:0;;-1:-1:-1;;;;;79521:15:0;;;;:66;;:214;;79602:11;;79521:15;;79672:4;;79691:3;;79709:15;;79521:214;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79114:639;79046:707;;:::o;10315:98::-;10373:7;10400:5;10404:1;10400;:5;:::i;79773:391::-;79894:15;;-1:-1:-1;;;;;79894:15:0;:31;79933:9;79966:4;79986:11;79894:15;;80098:7;38995:6;;-1:-1:-1;;;;;38995:6:0;;38922:87;80098:7;79894:252;;;;;;-1:-1:-1;;;;;;79894:252:0;;;-1:-1:-1;;;;;23834:15:1;;;79894:252:0;;;23816:34:1;23866:18;;;23859:34;;;;23909:18;;;23902:34;;;;23952:18;;;23945:34;24016:15;;;23995:19;;;23988:44;80120:15:0;24048:19:1;;;24041:35;23750:19;;79894:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;196:597:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;634:6;631:1;628:13;625:91;;;704:1;699:2;690:6;679:9;675:22;671:31;664:42;625:91;-1:-1:-1;777:2:1;756:15;-1:-1:-1;;752:29:1;737:45;;;;784:2;733:54;;196:597;-1:-1:-1;;;196:597:1:o;798:131::-;-1:-1:-1;;;;;873:31:1;;863:42;;853:70;;919:1;916;909:12;934:315;1002:6;1010;1063:2;1051:9;1042:7;1038:23;1034:32;1031:52;;;1079:1;1076;1069:12;1031:52;1118:9;1105:23;1137:31;1162:5;1137:31;:::i;:::-;1187:5;1239:2;1224:18;;;;1211:32;;-1:-1:-1;;;934:315:1:o;1446:180::-;1505:6;1558:2;1546:9;1537:7;1533:23;1529:32;1526:52;;;1574:1;1571;1564:12;1526:52;-1:-1:-1;1597:23:1;;1446:180;-1:-1:-1;1446:180:1:o;1865:247::-;1924:6;1977:2;1965:9;1956:7;1952:23;1948:32;1945:52;;;1993:1;1990;1983:12;1945:52;2032:9;2019:23;2051:31;2076:5;2051:31;:::i;2117:316::-;2194:6;2202;2210;2263:2;2251:9;2242:7;2238:23;2234:32;2231:52;;;2279:1;2276;2269:12;2231:52;-1:-1:-1;;2302:23:1;;;2372:2;2357:18;;2344:32;;-1:-1:-1;2423:2:1;2408:18;;;2395:32;;2117:316;-1:-1:-1;2117:316:1:o;2438:456::-;2515:6;2523;2531;2584:2;2572:9;2563:7;2559:23;2555:32;2552:52;;;2600:1;2597;2590:12;2552:52;2639:9;2626:23;2658:31;2683:5;2658:31;:::i;:::-;2708:5;-1:-1:-1;2765:2:1;2750:18;;2737:32;2778:33;2737:32;2778:33;:::i;:::-;2438:456;;2830:7;;-1:-1:-1;;;2884:2:1;2869:18;;;;2856:32;;2438:456::o;3334:118::-;3420:5;3413:13;3406:21;3399:5;3396:32;3386:60;;3442:1;3439;3432:12;3457:382;3522:6;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;3638:9;3625:23;3657:31;3682:5;3657:31;:::i;:::-;3707:5;-1:-1:-1;3764:2:1;3749:18;;3736:32;3777:30;3736:32;3777:30;:::i;:::-;3826:7;3816:17;;;3457:382;;;;;:::o;5242:750::-;5334:6;5342;5350;5403:2;5391:9;5382:7;5378:23;5374:32;5371:52;;;5419:1;5416;5409:12;5371:52;5459:9;5446:23;5488:18;5529:2;5521:6;5518:14;5515:34;;;5545:1;5542;5535:12;5515:34;5583:6;5572:9;5568:22;5558:32;;5628:7;5621:4;5617:2;5613:13;5609:27;5599:55;;5650:1;5647;5640:12;5599:55;5690:2;5677:16;5716:2;5708:6;5705:14;5702:34;;;5732:1;5729;5722:12;5702:34;5787:7;5780:4;5770:6;5767:1;5763:14;5759:2;5755:23;5751:34;5748:47;5745:67;;;5808:1;5805;5798:12;5745:67;5839:4;5831:13;;;;-1:-1:-1;5863:6:1;-1:-1:-1;;5904:20:1;;5891:34;5934:28;5891:34;5934:28;:::i;:::-;5981:5;5971:15;;;5242:750;;;;;:::o;5997:241::-;6053:6;6106:2;6094:9;6085:7;6081:23;6077:32;6074:52;;;6122:1;6119;6112:12;6074:52;6161:9;6148:23;6180:28;6202:5;6180:28;:::i;6243:388::-;6311:6;6319;6372:2;6360:9;6351:7;6347:23;6343:32;6340:52;;;6388:1;6385;6378:12;6340:52;6427:9;6414:23;6446:31;6471:5;6446:31;:::i;:::-;6496:5;-1:-1:-1;6553:2:1;6538:18;;6525:32;6566:33;6525:32;6566:33;:::i;6636:380::-;6715:1;6711:12;;;;6758;;;6779:61;;6833:4;6825:6;6821:17;6811:27;;6779:61;6886:2;6878:6;6875:14;6855:18;6852:38;6849:161;;6932:10;6927:3;6923:20;6920:1;6913:31;6967:4;6964:1;6957:15;6995:4;6992:1;6985:15;6849:161;;6636:380;;;:::o;7021:356::-;7223:2;7205:21;;;7242:18;;;7235:30;7301:34;7296:2;7281:18;;7274:62;7368:2;7353:18;;7021:356::o;7382:127::-;7443:10;7438:3;7434:20;7431:1;7424:31;7474:4;7471:1;7464:15;7498:4;7495:1;7488:15;7514:168;7554:7;7620:1;7616;7612:6;7608:14;7605:1;7602:21;7597:1;7590:9;7583:17;7579:45;7576:71;;;7627:18;;:::i;:::-;-1:-1:-1;7667:9:1;;7514:168::o;8814:184::-;8884:6;8937:2;8925:9;8916:7;8912:23;8908:32;8905:52;;;8953:1;8950;8943:12;8905:52;-1:-1:-1;8976:16:1;;8814:184;-1:-1:-1;8814:184:1:o;9003:128::-;9043:3;9074:1;9070:6;9067:1;9064:13;9061:39;;;9080:18;;:::i;:::-;-1:-1:-1;9116:9:1;;9003:128::o;9441:245::-;9508:6;9561:2;9549:9;9540:7;9536:23;9532:32;9529:52;;;9577:1;9574;9567:12;9529:52;9609:9;9603:16;9628:28;9650:5;9628:28;:::i;10459:306::-;10547:6;10555;10563;10616:2;10604:9;10595:7;10591:23;10587:32;10584:52;;;10632:1;10629;10622:12;10584:52;10661:9;10655:16;10645:26;;10711:2;10700:9;10696:18;10690:25;10680:35;;10755:2;10744:9;10740:18;10734:25;10724:35;;10459:306;;;;;:::o;12902:681::-;13033:6;13041;13049;13057;13065;13073;13081;13089;13142:3;13130:9;13121:7;13117:23;13113:33;13110:53;;;13159:1;13156;13149:12;13110:53;13191:9;13185:16;13210:31;13235:5;13210:31;:::i;:::-;13260:5;13250:15;;;13305:2;13294:9;13290:18;13284:25;13274:35;;13349:2;13338:9;13334:18;13328:25;13318:35;;13393:2;13382:9;13378:18;13372:25;13362:35;;13437:3;13426:9;13422:19;13416:26;13406:36;;13482:3;13471:9;13467:19;13461:26;13451:36;;13527:3;13516:9;13512:19;13506:26;13496:36;;13572:3;13561:9;13557:19;13551:26;13541:36;;12902:681;;;;;;;;;;;:::o;14005:127::-;14066:10;14061:3;14057:20;14054:1;14047:31;14097:4;14094:1;14087:15;14121:4;14118:1;14111:15;14137:135;14176:3;14197:17;;;14194:43;;14217:18;;:::i;:::-;-1:-1:-1;14264:1:1;14253:13;;14137:135::o;14277:794::-;14499:2;14511:21;;;14484:18;;14567:22;;;14451:4;14646:6;14620:2;14605:18;;14451:4;14680:304;14694:6;14691:1;14688:13;14680:304;;;14769:6;14756:20;14789:31;14814:5;14789:31;:::i;:::-;-1:-1:-1;;;;;14845:31:1;14833:44;;14900:4;14959:15;;;;14924:12;;;;14873:1;14709:9;14680:304;;;14684:3;15001;14993:11;;;;15056:6;15049:14;15042:22;15035:4;15024:9;15020:20;15013:52;14277:794;;;;;;:::o;17328:401::-;17530:2;17512:21;;;17569:2;17549:18;;;17542:30;17608:34;17603:2;17588:18;;17581:62;-1:-1:-1;;;17674:2:1;17659:18;;17652:35;17719:3;17704:19;;17328:401::o;17734:399::-;17936:2;17918:21;;;17975:2;17955:18;;;17948:30;18014:34;18009:2;17994:18;;17987:62;-1:-1:-1;;;18080:2:1;18065:18;;18058:33;18123:3;18108:19;;17734:399::o;19728:217::-;19768:1;19794;19784:132;;19838:10;19833:3;19829:20;19826:1;19819:31;19873:4;19870:1;19863:15;19901:4;19898:1;19891:15;19784:132;-1:-1:-1;19930:9:1;;19728:217::o;20376:125::-;20416:4;20444:1;20441;20438:8;20435:34;;;20449:18;;:::i;:::-;-1:-1:-1;20486:9:1;;20376:125::o;22234:251::-;22304:6;22357:2;22345:9;22336:7;22332:23;22328:32;22325:52;;;22373:1;22370;22363:12;22325:52;22405:9;22399:16;22424:31;22449:5;22424:31;:::i;22490:980::-;22752:4;22800:3;22789:9;22785:19;22831:6;22820:9;22813:25;22857:2;22895:6;22890:2;22879:9;22875:18;22868:34;22938:3;22933:2;22922:9;22918:18;22911:31;22962:6;22997;22991:13;23028:6;23020;23013:22;23066:3;23055:9;23051:19;23044:26;;23105:2;23097:6;23093:15;23079:29;;23126:1;23136:195;23150:6;23147:1;23144:13;23136:195;;;23215:13;;-1:-1:-1;;;;;23211:39:1;23199:52;;23306:15;;;;23271:12;;;;23247:1;23165:9;23136:195;;;-1:-1:-1;;;;;;;23387:32:1;;;;23382:2;23367:18;;23360:60;-1:-1:-1;;;23451:3:1;23436:19;23429:35;23348:3;22490:980;-1:-1:-1;;;22490:980:1:o
Swarm Source
ipfs://c6231f1706697671ad02297216150950459b646eb3d06d55c50c61681494c306
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.