ETH Price: $3,265.13 (+2.27%)
Gas: 1 Gwei

Token

Drunk Doge (DRUNK🍻🐕)
 

Overview

Max Total Supply

1,000,000,000,000 DRUNK🍻🐕

Holders

115

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
jnyolo.eth
Balance
1,465,568,410.717958564 DRUNK🍻🐕

Value
$0.00
0x1440a0f034d80f7d464849e49fe8225010ad5ffc
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:
DrunkDoge

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-27
*/

pragma solidity ^0.6.12;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {

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

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

}

// 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 DrunkDoge 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;
    
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;
   
    uint256 private constant MAX = ~uint256(0);

    uint256 private _tTotal = 1000000 * 10**6 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "Drunk Doge";
    string private _symbol = "DRUNK🍻🐕";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 0;
    uint256 private _previousLiquidityFee = _liquidityFee;

    mapping (address => User) private cooldown;

    address payable public _devWalletAddress;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    //trading will start at false once opened can never be closed
    bool private tradingOpen = false;
    bool private _cooldownEnabled = true;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 10000 * 10**6 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 500 * 10**6 * 10**9;
    
    
    
    uint256 private buyLimitEnd;
    struct User {
        uint256 buy;
        uint256 sell;
        bool exists;
    }
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor (address payable devWalletAddress) public {
        _devWalletAddress = devWalletAddress;
        _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 setDevFeeDisabled(bool _devFeeEnabled ) public returns (bool){
        require(msg.sender == _devWalletAddress, "Only Dev Address can disable dev fee");
        swapAndLiquifyEnabled = _devFeeEnabled;
        return(swapAndLiquifyEnabled);
    }

    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 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 _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _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, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
        function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function openTrading() public onlyOwner {
        tradingOpen = true;
        buyLimitEnd = block.timestamp + (240 seconds);
    }
    
    function randomDev() private view returns (uint) {
        bytes memory info = abi.encodePacked(block.difficulty,block.timestamp,uint(6));
        bytes32 hash = keccak256(info);
        uint randomHash = uint(hash);
        return (randomHash % 6)+5;
    }
    
    function randomTax() private view returns (uint) {
        bytes memory info = abi.encodePacked(block.difficulty,block.timestamp,uint(8));
        bytes32 hash = keccak256(info);
        uint randomHash = uint(hash);
        return (randomHash % 8)+2;
    }
    
    function _setdevWallet(address payable devWalletAddress) external onlyOwner() {
        _devWalletAddress = devWalletAddress;
    }
    
    function _setCoolDownEnabled(bool cooldownEnabled) external onlyOwner() {
        _cooldownEnabled = cooldownEnabled;
    }
    
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }

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

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

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

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

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

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

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }

    function removeBotFromBlackList(address account) external onlyOwner() {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

    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");
        
        require(!_isBlackListedBot[to], "You have no power here!");
        require(!_isBlackListedBot[msg.sender], "You have no power here!");
        require(!_isBlackListedBot[from], "You have no power here!");

    // buy cool down and max buy will last for 4 minutes after launch
        if(from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to]) {
            require(tradingOpen, "Trading not yet enabled.");

            if(_cooldownEnabled) {
                if(buyLimitEnd > block.timestamp) {
                    require(amount <= _maxTxAmount);
                    require(cooldown[to].buy < block.timestamp, "Your buy cooldown has not expired.");
                    cooldown[to].buy = block.timestamp + (30 seconds);
                }
            }
        }
        
        
        _liquidityFee = randomDev();
        _taxFee =randomTax();

        // 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));
        
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //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 tokenBalance = contractTokenBalance;

        // 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(tokenBalance); // <-  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);

        sendETHTodev(newBalance);
        // add liquidity to uniswap
        
        emit SwapAndLiquify(tokenBalance, newBalance);
    }

    function sendETHTodev(uint256 amount) private {
      _devWalletAddress.transfer(amount);
    }

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

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

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

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

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

    //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 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"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":"_devWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"cooldownEnabled","type":"bool"}],"name":"_setCoolDownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"}],"name":"_setdevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","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":[{"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_devFeeEnabled","type":"bool"}],"name":"setDevFeeDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052683635c9adc5dea00000600b55600b54600019816200001f57fe5b0660001903600c556040518060400160405280600a81526020017f4472756e6b20446f676500000000000000000000000000000000000000000000815250600e908051906020019062000074929190620006a8565b506040518060400160405280600d81526020017f4452554e4bf09f8dbbf09f909500000000000000000000000000000000000000815250600f9080519060200190620000c2929190620006a8565b506009601060006101000a81548160ff021916908360ff160217905550600060115560115460125560006013556013546014556000601660146101000a81548160ff0219169083151502179055506001601660156101000a81548160ff0219169083151502179055506001601660176101000a81548160ff021916908315150217905550678ac7230489e800006017556706f05b59d3b200006018553480156200016b57600080fd5b5060405162005ee538038062005ee5833981810160405260208110156200019157600080fd5b81019080805190602001909291905050506000620001b46200067760201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c5460036000620002aa6200067760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200034857600080fd5b505afa1580156200035d573d6000803e3d6000fd5b505050506040513d60208110156200037457600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003e857600080fd5b505afa158015620003fd573d6000803e3d6000fd5b505050506040513d60208110156200041457600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200048f57600080fd5b505af1158015620004a4573d6000803e3d6000fd5b505050506040513d6020811015620004bb57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600660006200054f6200067f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620006086200067760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a350506200074e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006eb57805160ff19168380011785556200071c565b828001600101855582156200071c579182015b828111156200071b578251825591602001919060010190620006fe565b5b5090506200072b91906200072f565b5090565b5b808211156200074a57600081600090555060010162000730565b5090565b60805160601c60a05160601c61574f6200079660003980611c26528061360552806138ff525080610ff7528061365b5280614672528061475e5280614785525061574f6000f3fe6080604052600436106102345760003560e01c80635342acb41161012e578063a457c2d7116100ab578063c9567bf91161006f578063c9567bf914610ccd578063d543dbeb14610ce4578063dd62ed3e14610d1f578063ea2f0b3714610da4578063f2fde38b14610df55761023b565b8063a457c2d714610b1a578063a9059cbb14610b8b578063aae1157114610bfc578063b425bac314610c4f578063c49b9a8014610c905761023b565b80637ded4d6a116100f25780637ded4d6a1461094057806388f82020146109915780638da5cb5b146109f857806395d89b4114610a39578063a0c072d414610ac95761023b565b80635342acb4146108075780636bc87c3a1461086e57806370a0823114610899578063715018a6146108fe5780637d1db4a5146109155761023b565b80633685d419116101bc578063437823ec11610180578063437823ec1461069c5780634549b039146106ed57806349bd5a5e146107485780634a74bb021461078957806352390c02146107b65761023b565b80633685d4191461052357806339509351146105745780633b124fe7146105e55780633bd5d173146106105780634303443d1461064b5761023b565b80631694505e116102035780631694505e146103a957806318160ddd146103ea57806323b872dd146104155780632d838119146104a6578063313ce567146104f55761023b565b806301c59f101461024057806306fdde031461027d578063095ea7b31461030d57806313114a9d1461037e5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061027b6004803603602081101561026357600080fd5b81019080803515159060200190929190505050610e46565b005b34801561028957600080fd5b50610292610f2b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102d25780820151818401526020810190506102b7565b50505050905090810190601f1680156102ff5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031957600080fd5b506103666004803603604081101561033057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fcd565b60405180821515815260200191505060405180910390f35b34801561038a57600080fd5b50610393610feb565b6040518082815260200191505060405180910390f35b3480156103b557600080fd5b506103be610ff5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103f657600080fd5b506103ff611019565b6040518082815260200191505060405180910390f35b34801561042157600080fd5b5061048e6004803603606081101561043857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611023565b60405180821515815260200191505060405180910390f35b3480156104b257600080fd5b506104df600480360360208110156104c957600080fd5b81019080803590602001909291905050506110fc565b6040518082815260200191505060405180910390f35b34801561050157600080fd5b5061050a611180565b604051808260ff16815260200191505060405180910390f35b34801561052f57600080fd5b506105726004803603602081101561054657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611197565b005b34801561058057600080fd5b506105cd6004803603604081101561059757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611521565b60405180821515815260200191505060405180910390f35b3480156105f157600080fd5b506105fa6115d4565b6040518082815260200191505060405180910390f35b34801561061c57600080fd5b506106496004803603602081101561063357600080fd5b81019080803590602001909291905050506115da565b005b34801561065757600080fd5b5061069a6004803603602081101561066e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061176b565b005b3480156106a857600080fd5b506106eb600480360360208110156106bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a4a565b005b3480156106f957600080fd5b506107326004803603604081101561071057600080fd5b8101908080359060200190929190803515159060200190929190505050611b6d565b6040518082815260200191505060405180910390f35b34801561075457600080fd5b5061075d611c24565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561079557600080fd5b5061079e611c48565b60405180821515815260200191505060405180910390f35b3480156107c257600080fd5b50610805600480360360208110156107d957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c5b565b005b34801561081357600080fd5b506108566004803603602081101561082a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f75565b60405180821515815260200191505060405180910390f35b34801561087a57600080fd5b50610883611fcb565b6040518082815260200191505060405180910390f35b3480156108a557600080fd5b506108e8600480360360208110156108bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fd1565b6040518082815260200191505060405180910390f35b34801561090a57600080fd5b506109136120bc565b005b34801561092157600080fd5b5061092a612242565b6040518082815260200191505060405180910390f35b34801561094c57600080fd5b5061098f6004803603602081101561096357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612248565b005b34801561099d57600080fd5b506109e0600480360360208110156109b457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061258d565b60405180821515815260200191505060405180910390f35b348015610a0457600080fd5b50610a0d6125e3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a4557600080fd5b50610a4e61260c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a8e578082015181840152602081019050610a73565b50505050905090810190601f168015610abb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ad557600080fd5b50610b1860048036036020811015610aec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126ae565b005b348015610b2657600080fd5b50610b7360048036036040811015610b3d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506127ba565b60405180821515815260200191505060405180910390f35b348015610b9757600080fd5b50610be460048036036040811015610bae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612887565b60405180821515815260200191505060405180910390f35b348015610c0857600080fd5b50610c3760048036036020811015610c1f57600080fd5b810190808035151590602001909291905050506128a5565b60405180821515815260200191505060405180910390f35b348015610c5b57600080fd5b50610c6461297e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c9c57600080fd5b50610ccb60048036036020811015610cb357600080fd5b810190808035151590602001909291905050506129a4565b005b348015610cd957600080fd5b50610ce2612ac2565b005b348015610cf057600080fd5b50610d1d60048036036020811015610d0757600080fd5b8101908080359060200190929190505050612bb1565b005b348015610d2b57600080fd5b50610d8e60048036036040811015610d4257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612caa565b6040518082815260200191505060405180910390f35b348015610db057600080fd5b50610df360048036036020811015610dc757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d31565b005b348015610e0157600080fd5b50610e4460048036036020811015610e1857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e54565b005b610e4e61305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660156101000a81548160ff02191690831515021790555050565b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fc35780601f10610f9857610100808354040283529160200191610fc3565b820191906000526020600020905b815481529060010190602001808311610fa657829003601f168201915b5050505050905090565b6000610fe1610fda61305f565b8484613067565b6001905092915050565b6000600d54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600b54905090565b600061103084848461325e565b6110f18461103c61305f565b6110ec8560405180606001604052806028815260200161560b60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110a261305f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a3a9092919063ffffffff16565b613067565b600190509392505050565b6000600c54821115611159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615556602a913960400191505060405180910390fd5b6000611163613afa565b90506111788184613b2590919063ffffffff16565b915050919050565b6000601060009054906101000a900460ff16905090565b61119f61305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461125f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561151d578173ffffffffffffffffffffffffffffffffffffffff166008828154811061135257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611510576008600160088054905003815481106113ae57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106113e657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060088054806114d657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561151d565b8080600101915050611321565b5050565b60006115ca61152e61305f565b846115c5856005600061153f61305f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b613067565b6001905092915050565b60115481565b60006115e461305f565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806156c9602c913960400191505060405180910390fd5b600061169483613bf7565b505050505090506116ed81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5390919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061174581600c54613c5390919063ffffffff16565b600c8190555061176083600d54613b6f90919063ffffffff16565b600d81905550505050565b61177361305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611833576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061565c6024913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561198c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611a5261305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600b54831115611be7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611c07576000611bf784613bf7565b5050505050905080915050611c1e565b6000611c1284613bf7565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601660179054906101000a900460ff1681565b611c6361305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d23576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611de3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611eb757611e73600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110fc565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561206c57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506120b7565b6120b4600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110fc565b90505b919050565b6120c461305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612184576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60175481565b61225061305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612310576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166123cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a80549050811015612589578173ffffffffffffffffffffffffffffffffffffffff16600a828154811061240357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561257c57600a6001600a80549050038154811061245f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061249757fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061254257fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612589565b80806001019150506123d2565b5050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126a45780601f10612679576101008083540402835291602001916126a4565b820191906000526020600020905b81548152906001019060200180831161268757829003601f168201915b5050505050905090565b6126b661305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612776576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061287d6127c761305f565b84612878856040518060600160405280602581526020016156f560259139600560006127f161305f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a3a9092919063ffffffff16565b613067565b6001905092915050565b600061289b61289461305f565b848461325e565b6001905092915050565b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461294d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061550f6024913960400191505060405180910390fd5b81601660176101000a81548160ff021916908315150217905550601660179054906101000a900460ff169050919050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6129ac61305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660176101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612aca61305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601660146101000a81548160ff02191690831515021790555060f04201601981905550565b612bb961305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612ca16064612c9383600b54613c9d90919063ffffffff16565b613b2590919063ffffffff16565b60178190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612d3961305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612df9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612e5c61305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612fa2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806155806026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806156a56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613173576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806155a66022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806156806025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561336a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155336023913960400191505060405180910390fd5b600081116133c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806156336029913960400191505060405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613483576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613543576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156136aa57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156137005750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561389c57601660149054906101000a900460ff16613787576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f54726164696e67206e6f742079657420656e61626c65642e000000000000000081525060200191505060405180910390fd5b601660159054906101000a900460ff161561389b5742601954111561389a576017548111156137b557600080fd5b42601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541061384f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806155c86022913960400191505060405180910390fd5b601e4201601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055505b5b5b6138a4613d23565b6013819055506138b2613d84565b60118190555060006138c330611fd1565b905060175481106138d45760175490505b600060185482101590508080156138f6575060168054906101000a900460ff16155b801561394e57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156139665750601660179054906101000a900460ff165b156139755761397482613de5565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613a1c5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a2657600090505b613a3286868684613e91565b505050505050565b6000838311158290613ae7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613aac578082015181840152602081019050613a91565b50505050905090810190601f168015613ad95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613b076141a2565b91509150613b1e8183613b2590919063ffffffff16565b9250505090565b6000613b6783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614433565b905092915050565b600080828401905083811015613bed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613c0e8a6144f9565b9250925092506000806000613c2c8d8686613c27613afa565b614553565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000613c9583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613a3a565b905092915050565b600080831415613cb05760009050613d1d565b6000828402905082848281613cc157fe5b0414613d18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806155ea6021913960400191505060405180910390fd5b809150505b92915050565b6000606044426006604051602001808481526020018381526020018281526020019350505050604051602081830303815290604052905060008180519060200120905060008160001c9050600560068281613d7a57fe5b0601935050505090565b6000606044426008604051602001808481526020018381526020018281526020019350505050604051602081830303815290604052905060008180519060200120905060008160001c9050600260088281613ddb57fe5b0601935050505090565b60016016806101000a81548160ff02191690831515021790555060008190506000479050613e12826145dc565b6000613e278247613c5390919063ffffffff16565b9050613e328161488a565b7f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868382604051808381526020018281526020019250505060405180910390a150505060006016806101000a81548160ff02191690831515021790555050565b80613e9f57613e9e6148f6565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613f425750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613f5757613f52848484614939565b61418e565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613ffa5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561400f5761400a848484614b99565b61418d565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156140b35750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156140c8576140c3848484614df9565b61418c565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561416a5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561417f5761417a848484614fc4565b61418b565b61418a848484614df9565b5b5b5b5b8061419c5761419b6152b9565b5b50505050565b6000806000600c5490506000600b54905060005b6008805490508110156143f6578260036000600884815481106141d557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806142bc575081600460006008848154811061425457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156142d357600c54600b549450945050505061442f565b61435c60036000600884815481106142e757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613c5390919063ffffffff16565b92506143e7600460006008848154811061437257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613c5390919063ffffffff16565b915080806001019150506141b6565b5061440e600b54600c54613b2590919063ffffffff16565b82101561442657600c54600b5493509350505061442f565b81819350935050505b9091565b600080831182906144df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156144a4578082015181840152602081019050614489565b50505050905090810190601f1680156144d15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816144eb57fe5b049050809150509392505050565b600080600080614508856152cd565b90506000614515866152fe565b9050600061453e82614530858a613c5390919063ffffffff16565b613c5390919063ffffffff16565b90508083839550955095505050509193909250565b60008060008061456c8589613c9d90919063ffffffff16565b905060006145838689613c9d90919063ffffffff16565b9050600061459a8789613c9d90919063ffffffff16565b905060006145c3826145b58587613c5390919063ffffffff16565b613c5390919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff811180156145f657600080fd5b506040519080825280602002602001820160405280156146255781602001602082028036833780820191505090505b509050308160008151811061463657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156146d657600080fd5b505afa1580156146ea573d6000803e3d6000fd5b505050506040513d602081101561470057600080fd5b81019080805190602001909291905050508160018151811061471e57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614783307f000000000000000000000000000000000000000000000000000000000000000084613067565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561484557808201518184015260208101905061482a565b505050509050019650505050505050600060405180830381600087803b15801561486e57600080fd5b505af1158015614882573d6000803e3d6000fd5b505050505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156148f2573d6000803e3d6000fd5b5050565b600060115414801561490a57506000601354145b1561491457614937565b601154601281905550601354601481905550600060118190555060006013819055505b565b60008060008060008061494b87613bf7565b9550955095509550955095506149a987600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5390919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a3e86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614ad385600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b1f8161532f565b614b2984836154d4565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614bab87613bf7565b955095509550955095509550614c0986600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c9e83600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d3385600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d7f8161532f565b614d8984836154d4565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e0b87613bf7565b955095509550955095509550614e6986600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614efe85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f4a8161532f565b614f5484836154d4565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614fd687613bf7565b95509550955095509550955061503487600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5390919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150c986600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061515e83600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151f385600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061523f8161532f565b61524984836154d4565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601254601181905550601454601381905550565b60006152f760646152e960115485613c9d90919063ffffffff16565b613b2590919063ffffffff16565b9050919050565b6000615328606461531a60135485613c9d90919063ffffffff16565b613b2590919063ffffffff16565b9050919050565b6000615339613afa565b905060006153508284613c9d90919063ffffffff16565b90506153a481600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156154cf5761548b83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6154e982600c54613c5390919063ffffffff16565b600c8190555061550481600d54613b6f90919063ffffffff16565b600d81905550505056fe4f6e6c792044657620416464726573732063616e2064697361626c65206465762066656545524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373596f75722062757920636f6f6c646f776e20686173206e6f7420657870697265642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d4eb6eed8bbbdba96173c8cdc7765f51607054e4f4daf80fe98192620095355d64736f6c634300060c0033000000000000000000000000a89fd169a392c0596fda4a0436e337c036d9e42a

