ETH Price: $2,984.39 (-3.85%)
Gas: 2 Gwei

Token

https://t.me/RAGEtoken (RAGE)
 

Overview

Max Total Supply

1,000 RAGE

Holders

82

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.001197651565800241 RAGE

Value
$0.00
0xa5ad90913ae048f6a741dc53af2d57f910312453
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:
RAGE

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-01-09
*/

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 renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    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 IUniswapV2Pair {
    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;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) 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 RAGE 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;
   
    address private _burnPool = 0x0000000000000000000000000000000000000000;
   
    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 = "https://t.me/RAGEtoken";
    string private _symbol = "RAGE";
    uint8 private _decimals = 18;
    
    //2%
    uint256 public _taxFee = 2;
    uint256 private _previousTaxFee = _taxFee;
    
    //0%
    uint256 public _burnFee = 0;
    uint256 private _previousBurnFee = _burnFee;
    
    
    //Total 7% => 4.9% goes to liquidity providers and 1% are added to liquidity pool
    uint256 public _liquidityFee = 7;
    uint256 private _previousLiquidityFee = _liquidityFee;
    
    //means 70% from total collected liquidity(7% on every Transfer) will be used to rewarded liquidity providers
    uint256 public _lpRewardFromLiquidity = 70;
    
    //3%
    uint256 public _maxTxAmount = 20 * 10**18;
    
    //tracks the total amount of token rewarded to liquidity providers
    uint256 public totalLiquidityProviderRewards;
    
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool public BurnLpTokensEnabled = false;
    uint256 public TotalBurnedLpTokens;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = false;
    uint256 private minTokensBeforeSwap = 8;
    
    event RewardLiquidityProviders(uint256 tokenAmount);
    // 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 and this contract 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 isExcludedFromReward(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 excludeFromReward(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 includeInReward(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
    ) private {
        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
        ) {
            //calculate lp rewards
            uint256 lpRewardAmount = contractTokenBalance.mul(_lpRewardFromLiquidity).div(10**2);
            //distribute rewards
            _rewardLiquidityProviders(lpRewardAmount);
            //add liquidity
            swapAndLiquify(contractTokenBalance.sub(lpRewardAmount));
            //burn lp tokens, hence locking the liquidity forever
            if(BurnLpTokensEnabled)
                burnLpTokens();
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }

    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 burnLpTokens() private {
        IUniswapV2Pair _token = IUniswapV2Pair(uniswapV2Pair);
        uint256 amount = _token.balanceOf(address(this));
        TotalBurnedLpTokens = TotalBurnedLpTokens.add(amount);
        _token.transfer(_burnPool, amount);
    }

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

    function withDrawLpTokens() public onlyOwner {
        // IUniswapV2ERC20 token = IUniswapV2ERC20(_token);
        IUniswapV2Pair token = IUniswapV2Pair(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");
        
    //     _tokenTransfer(address(this),owner(),amount,false);
    // }
    
    // function withdrawWETH() public onlyOwner {
    //     IUniswapV2Pair token = IUniswapV2Pair(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
    //     );
    // }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();
        
        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);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

    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 _rewardLiquidityProviders(uint256 liquidityRewards) private {
        // avoid fee calling _tokenTransfer with false
        _tokenTransfer(address(this), uniswapV2Pair, liquidityRewards,false);
        IUniswapV2Pair(uniswapV2Pair).sync();
        totalLiquidityProviderRewards = totalLiquidityProviderRewards.add(liquidityRewards);
        emit RewardLiquidityProviders(liquidityRewards);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }
    
    function calculateBurnFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_burnFee).div(
            10**2
        );
    }
    
    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**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) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setBurnFeePercent(uint256 burnFee) external onlyOwner() {
        _burnFee = burnFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
    
    function setLpRewardFromLiquidityPercent(uint256 percent) external onlyOwner() {
        _lpRewardFromLiquidity = percent;
    }

    function setMaxTxPercent(uint256 maxTxPercent, uint256 maxTxDecimals) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**(uint256(maxTxDecimals) + 2)
        );
    }
    
    function setBurnLpTokenEnabled(bool value) external onlyOwner() {
        BurnLpTokensEnabled = value;
    }
    
    // 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":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":"tokenAmount","type":"uint256"}],"name":"RewardLiquidityProviders","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":"BurnLpTokensEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LpTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TotalBurnedLpTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lpRewardFromLiquidity","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","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":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setBurnFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setBurnLpTokenEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setLpRewardFromLiquidityPercent","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":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","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":"totalLiquidityProviderRewards","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withDrawLpTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550683635c9adc5dea00000600a55600a54600019816200006157fe5b0660001903600b556040518060400160405280601681526020017f68747470733a2f2f742e6d652f52414745746f6b656e00000000000000000000815250600e9080519060200190620000b692919062000661565b506040518060400160405280600481526020017f5241474500000000000000000000000000000000000000000000000000000000815250600f90805190602001906200010492919062000661565b506012601060006101000a81548160ff021916908360ff16021790555060026011556011546012556000601355601354601455600760155560155460165560466017556801158e460913d000006018556000601a60006101000a81548160ff0219169083151502179055506000601c60016101000a81548160ff0219169083151502179055506008601d553480156200019c57600080fd5b506000620001af6200063060201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600b5460036000620002646200063060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030257600080fd5b505afa15801562000317573d6000803e3d6000fd5b505050506040513d60208110156200032e57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a257600080fd5b505afa158015620003b7573d6000803e3d6000fd5b505050506040513d6020811015620003ce57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200044957600080fd5b505af11580156200045e573d6000803e3d6000fd5b505050506040513d60208110156200047557600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160066000620005096200063860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005c26200063060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a35062000707565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006a457805160ff1916838001178555620006d5565b82800160010185558215620006d5579182015b82811115620006d4578251825591602001919060010190620006b7565b5b509050620006e49190620006e8565b5090565b5b8082111562000703576000816000905550600101620006e9565b5090565b60805160601c60a05160601c615bc76200076860003980611d75528061239c5280612b72528061384a5280613ce65280613d0f5280613ec852508061124752806148ae528061499a52806149c15280614acc5280614af35250615bc76000f3fe6080604052600436106102975760003560e01c80636bc87c3a1161015a578063a9059cbb116100c1578063cea269581161007a578063cea2695814610dfa578063da12e6b814610e35578063dd46706414610e62578063dd62ed3e14610e9d578063ea2f0b3714610f22578063f2fde38b14610f735761029e565b8063a9059cbb14610cb4578063b6c5232414610d25578063c0b0fda214610d50578063c365c69014610d7b578063c49b9a8014610da6578063c802688314610de35761029e565b80638da5cb5b116101135780638da5cb5b14610af55780638ee88c5314610b3657806395d89b4114610b71578063a3b798db14610c01578063a457c2d714610c2c578063a69df4b514610c9d5761029e565b80636bc87c3a1461099157806370a08231146109bc578063715018a614610a2157806376a8477514610a385780637d1db4a514610a6357806388f8202014610a8e5761029e565b80633b124fe7116101fe5780634549b039116101b75780634549b039146107e557806349bd5a5e146108405780634a74bb02146108815780634d430154146108ae57806352390c02146108d95780635342acb41461092a5761029e565b80633b124fe7146106835780633bd5d173146106ae5780633c9f861d146106e95780633f3cf56c1461071457806342b3ff1b14610759578063437823ec146107945761029e565b806318160ddd1161025057806318160ddd1461048857806323b872dd146104b35780632d83811914610544578063313ce567146105935780633685d419146105c157806339509351146106125761029e565b806303c72c6b146102a3578063061c82d0146102e057806306fdde031461031b578063095ea7b3146103ab57806313114a9d1461041c5780631694505e146104475761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102de600480360360208110156102c657600080fd5b81019080803515159060200190929190505050610fc4565b005b3480156102ec57600080fd5b506103196004803603602081101561030357600080fd5b81019080803590602001909291905050506110a9565b005b34801561032757600080fd5b5061033061117b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610370578082015181840152602081019050610355565b50505050905090810190601f16801561039d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103b757600080fd5b50610404600480360360408110156103ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061121d565b60405180821515815260200191505060405180910390f35b34801561042857600080fd5b5061043161123b565b6040518082815260200191505060405180910390f35b34801561045357600080fd5b5061045c611245565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049457600080fd5b5061049d611269565b6040518082815260200191505060405180910390f35b3480156104bf57600080fd5b5061052c600480360360608110156104d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611273565b60405180821515815260200191505060405180910390f35b34801561055057600080fd5b5061057d6004803603602081101561056757600080fd5b810190808035906020019092919050505061134c565b6040518082815260200191505060405180910390f35b34801561059f57600080fd5b506105a86113d0565b604051808260ff16815260200191505060405180910390f35b3480156105cd57600080fd5b50610610600480360360208110156105e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e7565b005b34801561061e57600080fd5b5061066b6004803603604081101561063557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611771565b60405180821515815260200191505060405180910390f35b34801561068f57600080fd5b50610698611824565b6040518082815260200191505060405180910390f35b3480156106ba57600080fd5b506106e7600480360360208110156106d157600080fd5b810190808035906020019092919050505061182a565b005b3480156106f557600080fd5b506106fe6119bc565b6040518082815260200191505060405180910390f35b34801561072057600080fd5b506107576004803603604081101561073757600080fd5b8101908080359060200190929190803590602001909291905050506119c6565b005b34801561076557600080fd5b506107926004803603602081101561077c57600080fd5b8101908080359060200190929190505050611ac5565b005b3480156107a057600080fd5b506107e3600480360360208110156107b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b97565b005b3480156107f157600080fd5b5061082a6004803603604081101561080857600080fd5b8101908080359060200190929190803515159060200190929190505050611cba565b6040518082815260200191505060405180910390f35b34801561084c57600080fd5b50610855611d73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561088d57600080fd5b50610896611d97565b60405180821515815260200191505060405180910390f35b3480156108ba57600080fd5b506108c3611daa565b6040518082815260200191505060405180910390f35b3480156108e557600080fd5b50610928600480360360208110156108fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611db0565b005b34801561093657600080fd5b506109796004803603602081101561094d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120ca565b60405180821515815260200191505060405180910390f35b34801561099d57600080fd5b506109a6612120565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b50610a0b600480360360208110156109df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612126565b6040518082815260200191505060405180910390f35b348015610a2d57600080fd5b50610a36612211565b005b348015610a4457600080fd5b50610a4d612397565b6040518082815260200191505060405180910390f35b348015610a6f57600080fd5b50610a7861246b565b6040518082815260200191505060405180910390f35b348015610a9a57600080fd5b50610add60048036036020811015610ab157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612471565b60405180821515815260200191505060405180910390f35b348015610b0157600080fd5b50610b0a6124c7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b4257600080fd5b50610b6f60048036036020811015610b5957600080fd5b81019080803590602001909291905050506124f0565b005b348015610b7d57600080fd5b50610b866125c2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bc6578082015181840152602081019050610bab565b50505050905090810190601f168015610bf35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c0d57600080fd5b50610c16612664565b6040518082815260200191505060405180910390f35b348015610c3857600080fd5b50610c8560048036036040811015610c4f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061266a565b60405180821515815260200191505060405180910390f35b348015610ca957600080fd5b50610cb2612737565b005b348015610cc057600080fd5b50610d0d60048036036040811015610cd757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612954565b60405180821515815260200191505060405180910390f35b348015610d3157600080fd5b50610d3a612972565b6040518082815260200191505060405180910390f35b348015610d5c57600080fd5b50610d6561297c565b6040518082815260200191505060405180910390f35b348015610d8757600080fd5b50610d90612982565b6040518082815260200191505060405180910390f35b348015610db257600080fd5b50610de160048036036020811015610dc957600080fd5b81019080803515159060200190929190505050612988565b005b348015610def57600080fd5b50610df8612aa6565b005b348015610e0657600080fd5b50610e3360048036036020811015610e1d57600080fd5b8101908080359060200190929190505050612d4a565b005b348015610e4157600080fd5b50610e4a612e1c565b60405180821515815260200191505060405180910390f35b348015610e6e57600080fd5b50610e9b60048036036020811015610e8557600080fd5b8101908080359060200190929190505050612e2f565b005b348015610ea957600080fd5b50610f0c60048036036040811015610ec057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613020565b6040518082815260200191505060405180910390f35b348015610f2e57600080fd5b50610f7160048036036020811015610f4557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130a7565b005b348015610f7f57600080fd5b50610fc260048036036020811015610f9657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506131ca565b005b610fcc6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a60006101000a81548160ff02191690831515021790555050565b6110b16133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112135780601f106111e857610100808354040283529160200191611213565b820191906000526020600020905b8154815290600101906020018083116111f657829003601f168201915b5050505050905090565b600061123161122a6133d5565b84846133dd565b6001905092915050565b6000600c54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600a54905090565b60006112808484846135d4565b6113418461128c6133d5565b61133c85604051806060016040528060288152602001615a8460289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112f26133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b600190509392505050565b6000600b548211156113a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061599f602a913960400191505060405180910390fd5b60006113b3613aab565b90506113c88184613ad690919063ffffffff16565b915050919050565b6000601060009054906101000a900460ff16905090565b6113ef6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561176d578173ffffffffffffffffffffffffffffffffffffffff16600882815481106115a257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611760576008600160088054905003815481106115fe57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061163657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061172657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561176d565b8080600101915050611571565b5050565b600061181a61177e6133d5565b84611815856005600061178f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b6133dd565b6001905092915050565b60115481565b60006118346133d5565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615b1e602c913960400191505060405180910390fd5b60006118e483613ba8565b505050505050905061193e81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061199681600b54613c1090919063ffffffff16565b600b819055506119b183600c54613b2090919063ffffffff16565b600c81905550505050565b6000600d54905090565b6119ce6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611abb60028201600a0a611aad84600a54613c5a90919063ffffffff16565b613ad690919063ffffffff16565b6018819055505050565b611acd6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060178190555050565b611b9f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a54831115611d34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611d55576000611d4484613ba8565b505050505050905080915050611d6d565b6000611d6084613ba8565b5050505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601c60019054906101000a900460ff1681565b60175481565b611db86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561200c57611fc8600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121c157600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061220c565b612209600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b90505b919050565b6122196133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000807f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561242657600080fd5b505afa15801561243a573d6000803e3d6000fd5b505050506040513d602081101561245057600080fd5b81019080805190602001909291905050509050809250505090565b60185481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124f86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060158190555050565b6060600f8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561265a5780601f1061262f5761010080835404028352916020019161265a565b820191906000526020600020905b81548152906001019060200180831161263d57829003601f168201915b5050505050905090565b601b5481565b600061272d6126776133d5565b8461272885604051806060016040528060258152602001615b6d60259139600560006126a16133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615b4a6023913960400191505060405180910390fd5b6002544211612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006129686129616133d5565b84846135d4565b6001905092915050565b6000600254905090565b60135481565b60195481565b6129906133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601c60016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612aae6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612bfc57600080fd5b505afa158015612c10573d6000803e3d6000fd5b505050506040513d6020811015612c2657600080fd5b8101908080519060200190929190505050905060008111612c92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615a11602a913960400191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612cb66124c7565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612d0a57600080fd5b505af1158015612d1e573d6000803e3d6000fd5b505050506040513d6020811015612d3457600080fd5b8101908080519060200190929190505050505050565b612d526133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b601a60009054906101000a900460ff1681565b612e376133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6130af6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461316f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6131d26133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806159c96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613463576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615afa6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159ef6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561365a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615ad56025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061597c6023913960400191505060405180910390fd5b60008111613739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615aac6029913960400191505060405180910390fd5b6137416124c7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156137af575061377f6124c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156138105760185481111561380f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615a3b6028913960400191505060405180910390fd5b5b600061381b30612126565b90506000601d5482101590508080156138415750601c60009054906101000a900460ff16155b801561389957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156138b15750601c60019054906101000a900460ff165b156139265760006138e060646138d260175486613c5a90919063ffffffff16565b613ad690919063ffffffff16565b90506138eb81613ce0565b6139066139018285613c1090919063ffffffff16565b613de2565b601a60009054906101000a900460ff161561392457613923613ec4565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139cd5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139d757600090505b6139e38686868461407d565b505050505050565b6000838311158290613a98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a5d578082015181840152602081019050613a42565b50505050905090810190601f168015613a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613ab861438e565b91509150613acf8183613ad690919063ffffffff16565b9250505090565b6000613b1883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061461f565b905092915050565b600080828401905083811015613b9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000806000613bc28c6146e5565b93509350935093506000806000613be38f878787613bde613aab565b614764565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b6000613c5283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506139eb565b905092915050565b600080831415613c6d5760009050613cda565b6000828402905082848281613c7e57fe5b0414613cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615a636021913960400191505060405180910390fd5b809150505b92915050565b613d0d307f000000000000000000000000000000000000000000000000000000000000000083600061407d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d7557600080fd5b505af1158015613d89573d6000803e3d6000fd5b50505050613da281601954613b2090919063ffffffff16565b6019819055507f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d49054816040518082815260200191505060405180910390a150565b6001601c60006101000a81548160ff0219169083151502179055506000613e13600283613ad690919063ffffffff16565b90506000613e2a8284613c1090919063ffffffff16565b90506000479050613e3a83614818565b6000613e4f8247613c1090919063ffffffff16565b9050613e5b8382614ac6565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601c60006101000a81548160ff02191690831515021790555050565b60007f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613f5257600080fd5b505afa158015613f66573d6000803e3d6000fd5b505050506040513d6020811015613f7c57600080fd5b81019080805190602001909291905050509050613fa481601b54613b2090919063ffffffff16565b601b819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561403d57600080fd5b505af1158015614051573d6000803e3d6000fd5b505050506040513d602081101561406757600080fd5b8101908080519060200190929190505050505050565b8061408b5761408a614c10565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561412e5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156141435761413e848484614c72565b61437a565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141e65750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156141fb576141f6848484614efe565b614379565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561429f5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156142b4576142af84848461518a565b614378565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156143565750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561436b57614366848484615381565b614377565b61437684848461518a565b5b5b5b5b80614388576143876156a2565b5b50505050565b6000806000600b5490506000600a54905060005b6008805490508110156145e2578260036000600884815481106143c157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806144a8575081600460006008848154811061444057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156144bf57600b54600a549450945050505061461b565b61454860036000600884815481106144d357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613c1090919063ffffffff16565b92506145d3600460006008848154811061455e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613c1090919063ffffffff16565b915080806001019150506143a2565b506145fa600a54600b54613ad690919063ffffffff16565b82101561461257600b54600a5493509350505061461b565b81819350935050505b9091565b600080831182906146cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614690578082015181840152602081019050614675565b50505050905090810190601f1680156146bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816146d757fe5b049050809150509392505050565b60008060008060006146f6866156bf565b90506000614703876156f0565b9050600061471088615721565b9050600061474b8261473d8561472f888e613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b9050808484849750975097509750505050509193509193565b60008060008061477d858a613c5a90919063ffffffff16565b90506000614794868a613c5a90919063ffffffff16565b905060006147ab878a613c5a90919063ffffffff16565b905060006147c2888a613c5a90919063ffffffff16565b905060006147fd826147ef856147e1888a613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6060600267ffffffffffffffff8111801561483257600080fd5b506040519080825280602002602001820160405280156148615781602001602082028036833780820191505090505b509050308160008151811061487257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561491257600080fd5b505afa158015614926573d6000803e3d6000fd5b505050506040513d602081101561493c57600080fd5b81019080805190602001909291905050508160018151811061495a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506149bf307f0000000000000000000000000000000000000000000000000000000000000000846133dd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614a81578082015181840152602081019050614a66565b505050509050019650505050505050600060405180830381600087803b158015614aaa57600080fd5b505af1158015614abe573d6000803e3d6000fd5b505050505050565b614af1307f0000000000000000000000000000000000000000000000000000000000000000846133dd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614bb957600080fd5b505af1158015614bcd573d6000803e3d6000fd5b50505050506040513d6060811015614be457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601154148015614c2457506000601354145b8015614c3257506000601554145b15614c3c57614c70565b6011546012819055506013546014819055506015546016819055506000601181905550600060138190555060006015819055505b565b6000614c7c613aab565b90506000806000806000806000614c9289613ba8565b96509650965096509650965096506000614cb58984613c5a90919063ffffffff16565b9050614d098a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d9e88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e3387600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e7f82615752565b614e8b868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614f08613aab565b90506000806000806000806000614f1e89613ba8565b96509650965096509650965096506000614f418984613c5a90919063ffffffff16565b9050614f9588600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061502a85600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150bf87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061510b82615752565b615117868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000615194613aab565b905060008060008060008060006151aa89613ba8565b965096509650965096509650965060006151cd8984613c5a90919063ffffffff16565b905061522188600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506152b687600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061530282615752565b61530e868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b600061538b613aab565b905060008060008060008060006153a189613ba8565b965096509650965096509650965060006153c48984613c5a90919063ffffffff16565b90506154188a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ad88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061554285600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506155d787600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061562382615752565b61562f868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b601254601181905550601454601381905550601654601581905550565b60006156e960646156db60115485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061571a606461570c60135485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061574b606461573d60155485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061575c613aab565b905060006157738284613c5a90919063ffffffff16565b90506157c781600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156158f2576158ae83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61591e8361591086600b54613c1090919063ffffffff16565b613c1090919063ffffffff16565b600b8190555061593982600c54613b2090919063ffffffff16565b600c8190555061595481600d54613b2090919063ffffffff16565b600d8190555061596f81600a54613c1090919063ffffffff16565b600a819055505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734e6f7420656e6f756768204c5020746f6b656e7320617661696c61626c6520746f2077697468647261775472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204f1ae4d31afa58f3182d4e6f8948a406f853f50ad981c430ac71e338a609bcf764736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102975760003560e01c80636bc87c3a1161015a578063a9059cbb116100c1578063cea269581161007a578063cea2695814610dfa578063da12e6b814610e35578063dd46706414610e62578063dd62ed3e14610e9d578063ea2f0b3714610f22578063f2fde38b14610f735761029e565b8063a9059cbb14610cb4578063b6c5232414610d25578063c0b0fda214610d50578063c365c69014610d7b578063c49b9a8014610da6578063c802688314610de35761029e565b80638da5cb5b116101135780638da5cb5b14610af55780638ee88c5314610b3657806395d89b4114610b71578063a3b798db14610c01578063a457c2d714610c2c578063a69df4b514610c9d5761029e565b80636bc87c3a1461099157806370a08231146109bc578063715018a614610a2157806376a8477514610a385780637d1db4a514610a6357806388f8202014610a8e5761029e565b80633b124fe7116101fe5780634549b039116101b75780634549b039146107e557806349bd5a5e146108405780634a74bb02146108815780634d430154146108ae57806352390c02146108d95780635342acb41461092a5761029e565b80633b124fe7146106835780633bd5d173146106ae5780633c9f861d146106e95780633f3cf56c1461071457806342b3ff1b14610759578063437823ec146107945761029e565b806318160ddd1161025057806318160ddd1461048857806323b872dd146104b35780632d83811914610544578063313ce567146105935780633685d419146105c157806339509351146106125761029e565b806303c72c6b146102a3578063061c82d0146102e057806306fdde031461031b578063095ea7b3146103ab57806313114a9d1461041c5780631694505e146104475761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102de600480360360208110156102c657600080fd5b81019080803515159060200190929190505050610fc4565b005b3480156102ec57600080fd5b506103196004803603602081101561030357600080fd5b81019080803590602001909291905050506110a9565b005b34801561032757600080fd5b5061033061117b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610370578082015181840152602081019050610355565b50505050905090810190601f16801561039d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103b757600080fd5b50610404600480360360408110156103ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061121d565b60405180821515815260200191505060405180910390f35b34801561042857600080fd5b5061043161123b565b6040518082815260200191505060405180910390f35b34801561045357600080fd5b5061045c611245565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049457600080fd5b5061049d611269565b6040518082815260200191505060405180910390f35b3480156104bf57600080fd5b5061052c600480360360608110156104d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611273565b60405180821515815260200191505060405180910390f35b34801561055057600080fd5b5061057d6004803603602081101561056757600080fd5b810190808035906020019092919050505061134c565b6040518082815260200191505060405180910390f35b34801561059f57600080fd5b506105a86113d0565b604051808260ff16815260200191505060405180910390f35b3480156105cd57600080fd5b50610610600480360360208110156105e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e7565b005b34801561061e57600080fd5b5061066b6004803603604081101561063557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611771565b60405180821515815260200191505060405180910390f35b34801561068f57600080fd5b50610698611824565b6040518082815260200191505060405180910390f35b3480156106ba57600080fd5b506106e7600480360360208110156106d157600080fd5b810190808035906020019092919050505061182a565b005b3480156106f557600080fd5b506106fe6119bc565b6040518082815260200191505060405180910390f35b34801561072057600080fd5b506107576004803603604081101561073757600080fd5b8101908080359060200190929190803590602001909291905050506119c6565b005b34801561076557600080fd5b506107926004803603602081101561077c57600080fd5b8101908080359060200190929190505050611ac5565b005b3480156107a057600080fd5b506107e3600480360360208110156107b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b97565b005b3480156107f157600080fd5b5061082a6004803603604081101561080857600080fd5b8101908080359060200190929190803515159060200190929190505050611cba565b6040518082815260200191505060405180910390f35b34801561084c57600080fd5b50610855611d73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561088d57600080fd5b50610896611d97565b60405180821515815260200191505060405180910390f35b3480156108ba57600080fd5b506108c3611daa565b6040518082815260200191505060405180910390f35b3480156108e557600080fd5b50610928600480360360208110156108fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611db0565b005b34801561093657600080fd5b506109796004803603602081101561094d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120ca565b60405180821515815260200191505060405180910390f35b34801561099d57600080fd5b506109a6612120565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b50610a0b600480360360208110156109df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612126565b6040518082815260200191505060405180910390f35b348015610a2d57600080fd5b50610a36612211565b005b348015610a4457600080fd5b50610a4d612397565b6040518082815260200191505060405180910390f35b348015610a6f57600080fd5b50610a7861246b565b6040518082815260200191505060405180910390f35b348015610a9a57600080fd5b50610add60048036036020811015610ab157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612471565b60405180821515815260200191505060405180910390f35b348015610b0157600080fd5b50610b0a6124c7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b4257600080fd5b50610b6f60048036036020811015610b5957600080fd5b81019080803590602001909291905050506124f0565b005b348015610b7d57600080fd5b50610b866125c2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bc6578082015181840152602081019050610bab565b50505050905090810190601f168015610bf35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c0d57600080fd5b50610c16612664565b6040518082815260200191505060405180910390f35b348015610c3857600080fd5b50610c8560048036036040811015610c4f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061266a565b60405180821515815260200191505060405180910390f35b348015610ca957600080fd5b50610cb2612737565b005b348015610cc057600080fd5b50610d0d60048036036040811015610cd757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612954565b60405180821515815260200191505060405180910390f35b348015610d3157600080fd5b50610d3a612972565b6040518082815260200191505060405180910390f35b348015610d5c57600080fd5b50610d6561297c565b6040518082815260200191505060405180910390f35b348015610d8757600080fd5b50610d90612982565b6040518082815260200191505060405180910390f35b348015610db257600080fd5b50610de160048036036020811015610dc957600080fd5b81019080803515159060200190929190505050612988565b005b348015610def57600080fd5b50610df8612aa6565b005b348015610e0657600080fd5b50610e3360048036036020811015610e1d57600080fd5b8101908080359060200190929190505050612d4a565b005b348015610e4157600080fd5b50610e4a612e1c565b60405180821515815260200191505060405180910390f35b348015610e6e57600080fd5b50610e9b60048036036020811015610e8557600080fd5b8101908080359060200190929190505050612e2f565b005b348015610ea957600080fd5b50610f0c60048036036040811015610ec057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613020565b6040518082815260200191505060405180910390f35b348015610f2e57600080fd5b50610f7160048036036020811015610f4557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130a7565b005b348015610f7f57600080fd5b50610fc260048036036020811015610f9657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506131ca565b005b610fcc6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a60006101000a81548160ff02191690831515021790555050565b6110b16133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112135780601f106111e857610100808354040283529160200191611213565b820191906000526020600020905b8154815290600101906020018083116111f657829003601f168201915b5050505050905090565b600061123161122a6133d5565b84846133dd565b6001905092915050565b6000600c54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600a54905090565b60006112808484846135d4565b6113418461128c6133d5565b61133c85604051806060016040528060288152602001615a8460289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112f26133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b600190509392505050565b6000600b548211156113a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061599f602a913960400191505060405180910390fd5b60006113b3613aab565b90506113c88184613ad690919063ffffffff16565b915050919050565b6000601060009054906101000a900460ff16905090565b6113ef6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561176d578173ffffffffffffffffffffffffffffffffffffffff16600882815481106115a257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611760576008600160088054905003815481106115fe57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061163657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061172657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561176d565b8080600101915050611571565b5050565b600061181a61177e6133d5565b84611815856005600061178f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b6133dd565b6001905092915050565b60115481565b60006118346133d5565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615b1e602c913960400191505060405180910390fd5b60006118e483613ba8565b505050505050905061193e81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061199681600b54613c1090919063ffffffff16565b600b819055506119b183600c54613b2090919063ffffffff16565b600c81905550505050565b6000600d54905090565b6119ce6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611abb60028201600a0a611aad84600a54613c5a90919063ffffffff16565b613ad690919063ffffffff16565b6018819055505050565b611acd6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060178190555050565b611b9f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a54831115611d34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611d55576000611d4484613ba8565b505050505050905080915050611d6d565b6000611d6084613ba8565b5050505050915050809150505b92915050565b7f00000000000000000000000087364df3036481b91f19cc01614cf7a0d81d1c0181565b601c60019054906101000a900460ff1681565b60175481565b611db86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561200c57611fc8600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121c157600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061220c565b612209600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b90505b919050565b6122196133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000807f00000000000000000000000087364df3036481b91f19cc01614cf7a0d81d1c01905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561242657600080fd5b505afa15801561243a573d6000803e3d6000fd5b505050506040513d602081101561245057600080fd5b81019080805190602001909291905050509050809250505090565b60185481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124f86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060158190555050565b6060600f8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561265a5780601f1061262f5761010080835404028352916020019161265a565b820191906000526020600020905b81548152906001019060200180831161263d57829003601f168201915b5050505050905090565b601b5481565b600061272d6126776133d5565b8461272885604051806060016040528060258152602001615b6d60259139600560006126a16133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615b4a6023913960400191505060405180910390fd5b6002544211612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006129686129616133d5565b84846135d4565b6001905092915050565b6000600254905090565b60135481565b60195481565b6129906133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601c60016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612aae6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60007f00000000000000000000000087364df3036481b91f19cc01614cf7a0d81d1c01905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612bfc57600080fd5b505afa158015612c10573d6000803e3d6000fd5b505050506040513d6020811015612c2657600080fd5b8101908080519060200190929190505050905060008111612c92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615a11602a913960400191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612cb66124c7565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612d0a57600080fd5b505af1158015612d1e573d6000803e3d6000fd5b505050506040513d6020811015612d3457600080fd5b8101908080519060200190929190505050505050565b612d526133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b601a60009054906101000a900460ff1681565b612e376133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6130af6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461316f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6131d26133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806159c96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613463576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615afa6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159ef6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561365a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615ad56025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061597c6023913960400191505060405180910390fd5b60008111613739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615aac6029913960400191505060405180910390fd5b6137416124c7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156137af575061377f6124c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156138105760185481111561380f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615a3b6028913960400191505060405180910390fd5b5b600061381b30612126565b90506000601d5482101590508080156138415750601c60009054906101000a900460ff16155b801561389957507f00000000000000000000000087364df3036481b91f19cc01614cf7a0d81d1c0173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156138b15750601c60019054906101000a900460ff165b156139265760006138e060646138d260175486613c5a90919063ffffffff16565b613ad690919063ffffffff16565b90506138eb81613ce0565b6139066139018285613c1090919063ffffffff16565b613de2565b601a60009054906101000a900460ff161561392457613923613ec4565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139cd5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139d757600090505b6139e38686868461407d565b505050505050565b6000838311158290613a98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a5d578082015181840152602081019050613a42565b50505050905090810190601f168015613a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613ab861438e565b91509150613acf8183613ad690919063ffffffff16565b9250505090565b6000613b1883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061461f565b905092915050565b600080828401905083811015613b9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000806000613bc28c6146e5565b93509350935093506000806000613be38f878787613bde613aab565b614764565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b6000613c5283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506139eb565b905092915050565b600080831415613c6d5760009050613cda565b6000828402905082848281613c7e57fe5b0414613cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615a636021913960400191505060405180910390fd5b809150505b92915050565b613d0d307f00000000000000000000000087364df3036481b91f19cc01614cf7a0d81d1c0183600061407d565b7f00000000000000000000000087364df3036481b91f19cc01614cf7a0d81d1c0173ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d7557600080fd5b505af1158015613d89573d6000803e3d6000fd5b50505050613da281601954613b2090919063ffffffff16565b6019819055507f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d49054816040518082815260200191505060405180910390a150565b6001601c60006101000a81548160ff0219169083151502179055506000613e13600283613ad690919063ffffffff16565b90506000613e2a8284613c1090919063ffffffff16565b90506000479050613e3a83614818565b6000613e4f8247613c1090919063ffffffff16565b9050613e5b8382614ac6565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601c60006101000a81548160ff02191690831515021790555050565b60007f00000000000000000000000087364df3036481b91f19cc01614cf7a0d81d1c01905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613f5257600080fd5b505afa158015613f66573d6000803e3d6000fd5b505050506040513d6020811015613f7c57600080fd5b81019080805190602001909291905050509050613fa481601b54613b2090919063ffffffff16565b601b819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561403d57600080fd5b505af1158015614051573d6000803e3d6000fd5b505050506040513d602081101561406757600080fd5b8101908080519060200190929190505050505050565b8061408b5761408a614c10565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561412e5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156141435761413e848484614c72565b61437a565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141e65750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156141fb576141f6848484614efe565b614379565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561429f5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156142b4576142af84848461518a565b614378565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156143565750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561436b57614366848484615381565b614377565b61437684848461518a565b5b5b5b5b80614388576143876156a2565b5b50505050565b6000806000600b5490506000600a54905060005b6008805490508110156145e2578260036000600884815481106143c157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806144a8575081600460006008848154811061444057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156144bf57600b54600a549450945050505061461b565b61454860036000600884815481106144d357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613c1090919063ffffffff16565b92506145d3600460006008848154811061455e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613c1090919063ffffffff16565b915080806001019150506143a2565b506145fa600a54600b54613ad690919063ffffffff16565b82101561461257600b54600a5493509350505061461b565b81819350935050505b9091565b600080831182906146cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614690578082015181840152602081019050614675565b50505050905090810190601f1680156146bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816146d757fe5b049050809150509392505050565b60008060008060006146f6866156bf565b90506000614703876156f0565b9050600061471088615721565b9050600061474b8261473d8561472f888e613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b9050808484849750975097509750505050509193509193565b60008060008061477d858a613c5a90919063ffffffff16565b90506000614794868a613c5a90919063ffffffff16565b905060006147ab878a613c5a90919063ffffffff16565b905060006147c2888a613c5a90919063ffffffff16565b905060006147fd826147ef856147e1888a613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6060600267ffffffffffffffff8111801561483257600080fd5b506040519080825280602002602001820160405280156148615781602001602082028036833780820191505090505b509050308160008151811061487257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561491257600080fd5b505afa158015614926573d6000803e3d6000fd5b505050506040513d602081101561493c57600080fd5b81019080805190602001909291905050508160018151811061495a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506149bf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846133dd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614a81578082015181840152602081019050614a66565b505050509050019650505050505050600060405180830381600087803b158015614aaa57600080fd5b505af1158015614abe573d6000803e3d6000fd5b505050505050565b614af1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846133dd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614bb957600080fd5b505af1158015614bcd573d6000803e3d6000fd5b50505050506040513d6060811015614be457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601154148015614c2457506000601354145b8015614c3257506000601554145b15614c3c57614c70565b6011546012819055506013546014819055506015546016819055506000601181905550600060138190555060006015819055505b565b6000614c7c613aab565b90506000806000806000806000614c9289613ba8565b96509650965096509650965096506000614cb58984613c5a90919063ffffffff16565b9050614d098a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d9e88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e3387600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e7f82615752565b614e8b868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614f08613aab565b90506000806000806000806000614f1e89613ba8565b96509650965096509650965096506000614f418984613c5a90919063ffffffff16565b9050614f9588600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061502a85600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150bf87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061510b82615752565b615117868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000615194613aab565b905060008060008060008060006151aa89613ba8565b965096509650965096509650965060006151cd8984613c5a90919063ffffffff16565b905061522188600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506152b687600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061530282615752565b61530e868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b600061538b613aab565b905060008060008060008060006153a189613ba8565b965096509650965096509650965060006153c48984613c5a90919063ffffffff16565b90506154188a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ad88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061554285600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506155d787600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061562382615752565b61562f868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b601254601181905550601454601381905550601654601581905550565b60006156e960646156db60115485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061571a606461570c60135485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061574b606461573d60155485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061575c613aab565b905060006157738284613c5a90919063ffffffff16565b90506157c781600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156158f2576158ae83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61591e8361591086600b54613c1090919063ffffffff16565b613c1090919063ffffffff16565b600b8190555061593982600c54613b2090919063ffffffff16565b600c8190555061595481600d54613b2090919063ffffffff16565b600d8190555061596f81600a54613c1090919063ffffffff16565b600a819055505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734e6f7420656e6f756768204c5020746f6b656e7320617661696c61626c6520746f2077697468647261775472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204f1ae4d31afa58f3182d4e6f8948a406f853f50ad981c430ac71e338a609bcf764736f6c634300060c0033

