ETH Price: $2,333.64 (-0.36%)

Token

3WAY TOKEN (3WAY)
 

Overview

Max Total Supply

902.592123099350980227 3WAY

Holders

91

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
22.574218858387398758 3WAY

Value
$0.00
0xB74D5f0a81Ce99aC1857133E489bC2b4954935fF
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
THR33WAY

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-28
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        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 Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when 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.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @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) {
        // 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 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 Lock() public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + 604800;//7 days
        emit OwnershipTransferred(_owner, address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function UnLock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(now > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}


// pragma solidity >=0.5.0;

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;
}


// pragma solidity >=0.5.0;

interface IUniswapV2ERC20 {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
}




// pragma solidity >=0.6.2;

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);
}



// pragma solidity >=0.6.2;



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;
}


contract THR33WAY is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000 * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;

    string private _name = '3WAY TOKEN';
    string private _symbol = '3WAY';
    uint8 private _decimals = 18;
    
    uint256 public _taxFee = 3;
    uint256 public _taxFeeDecimal = 0;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _burnFee = 3;
    uint256 public _burnFeeDecimal = 0;
    uint256 private _previousBurnFee = _burnFee;
    
    
    uint256 public _liquidityFee = 3;
    uint256 public _liquidityFeeDecimal = 0;
    uint256 private _previousLiquidityFee = _liquidityFee;
    
    uint256 public _maxTxAmount = _tTotal;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public _burnPool = 0x0000000000000000000000000000000000000000;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = false;
    uint256 private minTokensBeforeSwap = 5;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        //exclude owner from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeAccount(address account) public onlyOwner() {
        // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            swapAndLiquify(contractTokenBalance);
        }
    
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            removeAllFee();
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount);
        
        //restore all the fee if removed previously
        restoreAllFee();
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }

    function LpTokenBalance() public view returns (uint256) {
        IUniswapV2ERC20 token = IUniswapV2ERC20(uniswapV2Pair);
        uint256 amount = token.balanceOf(address(this));
        
        return amount;
    }

    function withDrawLpTokens() public onlyOwner {
        // IUniswapV2ERC20 token = IUniswapV2ERC20(_token);
        IUniswapV2ERC20 token = IUniswapV2ERC20(uniswapV2Pair);
        uint256 amount = token.balanceOf(address(this));
        
        require(amount > 0, "Not enough LP tokens available to withdraw");
        
        token.transfer(owner(), amount);
    }
    
    function withdrawTokens() public onlyOwner {
        uint256 amount = balanceOf(address(this));
        require(amount > 0, "Not enough tokens available to withdraw");
        
        removeAllFee();
        _tokenTransfer(address(this),owner(),amount);
        restoreAllFee();    
    }
    
    function withdrawWETH() public onlyOwner {
        IUniswapV2ERC20 token = IUniswapV2ERC20(uniswapV2Pair);
        uint256 amount = token.balanceOf(address(this));
        
        require(amount > 0, "Not enough liquidity available to remove and swap that for WETH");
        
       // approve token transfer to cover all possible scenarios
        token.approve(address(uniswapV2Router), amount);

        // add the liquidity
        uniswapV2Router.removeLiquidity(
            address(this),
            uniswapV2Router.WETH(),
            amount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function _tokenTransfer(address sender, address recipient, uint256 amount) private {
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 rBurn, uint256 tFee, uint256 tBurn) private {
        _rTotal = _rTotal.sub(rFee).sub(rBurn);
        _tFeeTotal = _tFeeTotal.add(tFee);
        _tBurnTotal = _tBurnTotal.add(tBurn);
        _tTotal = _tTotal.sub(tBurn);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tBurn, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tBurn = calculateBurnFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tBurn).sub(tLiquidity);
        return (tTransferAmount, tFee, tBurn, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
    
    function calculateTaxFee(uint256 _amount) public view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**(uint256(_taxFeeDecimal) + 2)
        );
    }
    
    function calculateBurnFee(uint256 _amount) public view returns (uint256) {
        return _amount.mul(_burnFee).div(
            10**(uint256(_burnFeeDecimal) + 2)
        );
    }
    
    function calculateLiquidityFee(uint256 _amount) public view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**(uint256(_liquidityFeeDecimal) + 2)
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _burnFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousBurnFee = _burnFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _burnFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _burnFee = _previousBurnFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee, uint256 taxFeeDecimal) external onlyOwner() {
        _taxFee = taxFee;
        _taxFeeDecimal = taxFeeDecimal;
    }
    
    function setBurnFeePercent(uint256 burnFee,uint256 burnFeeDecimal) external onlyOwner() {
        _burnFee = burnFee;
        _burnFeeDecimal = burnFeeDecimal;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee, uint256 liquidityFeeDecimal) external onlyOwner() {
        _liquidityFee = liquidityFee;
        _liquidityFeeDecimal = liquidityFeeDecimal;
    }
    
    function setMaxTxPercent(uint256 maxTxPercent, uint256 maxTxDecimals) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**(uint256(maxTxDecimals) + 2)
        );
    }
    
    function setMinTokensBeforeSwapPercent(uint256 _minTokensBeforeSwapPercent, uint256 _minTokensBeforeSwapDecimal) public onlyOwner{
        minTokensBeforeSwap = _tTotal.mul(_minTokensBeforeSwapPercent).div(
            10**(uint256(_minTokensBeforeSwapDecimal) + 2)
        );
        emit MinTokensBeforeSwapUpdated(minTokensBeforeSwap);
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"LpTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UnLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFeeDecimal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFeeDecimal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFeeDecimal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"calculateBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"calculateLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"calculateTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee","type":"uint256"},{"internalType":"uint256","name":"burnFeeDecimal","type":"uint256"}],"name":"setBurnFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFeeDecimal","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"},{"internalType":"uint256","name":"maxTxDecimals","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minTokensBeforeSwapPercent","type":"uint256"},{"internalType":"uint256","name":"_minTokensBeforeSwapDecimal","type":"uint256"}],"name":"setMinTokensBeforeSwapPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"taxFeeDecimal","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withDrawLpTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawWETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052683635c9adc5dea00000600955600954600019816200001f57fe5b0660001903600a556040518060400160405280600a81526020017f3357415920544f4b454e00000000000000000000000000000000000000000000815250600d90805190602001906200007492919062000649565b506040518060400160405280600481526020017f3357415900000000000000000000000000000000000000000000000000000000815250600e9080519060200190620000c292919062000649565b506012600f60006101000a81548160ff021916908360ff1602179055506003601055600060115560105460125560036013556000601455601354601555600360165560006017556016546018556009546019556000601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601a60156101000a81548160ff0219169083151502179055506005601b553480156200018457600080fd5b506000620001976200061860201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600a54600360006200024c6200061860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002ea57600080fd5b505afa158015620002ff573d6000803e3d6000fd5b505050506040513d60208110156200031657600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200038a57600080fd5b505afa1580156200039f573d6000803e3d6000fd5b505050506040513d6020811015620003b657600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200043157600080fd5b505af115801562000446573d6000803e3d6000fd5b505050506040513d60208110156200045d57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160066000620004f16200062060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005aa6200061860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a350620006ef565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200068c57805160ff1916838001178555620006bd565b82800160010185558215620006bd579182015b82811115620006bc5782518255916020019190600101906200069f565b5b509050620006cc9190620006d0565b5090565b5b80821115620006eb576000816000905550600101620006d1565b5090565b60805160601c60a05160601c615b566200075560003980611ad35280611bd452806121545280612a255280613b6652508061110e5280611d125280611dc35280611e00528061533f528061542b5280615452528061555d52806155845250615b566000f3fe6080604052600436106102b25760003560e01c806370a0823111610175578063c06352be116100dc578063cc126a2311610095578063ea2f0b371161006f578063ea2f0b3714610f0a578063f2cc0c1814610f5b578063f2d58c2314610fac578063f84354f114610ff1576102b9565b8063cc126a2314610e0b578063ced6071c14610e5a578063dd62ed3e14610e85576102b9565b8063c06352be14610cc9578063c0b0fda214610ce0578063c49b9a8014610d0b578063c802688314610d48578063cb5fac4814610d5f578063cba0e99614610da4576102b9565b80638da5cb5b1161012e5780638da5cb5b14610aa65780638fc3d4b814610ae757806395d89b4114610b2c5780639b2c14f314610bbc578063a457c2d714610be7578063a9059cbb14610c58576102b9565b806370a082311461095a57806375128141146109bf57806376a8477514610a0e5780637d1db4a514610a39578063832484f314610a645780638d8f2adb14610a8f576102b9565b80633bd5d1731161021957806349bd5a5e116101d257806349bd5a5e146107f45780634a74bb02146108355780634c02f62e146108625780635342acb4146108795780636ad88269146108e05780636bc87c3a1461092f576102b9565b80633bd5d173146106865780633c9f861d146106c15780633f3cf56c146106ec578063437823ec146107315780634549b0391461078257806346620e39146107dd576102b9565b806328d2bc911161026b57806328d2bc91146104e75780632d8381191461052857806330b263ba14610577578063313ce567146105bc57806339509351146105ea5780633b124fe71461065b576102b9565b806306fdde03146102be578063095ea7b31461034e57806313114a9d146103bf5780631694505e146103ea57806318160ddd1461042b57806323b872dd14610456576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3611042565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103135780820151818401526020810190506102f8565b50505050905090810190601f1680156103405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035a57600080fd5b506103a76004803603604081101561037157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110e4565b60405180821515815260200191505060405180910390f35b3480156103cb57600080fd5b506103d4611102565b6040518082815260200191505060405180910390f35b3480156103f657600080fd5b506103ff61110c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561043757600080fd5b50610440611130565b6040518082815260200191505060405180910390f35b34801561046257600080fd5b506104cf6004803603606081101561047957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061113a565b60405180821515815260200191505060405180910390f35b3480156104f357600080fd5b506104fc611213565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561053457600080fd5b506105616004803603602081101561054b57600080fd5b8101908080359060200190929190505050611239565b6040518082815260200191505060405180910390f35b34801561058357600080fd5b506105ba6004803603604081101561059a57600080fd5b8101908080359060200190929190803590602001909291905050506112bd565b005b3480156105c857600080fd5b506105d1611397565b604051808260ff16815260200191505060405180910390f35b3480156105f657600080fd5b506106436004803603604081101561060d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113ae565b60405180821515815260200191505060405180910390f35b34801561066757600080fd5b50610670611461565b6040518082815260200191505060405180910390f35b34801561069257600080fd5b506106bf600480360360208110156106a957600080fd5b8101908080359060200190929190505050611467565b005b3480156106cd57600080fd5b506106d66115f9565b6040518082815260200191505060405180910390f35b3480156106f857600080fd5b5061072f6004803603604081101561070f57600080fd5b810190808035906020019092919080359060200190929190505050611603565b005b34801561073d57600080fd5b506107806004803603602081101561075457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611702565b005b34801561078e57600080fd5b506107c7600480360360408110156107a557600080fd5b8101908080359060200190929190803515159060200190929190505050611825565b6040518082815260200191505060405180910390f35b3480156107e957600080fd5b506107f26118de565b005b34801561080057600080fd5b50610809611ad1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084157600080fd5b5061084a611af5565b60405180821515815260200191505060405180910390f35b34801561086e57600080fd5b50610877611b08565b005b34801561088557600080fd5b506108c86004803603602081101561089c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f98565b60405180821515815260200191505060405180910390f35b3480156108ec57600080fd5b506109196004803603602081101561090357600080fd5b8101908080359060200190929190505050611fee565b6040518082815260200191505060405180910390f35b34801561093b57600080fd5b50610944612026565b6040518082815260200191505060405180910390f35b34801561096657600080fd5b506109a96004803603602081101561097d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061202c565b6040518082815260200191505060405180910390f35b3480156109cb57600080fd5b506109f8600480360360208110156109e257600080fd5b8101908080359060200190929190505050612117565b6040518082815260200191505060405180910390f35b348015610a1a57600080fd5b50610a2361214f565b6040518082815260200191505060405180910390f35b348015610a4557600080fd5b50610a4e612223565b6040518082815260200191505060405180910390f35b348015610a7057600080fd5b50610a79612229565b6040518082815260200191505060405180910390f35b348015610a9b57600080fd5b50610aa461222f565b005b348015610ab257600080fd5b50610abb612382565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610af357600080fd5b50610b2a60048036036040811015610b0a57600080fd5b8101908080359060200190929190803590602001909291905050506123ab565b005b348015610b3857600080fd5b50610b41612485565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b81578082015181840152602081019050610b66565b50505050905090810190601f168015610bae5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610bc857600080fd5b50610bd1612527565b6040518082815260200191505060405180910390f35b348015610bf357600080fd5b50610c4060048036036040811015610c0a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061252d565b60405180821515815260200191505060405180910390f35b348015610c6457600080fd5b50610cb160048036036040811015610c7b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506125fa565b60405180821515815260200191505060405180910390f35b348015610cd557600080fd5b50610cde612618565b005b348015610cec57600080fd5b50610cf5612835565b6040518082815260200191505060405180910390f35b348015610d1757600080fd5b50610d4660048036036020811015610d2e57600080fd5b8101908080351515906020019092919050505061283b565b005b348015610d5457600080fd5b50610d5d612959565b005b348015610d6b57600080fd5b50610da260048036036040811015610d8257600080fd5b810190808035906020019092919080359060200190929190505050612bfd565b005b348015610db057600080fd5b50610df360048036036020811015610dc757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d35565b60405180821515815260200191505060405180910390f35b348015610e1757600080fd5b50610e4460048036036020811015610e2e57600080fd5b8101908080359060200190929190505050612d8b565b6040518082815260200191505060405180910390f35b348015610e6657600080fd5b50610e6f612dc3565b6040518082815260200191505060405180910390f35b348015610e9157600080fd5b50610ef460048036036040811015610ea857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dc9565b6040518082815260200191505060405180910390f35b348015610f1657600080fd5b50610f5960048036036020811015610f2d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e50565b005b348015610f6757600080fd5b50610faa60048036036020811015610f7e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f73565b005b348015610fb857600080fd5b50610fef60048036036040811015610fcf57600080fd5b81019080803590602001909291908035906020019092919050505061328d565b005b348015610ffd57600080fd5b506110406004803603602081101561101457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613367565b005b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110da5780601f106110af576101008083540402835291602001916110da565b820191906000526020600020905b8154815290600101906020018083116110bd57829003601f168201915b5050505050905090565b60006110f86110f16136f1565b84846136f9565b6001905092915050565b6000600b54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600954905090565b60006111478484846138f0565b611208846111536136f1565b611203856040518060600160405280602881526020016159ec60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111b96136f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ca59092919063ffffffff16565b6136f9565b600190509392505050565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a54821115611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806158ee602a913960400191505060405180910390fd5b60006112a0613d65565b90506112b58184613d9090919063ffffffff16565b915050919050565b6112c56136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81601081905550806011819055505050565b6000600f60009054906101000a900460ff16905090565b60006114576113bb6136f1565b8461145285600560006113cc6136f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b6136f9565b6001905092915050565b60105481565b60006114716136f1565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615aad602c913960400191505060405180910390fd5b600061152183613e62565b505050505050905061157b81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eca90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115d381600a54613eca90919063ffffffff16565b600a819055506115ee83600b54613dda90919063ffffffff16565b600b81905550505050565b6000600c54905090565b61160b6136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6116f860028201600a0a6116ea84600954613f1490919063ffffffff16565b613d9090919063ffffffff16565b6019819055505050565b61170a6136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600060095483111561189f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816118c05760006118af84613e62565b5050505050509050809150506118d8565b60006118cb84613e62565b5050505050915050809150505b92915050565b6118e66136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062093a804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000000081565b601a60159054906101000a900460ff1681565b611b106136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bd0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611c5e57600080fd5b505afa158015611c72573d6000803e3d6000fd5b505050506040513d6020811015611c8857600080fd5b8101908080519060200190929190505050905060008111611cf4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180615964603f913960400191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611d8557600080fd5b505af1158015611d99573d6000803e3d6000fd5b505050506040513d6020811015611daf57600080fd5b8101908080519060200190929190505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663baa2abde307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e6457600080fd5b505afa158015611e78573d6000803e3d6000fd5b505050506040513d6020811015611e8e57600080fd5b810190808051906020019092919050505084600080611eab612382565b426040518863ffffffff1660e01b8152600401808873ffffffffffffffffffffffffffffffffffffffff1681526020018773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019750505050505050506040805180830381600087803b158015611f4d57600080fd5b505af1158015611f61573d6000803e3d6000fd5b505050506040513d6040811015611f7757600080fd5b81019080805190602001909291908051906020019092919050505050505050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061201f600260145401600a0a61201160135485613f1490919063ffffffff16565b613d9090919063ffffffff16565b9050919050565b60165481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156120c757600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050612112565b61210f600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611239565b90505b919050565b6000612148600260115401600a0a61213a60105485613f1490919063ffffffff16565b613d9090919063ffffffff16565b9050919050565b6000807f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156121de57600080fd5b505afa1580156121f2573d6000803e3d6000fd5b505050506040513d602081101561220857600080fd5b81019080805190602001909291905050509050809250505090565b60195481565b60115481565b6122376136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60006123023061202c565b90506000811161235d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180615a866027913960400191505060405180910390fd5b612365613f9a565b61237730612371612382565b83613ffc565b61237f6142f0565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6123b36136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612473576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81601381905550806014819055505050565b6060600e8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561251d5780601f106124f25761010080835404028352916020019161251d565b820191906000526020600020905b81548152906001019060200180831161250057829003601f168201915b5050505050905090565b60145481565b60006125f061253a6136f1565b846125eb85604051806060016040528060258152602001615afc60259139600560006125646136f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ca59092919063ffffffff16565b6136f9565b6001905092915050565b600061260e6126076136f1565b84846138f0565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615ad96023913960400191505060405180910390fd5b6002544211612735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60135481565b6128436136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a60156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b6129616136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a21576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612aaf57600080fd5b505afa158015612ac3573d6000803e3d6000fd5b505050506040513d6020811015612ad957600080fd5b8101908080519060200190929190505050905060008111612b45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061593a602a913960400191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612b69612382565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612bbd57600080fd5b505af1158015612bd1573d6000803e3d6000fd5b505050506040513d6020811015612be757600080fd5b8101908080519060200190929190505050505050565b612c056136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cc5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612cf260028201600a0a612ce484600954613f1490919063ffffffff16565b613d9090919063ffffffff16565b601b819055507f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c00601b546040518082815260200191505060405180910390a15050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000612dbc600260175401600a0a612dae60165485613f1490919063ffffffff16565b613d9090919063ffffffff16565b9050919050565b60175481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612e586136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612f7b6136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461303b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156130fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156131cf5761318b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611239565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6132956136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613355576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81601681905550806017819055505050565b61336f6136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461342f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166134ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156136ed578173ffffffffffffffffffffffffffffffffffffffff166008828154811061352257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156136e05760086001600880549050038154811061357e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106135b657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060088054806136a657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556136ed565b80806001019150506134f1565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561377f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615a626024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159186022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613976576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615a3d6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806158cb6023913960400191505060405180910390fd5b60008111613a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615a146029913960400191505060405180910390fd5b613a5d612382565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015613acb5750613a9b612382565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613b2c57601954811115613b2b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806159a36028913960400191505060405180910390fd5b5b6000613b373061202c565b90506000601b548210159050808015613b5d5750601a60149054906101000a900460ff16155b8015613bb557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015613bcd5750601a60159054906101000a900460ff165b15613bdc57613bdb8261430d565b5b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613c7d5750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613c8b57613c8a613f9a565b5b613c96858585613ffc565b613c9e6142f0565b5050505050565b6000838311158290613d52576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d17578082015181840152602081019050613cfc565b50505050905090810190601f168015613d445780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613d726143ef565b91509150613d898183613d9090919063ffffffff16565b9250505090565b6000613dd283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614680565b905092915050565b600080828401905083811015613e58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000806000613e7c8c614746565b93509350935093506000806000613e9d8f878787613e98613d65565b6147c5565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b6000613f0c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613ca5565b905092915050565b600080831415613f275760009050613f94565b6000828402905082848281613f3857fe5b0414613f8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806159cb6021913960400191505060405180910390fd5b809150505b92915050565b6000601054148015613fae57506000601354145b8015613fbc57506000601654145b15613fc657613ffa565b6010546012819055506013546015819055506016546018819055506000601081905550600060138190555060006016819055505b565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561409f5750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156140b4576140af838383614879565b6142eb565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141575750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561416c57614167838383614b05565b6142ea565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156142105750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561422557614220838383614d91565b6142e9565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156142c75750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156142dc576142d7838383614f88565b6142e8565b6142e7838383614d91565b5b5b5b5b505050565b601254601081905550601554601381905550601854601681905550565b6001601a60146101000a81548160ff021916908315150217905550600061433e600283613d9090919063ffffffff16565b905060006143558284613eca90919063ffffffff16565b90506000479050614365836152a9565b600061437a8247613eca90919063ffffffff16565b90506143868382615557565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601a60146101000a81548160ff02191690831515021790555050565b6000806000600a5490506000600954905060005b6008805490508110156146435782600360006008848154811061442257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061450957508160046000600884815481106144a157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561452057600a546009549450945050505061467c565b6145a9600360006008848154811061453457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613eca90919063ffffffff16565b925061463460046000600884815481106145bf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613eca90919063ffffffff16565b91508080600101915050614403565b5061465b600954600a54613d9090919063ffffffff16565b82101561467357600a5460095493509350505061467c565b81819350935050505b9091565b6000808311829061472c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156146f15780820151818401526020810190506146d6565b50505050905090810190601f16801561471e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161473857fe5b049050809150509392505050565b600080600080600061475786612117565b9050600061476487611fee565b9050600061477188612d8b565b905060006147ac8261479e85614790888e613eca90919063ffffffff16565b613eca90919063ffffffff16565b613eca90919063ffffffff16565b9050808484849750975097509750505050509193509193565b6000806000806147de858a613f1490919063ffffffff16565b905060006147f5868a613f1490919063ffffffff16565b9050600061480c878a613f1490919063ffffffff16565b90506000614823888a613f1490919063ffffffff16565b9050600061485e8261485085614842888a613eca90919063ffffffff16565b613eca90919063ffffffff16565b613eca90919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6000614883613d65565b9050600080600080600080600061489989613e62565b965096509650965096509650965060006148bc8984613f1490919063ffffffff16565b90506149108a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eca90919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149a588600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eca90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a3a87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a86826156a1565b614a9286828686615846565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614b0f613d65565b90506000806000806000806000614b2589613e62565b96509650965096509650965096506000614b488984613f1490919063ffffffff16565b9050614b9c88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eca90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c3185600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cc687600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d12826156a1565b614d1e86828686615846565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614d9b613d65565b90506000806000806000806000614db189613e62565b96509650965096509650965096506000614dd48984613f1490919063ffffffff16565b9050614e2888600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eca90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614ebd87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f09826156a1565b614f1586828686615846565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614f92613d65565b90506000806000806000806000614fa889613e62565b96509650965096509650965096506000614fcb8984613f1490919063ffffffff16565b905061501f8a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eca90919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150b488600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eca90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061514985600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151de87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061522a826156a1565b61523686828686615846565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6060600267ffffffffffffffff811180156152c357600080fd5b506040519080825280602002602001820160405280156152f25781602001602082028036833780820191505090505b509050308160008151811061530357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156153a357600080fd5b505afa1580156153b7573d6000803e3d6000fd5b505050506040513d60208110156153cd57600080fd5b8101908080519060200190929190505050816001815181106153eb57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050615450307f0000000000000000000000000000000000000000000000000000000000000000846136f9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156155125780820151818401526020810190506154f7565b505050509050019650505050505050600060405180830381600087803b15801561553b57600080fd5b505af115801561554f573d6000803e3d6000fd5b505050505050565b615582307f0000000000000000000000000000000000000000000000000000000000000000846136f9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561564a57600080fd5b505af115801561565e573d6000803e3d6000fd5b50505050506040513d606081101561567557600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b60006156ab613d65565b905060006156c28284613f1490919063ffffffff16565b905061571681600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615615841576157fd83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61586d8361585f86600a54613eca90919063ffffffff16565b613eca90919063ffffffff16565b600a8190555061588882600b54613dda90919063ffffffff16565b600b819055506158a381600c54613dda90919063ffffffff16565b600c819055506158be81600954613eca90919063ffffffff16565b6009819055505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e7345524332303a20617070726f766520746f20746865207a65726f20616464726573734e6f7420656e6f756768204c5020746f6b656e7320617661696c61626c6520746f2077697468647261774e6f7420656e6f756768206c697175696469747920617661696c61626c6520746f2072656d6f766520616e642073776170207468617420666f7220574554485472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734e6f7420656e6f75676820746f6b656e7320617661696c61626c6520746f2077697468647261774578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ce651d751b32066829fd65d21503acf5b6b153e52c02d7c9099e9c59a4593be564736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102b25760003560e01c806370a0823111610175578063c06352be116100dc578063cc126a2311610095578063ea2f0b371161006f578063ea2f0b3714610f0a578063f2cc0c1814610f5b578063f2d58c2314610fac578063f84354f114610ff1576102b9565b8063cc126a2314610e0b578063ced6071c14610e5a578063dd62ed3e14610e85576102b9565b8063c06352be14610cc9578063c0b0fda214610ce0578063c49b9a8014610d0b578063c802688314610d48578063cb5fac4814610d5f578063cba0e99614610da4576102b9565b80638da5cb5b1161012e5780638da5cb5b14610aa65780638fc3d4b814610ae757806395d89b4114610b2c5780639b2c14f314610bbc578063a457c2d714610be7578063a9059cbb14610c58576102b9565b806370a082311461095a57806375128141146109bf57806376a8477514610a0e5780637d1db4a514610a39578063832484f314610a645780638d8f2adb14610a8f576102b9565b80633bd5d1731161021957806349bd5a5e116101d257806349bd5a5e146107f45780634a74bb02146108355780634c02f62e146108625780635342acb4146108795780636ad88269146108e05780636bc87c3a1461092f576102b9565b80633bd5d173146106865780633c9f861d146106c15780633f3cf56c146106ec578063437823ec146107315780634549b0391461078257806346620e39146107dd576102b9565b806328d2bc911161026b57806328d2bc91146104e75780632d8381191461052857806330b263ba14610577578063313ce567146105bc57806339509351146105ea5780633b124fe71461065b576102b9565b806306fdde03146102be578063095ea7b31461034e57806313114a9d146103bf5780631694505e146103ea57806318160ddd1461042b57806323b872dd14610456576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3611042565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103135780820151818401526020810190506102f8565b50505050905090810190601f1680156103405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035a57600080fd5b506103a76004803603604081101561037157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110e4565b60405180821515815260200191505060405180910390f35b3480156103cb57600080fd5b506103d4611102565b6040518082815260200191505060405180910390f35b3480156103f657600080fd5b506103ff61110c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561043757600080fd5b50610440611130565b6040518082815260200191505060405180910390f35b34801561046257600080fd5b506104cf6004803603606081101561047957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061113a565b60405180821515815260200191505060405180910390f35b3480156104f357600080fd5b506104fc611213565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561053457600080fd5b506105616004803603602081101561054b57600080fd5b8101908080359060200190929190505050611239565b6040518082815260200191505060405180910390f35b34801561058357600080fd5b506105ba6004803603604081101561059a57600080fd5b8101908080359060200190929190803590602001909291905050506112bd565b005b3480156105c857600080fd5b506105d1611397565b604051808260ff16815260200191505060405180910390f35b3480156105f657600080fd5b506106436004803603604081101561060d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113ae565b60405180821515815260200191505060405180910390f35b34801561066757600080fd5b50610670611461565b6040518082815260200191505060405180910390f35b34801561069257600080fd5b506106bf600480360360208110156106a957600080fd5b8101908080359060200190929190505050611467565b005b3480156106cd57600080fd5b506106d66115f9565b6040518082815260200191505060405180910390f35b3480156106f857600080fd5b5061072f6004803603604081101561070f57600080fd5b810190808035906020019092919080359060200190929190505050611603565b005b34801561073d57600080fd5b506107806004803603602081101561075457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611702565b005b34801561078e57600080fd5b506107c7600480360360408110156107a557600080fd5b8101908080359060200190929190803515159060200190929190505050611825565b6040518082815260200191505060405180910390f35b3480156107e957600080fd5b506107f26118de565b005b34801561080057600080fd5b50610809611ad1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084157600080fd5b5061084a611af5565b60405180821515815260200191505060405180910390f35b34801561086e57600080fd5b50610877611b08565b005b34801561088557600080fd5b506108c86004803603602081101561089c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f98565b60405180821515815260200191505060405180910390f35b3480156108ec57600080fd5b506109196004803603602081101561090357600080fd5b8101908080359060200190929190505050611fee565b6040518082815260200191505060405180910390f35b34801561093b57600080fd5b50610944612026565b6040518082815260200191505060405180910390f35b34801561096657600080fd5b506109a96004803603602081101561097d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061202c565b6040518082815260200191505060405180910390f35b3480156109cb57600080fd5b506109f8600480360360208110156109e257600080fd5b8101908080359060200190929190505050612117565b6040518082815260200191505060405180910390f35b348015610a1a57600080fd5b50610a2361214f565b6040518082815260200191505060405180910390f35b348015610a4557600080fd5b50610a4e612223565b6040518082815260200191505060405180910390f35b348015610a7057600080fd5b50610a79612229565b6040518082815260200191505060405180910390f35b348015610a9b57600080fd5b50610aa461222f565b005b348015610ab257600080fd5b50610abb612382565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610af357600080fd5b50610b2a60048036036040811015610b0a57600080fd5b8101908080359060200190929190803590602001909291905050506123ab565b005b348015610b3857600080fd5b50610b41612485565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b81578082015181840152602081019050610b66565b50505050905090810190601f168015610bae5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610bc857600080fd5b50610bd1612527565b6040518082815260200191505060405180910390f35b348015610bf357600080fd5b50610c4060048036036040811015610c0a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061252d565b60405180821515815260200191505060405180910390f35b348015610c6457600080fd5b50610cb160048036036040811015610c7b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506125fa565b60405180821515815260200191505060405180910390f35b348015610cd557600080fd5b50610cde612618565b005b348015610cec57600080fd5b50610cf5612835565b6040518082815260200191505060405180910390f35b348015610d1757600080fd5b50610d4660048036036020811015610d2e57600080fd5b8101908080351515906020019092919050505061283b565b005b348015610d5457600080fd5b50610d5d612959565b005b348015610d6b57600080fd5b50610da260048036036040811015610d8257600080fd5b810190808035906020019092919080359060200190929190505050612bfd565b005b348015610db057600080fd5b50610df360048036036020811015610dc757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d35565b60405180821515815260200191505060405180910390f35b348015610e1757600080fd5b50610e4460048036036020811015610e2e57600080fd5b8101908080359060200190929190505050612d8b565b6040518082815260200191505060405180910390f35b348015610e6657600080fd5b50610e6f612dc3565b6040518082815260200191505060405180910390f35b348015610e9157600080fd5b50610ef460048036036040811015610ea857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dc9565b6040518082815260200191505060405180910390f35b348015610f1657600080fd5b50610f5960048036036020811015610f2d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e50565b005b348015610f6757600080fd5b50610faa60048036036020811015610f7e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f73565b005b348015610fb857600080fd5b50610fef60048036036040811015610fcf57600080fd5b81019080803590602001909291908035906020019092919050505061328d565b005b348015610ffd57600080fd5b506110406004803603602081101561101457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613367565b005b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110da5780601f106110af576101008083540402835291602001916110da565b820191906000526020600020905b8154815290600101906020018083116110bd57829003601f168201915b5050505050905090565b60006110f86110f16136f1565b84846136f9565b6001905092915050565b6000600b54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600954905090565b60006111478484846138f0565b611208846111536136f1565b611203856040518060600160405280602881526020016159ec60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111b96136f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ca59092919063ffffffff16565b6136f9565b600190509392505050565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a54821115611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806158ee602a913960400191505060405180910390fd5b60006112a0613d65565b90506112b58184613d9090919063ffffffff16565b915050919050565b6112c56136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81601081905550806011819055505050565b6000600f60009054906101000a900460ff16905090565b60006114576113bb6136f1565b8461145285600560006113cc6136f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b6136f9565b6001905092915050565b60105481565b60006114716136f1565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615aad602c913960400191505060405180910390fd5b600061152183613e62565b505050505050905061157b81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eca90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115d381600a54613eca90919063ffffffff16565b600a819055506115ee83600b54613dda90919063ffffffff16565b600b81905550505050565b6000600c54905090565b61160b6136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6116f860028201600a0a6116ea84600954613f1490919063ffffffff16565b613d9090919063ffffffff16565b6019819055505050565b61170a6136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600060095483111561189f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816118c05760006118af84613e62565b5050505050509050809150506118d8565b60006118cb84613e62565b5050505050915050809150505b92915050565b6118e66136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062093a804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000735dba04864f704e7b0a7ef3a542ad0e271fbf6581565b601a60159054906101000a900460ff1681565b611b106136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bd0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60007f000000000000000000000000735dba04864f704e7b0a7ef3a542ad0e271fbf65905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611c5e57600080fd5b505afa158015611c72573d6000803e3d6000fd5b505050506040513d6020811015611c8857600080fd5b8101908080519060200190929190505050905060008111611cf4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180615964603f913960400191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611d8557600080fd5b505af1158015611d99573d6000803e3d6000fd5b505050506040513d6020811015611daf57600080fd5b8101908080519060200190929190505050507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663baa2abde307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e6457600080fd5b505afa158015611e78573d6000803e3d6000fd5b505050506040513d6020811015611e8e57600080fd5b810190808051906020019092919050505084600080611eab612382565b426040518863ffffffff1660e01b8152600401808873ffffffffffffffffffffffffffffffffffffffff1681526020018773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019750505050505050506040805180830381600087803b158015611f4d57600080fd5b505af1158015611f61573d6000803e3d6000fd5b505050506040513d6040811015611f7757600080fd5b81019080805190602001909291908051906020019092919050505050505050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061201f600260145401600a0a61201160135485613f1490919063ffffffff16565b613d9090919063ffffffff16565b9050919050565b60165481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156120c757600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050612112565b61210f600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611239565b90505b919050565b6000612148600260115401600a0a61213a60105485613f1490919063ffffffff16565b613d9090919063ffffffff16565b9050919050565b6000807f000000000000000000000000735dba04864f704e7b0a7ef3a542ad0e271fbf65905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156121de57600080fd5b505afa1580156121f2573d6000803e3d6000fd5b505050506040513d602081101561220857600080fd5b81019080805190602001909291905050509050809250505090565b60195481565b60115481565b6122376136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60006123023061202c565b90506000811161235d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180615a866027913960400191505060405180910390fd5b612365613f9a565b61237730612371612382565b83613ffc565b61237f6142f0565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6123b36136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612473576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81601381905550806014819055505050565b6060600e8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561251d5780601f106124f25761010080835404028352916020019161251d565b820191906000526020600020905b81548152906001019060200180831161250057829003601f168201915b5050505050905090565b60145481565b60006125f061253a6136f1565b846125eb85604051806060016040528060258152602001615afc60259139600560006125646136f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ca59092919063ffffffff16565b6136f9565b6001905092915050565b600061260e6126076136f1565b84846138f0565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615ad96023913960400191505060405180910390fd5b6002544211612735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60135481565b6128436136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a60156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b6129616136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a21576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60007f000000000000000000000000735dba04864f704e7b0a7ef3a542ad0e271fbf65905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612aaf57600080fd5b505afa158015612ac3573d6000803e3d6000fd5b505050506040513d6020811015612ad957600080fd5b8101908080519060200190929190505050905060008111612b45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061593a602a913960400191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612b69612382565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612bbd57600080fd5b505af1158015612bd1573d6000803e3d6000fd5b505050506040513d6020811015612be757600080fd5b8101908080519060200190929190505050505050565b612c056136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cc5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612cf260028201600a0a612ce484600954613f1490919063ffffffff16565b613d9090919063ffffffff16565b601b819055507f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c00601b546040518082815260200191505060405180910390a15050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000612dbc600260175401600a0a612dae60165485613f1490919063ffffffff16565b613d9090919063ffffffff16565b9050919050565b60175481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612e586136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612f7b6136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461303b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156130fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156131cf5761318b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611239565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6132956136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613355576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81601681905550806017819055505050565b61336f6136f1565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461342f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166134ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156136ed578173ffffffffffffffffffffffffffffffffffffffff166008828154811061352257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156136e05760086001600880549050038154811061357e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106135b657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060088054806136a657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556136ed565b80806001019150506134f1565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561377f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615a626024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159186022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613976576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615a3d6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806158cb6023913960400191505060405180910390fd5b60008111613a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615a146029913960400191505060405180910390fd5b613a5d612382565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015613acb5750613a9b612382565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613b2c57601954811115613b2b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806159a36028913960400191505060405180910390fd5b5b6000613b373061202c565b90506000601b548210159050808015613b5d5750601a60149054906101000a900460ff16155b8015613bb557507f000000000000000000000000735dba04864f704e7b0a7ef3a542ad0e271fbf6573ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015613bcd5750601a60159054906101000a900460ff165b15613bdc57613bdb8261430d565b5b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613c7d5750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613c8b57613c8a613f9a565b5b613c96858585613ffc565b613c9e6142f0565b5050505050565b6000838311158290613d52576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d17578082015181840152602081019050613cfc565b50505050905090810190601f168015613d445780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613d726143ef565b91509150613d898183613d9090919063ffffffff16565b9250505090565b6000613dd283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614680565b905092915050565b600080828401905083811015613e58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000806000613e7c8c614746565b93509350935093506000806000613e9d8f878787613e98613d65565b6147c5565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b6000613f0c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613ca5565b905092915050565b600080831415613f275760009050613f94565b6000828402905082848281613f3857fe5b0414613f8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806159cb6021913960400191505060405180910390fd5b809150505b92915050565b6000601054148015613fae57506000601354145b8015613fbc57506000601654145b15613fc657613ffa565b6010546012819055506013546015819055506016546018819055506000601081905550600060138190555060006016819055505b565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561409f5750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156140b4576140af838383614879565b6142eb565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141575750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561416c57614167838383614b05565b6142ea565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156142105750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561422557614220838383614d91565b6142e9565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156142c75750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156142dc576142d7838383614f88565b6142e8565b6142e7838383614d91565b5b5b5b5b505050565b601254601081905550601554601381905550601854601681905550565b6001601a60146101000a81548160ff021916908315150217905550600061433e600283613d9090919063ffffffff16565b905060006143558284613eca90919063ffffffff16565b90506000479050614365836152a9565b600061437a8247613eca90919063ffffffff16565b90506143868382615557565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601a60146101000a81548160ff02191690831515021790555050565b6000806000600a5490506000600954905060005b6008805490508110156146435782600360006008848154811061442257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061450957508160046000600884815481106144a157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561452057600a546009549450945050505061467c565b6145a9600360006008848154811061453457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613eca90919063ffffffff16565b925061463460046000600884815481106145bf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613eca90919063ffffffff16565b91508080600101915050614403565b5061465b600954600a54613d9090919063ffffffff16565b82101561467357600a5460095493509350505061467c565b81819350935050505b9091565b6000808311829061472c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156146f15780820151818401526020810190506146d6565b50505050905090810190601f16801561471e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161473857fe5b049050809150509392505050565b600080600080600061475786612117565b9050600061476487611fee565b9050600061477188612d8b565b905060006147ac8261479e85614790888e613eca90919063ffffffff16565b613eca90919063ffffffff16565b613eca90919063ffffffff16565b9050808484849750975097509750505050509193509193565b6000806000806147de858a613f1490919063ffffffff16565b905060006147f5868a613f1490919063ffffffff16565b9050600061480c878a613f1490919063ffffffff16565b90506000614823888a613f1490919063ffffffff16565b9050600061485e8261485085614842888a613eca90919063ffffffff16565b613eca90919063ffffffff16565b613eca90919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6000614883613d65565b9050600080600080600080600061489989613e62565b965096509650965096509650965060006148bc8984613f1490919063ffffffff16565b90506149108a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eca90919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149a588600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eca90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a3a87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a86826156a1565b614a9286828686615846565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614b0f613d65565b90506000806000806000806000614b2589613e62565b96509650965096509650965096506000614b488984613f1490919063ffffffff16565b9050614b9c88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eca90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c3185600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cc687600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d12826156a1565b614d1e86828686615846565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614d9b613d65565b90506000806000806000806000614db189613e62565b96509650965096509650965096506000614dd48984613f1490919063ffffffff16565b9050614e2888600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eca90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614ebd87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f09826156a1565b614f1586828686615846565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614f92613d65565b90506000806000806000806000614fa889613e62565b96509650965096509650965096506000614fcb8984613f1490919063ffffffff16565b905061501f8a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eca90919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150b488600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eca90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061514985600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151de87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061522a826156a1565b61523686828686615846565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6060600267ffffffffffffffff811180156152c357600080fd5b506040519080825280602002602001820160405280156152f25781602001602082028036833780820191505090505b509050308160008151811061530357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156153a357600080fd5b505afa1580156153b7573d6000803e3d6000fd5b505050506040513d60208110156153cd57600080fd5b8101908080519060200190929190505050816001815181106153eb57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050615450307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846136f9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156155125780820151818401526020810190506154f7565b505050509050019650505050505050600060405180830381600087803b15801561553b57600080fd5b505af115801561554f573d6000803e3d6000fd5b505050505050565b615582307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846136f9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561564a57600080fd5b505af115801561565e573d6000803e3d6000fd5b50505050506040513d606081101561567557600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b60006156ab613d65565b905060006156c28284613f1490919063ffffffff16565b905061571681600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615615841576157fd83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613dda90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61586d8361585f86600a54613eca90919063ffffffff16565b613eca90919063ffffffff16565b600a8190555061588882600b54613dda90919063ffffffff16565b600b819055506158a381600c54613dda90919063ffffffff16565b600c819055506158be81600954613eca90919063ffffffff16565b6009819055505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e7345524332303a20617070726f766520746f20746865207a65726f20616464726573734e6f7420656e6f756768204c5020746f6b656e7320617661696c61626c6520746f2077697468647261774e6f7420656e6f756768206c697175696469747920617661696c61626c6520746f2072656d6f766520616e642073776170207468617420666f7220574554485472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734e6f7420656e6f75676820746f6b656e7320617661696c61626c6520746f2077697468647261774578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ce651d751b32066829fd65d21503acf5b6b153e52c02d7c9099e9c59a4593be564736f6c634300060c0033

Deployed Bytecode Sourcemap

23816:21793:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26458:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27370:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28481:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25066:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26735:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27539:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25169:69;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29508:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44180:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26644:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27860:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24609:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28676:378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28580:88;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44750:212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43935:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29062:438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16347:212;;;;;;;;;;;;;:::i;:::-;;25124:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25275:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35642:722;;;;;;;;;;;;;:::i;:::-;;43800:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42878:184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24869:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26838:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42685:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34718:221;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25020:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24642:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35334:296;;;;;;;;;;;;;:::i;:::-;;15705:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44354:168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26549:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24766:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28086:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27044:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16714:293;;;;;;;;;;;;;:::i;:::-;;24732:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45331:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34947:375;;;;;;;;;;;;;:::i;:::-;;44974:349;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28363:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43074:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24908:39;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27219:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44058:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29769:444;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44534:204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30221:478;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26458:83;26495:13;26528:5;26521:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26458:83;:::o;27370:161::-;27445:4;27462:39;27471:12;:10;:12::i;:::-;27485:7;27494:6;27462:8;:39::i;:::-;27519:4;27512:11;;27370:161;;;;:::o;28481:87::-;28523:7;28550:10;;28543:17;;28481:87;:::o;25066:51::-;;;:::o;26735:95::-;26788:7;26815;;26808:14;;26735:95;:::o;27539:313::-;27637:4;27654:36;27664:6;27672:9;27683:6;27654:9;:36::i;:::-;27701:121;27710:6;27718:12;:10;:12::i;:::-;27732:89;27770:6;27732:89;;;;;;;;;;;;;;;;;:11;:19;27744:6;27732:19;;;;;;;;;;;;;;;:33;27752:12;:10;:12::i;:::-;27732:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;27701:8;:121::i;:::-;27840:4;27833:11;;27539:313;;;;;:::o;25169:69::-;;;;;;;;;;;;;:::o;29508:253::-;29574:7;29613;;29602;:18;;29594:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29678:19;29701:10;:8;:10::i;:::-;29678:33;;29729:24;29741:11;29729:7;:11;;:24;;;;:::i;:::-;29722:31;;;29508:253;;;:::o;44180:162::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44287:6:::1;44277:7;:16;;;;44321:13;44304:14;:30;;;;44180:162:::0;;:::o;26644:83::-;26685:5;26710:9;;;;;;;;;;;26703:16;;26644:83;:::o;27860:218::-;27948:4;27965:83;27974:12;:10;:12::i;:::-;27988:7;27997:50;28036:10;27997:11;:25;28009:12;:10;:12::i;:::-;27997:25;;;;;;;;;;;;;;;:34;28023:7;27997:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;27965:8;:83::i;:::-;28066:4;28059:11;;27860:218;;;;:::o;24609:26::-;;;;:::o;28676:378::-;28728:14;28745:12;:10;:12::i;:::-;28728:29;;28777:11;:19;28789:6;28777:19;;;;;;;;;;;;;;;;;;;;;;;;;28776:20;28768:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28857:15;28882:19;28893:7;28882:10;:19::i;:::-;28856:45;;;;;;;;28930:28;28950:7;28930;:15;28938:6;28930:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;28912:7;:15;28920:6;28912:15;;;;;;;;;;;;;;;:46;;;;28979:20;28991:7;28979;;:11;;:20;;;;:::i;:::-;28969:7;:30;;;;29023:23;29038:7;29023:10;;:14;;:23;;;;:::i;:::-;29010:10;:36;;;;28676:378;;;:::o;28580:88::-;28622:7;28649:11;;28642:18;;28580:88;:::o;44750:212::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44867:87:::1;44941:1;44924:13;44916:26;44911:2;:32;44867:25;44879:12;44867:7;;:11;;:25;;;;:::i;:::-;:29;;:87;;;;:::i;:::-;44852:12;:102;;;;44750:212:::0;;:::o;43935:111::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44034:4:::1;44004:18;:27;44023:7;44004:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;43935:111:::0;:::o;29062:438::-;29152:7;29191;;29180;:18;;29172:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29250:17;29245:248;;29285:15;29310:19;29321:7;29310:10;:19::i;:::-;29284:45;;;;;;;;29351:7;29344:14;;;;;29245:248;29393:23;29425:19;29436:7;29425:10;:19::i;:::-;29391:53;;;;;;;;29466:15;29459:22;;;29062:438;;;;;:::o;16347:212::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16416:6:::1;::::0;::::1;;;;;;;;16399:14;;:23;;;;;;;;;;;;;;;;;;16450:1;16433:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16481:6;16475:3;:12;16463:9;:24;;;;16548:1;16511:40;;16532:6;::::0;::::1;;;;;;;;16511:40;;;;;;;;;;;;16347:212::o:0;25124:38::-;;;:::o;25275:41::-;;;;;;;;;;;;;:::o;35642:722::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35694:21:::1;35734:13;35694:54;;35759:14;35776:5;:15;;;35800:4;35776:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;35759:47;;35844:1;35835:6;:10;35827:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000:5;:13;;;36022:15;36040:6;36000:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;36090:15;:31;;;36144:4;36164:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;36201:6;36222:1;36265::::0;36308:7:::1;:5;:7::i;:::-;36330:15;36090:266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15987:1;;35642:722::o:0;43800:123::-;43864:4;43888:18;:27;43907:7;43888:27;;;;;;;;;;;;;;;;;;;;;;;;;43881:34;;43800:123;;;:::o;42878:184::-;42942:7;42969:85;43041:1;43022:15;;43014:28;43009:2;:34;42969:21;42981:8;;42969:7;:11;;:21;;;;:::i;:::-;:25;;:85;;;;:::i;:::-;42962:92;;42878:184;;;:::o;24869:32::-;;;;:::o;26838:198::-;26904:7;26928:11;:20;26940:7;26928:20;;;;;;;;;;;;;;;;;;;;;;;;;26924:49;;;26957:7;:16;26965:7;26957:16;;;;;;;;;;;;;;;;26950:23;;;;26924:49;26991:37;27011:7;:16;27019:7;27011:16;;;;;;;;;;;;;;;;26991:19;:37::i;:::-;26984:44;;26838:198;;;;:::o;42685:181::-;42748:7;42775:83;42845:1;42827:14;;42819:27;42814:2;:33;42775:20;42787:7;;42775;:11;;:20;;;;:::i;:::-;:24;;:83;;;;:::i;:::-;42768:90;;42685:181;;;:::o;34718:221::-;34765:7;34785:21;34825:13;34785:54;;34850:14;34867:5;:15;;;34891:4;34867:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34850:47;;34925:6;34918:13;;;;34718:221;:::o;25020:37::-;;;;:::o;24642:33::-;;;;:::o;35334:296::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35388:14:::1;35405:24;35423:4;35405:9;:24::i;:::-;35388:41;;35457:1;35448:6;:10;35440:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35523:14;:12;:14::i;:::-;35548:44;35571:4;35577:7;:5;:7::i;:::-;35585:6;35548:14;:44::i;:::-;35603:15;:13;:15::i;:::-;15987:1;35334:296::o:0;15705:79::-;15743:7;15770:6;;;;;;;;;;;15763:13;;15705:79;:::o;44354:168::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44464:7:::1;44453:8;:18;;;;44500:14;44482:15;:32;;;;44354:168:::0;;:::o;26549:87::-;26588:13;26621:7;26614:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26549:87;:::o;24766:34::-;;;;:::o;28086:269::-;28179:4;28196:129;28205:12;:10;:12::i;:::-;28219:7;28228:96;28267:15;28228:96;;;;;;;;;;;;;;;;;:11;:25;28240:12;:10;:12::i;:::-;28228:25;;;;;;;;;;;;;;;:34;28254:7;28228:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;28196:8;:129::i;:::-;28343:4;28336:11;;28086:269;;;;:::o;27044:167::-;27122:4;27139:42;27149:12;:10;:12::i;:::-;27163:9;27174:6;27139:9;:42::i;:::-;27199:4;27192:11;;27044:167;;;;:::o;16714:293::-;16784:10;16766:28;;:14;;;;;;;;;;;:28;;;16758:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16859:9;;16853:3;:15;16845:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16950:14;;;;;;;;;;;16921:44;;16942:6;;;;;;;;;;16921:44;;;;;;;;;;;;16985:14;;;;;;;;;;;16976:6;;:23;;;;;;;;;;;;;;;;;;16714:293::o;24732:27::-;;;;:::o;45331:171::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45432:8:::1;45408:21;;:32;;;;;;;;;;;;;;;;;;45456:38;45485:8;45456:38;;;;;;;;;;;;;;;;;;;;45331:171:::0;:::o;34947:375::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35064:21:::1;35104:13;35064:54;;35129:14;35146:5;:15;;;35170:4;35146:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;35129:47;;35214:1;35205:6;:10;35197:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35283:5;:14;;;35298:7;:5;:7::i;:::-;35307:6;35283:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;15987:1;;34947:375::o:0;44974:349::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45136:116:::1;45239:1;45208:27;45200:40;45195:2;:46;45136:40;45148:27;45136:7;;:11;;:40;;;;:::i;:::-;:44;;:116;;;;:::i;:::-;45114:19;:138;;;;45268:47;45295:19;;45268:47;;;;;;;;;;;;;;;;;;44974:349:::0;;:::o;28363:110::-;28421:4;28445:11;:20;28457:7;28445:20;;;;;;;;;;;;;;;;;;;;;;;;;28438:27;;28363:110;;;:::o;43074:199::-;43143:7;43170:95;43252:1;43228:20;;43220:33;43215:2;:39;43170:26;43182:13;;43170:7;:11;;:26;;;;:::i;:::-;:30;;:95;;;;:::i;:::-;43163:102;;43074:199;;;:::o;24908:39::-;;;;:::o;27219:143::-;27300:7;27327:11;:18;27339:5;27327:18;;;;;;;;;;;;;;;:27;27346:7;27327:27;;;;;;;;;;;;;;;;27320:34;;27219:143;;;;:::o;44058:110::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44155:5:::1;44125:18;:27;44144:7;44125:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;44058:110:::0;:::o;29769:444::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29963:11:::1;:20;29975:7;29963:20;;;;;;;;;;;;;;;;;;;;;;;;;29962:21;29954:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;30048:1;30029:7;:16;30037:7;30029:16;;;;;;;;;;;;;;;;:20;30026:108;;;30085:37;30105:7;:16;30113:7;30105:16;;;;;;;;;;;;;;;;30085:19;:37::i;:::-;30066:7;:16;30074:7;30066:16;;;;;;;;;;;;;;;:56;;;;30026:108;30167:4;30144:11;:20;30156:7;30144:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;30182:9;30197:7;30182:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29769:444:::0;:::o;44534:204::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44665:12:::1;44649:13;:28;;;;44711:19;44688:20;:42;;;;44534:204:::0;;:::o;30221:478::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30302:11:::1;:20;30314:7;30302:20;;;;;;;;;;;;;;;;;;;;;;;;;30294:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;30370:9;30365:327;30389:9;:16;;;;30385:1;:20;30365:327;;;30447:7;30431:23;;:9;30441:1;30431:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;30427:254;;;30490:9;30519:1;30500:9;:16;;;;:20;30490:31;;;;;;;;;;;;;;;;;;;;;;;;;30475:9;30485:1;30475:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;30559:1;30540:7;:16;30548:7;30540:16;;;;;;;;;;;;;;;:20;;;;30602:5;30579:11;:20;30591:7;30579:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;30626:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30660:5;;30427:254;30407:3;;;;;;;30365:327;;;;30221:478:::0;:::o;96:106::-;149:15;184:10;177:17;;96:106;:::o;30707:337::-;30817:1;30800:19;;:5;:19;;;;30792:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30898:1;30879:21;;:7;:21;;;;30871:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30982:6;30952:11;:18;30964:5;30952:18;;;;;;;;;;;;;;;:27;30971:7;30952:27;;;;;;;;;;;;;;;:36;;;;31020:7;31004:32;;31013:5;31004:32;;;31029:6;31004:32;;;;;;;;;;;;;;;;;;30707:337;;;:::o;31052:1541::-;31191:1;31175:18;;:4;:18;;;;31167:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31268:1;31254:16;;:2;:16;;;;31246:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31338:1;31329:6;:10;31321:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31407:7;:5;:7::i;:::-;31399:15;;:4;:15;;;;:32;;;;;31424:7;:5;:7::i;:::-;31418:13;;:2;:13;;;;31399:32;31396:125;;;31464:12;;31454:6;:22;;31446:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31396:125;31816:28;31847:24;31865:4;31847:9;:24::i;:::-;31816:55;;31882:24;31933:19;;31909:20;:43;;31882:70;;31981:19;:53;;;;;32018:16;;;;;;;;;;;32017:17;31981:53;:91;;;;;32059:13;32051:21;;:4;:21;;;;31981:91;:129;;;;;32089:21;;;;;;;;;;;31981:129;31963:222;;;32137:36;32152:20;32137:14;:36::i;:::-;31963:222;32288:18;:24;32307:4;32288:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;32316:18;:22;32335:2;32316:22;;;;;;;;;;;;;;;;;;;;;;;;;32288:50;32285:95;;;32354:14;:12;:14::i;:::-;32285:95;32466:30;32481:4;32486:2;32489:6;32466:14;:30::i;:::-;32570:15;:13;:15::i;:::-;31052:1541;;;;;:::o;4912:192::-;4998:7;5031:1;5026;:6;;5034:12;5018:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5058:9;5074:1;5070;:5;5058:17;;5095:1;5088:8;;;4912:192;;;;;:::o;41574:163::-;41615:7;41636:15;41653;41672:19;:17;:19::i;:::-;41635:56;;;;41709:20;41721:7;41709;:11;;:20;;;;:::i;:::-;41702:27;;;;41574:163;:::o;6310:132::-;6368:7;6395:39;6399:1;6402;6395:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6388:46;;6310:132;;;;:::o;4009:181::-;4067:7;4087:9;4103:1;4099;:5;4087:17;;4128:1;4123;:6;;4115:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4181:1;4174:8;;;4009:181;;;;:::o;40180:457::-;40239:7;40248;40257;40266;40275;40284;40293;40314:23;40339:12;40353:13;40368:18;40390:20;40402:7;40390:11;:20::i;:::-;40313:97;;;;;;;;40422:15;40439:23;40464:12;40480:57;40492:7;40501:4;40507:5;40514:10;40526;:8;:10::i;:::-;40480:11;:57::i;:::-;40421:116;;;;;;40556:7;40565:15;40582:4;40588:15;40605:4;40611:5;40618:10;40548:81;;;;;;;;;;;;;;;;;;;;;40180:457;;;;;;;;;:::o;4473:136::-;4531:7;4558:43;4562:1;4565;4558:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4551:50;;4473:136;;;;:::o;5363:471::-;5421:7;5671:1;5666;:6;5662:47;;;5696:1;5689:8;;;;5662:47;5721:9;5737:1;5733;:5;5721:17;;5766:1;5761;5757;:5;;;;;;:10;5749:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5825:1;5818:8;;;5363:471;;;;;:::o;43285:328::-;43342:1;43331:7;;:12;:29;;;;;43359:1;43347:8;;:13;43331:29;:51;;;;;43381:1;43364:13;;:18;43331:51;43328:63;;;43384:7;;43328:63;43429:7;;43411:15;:25;;;;43466:8;;43447:16;:27;;;;43509:13;;43485:21;:37;;;;43553:1;43543:7;:11;;;;43576:1;43565:8;:12;;;;43604:1;43588:13;:17;;;;43285:328;:::o;36372:698::-;36470:11;:19;36482:6;36470:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;36494:11;:22;36506:9;36494:22;;;;;;;;;;;;;;;;;;;;;;;;;36493:23;36470:46;36466:597;;;36533:48;36555:6;36563:9;36574:6;36533:21;:48::i;:::-;36466:597;;;36604:11;:19;36616:6;36604:19;;;;;;;;;;;;;;;;;;;;;;;;;36603:20;:46;;;;;36627:11;:22;36639:9;36627:22;;;;;;;;;;;;;;;;;;;;;;;;;36603:46;36599:464;;;36666:46;36686:6;36694:9;36705:6;36666:19;:46::i;:::-;36599:464;;;36735:11;:19;36747:6;36735:19;;;;;;;;;;;;;;;;;;;;;;;;;36734:20;:47;;;;;36759:11;:22;36771:9;36759:22;;;;;;;;;;;;;;;;;;;;;;;;;36758:23;36734:47;36730:333;;;36798:44;36816:6;36824:9;36835:6;36798:17;:44::i;:::-;36730:333;;;36864:11;:19;36876:6;36864:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;36887:11;:22;36899:9;36887:22;;;;;;;;;;;;;;;;;;;;;;;;;36864:45;36860:203;;;36926:48;36948:6;36956:9;36967:6;36926:21;:48::i;:::-;36860:203;;;37007:44;37025:6;37033:9;37044:6;37007:17;:44::i;:::-;36860:203;36730:333;36599:464;36466:597;36372:698;;;:::o;43625:163::-;43679:15;;43669:7;:25;;;;43716:16;;43705:8;:27;;;;43759:21;;43743:13;:37;;;;43625:163::o;32601:985::-;25688:4;25669:16;;:23;;;;;;;;;;;;;;;;;;32737:12:::1;32752:27;32777:1;32752:20;:24;;:27;;;;:::i;:::-;32737:42;;32790:17;32810:30;32835:4;32810:20;:24;;:30;;;;:::i;:::-;32790:50;;33118:22;33143:21;33118:46;;33209:22;33226:4;33209:16;:22::i;:::-;33362:18;33383:41;33409:14;33383:21;:25;;:41;;;;:::i;:::-;33362:62;;33474:35;33487:9;33498:10;33474:12;:35::i;:::-;33535:43;33550:4;33556:10;33568:9;33535:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25703:1;;;;25734:5:::0;25715:16;;:24;;;;;;;;;;;;;;;;;;32601:985;:::o;41745:561::-;41795:7;41804;41824:15;41842:7;;41824:25;;41860:15;41878:7;;41860:25;;41907:9;41902:289;41926:9;:16;;;;41922:1;:20;41902:289;;;41992:7;41968;:21;41976:9;41986:1;41976:12;;;;;;;;;;;;;;;;;;;;;;;;;41968:21;;;;;;;;;;;;;;;;:31;:66;;;;42027:7;42003;:21;42011:9;42021:1;42011:12;;;;;;;;;;;;;;;;;;;;;;;;;42003:21;;;;;;;;;;;;;;;;:31;41968:66;41964:97;;;42044:7;;42053;;42036:25;;;;;;;;;41964:97;42086:34;42098:7;:21;42106:9;42116:1;42106:12;;;;;;;;;;;;;;;;;;;;;;;;;42098:21;;;;;;;;;;;;;;;;42086:7;:11;;:34;;;;:::i;:::-;42076:44;;42145:34;42157:7;:21;42165:9;42175:1;42165:12;;;;;;;;;;;;;;;;;;;;;;;;;42157:21;;;;;;;;;;;;;;;;42145:7;:11;;:34;;;;:::i;:::-;42135:44;;41944:3;;;;;;;41902:289;;;;42215:20;42227:7;;42215;;:11;;:20;;;;:::i;:::-;42205:7;:30;42201:61;;;42245:7;;42254;;42237:25;;;;;;;;42201:61;42281:7;42290;42273:25;;;;;;41745:561;;;:::o;6938:278::-;7024:7;7056:1;7052;:5;7059:12;7044:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7083:9;7099:1;7095;:5;;;;;;7083:17;;7207:1;7200:8;;;6938:278;;;;;:::o;40645:409::-;40705:7;40714;40723;40732;40752:12;40767:24;40783:7;40767:15;:24::i;:::-;40752:39;;40802:13;40818:25;40835:7;40818:16;:25::i;:::-;40802:41;;40854:18;40875:30;40897:7;40875:21;:30::i;:::-;40854:51;;40916:23;40942:44;40975:10;40942:28;40964:5;40942:17;40954:4;40942:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:44;;;;:::i;:::-;40916:70;;41005:15;41022:4;41028:5;41035:10;40997:49;;;;;;;;;;;;40645:409;;;;;:::o;41062:504::-;41192:7;41201;41210;41230:15;41248:24;41260:11;41248:7;:11;;:24;;;;:::i;:::-;41230:42;;41283:12;41298:21;41307:11;41298:4;:8;;:21;;;;:::i;:::-;41283:36;;41330:13;41346:22;41356:11;41346:5;:9;;:22;;;;:::i;:::-;41330:38;;41379:18;41400:27;41415:11;41400:10;:14;;:27;;;;:::i;:::-;41379:48;;41438:23;41464:44;41497:10;41464:28;41486:5;41464:17;41476:4;41464:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:44;;;;:::i;:::-;41438:70;;41527:7;41536:15;41553:4;41519:39;;;;;;;;;;;41062:504;;;;;;;;;:::o;38428:689::-;38530:19;38553:10;:8;:10::i;:::-;38530:33;;38575:15;38592:23;38617:12;38631:23;38656:12;38670:13;38685:18;38707:19;38718:7;38707:10;:19::i;:::-;38574:152;;;;;;;;;;;;;;38737:13;38754:22;38764:11;38754:5;:9;;:22;;;;:::i;:::-;38737:39;;38805:28;38825:7;38805;:15;38813:6;38805:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;38787:7;:15;38795:6;38787:15;;;;;;;;;;;;;;;:46;;;;38862:28;38882:7;38862;:15;38870:6;38862:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;38844:7;:15;38852:6;38844:15;;;;;;;;;;;;;;;:46;;;;38922:39;38945:15;38922:7;:18;38930:9;38922:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;38901:7;:18;38909:9;38901:18;;;;;;;;;;;;;;;:60;;;;38975:26;38990:10;38975:14;:26::i;:::-;39012:37;39024:4;39030:5;39037:4;39043:5;39012:11;:37::i;:::-;39082:9;39065:44;;39074:6;39065:44;;;39093:15;39065:44;;;;;;;;;;;;;;;;;;38428:689;;;;;;;;;;;;:::o;37711:709::-;37811:19;37834:10;:8;:10::i;:::-;37811:33;;37856:15;37873:23;37898:12;37912:23;37937:12;37951:13;37966:18;37988:19;37999:7;37988:10;:19::i;:::-;37855:152;;;;;;;;;;;;;;38018:13;38035:22;38045:11;38035:5;:9;;:22;;;;:::i;:::-;38018:39;;38086:28;38106:7;38086;:15;38094:6;38086:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;38068:7;:15;38076:6;38068:15;;;;;;;;;;;;;;;:46;;;;38146:39;38169:15;38146:7;:18;38154:9;38146:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;38125:7;:18;38133:9;38125:18;;;;;;;;;;;;;;;:60;;;;38217:39;38240:15;38217:7;:18;38225:9;38217:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;38196:7;:18;38204:9;38196:18;;;;;;;;;;;;;;;:60;;;;38278:26;38293:10;38278:14;:26::i;:::-;38315:37;38327:4;38333:5;38340:4;38346:5;38315:11;:37::i;:::-;38385:9;38368:44;;38377:6;38368:44;;;38396:15;38368:44;;;;;;;;;;;;;;;;;;37711:709;;;;;;;;;;;;:::o;37078:625::-;37176:19;37199:10;:8;:10::i;:::-;37176:33;;37221:15;37238:23;37263:12;37277:23;37302:12;37316:13;37331:18;37353:19;37364:7;37353:10;:19::i;:::-;37220:152;;;;;;;;;;;;;;37383:13;37400:22;37410:11;37400:5;:9;;:22;;;;:::i;:::-;37383:39;;37451:28;37471:7;37451;:15;37459:6;37451:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;37433:7;:15;37441:6;37433:15;;;;;;;;;;;;;;;:46;;;;37511:39;37534:15;37511:7;:18;37519:9;37511:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;37490:7;:18;37498:9;37490:18;;;;;;;;;;;;;;;:60;;;;37561:26;37576:10;37561:14;:26::i;:::-;37598:37;37610:4;37616:5;37623:4;37629:5;37598:11;:37::i;:::-;37668:9;37651:44;;37660:6;37651:44;;;37679:15;37651:44;;;;;;;;;;;;;;;;;;37078:625;;;;;;;;;;;;:::o;39125:765::-;39227:19;39250:10;:8;:10::i;:::-;39227:33;;39272:15;39289:23;39314:12;39328:23;39353:12;39367:13;39382:18;39404:19;39415:7;39404:10;:19::i;:::-;39271:152;;;;;;;;;;;;;;39434:13;39451:22;39461:11;39451:5;:9;;:22;;;;:::i;:::-;39434:39;;39502:28;39522:7;39502;:15;39510:6;39502:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;39484:7;:15;39492:6;39484:15;;;;;;;;;;;;;;;:46;;;;39559:28;39579:7;39559;:15;39567:6;39559:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;39541:7;:15;39549:6;39541:15;;;;;;;;;;;;;;;:46;;;;39619:39;39642:15;39619:7;:18;39627:9;39619:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;39598:7;:18;39606:9;39598:18;;;;;;;;;;;;;;;:60;;;;39690:39;39713:15;39690:7;:18;39698:9;39690:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;39669:7;:18;39677:9;39669:18;;;;;;;;;;;;;;;:60;;;;39748:26;39763:10;39748:14;:26::i;:::-;39785:37;39797:4;39803:5;39810:4;39816:5;39785:11;:37::i;:::-;39855:9;39838:44;;39847:6;39838:44;;;39866:15;39838:44;;;;;;;;;;;;;;;;;;39125:765;;;;;;;;;;;;:::o;33594:589::-;33720:21;33758:1;33744:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33720:40;;33789:4;33771;33776:1;33771:7;;;;;;;;;;;;;:23;;;;;;;;;;;33815:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33805:4;33810:1;33805:7;;;;;;;;;;;;;:32;;;;;;;;;;;33850:62;33867:4;33882:15;33900:11;33850:8;:62::i;:::-;33951:15;:66;;;34032:11;34058:1;34102:4;34129;34149:15;33951:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33594:589;;:::o;34191:519::-;34339:62;34356:4;34371:15;34389:11;34339:8;:62::i;:::-;34444:15;:31;;;34483:9;34516:4;34536:11;34562:1;34605;34656:4;34676:15;34444:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34191:519;;:::o;42318:355::-;42381:19;42404:10;:8;:10::i;:::-;42381:33;;42425:18;42446:27;42461:11;42446:10;:14;;:27;;;;:::i;:::-;42425:48;;42509:38;42536:10;42509:7;:22;42525:4;42509:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;42484:7;:22;42500:4;42484:22;;;;;;;;;;;;;;;:63;;;;42561:11;:26;42581:4;42561:26;;;;;;;;;;;;;;;;;;;;;;;;;42558:107;;;42627:38;42654:10;42627:7;:22;42643:4;42627:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;42602:7;:22;42618:4;42602:22;;;;;;;;;;;;;;;:63;;;;42558:107;42318:355;;;:::o;39898:274::-;40006:28;40028:5;40006:17;40018:4;40006:7;;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;39996:7;:38;;;;40058:20;40073:4;40058:10;;:14;;:20;;;;:::i;:::-;40045:10;:33;;;;40103:22;40119:5;40103:11;;:15;;:22;;;;:::i;:::-;40089:11;:36;;;;40146:18;40158:5;40146:7;;:11;;:18;;;;:::i;:::-;40136:7;:28;;;;39898:274;;;;:::o

Swarm Source

ipfs://ce651d751b32066829fd65d21503acf5b6b153e52c02d7c9099e9c59a4593be5
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.