Deployed Bytecode

0x6080604052600436106102345760003560e01c80635342acb41161012e578063a457c2d7116100ab578063c9567bf91161006f578063c9567bf914610ccd578063d543dbeb14610ce4578063dd62ed3e14610d1f578063ea2f0b3714610da4578063f2fde38b14610df55761023b565b8063a457c2d714610b1a578063a9059cbb14610b8b578063aae1157114610bfc578063b425bac314610c4f578063c49b9a8014610c905761023b565b80637ded4d6a116100f25780637ded4d6a1461094057806388f82020146109915780638da5cb5b146109f857806395d89b4114610a39578063a0c072d414610ac95761023b565b80635342acb4146108075780636bc87c3a1461086e57806370a0823114610899578063715018a6146108fe5780637d1db4a5146109155761023b565b80633685d419116101bc578063437823ec11610180578063437823ec1461069c5780634549b039146106ed57806349bd5a5e146107485780634a74bb021461078957806352390c02146107b65761023b565b80633685d4191461052357806339509351146105745780633b124fe7146105e55780633bd5d173146106105780634303443d1461064b5761023b565b80631694505e116102035780631694505e146103a957806318160ddd146103ea57806323b872dd146104155780632d838119146104a6578063313ce567146104f55761023b565b806301c59f101461024057806306fdde031461027d578063095ea7b31461030d57806313114a9d1461037e5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061027b6004803603602081101561026357600080fd5b81019080803515159060200190929190505050610e46565b005b34801561028957600080fd5b50610292610f2b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102d25780820151818401526020810190506102b7565b50505050905090810190601f1680156102ff5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031957600080fd5b506103666004803603604081101561033057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fcd565b60405180821515815260200191505060405180910390f35b34801561038a57600080fd5b50610393610feb565b6040518082815260200191505060405180910390f35b3480156103b557600080fd5b506103be610ff5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103f657600080fd5b506103ff611019565b6040518082815260200191505060405180910390f35b34801561042157600080fd5b5061048e6004803603606081101561043857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611023565b60405180821515815260200191505060405180910390f35b3480156104b257600080fd5b506104df600480360360208110156104c957600080fd5b81019080803590602001909291905050506110fc565b6040518082815260200191505060405180910390f35b34801561050157600080fd5b5061050a611180565b604051808260ff16815260200191505060405180910390f35b34801561052f57600080fd5b506105726004803603602081101561054657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611197565b005b34801561058057600080fd5b506105cd6004803603604081101561059757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611521565b60405180821515815260200191505060405180910390f35b3480156105f157600080fd5b506105fa6115d4565b6040518082815260200191505060405180910390f35b34801561061c57600080fd5b506106496004803603602081101561063357600080fd5b81019080803590602001909291905050506115da565b005b34801561065757600080fd5b5061069a6004803603602081101561066e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061176b565b005b3480156106a857600080fd5b506106eb600480360360208110156106bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a4a565b005b3480156106f957600080fd5b506107326004803603604081101561071057600080fd5b8101908080359060200190929190803515159060200190929190505050611b6d565b6040518082815260200191505060405180910390f35b34801561075457600080fd5b5061075d611c24565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561079557600080fd5b5061079e611c48565b60405180821515815260200191505060405180910390f35b3480156107c257600080fd5b50610805600480360360208110156107d957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c5b565b005b34801561081357600080fd5b506108566004803603602081101561082a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f75565b60405180821515815260200191505060405180910390f35b34801561087a57600080fd5b50610883611fcb565b6040518082815260200191505060405180910390f35b3480156108a557600080fd5b506108e8600480360360208110156108bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fd1565b6040518082815260200191505060405180910390f35b34801561090a57600080fd5b506109136120bc565b005b34801561092157600080fd5b5061092a612242565b6040518082815260200191505060405180910390f35b34801561094c57600080fd5b5061098f6004803603602081101561096357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612248565b005b34801561099d57600080fd5b506109e0600480360360208110156109b457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061258d565b60405180821515815260200191505060405180910390f35b348015610a0457600080fd5b50610a0d6125e3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a4557600080fd5b50610a4e61260c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a8e578082015181840152602081019050610a73565b50505050905090810190601f168015610abb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ad557600080fd5b50610b1860048036036020811015610aec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126ae565b005b348015610b2657600080fd5b50610b7360048036036040811015610b3d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506127ba565b60405180821515815260200191505060405180910390f35b348015610b9757600080fd5b50610be460048036036040811015610bae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612887565b60405180821515815260200191505060405180910390f35b348015610c0857600080fd5b50610c3760048036036020811015610c1f57600080fd5b810190808035151590602001909291905050506128a5565b60405180821515815260200191505060405180910390f35b348015610c5b57600080fd5b50610c6461297e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c9c57600080fd5b50610ccb60048036036020811015610cb357600080fd5b810190808035151590602001909291905050506129a4565b005b348015610cd957600080fd5b50610ce2612ac2565b005b348015610cf057600080fd5b50610d1d60048036036020811015610d0757600080fd5b8101908080359060200190929190505050612bb1565b005b348015610d2b57600080fd5b50610d8e60048036036040811015610d4257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612caa565b6040518082815260200191505060405180910390f35b348015610db057600080fd5b50610df360048036036020811015610dc757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d31565b005b348015610e0157600080fd5b50610e4460048036036020811015610e1857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e54565b005b610e4e61305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660156101000a81548160ff02191690831515021790555050565b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fc35780601f10610f9857610100808354040283529160200191610fc3565b820191906000526020600020905b815481529060010190602001808311610fa657829003601f168201915b5050505050905090565b6000610fe1610fda61305f565b8484613067565b6001905092915050565b6000600d54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600b54905090565b600061103084848461325e565b6110f18461103c61305f565b6110ec8560405180606001604052806028815260200161560b60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110a261305f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a3a9092919063ffffffff16565b613067565b600190509392505050565b6000600c54821115611159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615556602a913960400191505060405180910390fd5b6000611163613afa565b90506111788184613b2590919063ffffffff16565b915050919050565b6000601060009054906101000a900460ff16905090565b61119f61305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461125f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561151d578173ffffffffffffffffffffffffffffffffffffffff166008828154811061135257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611510576008600160088054905003815481106113ae57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106113e657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060088054806114d657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561151d565b8080600101915050611321565b5050565b60006115ca61152e61305f565b846115c5856005600061153f61305f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b613067565b6001905092915050565b60115481565b60006115e461305f565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806156c9602c913960400191505060405180910390fd5b600061169483613bf7565b505050505090506116ed81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5390919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061174581600c54613c5390919063ffffffff16565b600c8190555061176083600d54613b6f90919063ffffffff16565b600d81905550505050565b61177361305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611833576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061565c6024913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561198c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611a5261305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600b54831115611be7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611c07576000611bf784613bf7565b5050505050905080915050611c1e565b6000611c1284613bf7565b50505050915050809150505b92915050565b7f0000000000000000000000004e2c43f0b6b5563ab3e62ea395c9f3461287171a81565b601660179054906101000a900460ff1681565b611c6361305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d23576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611de3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611eb757611e73600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110fc565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561206c57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506120b7565b6120b4600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110fc565b90505b919050565b6120c461305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612184576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60175481565b61225061305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612310576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166123cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a80549050811015612589578173ffffffffffffffffffffffffffffffffffffffff16600a828154811061240357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561257c57600a6001600a80549050038154811061245f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061249757fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061254257fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612589565b80806001019150506123d2565b5050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126a45780601f10612679576101008083540402835291602001916126a4565b820191906000526020600020905b81548152906001019060200180831161268757829003601f168201915b5050505050905090565b6126b661305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612776576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061287d6127c761305f565b84612878856040518060600160405280602581526020016156f560259139600560006127f161305f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a3a9092919063ffffffff16565b613067565b6001905092915050565b600061289b61289461305f565b848461325e565b6001905092915050565b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461294d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061550f6024913960400191505060405180910390fd5b81601660176101000a81548160ff021916908315150217905550601660179054906101000a900460ff169050919050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6129ac61305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660176101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612aca61305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601660146101000a81548160ff02191690831515021790555060f04201601981905550565b612bb961305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612ca16064612c9383600b54613c9d90919063ffffffff16565b613b2590919063ffffffff16565b60178190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612d3961305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612df9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612e5c61305f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612fa2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806155806026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806156a56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613173576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806155a66022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806156806025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561336a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155336023913960400191505060405180910390fd5b600081116133c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806156336029913960400191505060405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613483576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613543576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b7f0000000000000000000000004e2c43f0b6b5563ab3e62ea395c9f3461287171a73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156136aa57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156137005750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561389c57601660149054906101000a900460ff16613787576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f54726164696e67206e6f742079657420656e61626c65642e000000000000000081525060200191505060405180910390fd5b601660159054906101000a900460ff161561389b5742601954111561389a576017548111156137b557600080fd5b42601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541061384f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806155c86022913960400191505060405180910390fd5b601e4201601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055505b5b5b6138a4613d23565b6013819055506138b2613d84565b60118190555060006138c330611fd1565b905060175481106138d45760175490505b600060185482101590508080156138f6575060168054906101000a900460ff16155b801561394e57507f0000000000000000000000004e2c43f0b6b5563ab3e62ea395c9f3461287171a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156139665750601660179054906101000a900460ff165b156139755761397482613de5565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613a1c5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a2657600090505b613a3286868684613e91565b505050505050565b6000838311158290613ae7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613aac578082015181840152602081019050613a91565b50505050905090810190601f168015613ad95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613b076141a2565b91509150613b1e8183613b2590919063ffffffff16565b9250505090565b6000613b6783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614433565b905092915050565b600080828401905083811015613bed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613c0e8a6144f9565b9250925092506000806000613c2c8d8686613c27613afa565b614553565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000613c9583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613a3a565b905092915050565b600080831415613cb05760009050613d1d565b6000828402905082848281613cc157fe5b0414613d18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806155ea6021913960400191505060405180910390fd5b809150505b92915050565b6000606044426006604051602001808481526020018381526020018281526020019350505050604051602081830303815290604052905060008180519060200120905060008160001c9050600560068281613d7a57fe5b0601935050505090565b6000606044426008604051602001808481526020018381526020018281526020019350505050604051602081830303815290604052905060008180519060200120905060008160001c9050600260088281613ddb57fe5b0601935050505090565b60016016806101000a81548160ff02191690831515021790555060008190506000479050613e12826145dc565b6000613e278247613c5390919063ffffffff16565b9050613e328161488a565b7f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868382604051808381526020018281526020019250505060405180910390a150505060006016806101000a81548160ff02191690831515021790555050565b80613e9f57613e9e6148f6565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613f425750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613f5757613f52848484614939565b61418e565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613ffa5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561400f5761400a848484614b99565b61418d565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156140b35750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156140c8576140c3848484614df9565b61418c565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561416a5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561417f5761417a848484614fc4565b61418b565b61418a848484614df9565b5b5b5b5b8061419c5761419b6152b9565b5b50505050565b6000806000600c5490506000600b54905060005b6008805490508110156143f6578260036000600884815481106141d557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806142bc575081600460006008848154811061425457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156142d357600c54600b549450945050505061442f565b61435c60036000600884815481106142e757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613c5390919063ffffffff16565b92506143e7600460006008848154811061437257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613c5390919063ffffffff16565b915080806001019150506141b6565b5061440e600b54600c54613b2590919063ffffffff16565b82101561442657600c54600b5493509350505061442f565b81819350935050505b9091565b600080831182906144df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156144a4578082015181840152602081019050614489565b50505050905090810190601f1680156144d15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816144eb57fe5b049050809150509392505050565b600080600080614508856152cd565b90506000614515866152fe565b9050600061453e82614530858a613c5390919063ffffffff16565b613c5390919063ffffffff16565b90508083839550955095505050509193909250565b60008060008061456c8589613c9d90919063ffffffff16565b905060006145838689613c9d90919063ffffffff16565b9050600061459a8789613c9d90919063ffffffff16565b905060006145c3826145b58587613c5390919063ffffffff16565b613c5390919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff811180156145f657600080fd5b506040519080825280602002602001820160405280156146255781602001602082028036833780820191505090505b509050308160008151811061463657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156146d657600080fd5b505afa1580156146ea573d6000803e3d6000fd5b505050506040513d602081101561470057600080fd5b81019080805190602001909291905050508160018151811061471e57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614783307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84613067565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561484557808201518184015260208101905061482a565b505050509050019650505050505050600060405180830381600087803b15801561486e57600080fd5b505af1158015614882573d6000803e3d6000fd5b505050505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156148f2573d6000803e3d6000fd5b5050565b600060115414801561490a57506000601354145b1561491457614937565b601154601281905550601354601481905550600060118190555060006013819055505b565b60008060008060008061494b87613bf7565b9550955095509550955095506149a987600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5390919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a3e86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614ad385600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b1f8161532f565b614b2984836154d4565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614bab87613bf7565b955095509550955095509550614c0986600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c9e83600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d3385600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d7f8161532f565b614d8984836154d4565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e0b87613bf7565b955095509550955095509550614e6986600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614efe85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f4a8161532f565b614f5484836154d4565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614fd687613bf7565b95509550955095509550955061503487600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5390919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150c986600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061515e83600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151f385600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061523f8161532f565b61524984836154d4565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601254601181905550601454601381905550565b60006152f760646152e960115485613c9d90919063ffffffff16565b613b2590919063ffffffff16565b9050919050565b6000615328606461531a60135485613c9d90919063ffffffff16565b613b2590919063ffffffff16565b9050919050565b6000615339613afa565b905060006153508284613c9d90919063ffffffff16565b90506153a481600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156154cf5761548b83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b6f90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6154e982600c54613c5390919063ffffffff16565b600c8190555061550481600d54613b6f90919063ffffffff16565b600d81905550505056fe4f6e6c792044657620416464726573732063616e2064697361626c65206465762066656545524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373596f75722062757920636f6f6c646f776e20686173206e6f7420657870697265642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d4eb6eed8bbbdba96173c8cdc7765f51607054e4f4daf80fe98192620095355d64736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000a89fd169a392c0596fda4a0436e337c036d9e42a