Deployed Bytecode Sourcemap

25718:23627:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48576:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47856:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28851:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29763:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30884:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27359:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29128:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29932:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31911:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29037:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32627:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30253:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26611:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31079:378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30983:88;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48352:212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48214:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47611:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31465:438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27417:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27589:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27111:42;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32172:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47476:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26891:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29231:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16313:148;;;;;;;;;;;;;:::i;:::-;;37840:219;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27176:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30756:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15670:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;48080:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28942:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27514:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30479:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17323:293;;;;;;;;;;;;;:::i;:::-;;29437:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16868:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26708:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27302:44;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49073:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38067:373;;;;;;;;;;;;;:::i;:::-;;47966:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27468:39;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17033:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29612:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47734:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16616:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48576:110;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48673:5:::1;48651:19;;:27;;;;;;;;;;;;;;;;;;48576:110:::0;:::o;47856:98::-;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47940:6:::1;47930:7;:16;;;;47856:98:::0;:::o;28851:83::-;28888:13;28921:5;28914:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28851:83;:::o;29763:161::-;29838:4;29855:39;29864:12;:10;:12::i;:::-;29878:7;29887:6;29855:8;:39::i;:::-;29912:4;29905:11;;29763:161;;;;:::o;30884:87::-;30926:7;30953:10;;30946:17;;30884:87;:::o;27359:51::-;;;:::o;29128:95::-;29181:7;29208;;29201:14;;29128:95;:::o;29932:313::-;30030:4;30047:36;30057:6;30065:9;30076:6;30047:9;:36::i;:::-;30094:121;30103:6;30111:12;:10;:12::i;:::-;30125:89;30163:6;30125:89;;;;;;;;;;;;;;;;;:11;:19;30137:6;30125:19;;;;;;;;;;;;;;;:33;30145:12;:10;:12::i;:::-;30125:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30094:8;:121::i;:::-;30233:4;30226:11;;29932:313;;;;;:::o;31911:253::-;31977:7;32016;;32005;:18;;31997:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32081:19;32104:10;:8;:10::i;:::-;32081:33;;32132:24;32144:11;32132:7;:11;;:24;;;;:::i;:::-;32125:31;;;31911:253;;;:::o;29037:83::-;29078:5;29103:9;;;;;;;;;;;29096:16;;29037:83;:::o;32627:479::-;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32709:11:::1;:20;32721:7;32709:20;;;;;;;;;;;;;;;;;;;;;;;;;32701:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32777:9;32772:327;32796:9;:16;;;;32792:1;:20;32772:327;;;32854:7;32838:23;;:9;32848:1;32838:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;32834:254;;;32897:9;32926:1;32907:9;:16;;;;:20;32897:31;;;;;;;;;;;;;;;;;;;;;;;;;32882:9;32892:1;32882:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32966:1;32947:7;:16;32955:7;32947:16;;;;;;;;;;;;;;;:20;;;;33009:5;32986:11;:20;32998:7;32986:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;33033:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33067:5;;32834:254;32814:3;;;;;;;32772:327;;;;32627:479:::0;:::o;30253:218::-;30341:4;30358:83;30367:12;:10;:12::i;:::-;30381:7;30390:50;30429:10;30390:11;:25;30402:12;:10;:12::i;:::-;30390:25;;;;;;;;;;;;;;;:34;30416:7;30390:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30358:8;:83::i;:::-;30459:4;30452:11;;30253:218;;;;:::o;26611:26::-;;;;:::o;31079:378::-;31131:14;31148:12;:10;:12::i;:::-;31131:29;;31180:11;:19;31192:6;31180:19;;;;;;;;;;;;;;;;;;;;;;;;;31179:20;31171:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31260:15;31285:19;31296:7;31285:10;:19::i;:::-;31259:45;;;;;;;;31333:28;31353:7;31333;:15;31341:6;31333:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31315:7;:15;31323:6;31315:15;;;;;;;;;;;;;;;:46;;;;31382:20;31394:7;31382;;:11;;:20;;;;:::i;:::-;31372:7;:30;;;;31426:23;31441:7;31426:10;;:14;;:23;;;;:::i;:::-;31413:10;:36;;;;31079:378;;;:::o;30983:88::-;31025:7;31052:11;;31045:18;;30983:88;:::o;48352:212::-;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48469:87:::1;48543:1;48526:13;48518:26;48513:2;:32;48469:25;48481:12;48469:7;;:11;;:25;;;;:::i;:::-;:29;;:87;;;;:::i;:::-;48454:12;:102;;;;48352:212:::0;;:::o;48214:130::-;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48329:7:::1;48304:22;:32;;;;48214:130:::0;:::o;47611:111::-;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47710:4:::1;47680:18;:27;47699:7;47680:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;47611:111:::0;:::o;31465:438::-;31555:7;31594;;31583;:18;;31575:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31653:17;31648:248;;31688:15;31713:19;31724:7;31713:10;:19::i;:::-;31687:45;;;;;;;;31754:7;31747:14;;;;;31648:248;31796:23;31828:19;31839:7;31828:10;:19::i;:::-;31794:53;;;;;;;;31869:15;31862:22;;;31465:438;;;;;:::o;27417:38::-;;;:::o;27589:41::-;;;;;;;;;;;;;:::o;27111:42::-;;;;:::o;32172:447::-;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32369:11:::1;:20;32381:7;32369:20;;;;;;;;;;;;;;;;;;;;;;;;;32368:21;32360:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32454:1;32435:7;:16;32443:7;32435:16;;;;;;;;;;;;;;;;:20;32432:108;;;32491:37;32511:7;:16;32519:7;32511:16;;;;;;;;;;;;;;;;32491:19;:37::i;:::-;32472:7;:16;32480:7;32472:16;;;;;;;;;;;;;;;:56;;;;32432:108;32573:4;32550:11;:20;32562:7;32550:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;32588:9;32603:7;32588:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32172:447:::0;:::o;47476:123::-;47540:4;47564:18;:27;47583:7;47564:27;;;;;;;;;;;;;;;;;;;;;;;;;47557:34;;47476:123;;;:::o;26891:32::-;;;;:::o;29231:198::-;29297:7;29321:11;:20;29333:7;29321:20;;;;;;;;;;;;;;;;;;;;;;;;;29317:49;;;29350:7;:16;29358:7;29350:16;;;;;;;;;;;;;;;;29343:23;;;;29317:49;29384:37;29404:7;:16;29412:7;29404:16;;;;;;;;;;;;;;;;29384:19;:37::i;:::-;29377:44;;29231:198;;;;:::o;16313:148::-;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16420:1:::1;16383:40;;16404:6;::::0;::::1;;;;;;;;16383:40;;;;;;;;;;;;16451:1;16434:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16313:148::o:0;37840:219::-;37887:7;37907:20;37945:13;37907:52;;37970:14;37987:5;:15;;;38011:4;37987:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37970:47;;38045:6;38038:13;;;;37840:219;:::o;27176:41::-;;;;:::o;30756:120::-;30824:4;30848:11;:20;30860:7;30848:20;;;;;;;;;;;;;;;;;;;;;;;;;30841:27;;30756:120;;;:::o;15670:79::-;15708:7;15735:6;;;;;;;;;;;15728:13;;15670:79;:::o;48080:122::-;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48182:12:::1;48166:13;:28;;;;48080:122:::0;:::o;28942:87::-;28981:13;29014:7;29007:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28942:87;:::o;27514:34::-;;;;:::o;30479:269::-;30572:4;30589:129;30598:12;:10;:12::i;:::-;30612:7;30621:96;30660:15;30621:96;;;;;;;;;;;;;;;;;:11;:25;30633:12;:10;:12::i;:::-;30621:25;;;;;;;;;;;;;;;:34;30647:7;30621:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30589:8;:129::i;:::-;30736:4;30729:11;;30479:269;;;;:::o;17323:293::-;17393:10;17375:28;;:14;;;;;;;;;;;:28;;;17367:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17468:9;;17462:3;:15;17454:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17559:14;;;;;;;;;;;17530:44;;17551:6;;;;;;;;;;17530:44;;;;;;;;;;;;17594:14;;;;;;;;;;;17585:6;;:23;;;;;;;;;;;;;;;;;;17323:293::o;29437:167::-;29515:4;29532:42;29542:12;:10;:12::i;:::-;29556:9;29567:6;29532:9;:42::i;:::-;29592:4;29585:11;;29437:167;;;;:::o;16868:89::-;16913:7;16940:9;;16933:16;;16868:89;:::o;26708:27::-;;;;:::o;27302:44::-;;;;:::o;49073:171::-;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49174:8:::1;49150:21;;:32;;;;;;;;;;;;;;;;;;49198:38;49227:8;49198:38;;;;;;;;;;;;;;;;;;;;49073:171:::0;:::o;38067:373::-;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38184:20:::1;38222:13;38184:52;;38247:14;38264:5;:15;;;38288:4;38264:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;38247:47;;38332:1;38323:6;:10;38315:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38401:5;:14;;;38416:7;:5;:7::i;:::-;38425:6;38401:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;15952:1;;38067:373::o:0;47966:102::-;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48053:7:::1;48042:8;:18;;;;47966:102:::0;:::o;27468:39::-;;;;;;;;;;;;;:::o;17033:214::-;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17114:6:::1;::::0;::::1;;;;;;;;17097:14;;:23;;;;;;;;;;;;;;;;;;17148:1;17131:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17179:4;17173:3;:10;17161:9;:22;;;;17236:1;17199:40;;17220:6;::::0;::::1;;;;;;;;17199:40;;;;;;;;;;;;17033:214:::0;:::o;29612:143::-;29693:7;29720:11;:18;29732:5;29720:18;;;;;;;;;;;;;;;:27;29739:7;29720:27;;;;;;;;;;;;;;;;29713:34;;29612:143;;;;:::o;47734:110::-;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47831:5:::1;47801:18;:27;47820:7;47801:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;47734:110:::0;:::o;16616:244::-;15892:12;:10;:12::i;:::-;15882:22;;:6;;;;;;;;;;:22;;;15874:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16725:1:::1;16705:22;;:8;:22;;;;16697:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16815:8;16786:38;;16807:6;::::0;::::1;;;;;;;;16786:38;;;;;;;;;;;;16844:8;16835:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16616:244:::0;:::o;61:106::-;114:15;149:10;142:17;;61:106;:::o;33114:337::-;33224:1;33207:19;;:5;:19;;;;33199:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33305:1;33286:21;;:7;:21;;;;33278:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33389:6;33359:11;:18;33371:5;33359:18;;;;;;;;;;;;;;;:27;33378:7;33359:27;;;;;;;;;;;;;;;:36;;;;33427:7;33411:32;;33420:5;33411:32;;;33436:6;33411:32;;;;;;;;;;;;;;;;;;33114:337;;;:::o;33459:1976::-;33597:1;33581:18;;:4;:18;;;;33573:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33674:1;33660:16;;:2;:16;;;;33652:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33744:1;33735:6;:10;33727:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33813:7;:5;:7::i;:::-;33805:15;;:4;:15;;;;:32;;;;;33830:7;:5;:7::i;:::-;33824:13;;:2;:13;;;;33805:32;33802:125;;;33870:12;;33860:6;:22;;33852:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33802:125;34222:28;34253:24;34271:4;34253:9;:24::i;:::-;34222:55;;34288:24;34339:19;;34315:20;:43;;34288:70;;34387:19;:53;;;;;34424:16;;;;;;;;;;;34423:17;34387:53;:91;;;;;34465:13;34457:21;;:4;:21;;;;34387:91;:129;;;;;34495:21;;;;;;;;;;;34387:129;34369:633;;;34579:22;34604:59;34657:5;34604:48;34629:22;;34604:20;:24;;:48;;;;:::i;:::-;:52;;:59;;;;:::i;:::-;34579:84;;34712:41;34738:14;34712:25;:41::i;:::-;34797:56;34812:40;34837:14;34812:20;:24;;:40;;;;:::i;:::-;34797:14;:56::i;:::-;34938:19;;;;;;;;;;;34935:55;;;34976:14;:12;:14::i;:::-;34935:55;34369:633;;35083:12;35098:4;35083:19;;35210:18;:24;35229:4;35210:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;35238:18;:22;35257:2;35238:22;;;;;;;;;;;;;;;;;;;;;;;;;35210:50;35207:96;;;35286:5;35276:15;;35207:96;35389:38;35404:4;35409:2;35412:6;35419:7;35389:14;:38::i;:::-;33459:1976;;;;;;:::o;4877:192::-;4963:7;4996:1;4991;:6;;4999:12;4983:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5023:9;5039:1;5035;:5;5023:17;;5060:1;5053:8;;;4877:192;;;;;:::o;44915:163::-;44956:7;44977:15;44994;45013:19;:17;:19::i;:::-;44976:56;;;;45050:20;45062:7;45050;:11;;:20;;;;:::i;:::-;45043:27;;;;44915:163;:::o;6275:132::-;6333:7;6360:39;6364:1;6367;6360:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6353:46;;6275:132;;;;:::o;3974:181::-;4032:7;4052:9;4068:1;4064;:5;4052:17;;4093:1;4088;:6;;4080:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4146:1;4139:8;;;3974:181;;;;:::o;43521:457::-;43580:7;43589;43598;43607;43616;43625;43634;43655:23;43680:12;43694:13;43709:18;43731:20;43743:7;43731:11;:20::i;:::-;43654:97;;;;;;;;43763:15;43780:23;43805:12;43821:57;43833:7;43842:4;43848:5;43855:10;43867;:8;:10::i;:::-;43821:11;:57::i;:::-;43762:116;;;;;;43897:7;43906:15;43923:4;43929:15;43946:4;43952:5;43959:10;43889:81;;;;;;;;;;;;;;;;;;;;;43521:457;;;;;;;;;:::o;4438:136::-;4496:7;4523:43;4527:1;4530;4523:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4516:50;;4438:136;;;;:::o;5328:471::-;5386:7;5636:1;5631;:6;5627:47;;;5661:1;5654:8;;;;5627:47;5686:9;5702:1;5698;:5;5686:17;;5731:1;5726;5722;:5;;;;;;:10;5714:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5790:1;5783:8;;;5328:471;;;;;:::o;46026:411::-;46162:68;46185:4;46192:13;46207:16;46224:5;46162:14;:68::i;:::-;46256:13;46241:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46320:51;46354:16;46320:29;;:33;;:51;;;;:::i;:::-;46288:29;:83;;;;46387:42;46412:16;46387:42;;;;;;;;;;;;;;;;;;46026:411;:::o;35443:985::-;28063:4;28044:16;;:23;;;;;;;;;;;;;;;;;;35579:12:::1;35594:27;35619:1;35594:20;:24;;:27;;;;:::i;:::-;35579:42;;35632:17;35652:30;35677:4;35652:20;:24;;:30;;;;:::i;:::-;35632:50;;35960:22;35985:21;35960:46;;36051:22;36068:4;36051:16;:22::i;:::-;36204:18;36225:41;36251:14;36225:21;:25;;:41;;;;:::i;:::-;36204:62;;36316:35;36329:9;36340:10;36316:12;:35::i;:::-;36377:43;36392:4;36398:10;36410:9;36377:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28078:1;;;;28109:5:::0;28090:16;;:24;;;;;;;;;;;;;;;;;;35443:985;:::o;37560:272::-;37603:21;37642:13;37603:53;;37667:14;37684:6;:16;;;37709:4;37684:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37667:48;;37748:31;37772:6;37748:19;;:23;;:31;;;;:::i;:::-;37726:19;:53;;;;37790:6;:15;;;37806:9;;;;;;;;;;;37817:6;37790:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37560:272;;:::o;39577:834::-;39688:7;39684:40;;39710:14;:12;:14::i;:::-;39684:40;39749:11;:19;39761:6;39749:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;39773:11;:22;39785:9;39773:22;;;;;;;;;;;;;;;;;;;;;;;;;39772:23;39749:46;39745:597;;;39812:48;39834:6;39842:9;39853:6;39812:21;:48::i;:::-;39745:597;;;39883:11;:19;39895:6;39883:19;;;;;;;;;;;;;;;;;;;;;;;;;39882:20;:46;;;;;39906:11;:22;39918:9;39906:22;;;;;;;;;;;;;;;;;;;;;;;;;39882:46;39878:464;;;39945:46;39965:6;39973:9;39984:6;39945:19;:46::i;:::-;39878:464;;;40014:11;:19;40026:6;40014:19;;;;;;;;;;;;;;;;;;;;;;;;;40013:20;:47;;;;;40038:11;:22;40050:9;40038:22;;;;;;;;;;;;;;;;;;;;;;;;;40037:23;40013:47;40009:333;;;40077:44;40095:6;40103:9;40114:6;40077:17;:44::i;:::-;40009:333;;;40143:11;:19;40155:6;40143:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;40166:11;:22;40178:9;40166:22;;;;;;;;;;;;;;;;;;;;;;;;;40143:45;40139:203;;;40205:48;40227:6;40235:9;40246:6;40205:21;:48::i;:::-;40139:203;;;40286:44;40304:6;40312:9;40323:6;40286:17;:44::i;:::-;40139:203;40009:333;39878:464;39745:597;40366:7;40362:41;;40388:15;:13;:15::i;:::-;40362:41;39577:834;;;;:::o;45086:561::-;45136:7;45145;45165:15;45183:7;;45165:25;;45201:15;45219:7;;45201:25;;45248:9;45243:289;45267:9;:16;;;;45263:1;:20;45243:289;;;45333:7;45309;:21;45317:9;45327:1;45317:12;;;;;;;;;;;;;;;;;;;;;;;;;45309:21;;;;;;;;;;;;;;;;:31;:66;;;;45368:7;45344;:21;45352:9;45362:1;45352:12;;;;;;;;;;;;;;;;;;;;;;;;;45344:21;;;;;;;;;;;;;;;;:31;45309:66;45305:97;;;45385:7;;45394;;45377:25;;;;;;;;;45305:97;45427:34;45439:7;:21;45447:9;45457:1;45447:12;;;;;;;;;;;;;;;;;;;;;;;;;45439:21;;;;;;;;;;;;;;;;45427:7;:11;;:34;;;;:::i;:::-;45417:44;;45486:34;45498:7;:21;45506:9;45516:1;45506:12;;;;;;;;;;;;;;;;;;;;;;;;;45498:21;;;;;;;;;;;;;;;;45486:7;:11;;:34;;;;:::i;:::-;45476:44;;45285:3;;;;;;;45243:289;;;;45556:20;45568:7;;45556;;:11;;:20;;;;:::i;:::-;45546:7;:30;45542:61;;;45586:7;;45595;;45578:25;;;;;;;;45542:61;45622:7;45631;45614:25;;;;;;45086:561;;;:::o;6903:278::-;6989:7;7021:1;7017;:5;7024:12;7009:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7048:9;7064:1;7060;:5;;;;;;7048:17;;7172:1;7165:8;;;6903:278;;;;;:::o;43986:409::-;44046:7;44055;44064;44073;44093:12;44108:24;44124:7;44108:15;:24::i;:::-;44093:39;;44143:13;44159:25;44176:7;44159:16;:25::i;:::-;44143:41;;44195:18;44216:30;44238:7;44216:21;:30::i;:::-;44195:51;;44257:23;44283:44;44316:10;44283:28;44305:5;44283:17;44295:4;44283:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:44;;;;:::i;:::-;44257:70;;44346:15;44363:4;44369:5;44376:10;44338:49;;;;;;;;;;;;43986:409;;;;;:::o;44403:504::-;44533:7;44542;44551;44571:15;44589:24;44601:11;44589:7;:11;;:24;;;;:::i;:::-;44571:42;;44624:12;44639:21;44648:11;44639:4;:8;;:21;;;;:::i;:::-;44624:36;;44671:13;44687:22;44697:11;44687:5;:9;;:22;;;;:::i;:::-;44671:38;;44720:18;44741:27;44756:11;44741:10;:14;;:27;;;;:::i;:::-;44720:48;;44779:23;44805:44;44838:10;44805:28;44827:5;44805:17;44817:4;44805:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:44;;;;:::i;:::-;44779:70;;44868:7;44877:15;44894:4;44860:39;;;;;;;;;;;44403:504;;;;;;;;;:::o;36436:589::-;36562:21;36600:1;36586:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36562:40;;36631:4;36613;36618:1;36613:7;;;;;;;;;;;;;:23;;;;;;;;;;;36657:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36647:4;36652:1;36647:7;;;;;;;;;;;;;:32;;;;;;;;;;;36692:62;36709:4;36724:15;36742:11;36692:8;:62::i;:::-;36793:15;:66;;;36874:11;36900:1;36944:4;36971;36991:15;36793:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36436:589;;:::o;37033:519::-;37181:62;37198:4;37213:15;37231:11;37181:8;:62::i;:::-;37286:15;:31;;;37325:9;37358:4;37378:11;37404:1;37447;37498:4;37518:15;37286:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37033:519;;:::o;46961:328::-;47018:1;47007:7;;:12;:29;;;;;47035:1;47023:8;;:13;47007:29;:51;;;;;47057:1;47040:13;;:18;47007:51;47004:63;;;47060:7;;47004:63;47105:7;;47087:15;:25;;;;47142:8;;47123:16;:27;;;;47185:13;;47161:21;:37;;;;47229:1;47219:7;:11;;;;47252:1;47241:8;:12;;;;47280:1;47264:13;:17;;;;46961:328;:::o;41769:689::-;41871:19;41894:10;:8;:10::i;:::-;41871:33;;41916:15;41933:23;41958:12;41972:23;41997:12;42011:13;42026:18;42048:19;42059:7;42048:10;:19::i;:::-;41915:152;;;;;;;;;;;;;;42078:13;42095:22;42105:11;42095:5;:9;;:22;;;;:::i;:::-;42078:39;;42146:28;42166:7;42146;:15;42154:6;42146:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42128:7;:15;42136:6;42128:15;;;;;;;;;;;;;;;:46;;;;42203:28;42223:7;42203;:15;42211:6;42203:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42185:7;:15;42193:6;42185:15;;;;;;;;;;;;;;;:46;;;;42263:39;42286:15;42263:7;:18;42271:9;42263:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42242:7;:18;42250:9;42242:18;;;;;;;;;;;;;;;:60;;;;42316:26;42331:10;42316:14;:26::i;:::-;42353:37;42365:4;42371:5;42378:4;42384:5;42353:11;:37::i;:::-;42423:9;42406:44;;42415:6;42406:44;;;42434:15;42406:44;;;;;;;;;;;;;;;;;;41769:689;;;;;;;;;;;;:::o;41052:709::-;41152:19;41175:10;:8;:10::i;:::-;41152:33;;41197:15;41214:23;41239:12;41253:23;41278:12;41292:13;41307:18;41329:19;41340:7;41329:10;:19::i;:::-;41196:152;;;;;;;;;;;;;;41359:13;41376:22;41386:11;41376:5;:9;;:22;;;;:::i;:::-;41359:39;;41427:28;41447:7;41427;:15;41435:6;41427:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41409:7;:15;41417:6;41409:15;;;;;;;;;;;;;;;:46;;;;41487:39;41510:15;41487:7;:18;41495:9;41487:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41466:7;:18;41474:9;41466:18;;;;;;;;;;;;;;;:60;;;;41558:39;41581:15;41558:7;:18;41566:9;41558:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41537:7;:18;41545:9;41537:18;;;;;;;;;;;;;;;:60;;;;41619:26;41634:10;41619:14;:26::i;:::-;41656:37;41668:4;41674:5;41681:4;41687:5;41656:11;:37::i;:::-;41726:9;41709:44;;41718:6;41709:44;;;41737:15;41709:44;;;;;;;;;;;;;;;;;;41052:709;;;;;;;;;;;;:::o;40419:625::-;40517:19;40540:10;:8;:10::i;:::-;40517:33;;40562:15;40579:23;40604:12;40618:23;40643:12;40657:13;40672:18;40694:19;40705:7;40694:10;:19::i;:::-;40561:152;;;;;;;;;;;;;;40724:13;40741:22;40751:11;40741:5;:9;;:22;;;;:::i;:::-;40724:39;;40792:28;40812:7;40792;:15;40800:6;40792:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40774:7;:15;40782:6;40774:15;;;;;;;;;;;;;;;:46;;;;40852:39;40875:15;40852:7;:18;40860:9;40852:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40831:7;:18;40839:9;40831:18;;;;;;;;;;;;;;;:60;;;;40902:26;40917:10;40902:14;:26::i;:::-;40939:37;40951:4;40957:5;40964:4;40970:5;40939:11;:37::i;:::-;41009:9;40992:44;;41001:6;40992:44;;;41020:15;40992:44;;;;;;;;;;;;;;;;;;40419:625;;;;;;;;;;;;:::o;42466:765::-;42568:19;42591:10;:8;:10::i;:::-;42568:33;;42613:15;42630:23;42655:12;42669:23;42694:12;42708:13;42723:18;42745:19;42756:7;42745:10;:19::i;:::-;42612:152;;;;;;;;;;;;;;42775:13;42792:22;42802:11;42792:5;:9;;:22;;;;:::i;:::-;42775:39;;42843:28;42863:7;42843;:15;42851:6;42843:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42825:7;:15;42833:6;42825:15;;;;;;;;;;;;;;;:46;;;;42900:28;42920:7;42900;:15;42908:6;42900:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42882:7;:15;42890:6;42882:15;;;;;;;;;;;;;;;:46;;;;42960:39;42983:15;42960:7;:18;42968:9;42960:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42939:7;:18;42947:9;42939:18;;;;;;;;;;;;;;;:60;;;;43031:39;43054:15;43031:7;:18;43039:9;43031:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43010:7;:18;43018:9;43010:18;;;;;;;;;;;;;;;:60;;;;43089:26;43104:10;43089:14;:26::i;:::-;43126:37;43138:4;43144:5;43151:4;43157:5;43126:11;:37::i;:::-;43196:9;43179:44;;43188:6;43179:44;;;43207:15;43179:44;;;;;;;;;;;;;;;;;;42466:765;;;;;;;;;;;;:::o;47301:163::-;47355:15;;47345:7;:25;;;;47392:16;;47381:8;:27;;;;47435:21;;47419:13;:37;;;;47301:163::o;46449:154::-;46513:7;46540:55;46579:5;46540:20;46552:7;;46540;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;46533:62;;46449:154;;;:::o;46615:156::-;46680:7;46707:56;46747:5;46707:21;46719:8;;46707:7;:11;;:21;;;;:::i;:::-;:25;;:56;;;;:::i;:::-;46700:63;;46615:156;;;:::o;46783:166::-;46853:7;46880:61;46925:5;46880:26;46892:13;;46880:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;46873:68;;46783:166;;;:::o;45659:355::-;45722:19;45745:10;:8;:10::i;:::-;45722:33;;45766:18;45787:27;45802:11;45787:10;:14;;:27;;;;:::i;:::-;45766:48;;45850:38;45877:10;45850:7;:22;45866:4;45850:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;45825:7;:22;45841:4;45825:22;;;;;;;;;;;;;;;:63;;;;45902:11;:26;45922:4;45902:26;;;;;;;;;;;;;;;;;;;;;;;;;45899:107;;;45968:38;45995:10;45968:7;:22;45984:4;45968:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;45943:7;:22;45959:4;45943:22;;;;;;;;;;;;;;;:63;;;;45899:107;45659:355;;;:::o;43239:274::-;43347:28;43369:5;43347:17;43359:4;43347:7;;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;43337:7;:38;;;;43399:20;43414:4;43399:10;;:14;;:20;;;;:::i;:::-;43386:10;:33;;;;43444:22;43460:5;43444:11;;:15;;:22;;;;:::i;:::-;43430:11;:36;;;;43487:18;43499:5;43487:7;;:11;;:18;;;;:::i;:::-;43477:7;:28;;;;43239:274;;;;:::o

Swarm Source

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