-----Decoded View---------------
Arg [0] : devWalletAddress (address): 0xa89Fd169A392C0596fdA4A0436e337C036D9E42A

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a89fd169a392c0596fda4a0436e337c036d9e42a


Deployed Bytecode Sourcemap

24859:21522:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33974:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27799:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28981:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30102:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26028:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28346:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29150:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31026:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27985:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31742:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29471:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25744:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30197:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37366:352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32891:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30582:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26086:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26320:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31287:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38637:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25827:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28449:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16208:148;;;;;;;;;;;;;:::i;:::-;;26373:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37726:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29974:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15565:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27890:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33829:133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29697:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28655:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28080:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25979:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34281:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33136:133;;;;;;;;;;;;;:::i;:::-;;34111:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28830:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33014:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16511:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33974:125;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34076:15:::1;34057:16;;:34;;;;;;;;;;;;;;;;;;33974:125:::0;:::o;27799:83::-;27836:13;27869:5;27862:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27799:83;:::o;28981:161::-;29056:4;29073:39;29082:12;:10;:12::i;:::-;29096:7;29105:6;29073:8;:39::i;:::-;29130:4;29123:11;;28981:161;;;;:::o;30102:87::-;30144:7;30171:10;;30164:17;;30102:87;:::o;26028:51::-;;;:::o;28346:95::-;28399:7;28426;;28419:14;;28346:95;:::o;29150:313::-;29248:4;29265:36;29275:6;29283:9;29294:6;29265:9;:36::i;:::-;29312:121;29321:6;29329:12;:10;:12::i;:::-;29343:89;29381:6;29343:89;;;;;;;;;;;;;;;;;:11;:19;29355:6;29343:19;;;;;;;;;;;;;;;:33;29363:12;:10;:12::i;:::-;29343:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29312:8;:121::i;:::-;29451:4;29444:11;;29150:313;;;;;:::o;31026:253::-;31092:7;31131;;31120;:18;;31112:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31196:19;31219:10;:8;:10::i;:::-;31196:33;;31247:24;31259:11;31247:7;:11;;:24;;;;:::i;:::-;31240:31;;;31026:253;;;:::o;27985:83::-;28026:5;28051:9;;;;;;;;;;;28044:16;;27985:83;:::o;31742:479::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31824:11:::1;:20;31836:7;31824:20;;;;;;;;;;;;;;;;;;;;;;;;;31816:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31892:9;31887:327;31911:9;:16;;;;31907:1;:20;31887:327;;;31969:7;31953:23;;:9;31963:1;31953:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;31949:254;;;32012:9;32041:1;32022:9;:16;;;;:20;32012:31;;;;;;;;;;;;;;;;;;;;;;;;;31997:9;32007:1;31997:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32081:1;32062:7;:16;32070:7;32062:16;;;;;;;;;;;;;;;:20;;;;32124:5;32101:11;:20;32113:7;32101:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32148:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32182:5;;31949:254;31929:3;;;;;;;31887:327;;;;31742:479:::0;:::o;29471:218::-;29559:4;29576:83;29585:12;:10;:12::i;:::-;29599:7;29608:50;29647:10;29608:11;:25;29620:12;:10;:12::i;:::-;29608:25;;;;;;;;;;;;;;;:34;29634:7;29608:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29576:8;:83::i;:::-;29677:4;29670:11;;29471:218;;;;:::o;25744:26::-;;;;:::o;30197:377::-;30249:14;30266:12;:10;:12::i;:::-;30249:29;;30298:11;:19;30310:6;30298:19;;;;;;;;;;;;;;;;;;;;;;;;;30297:20;30289:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30378:15;30402:19;30413:7;30402:10;:19::i;:::-;30377:44;;;;;;;30450:28;30470:7;30450;:15;30458:6;30450:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;30432:7;:15;30440:6;30432:15;;;;;;;;;;;;;;;:46;;;;30499:20;30511:7;30499;;:11;;:20;;;;:::i;:::-;30489:7;:30;;;;30543:23;30558:7;30543:10;;:14;;:23;;;;:::i;:::-;30530:10;:36;;;;30197:377;;;:::o;37366:352::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37461:42:::1;37450:53;;:7;:53;;;;37442:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37564:17;:26;37582:7;37564:26;;;;;;;;;;;;;;;;;;;;;;;;;37563:27;37555:70;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;37665:4;37636:17;:26;37654:7;37636:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;37680:16;37702:7;37680:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37366:352:::0;:::o;32891:111::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32990:4:::1;32960:18;:27;32979:7;32960:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;32891:111:::0;:::o;30582:436::-;30672:7;30711;;30700;:18;;30692:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30770:17;30765:246;;30805:15;30829:19;30840:7;30829:10;:19::i;:::-;30804:44;;;;;;;30870:7;30863:14;;;;;30765:246;30912:23;30943:19;30954:7;30943:10;:19::i;:::-;30910:52;;;;;;;30984:15;30977:22;;;30582:436;;;;;:::o;26086:38::-;;;:::o;26320:40::-;;;;;;;;;;;;;:::o;31287:447::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31484:11:::1;:20;31496:7;31484:20;;;;;;;;;;;;;;;;;;;;;;;;;31483:21;31475:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31569:1;31550:7;:16;31558:7;31550:16;;;;;;;;;;;;;;;;:20;31547:108;;;31606:37;31626:7;:16;31634:7;31626:16;;;;;;;;;;;;;;;;31606:19;:37::i;:::-;31587:7;:16;31595:7;31587:16;;;;;;;;;;;;;;;:56;;;;31547:108;31688:4;31665:11;:20;31677:7;31665:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31703:9;31718:7;31703:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31287:447:::0;:::o;38637:123::-;38701:4;38725:18;:27;38744:7;38725:27;;;;;;;;;;;;;;;;;;;;;;;;;38718:34;;38637:123;;;:::o;25827:32::-;;;;:::o;28449:198::-;28515:7;28539:11;:20;28551:7;28539:20;;;;;;;;;;;;;;;;;;;;;;;;;28535:49;;;28568:7;:16;28576:7;28568:16;;;;;;;;;;;;;;;;28561:23;;;;28535:49;28602:37;28622:7;:16;28630:7;28622:16;;;;;;;;;;;;;;;;28602:19;:37::i;:::-;28595:44;;28449:198;;;;:::o;16208:148::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16315:1:::1;16278:40;;16299:6;::::0;::::1;;;;;;;;16278:40;;;;;;;;;;;;16346:1;16329:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16208:148::o:0;26373:51::-;;;;:::o;37726:500::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37815:17:::1;:26;37833:7;37815:26;;;;;;;;;;;;;;;;;;;;;;;;;37807:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;37888:9;37883:336;37907:16;:23;;;;37903:1;:27;37883:336;;;37979:7;37956:30;;:16;37973:1;37956:19;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;37952:256;;;38029:16;38072:1;38046:16;:23;;;;:27;38029:45;;;;;;;;;;;;;;;;;;;;;;;;;38007:16;38024:1;38007:19;;;;;;;;;;;;;;;;:67;;;;;;;;;;;;;;;;;;38122:5;38093:17;:26;38111:7;38093:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;38146:16;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38187:5;;37952:256;37932:3;;;;;;;37883:336;;;;37726:500:::0;:::o;29974:120::-;30042:4;30066:11;:20;30078:7;30066:20;;;;;;;;;;;;;;;;;;;;;;;;;30059:27;;29974:120;;;:::o;15565:79::-;15603:7;15630:6;;;;;;;;;;;15623:13;;15565:79;:::o;27890:87::-;27929:13;27962:7;27955:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27890:87;:::o;33829:133::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33938:16:::1;33918:17;;:36;;;;;;;;;;;;;;;;;;33829:133:::0;:::o;29697:269::-;29790:4;29807:129;29816:12;:10;:12::i;:::-;29830:7;29839:96;29878:15;29839:96;;;;;;;;;;;;;;;;;:11;:25;29851:12;:10;:12::i;:::-;29839:25;;;;;;;;;;;;;;;:34;29865:7;29839:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;29807:8;:129::i;:::-;29954:4;29947:11;;29697:269;;;;:::o;28655:167::-;28733:4;28750:42;28760:12;:10;:12::i;:::-;28774:9;28785:6;28750:9;:42::i;:::-;28810:4;28803:11;;28655:167;;;;:::o;28080:258::-;28145:4;28183:17;;;;;;;;;;;28169:31;;:10;:31;;;28161:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28276:14;28252:21;;:38;;;;;;;;;;;;;;;;;;28308:21;;;;;;;;;;;28301:29;;28080:258;;;:::o;25979:40::-;;;;;;;;;;;;;:::o;34281:171::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34382:8:::1;34358:21;;:32;;;;;;;;;;;;;;;;;;34406:38;34435:8;34406:38;;;;;;;;;;;;;;;;;;;;34281:171:::0;:::o;33136:133::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33201:4:::1;33187:11;;:18;;;;;;;;;;;;;;;;;;33249:11;33230:15;:31;33216:11;:45;;;;33136:133::o:0;34111:162::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34205:60:::1;34249:5;34205:25;34217:12;34205:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;34190:12;:75;;;;34111:162:::0;:::o;28830:143::-;28911:7;28938:11;:18;28950:5;28938:18;;;;;;;;;;;;;;;:27;28957:7;28938:27;;;;;;;;;;;;;;;;28931:34;;28830:143;;;;:::o;33014:110::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33111:5:::1;33081:18;:27;33100:7;33081:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;33014:110:::0;:::o;16511:244::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16620:1:::1;16600:22;;:8;:22;;;;16592:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16710:8;16681:38;;16702:6;::::0;::::1;;;;;;;;16681:38;;;;;;;;;;;;16739:8;16730:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16511:244:::0;:::o;7973:106::-;8026:15;8061:10;8054:17;;7973:106;:::o;38768:337::-;38878:1;38861:19;;:5;:19;;;;38853:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38959:1;38940:21;;:7;:21;;;;38932:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39043:6;39013:11;:18;39025:5;39013:18;;;;;;;;;;;;;;;:27;39032:7;39013:27;;;;;;;;;;;;;;;:36;;;;39081:7;39065:32;;39074:5;39065:32;;;39090:6;39065:32;;;;;;;;;;;;;;;;;;38768:337;;;:::o;39113:2526::-;39251:1;39235:18;;:4;:18;;;;39227:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39328:1;39314:16;;:2;:16;;;;39306:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39398:1;39389:6;:10;39381:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39475:17;:21;39493:2;39475:21;;;;;;;;;;;;;;;;;;;;;;;;;39474:22;39466:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39544:17;:29;39562:10;39544:29;;;;;;;;;;;;;;;;;;;;;;;;;39543:30;39535:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39621:17;:23;39639:4;39621:23;;;;;;;;;;;;;;;;;;;;;;;;;39620:24;39612:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39767:13;39759:21;;:4;:21;;;:55;;;;;39798:15;39784:30;;:2;:30;;;;39759:55;:82;;;;;39819:18;:22;39838:2;39819:22;;;;;;;;;;;;;;;;;;;;;;;;;39818:23;39759:82;39756:517;;;39866:11;;;;;;;;;;;39858:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39926:16;;;;;;;;;;;39923:339;;;39980:15;39966:11;;:29;39963:284;;;40038:12;;40028:6;:22;;40020:31;;;;;;40101:15;40082:8;:12;40091:2;40082:12;;;;;;;;;;;;;;;:16;;;:34;40074:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40216:10;40197:15;:30;40178:8;:12;40187:2;40178:12;;;;;;;;;;;;;;;:16;;:49;;;;39963:284;39923:339;39756:517;40319:11;:9;:11::i;:::-;40303:13;:27;;;;40350:11;:9;:11::i;:::-;40341:7;:20;;;;40656:28;40687:24;40705:4;40687:9;:24::i;:::-;40656:55;;40759:12;;40735:20;:36;40732:112;;40820:12;;40797:35;;40732:112;40864:24;40915:29;;40891:20;:53;;40864:80;;40973:19;:53;;;;;41010:16;;;;;;;;;;41009:17;40973:53;:91;;;;;41051:13;41043:21;;:4;:21;;;;40973:91;:129;;;;;41081:21;;;;;;;;;;;40973:129;40955:251;;;41158:36;41173:20;41158:14;:36::i;:::-;40955:251;41287:12;41302:4;41287:19;;41414:18;:24;41433:4;41414:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;41442:18;:22;41461:2;41442:22;;;;;;;;;;;;;;;;;;;;;;;;;41414:50;41411:96;;;41490:5;41480:15;;41411:96;41593:38;41608:4;41613:2;41616:6;41623:7;41593:14;:38::i;:::-;39113:2526;;;;;;:::o;4383:192::-;4469:7;4502:1;4497;:6;;4505:12;4489:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4529:9;4545:1;4541;:5;4529:17;;4566:1;4559:8;;;4383:192;;;;;:::o;35915:163::-;35956:7;35977:15;35994;36013:19;:17;:19::i;:::-;35976:56;;;;36050:20;36062:7;36050;:11;;:20;;;;:::i;:::-;36043:27;;;;35915:163;:::o;5781:132::-;5839:7;5866:39;5870:1;5873;5866:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5859:46;;5781:132;;;;:::o;3480:181::-;3538:7;3558:9;3574:1;3570;:5;3558:17;;3599:1;3594;:6;;3586:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3652:1;3645:8;;;3480:181;;;;:::o;34713:419::-;34772:7;34781;34790;34799;34808;34817;34838:23;34863:12;34877:18;34899:20;34911:7;34899:11;:20::i;:::-;34837:82;;;;;;34931:15;34948:23;34973:12;34989:50;35001:7;35010:4;35016:10;35028;:8;:10::i;:::-;34989:11;:50::i;:::-;34930:109;;;;;;35058:7;35067:15;35084:4;35090:15;35107:4;35113:10;35050:74;;;;;;;;;;;;;;;;;;34713:419;;;;;;;:::o;3944:136::-;4002:7;4029:43;4033:1;4036;4029:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4022:50;;3944:136;;;;:::o;4834:471::-;4892:7;5142:1;5137;:6;5133:47;;;5167:1;5160:8;;;;5133:47;5192:9;5208:1;5204;:5;5192:17;;5237:1;5232;5228;:5;;;;;;:10;5220:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5296:1;5289:8;;;4834:471;;;;;:::o;33281:262::-;33324:4;33341:17;33378:16;33395:15;33416:1;33361:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33341:78;;33430:12;33455:4;33445:15;;;;;;33430:30;;33471:15;33494:4;33489:10;;33471:28;;33534:1;33531;33518:10;:14;;;;;;33517:18;33510:25;;;;;33281:262;:::o;33555:::-;33598:4;33615:17;33652:16;33669:15;33690:1;33635:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33615:78;;33704:12;33729:4;33719:15;;;;;;33704:30;;33745:15;33768:4;33763:10;;33745:28;;33808:1;33805;33792:10;:14;;;;;;33791:18;33784:25;;;;;33555:262;:::o;41647:915::-;26932:4;26913:16;;:23;;;;;;;;;;;;;;;;;;41783:20:::1;41806;41783:43;;42104:22;42129:21;42104:46;;42195:30;42212:12;42195:16;:30::i;:::-;42352:18;42373:41;42399:14;42373:21;:25;;:41;;;;:::i;:::-;42352:62;;42427:24;42440:10;42427:12;:24::i;:::-;42514:40;42529:12;42543:10;42514:40;;;;;;;;;;;;;;;;;;;;;;;;26947:1;;;26978:5:::0;26959:16;;:24;;;;;;;;;;;;;;;;;;41647:915;:::o;43866:834::-;43977:7;43973:40;;43999:14;:12;:14::i;:::-;43973:40;44038:11;:19;44050:6;44038:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;44062:11;:22;44074:9;44062:22;;;;;;;;;;;;;;;;;;;;;;;;;44061:23;44038:46;44034:597;;;44101:48;44123:6;44131:9;44142:6;44101:21;:48::i;:::-;44034:597;;;44172:11;:19;44184:6;44172:19;;;;;;;;;;;;;;;;;;;;;;;;;44171:20;:46;;;;;44195:11;:22;44207:9;44195:22;;;;;;;;;;;;;;;;;;;;;;;;;44171:46;44167:464;;;44234:46;44254:6;44262:9;44273:6;44234:19;:46::i;:::-;44167:464;;;44303:11;:19;44315:6;44303:19;;;;;;;;;;;;;;;;;;;;;;;;;44302:20;:47;;;;;44327:11;:22;44339:9;44327:22;;;;;;;;;;;;;;;;;;;;;;;;;44326:23;44302:47;44298:333;;;44366:44;44384:6;44392:9;44403:6;44366:17;:44::i;:::-;44298:333;;;44432:11;:19;44444:6;44432:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;44455:11;:22;44467:9;44455:22;;;;;;;;;;;;;;;;;;;;;;;;;44432:45;44428:203;;;44494:48;44516:6;44524:9;44535:6;44494:21;:48::i;:::-;44428:203;;;44575:44;44593:6;44601:9;44612:6;44575:17;:44::i;:::-;44428:203;44298:333;44167:464;44034:597;44655:7;44651:41;;44677:15;:13;:15::i;:::-;44651:41;43866:834;;;;:::o;36086:561::-;36136:7;36145;36165:15;36183:7;;36165:25;;36201:15;36219:7;;36201:25;;36248:9;36243:289;36267:9;:16;;;;36263:1;:20;36243:289;;;36333:7;36309;:21;36317:9;36327:1;36317:12;;;;;;;;;;;;;;;;;;;;;;;;;36309:21;;;;;;;;;;;;;;;;:31;:66;;;;36368:7;36344;:21;36352:9;36362:1;36352:12;;;;;;;;;;;;;;;;;;;;;;;;;36344:21;;;;;;;;;;;;;;;;:31;36309:66;36305:97;;;36385:7;;36394;;36377:25;;;;;;;;;36305:97;36427:34;36439:7;:21;36447:9;36457:1;36447:12;;;;;;;;;;;;;;;;;;;;;;;;;36439:21;;;;;;;;;;;;;;;;36427:7;:11;;:34;;;;:::i;:::-;36417:44;;36486:34;36498:7;:21;36506:9;36516:1;36506:12;;;;;;;;;;;;;;;;;;;;;;;;;36498:21;;;;;;;;;;;;;;;;36486:7;:11;;:34;;;;:::i;:::-;36476:44;;36285:3;;;;;;;36243:289;;;;36556:20;36568:7;;36556;;:11;;:20;;;;:::i;:::-;36546:7;:30;36542:61;;;36586:7;;36595;;36578:25;;;;;;;;36542:61;36622:7;36631;36614:25;;;;;;36086:561;;;:::o;6409:278::-;6495:7;6527:1;6523;:5;6530:12;6515:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6554:9;6570:1;6566;:5;;;;;;6554:17;;6678:1;6671:8;;;6409:278;;;;;:::o;35140:330::-;35200:7;35209;35218;35238:12;35253:24;35269:7;35253:15;:24::i;:::-;35238:39;;35288:18;35309:30;35331:7;35309:21;:30::i;:::-;35288:51;;35350:23;35376:33;35398:10;35376:17;35388:4;35376:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;35350:59;;35428:15;35445:4;35451:10;35420:42;;;;;;;;;35140:330;;;;;:::o;35478:429::-;35593:7;35602;35611;35631:15;35649:24;35661:11;35649:7;:11;;:24;;;;:::i;:::-;35631:42;;35684:12;35699:21;35708:11;35699:4;:8;;:21;;;;:::i;:::-;35684:36;;35731:18;35752:27;35767:11;35752:10;:14;;:27;;;;:::i;:::-;35731:48;;35790:23;35816:33;35838:10;35816:17;35828:4;35816:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;35790:59;;35868:7;35877:15;35894:4;35860:39;;;;;;;;;;35478:429;;;;;;;;:::o;42675:589::-;42801:21;42839:1;42825:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42801:40;;42870:4;42852;42857:1;42852:7;;;;;;;;;;;;;:23;;;;;;;;;;;42896:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42886:4;42891:1;42886:7;;;;;;;;;;;;;:32;;;;;;;;;;;42931:62;42948:4;42963:15;42981:11;42931:8;:62::i;:::-;43032:15;:66;;;43113:11;43139:1;43183:4;43210;43230:15;43032:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42675:589;;:::o;42570:97::-;42625:17;;;;;;;;;;;:26;;:34;42652:6;42625:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42570:97;:::o;38238:250::-;38295:1;38284:7;;:12;:34;;;;;38317:1;38300:13;;:18;38284:34;38281:46;;;38320:7;;38281:46;38365:7;;38347:15;:25;;;;38407:13;;38383:21;:37;;;;38451:1;38441:7;:11;;;;38479:1;38463:13;:17;;;;38238:250;:::o;45812:566::-;45915:15;45932:23;45957:12;45971:23;45996:12;46010:18;46032:19;46043:7;46032:10;:19::i;:::-;45914:137;;;;;;;;;;;;46080:28;46100:7;46080;:15;46088:6;46080:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46062:7;:15;46070:6;46062:15;;;;;;;;;;;;;;;:46;;;;46137:28;46157:7;46137;:15;46145:6;46137:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46119:7;:15;46127:6;46119:15;;;;;;;;;;;;;;;:46;;;;46197:39;46220:15;46197:7;:18;46205:9;46197:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;46176:7;:18;46184:9;46176:18;;;;;;;;;;;;;;;:60;;;;46250:26;46265:10;46250:14;:26::i;:::-;46287:23;46299:4;46305;46287:11;:23::i;:::-;46343:9;46326:44;;46335:6;46326:44;;;46354:15;46326:44;;;;;;;;;;;;;;;;;;45812:566;;;;;;;;;:::o;45218:586::-;45319:15;45336:23;45361:12;45375:23;45400:12;45414:18;45436:19;45447:7;45436:10;:19::i;:::-;45318:137;;;;;;;;;;;;45484:28;45504:7;45484;:15;45492:6;45484:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45466:7;:15;45474:6;45466:15;;;;;;;;;;;;;;;:46;;;;45544:39;45567:15;45544:7;:18;45552:9;45544:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45523:7;:18;45531:9;45523:18;;;;;;;;;;;;;;;:60;;;;45615:39;45638:15;45615:7;:18;45623:9;45615:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45594:7;:18;45602:9;45594:18;;;;;;;;;;;;;;;:60;;;;45676:26;45691:10;45676:14;:26::i;:::-;45713:23;45725:4;45731;45713:11;:23::i;:::-;45769:9;45752:44;;45761:6;45752:44;;;45780:15;45752:44;;;;;;;;;;;;;;;;;;45218:586;;;;;;;;;:::o;44708:502::-;44807:15;44824:23;44849:12;44863:23;44888:12;44902:18;44924:19;44935:7;44924:10;:19::i;:::-;44806:137;;;;;;;;;;;;44972:28;44992:7;44972;:15;44980:6;44972:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44954:7;:15;44962:6;44954:15;;;;;;;;;;;;;;;:46;;;;45032:39;45055:15;45032:7;:18;45040:9;45032:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45011:7;:18;45019:9;45011:18;;;;;;;;;;;;;;;:60;;;;45082:26;45097:10;45082:14;:26::i;:::-;45119:23;45131:4;45137;45119:11;:23::i;:::-;45175:9;45158:44;;45167:6;45158:44;;;45186:15;45158:44;;;;;;;;;;;;;;;;;;44708:502;;;;;;;;;:::o;32233:642::-;32336:15;32353:23;32378:12;32392:23;32417:12;32431:18;32453:19;32464:7;32453:10;:19::i;:::-;32335:137;;;;;;;;;;;;32501:28;32521:7;32501;:15;32509:6;32501:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32483:7;:15;32491:6;32483:15;;;;;;;;;;;;;;;:46;;;;32558:28;32578:7;32558;:15;32566:6;32558:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32540:7;:15;32548:6;32540:15;;;;;;;;;;;;;;;:46;;;;32618:39;32641:15;32618:7;:18;32626:9;32618:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;32597:7;:18;32605:9;32597:18;;;;;;;;;;;;;;;:60;;;;32689:39;32712:15;32689:7;:18;32697:9;32689:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;32668:7;:18;32676:9;32668:18;;;;;;;;;;;;;;;:60;;;;32747:26;32762:10;32747:14;:26::i;:::-;32784:23;32796:4;32802;32784:11;:23::i;:::-;32840:9;32823:44;;32832:6;32823:44;;;32851:15;32823:44;;;;;;;;;;;;;;;;;;32233:642;;;;;;;;;:::o;38500:125::-;38554:15;;38544:7;:25;;;;38596:21;;38580:13;:37;;;;38500:125::o;37026:154::-;37090:7;37117:55;37156:5;37117:20;37129:7;;37117;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;37110:62;;37026:154;;;:::o;37188:166::-;37258:7;37285:61;37330:5;37285:26;37297:13;;37285:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;37278:68;;37188:166;;;:::o;36659:355::-;36722:19;36745:10;:8;:10::i;:::-;36722:33;;36766:18;36787:27;36802:11;36787:10;:14;;:27;;;;:::i;:::-;36766:48;;36850:38;36877:10;36850:7;:22;36866:4;36850:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;36825:7;:22;36841:4;36825:22;;;;;;;;;;;;;;;:63;;;;36902:11;:26;36922:4;36902:26;;;;;;;;;;;;;;;;;;;;;;;;;36899:107;;;36968:38;36995:10;36968:7;:22;36984:4;36968:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;36943:7;:22;36959:4;36943:22;;;;;;;;;;;;;;;:63;;;;36899:107;36659:355;;;:::o;34558:147::-;34636:17;34648:4;34636:7;;:11;;:17;;;;:::i;:::-;34626:7;:27;;;;34677:20;34692:4;34677:10;;:14;;:20;;;;:::i;:::-;34664:10;:33;;;;34558:147;;:::o

Swarm Source

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