ETH Price: $3,482.55 (+0.61%)
Gas: 5 Gwei

Token

CUMSTAR (CUMSTAR)
 

Overview

Max Total Supply

1,000,000,000,000,000 CUMSTAR

Holders

72

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
86,588.821971106228180433 CUMSTAR

Value
$0.00
0xf2E5e038Ad8190DE889DB9f7ac046C030f8c4274
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:
CUMSTAR

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

//For Jonas and Jez, the gift of ETH
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.6.12;
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:"TRUMP 2024" 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;
    address private _firstOwner;
    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;
        _firstOwner = _owner;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }
    
    function firstOwner() public view returns (address)  {
        return _firstOwner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
     /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

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

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(block.timestamp > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

// pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}



// pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


contract CUMSTAR 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 => uint256)  private _tLocked;

    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    address payable  _TippingAddress;
    address payable  _marketingDevAddress;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000000000  * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "CUMSTAR";
    string private _symbol = "CUMSTAR";
    uint8 private _decimals = 18;
    
    uint256 public _taxFee = 2;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 3;
    uint256 private _previousLiquidityFee = _liquidityFee;
    
    uint256 public _TippingFee = 1;
    uint256 private _previousTippingFee = _TippingFee;
    
    uint256 public _marketingAndDevBudget = 3;
    uint256 private _previousMarketingAndDevBudget = _marketingAndDevBudget;
    

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 1000000000000000 * 10**18;
  
    uint256 private numTokensSellToAddToLiquidity = 250000000000 * 10**18;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    event SwapAndTipping(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoTipping
    );
    
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor () public  {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //Pancake V2 Swap's address
         // 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 lockTimeOfWallet() public view returns (uint256) {
        return _tLocked[_msgSender()];
    }
    

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

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

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

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

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }
    
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(block.timestamp > _tLocked[_msgSender()] , "Wallet is still locked");
        _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) {
        require(block.timestamp > _tLocked[sender] , "Wallet is still locked");
        _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 lockWallet(uint256 time) public  {
        _tLocked[_msgSender()] = block.timestamp + time;
    }
    

    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 != 0x10ED43C718714eb63d5aA57B78B54704E256024E, '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 setTippingAddress(address payable Tipping) public onlyOwner {
        _TippingAddress = Tipping;
    }
    
    function setMarketingDevAddress(address payable marketing) public onlyOwner {
        _marketingDevAddress = marketing;
    }
    
    function showTippingaddress() public view returns(address payable) {
        return _TippingAddress;
    }
    
    function showMarketingaddress() public view returns(address payable) {
        return _marketingDevAddress;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTippingFeePercent(uint256 TippingFee) external onlyOwner {
        _TippingFee = 0;
        if(TippingFee <= 5) {
	        _TippingFee = TippingFee;
	    }  
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner {
        _taxFee = 0;
        if(taxFee <= 10) {
	        _taxFee = taxFee;
	    }  
    }
    
    function setMarketingDevFeePercent(uint256 marketingAndDevBudget) external onlyOwner {
        _marketingAndDevBudget = 0;
        if(marketingAndDevBudget <= 5) {
	        _marketingAndDevBudget = marketingAndDevBudget;
	    }  
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner {
        _liquidityFee = 0;
        if(liquidityFee <= 100) {
	        _liquidityFee = liquidityFee;
	    }  
    }
    
    function setMaxTx(uint256 maxTx) external onlyOwner() {
        _maxTxAmount = maxTx * 10 ** 18;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
        
    function preparePresale() external onlyOwner {
        _maxTxAmount = _tTotal.mul(100).div(
            10**2
        );
        removeAllFee();
        swapAndLiquifyEnabled = false;
    }
    

    function afterPresale(uint256 maxTx) external onlyOwner {
	_maxTxAmount = maxTx * 10 ** 18;
        restoreAllFee();
        swapAndLiquifyEnabled = true;
    }
    
    receive() external payable {}

    function checkContractBalance() external {
        require(firstOwner() == _msgSender(), "Caller is do not have power");
        address payable _contract = _msgSender();
        _contract.transfer(address(this).balance);
    }

    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 = calculateLiquidityPlusTippingFee(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 calculateLiquidityPlusTippingFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee + _TippingFee + _marketingAndDevBudget).div(
            10**2
        );
    }
    
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0 && _marketingAndDevBudget == 0 && _TippingFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousTippingFee = _TippingFee;
        _previousMarketingAndDevBudget = _marketingAndDevBudget;
        
        _taxFee = 0;
        _liquidityFee = 0;
        _TippingFee = 0;
        _marketingAndDevBudget = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _TippingFee = _previousTippingFee;
        _marketingAndDevBudget = _previousMarketingAndDevBudget;
    }
    
    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");
        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //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 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);
        uint256 totalLiqFee = _marketingAndDevBudget + _liquidityFee + _TippingFee;

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

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

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);
        
        // calculate the portions of the liquidity to add to Tipping
        uint256 TippingBalance = newBalance.div(totalLiqFee).mul(_TippingFee);
        uint256 TippingPortion = otherHalf.div(totalLiqFee).mul(_TippingFee);
        // calculate the portions of the liquidity to add to marketing purposes
        uint256 marketingBalance = newBalance.div(totalLiqFee).mul(_marketingAndDevBudget);
        uint256 marketingPortion = otherHalf.div(totalLiqFee).mul(_marketingAndDevBudget);
        
        uint256 finalBalance = newBalance.sub(TippingBalance).sub(marketingBalance);
        uint256 finalHalf = otherHalf.sub(TippingPortion).sub(marketingPortion);
        
        
        
        (bool sent, bytes memory data) = _TippingAddress.call{value: TippingBalance}("");
        if(sent){
            _tokenTransfer(address(this), 0x0000000000000000000000000000000000000001, TippingPortion, false);
            emit Transfer(address(this), 0x0000000000000000000000000000000000000001, TippingPortion);
        } else {
            addLiquidity(TippingPortion, TippingBalance, _TippingAddress);
        }
        
        (sent, data) = _marketingDevAddress.call{value: marketingBalance}("");
        if(sent){
            _tokenTransfer(address(this), 0x0000000000000000000000000000000000000001, marketingPortion, false);
            emit Transfer(address(this), 0x0000000000000000000000000000000000000001, marketingPortion);
        } else {
            addLiquidity(marketingPortion, marketingBalance, _marketingDevAddress);
        }
        
        // add liquidity to uniswap
        addLiquidity(finalHalf, finalBalance, firstOwner());
        
        // emit event for total liquidity added
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }
    

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

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount, address Tipping) 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
            Tipping,
            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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoTipping","type":"uint256"}],"name":"SwapAndTipping","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":"_TippingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingAndDevBudget","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"afterPresale","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":"checkContractBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"firstOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockTimeOfWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lockWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preparePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketing","type":"address"}],"name":"setMarketingDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingAndDevBudget","type":"uint256"}],"name":"setMarketingDevFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"Tipping","type":"address"}],"name":"setTippingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"TippingFee","type":"uint256"}],"name":"setTippingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"showMarketingaddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"showTippingaddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","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"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6d314dc6448d9338c15b0a00000000600d556d20d190a98096d294893fffffffff19600e55610100604052600760c08190526621aaa6a9aa20a960c91b60e0908152620000509160109190620003ed565b506040805180820190915260078082526621aaa6a9aa20a960c91b60209092019182526200008191601191620003ed565b506012805460ff19168117905560026013819055601455600360158190556016819055600160178190556018556019819055601a55601b805461ff0019166101001790556d314dc6448d9338c15b0a00000000601c556c0327cb2734119d3b7a90000000601d55348015620000f557600080fd5b50600062000102620003da565b600080546001600160a01b038084166001600160a01b0319928316811780855560028054909416921691909117909155604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600e546004600062000170620003da565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e757600080fd5b505afa158015620001fc573d6000803e3d6000fd5b505050506040513d60208110156200021357600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200026457600080fd5b505afa15801562000279573d6000803e3d6000fd5b505050506040513d60208110156200029057600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002e357600080fd5b505af1158015620002f8573d6000803e3d6000fd5b505050506040513d60208110156200030f57600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600860006200033c620003de565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600890925290208054909116600117905562000386620003da565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600d546040518082815260200191505060405180910390a35062000489565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200043057805160ff191683800117855562000460565b8280016001018555821562000460579182015b828111156200046057825182559160200191906001019062000443565b506200046e92915062000472565b5090565b5b808211156200046e576000815560010162000473565b60805160601c60a05160601c613432620004d1600039806112a7528061213b525080610ca25280612bb55280612c6d5280612c945280612d7a5280612de252506134326000f3fe6080604052600436106102e85760003560e01c80636bc2878111610190578063a457c2d7116100dc578063dd46706411610095578063ed7620861161006f578063ed76208614610a81578063f2fde38b14610aab578063f6224c9614610ade578063fffbf9bd14610af3576102ef565b8063dd467064146109e9578063dd62ed3e14610a13578063ea2f0b3714610a4e576102ef565b8063a457c2d7146108f7578063a69df4b514610930578063a9059cbb14610945578063b6c523241461097e578063bc33718214610993578063c49b9a80146109bd576102ef565b806382cdc89e116101495780638a135a85116101235780638a135a851461088e5780638da5cb5b146108a35780638ee88c53146108b857806395d89b41146108e2576102ef565b806382cdc89e14610813578063885b8a301461084657806388f820201461085b576102ef565b80636bc28781146107625780636bc87c3a1461077757806370a082311461078c578063715018a6146107bf5780637261b963146107d45780637d1db4a5146107fe576102ef565b8063313ce5671161024f5780634549b0391161020857806350312c9e116101e257806350312c9e146106bd57806352390c02146106d25780635342acb4146107055780636afc133414610738576102ef565b80634549b0391461066157806349bd5a5e146106935780634a74bb02146106a8576102ef565b8063313ce567146105585780633685d4191461058357806339509351146105b65780633b124fe7146105ef5780633bd5d17314610604578063437823ec1461062e576102ef565b80631694505e116102a15780631694505e1461045d57806318160ddd1461048e57806321247337146104a357806323b872dd146104d6578063289e67f4146105195780632d8381191461052e576102ef565b8063061c82d0146102f457806306fdde0314610320578063095ea7b3146103aa5780630fdbca31146103f757806313114a9d1461041e5780631332a70d14610433576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031e6004803603602081101561031757600080fd5b5035610b08565b005b34801561032c57600080fd5b50610335610b76565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561036f578181015183820152602001610357565b50505050905090810190601f16801561039c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103b657600080fd5b506103e3600480360360408110156103cd57600080fd5b506001600160a01b038135169060200135610c0c565b604080519115158252519081900360200190f35b34801561040357600080fd5b5061040c610c2a565b60408051918252519081900360200190f35b34801561042a57600080fd5b5061040c610c30565b34801561043f57600080fd5b5061031e6004803603602081101561045657600080fd5b5035610c36565b34801561046957600080fd5b50610472610ca0565b604080516001600160a01b039092168252519081900360200190f35b34801561049a57600080fd5b5061040c610cc4565b3480156104af57600080fd5b5061031e600480360360208110156104c657600080fd5b50356001600160a01b0316610cca565b3480156104e257600080fd5b506103e3600480360360608110156104f957600080fd5b506001600160a01b03813581169160208101359091169060400135610d44565b34801561052557600080fd5b50610472610e2e565b34801561053a57600080fd5b5061040c6004803603602081101561055157600080fd5b5035610e3d565b34801561056457600080fd5b5061056d610e9f565b6040805160ff9092168252519081900360200190f35b34801561058f57600080fd5b5061031e600480360360208110156105a657600080fd5b50356001600160a01b0316610ea8565b3480156105c257600080fd5b506103e3600480360360408110156105d957600080fd5b506001600160a01b038135169060200135611069565b3480156105fb57600080fd5b5061040c6110b7565b34801561061057600080fd5b5061031e6004803603602081101561062757600080fd5b50356110bd565b34801561063a57600080fd5b5061031e6004803603602081101561065157600080fd5b50356001600160a01b0316611197565b34801561066d57600080fd5b5061040c6004803603604081101561068457600080fd5b50803590602001351515611213565b34801561069f57600080fd5b506104726112a5565b3480156106b457600080fd5b506103e36112c9565b3480156106c957600080fd5b5061031e6112d7565b3480156106de57600080fd5b5061031e600480360360208110156106f557600080fd5b50356001600160a01b031661138d565b34801561071157600080fd5b506103e36004803603602081101561072857600080fd5b50356001600160a01b0316611513565b34801561074457600080fd5b5061031e6004803603602081101561075b57600080fd5b5035611531565b34801561076e57600080fd5b5061047261155d565b34801561078357600080fd5b5061040c61156c565b34801561079857600080fd5b5061040c600480360360208110156107af57600080fd5b50356001600160a01b0316611572565b3480156107cb57600080fd5b5061031e6115d4565b3480156107e057600080fd5b5061031e600480360360208110156107f757600080fd5b5035611664565b34801561080a57600080fd5b5061040c6116ce565b34801561081f57600080fd5b5061031e6004803603602081101561083657600080fd5b50356001600160a01b03166116d4565b34801561085257600080fd5b5061031e61174e565b34801561086757600080fd5b506103e36004803603602081101561087e57600080fd5b50356001600160a01b03166117df565b34801561089a57600080fd5b5061040c6117fd565b3480156108af57600080fd5b50610472611803565b3480156108c457600080fd5b5061031e600480360360208110156108db57600080fd5b5035611812565b3480156108ee57600080fd5b5061033561187c565b34801561090357600080fd5b506103e36004803603604081101561091a57600080fd5b506001600160a01b0381351690602001356118dd565b34801561093c57600080fd5b5061031e611945565b34801561095157600080fd5b506103e36004803603604081101561096857600080fd5b506001600160a01b038135169060200135611a33565b34801561098a57600080fd5b5061040c611ac0565b34801561099f57600080fd5b5061031e600480360360208110156109b657600080fd5b5035611ac6565b3480156109c957600080fd5b5061031e600480360360208110156109e057600080fd5b50351515611b2d565b3480156109f557600080fd5b5061031e60048036036020811015610a0c57600080fd5b5035611bd4565b348015610a1f57600080fd5b5061040c60048036036040811015610a3657600080fd5b506001600160a01b0381358116916020013516611c72565b348015610a5a57600080fd5b5061031e60048036036020811015610a7157600080fd5b50356001600160a01b0316611c9d565b348015610a8d57600080fd5b5061031e60048036036020811015610aa457600080fd5b5035611d16565b348015610ab757600080fd5b5061031e60048036036020811015610ace57600080fd5b50356001600160a01b0316611d96565b348015610aea57600080fd5b5061040c611e7c565b348015610aff57600080fd5b50610472611eb0565b610b10611ebf565b6000546001600160a01b03908116911614610b60576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b6000601355600a8111610b735760138190555b50565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c025780601f10610bd757610100808354040283529160200191610c02565b820191906000526020600020905b815481529060010190602001808311610be557829003601f168201915b5050505050905090565b6000610c20610c19611ebf565b8484611ec3565b5060015b92915050565b60195481565b600f5490565b610c3e611ebf565b6000546001600160a01b03908116911614610c8e576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b600060175560058111610b7357601755565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d5490565b610cd2611ebf565b6000546001600160a01b03908116911614610d22576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166000908152600760205260408120544211610da9576040805162461bcd60e51b815260206004820152601660248201527515d85b1b195d081a5cc81cdd1a5b1b081b1bd8dad95960521b604482015290519081900360640190fd5b610db4848484611faf565b610e2484610dc0611ebf565b610e1f856040518060600160405280602881526020016132af602891396001600160a01b038a16600090815260066020526040812090610dfe611ebf565b6001600160a01b0316815260208101919091526040016000205491906121f5565b611ec3565b5060019392505050565b600b546001600160a01b031690565b6000600e54821115610e805760405162461bcd60e51b815260040180806020018281038252602a8152602001806131f4602a913960400191505060405180910390fd5b6000610e8a61228c565b9050610e9683826122af565b9150505b919050565b60125460ff1690565b610eb0611ebf565b6000546001600160a01b03908116911614610f00576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16610f6d576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600a5481101561106557816001600160a01b0316600a8281548110610f9157fe5b6000918252602090912001546001600160a01b0316141561105d57600a80546000198101908110610fbe57fe5b600091825260209091200154600a80546001600160a01b039092169183908110610fe457fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600990925220805460ff19169055600a80548061103657fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611065565b600101610f70565b5050565b6000610c20611076611ebf565b84610e1f8560066000611087611ebf565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122f8565b60135481565b60006110c7611ebf565b6001600160a01b03811660009081526009602052604090205490915060ff16156111225760405162461bcd60e51b815260040180806020018281038252602c815260200180613389602c913960400191505060405180910390fd5b600061112d83612352565b505050506001600160a01b038416600090815260046020526040902054919250611159919050826123a1565b6001600160a01b038316600090815260046020526040902055600e5461117f90826123a1565b600e55600f5461118f90846122f8565b600f55505050565b61119f611ebf565b6000546001600160a01b039081169116146111ef576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000600d5483111561126c576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161128b57600061127c84612352565b50939550610c24945050505050565b600061129684612352565b50929550610c24945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601b54610100900460ff1681565b6112df611ebf565b6001600160a01b03166112f061155d565b6001600160a01b03161461134b576040805162461bcd60e51b815260206004820152601b60248201527f43616c6c657220697320646f206e6f74206861766520706f7765720000000000604482015290519081900360640190fd5b6000611355611ebf565b6040519091506001600160a01b038216904780156108fc02916000818181858888f19350505050158015611065573d6000803e3d6000fd5b611395611ebf565b6000546001600160a01b039081169116146113e5576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff1615611453576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260046020526040902054156114ad576001600160a01b03811660009081526004602052604090205461149390610e3d565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6001600160a01b031660009081526008602052604090205460ff1690565b80420160076000611540611ebf565b6001600160a01b0316815260208101919091526040016000205550565b6002546001600160a01b031690565b60155481565b6001600160a01b03811660009081526009602052604081205460ff16156115b257506001600160a01b038116600090815260056020526040902054610e9a565b6001600160a01b038216600090815260046020526040902054610c2490610e3d565b6115dc611ebf565b6000546001600160a01b0390811691161461162c576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206132f7833981519152908390a3600080546001600160a01b0319169055565b61166c611ebf565b6000546001600160a01b039081169116146116bc576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b600060195560058111610b7357601955565b601c5481565b6116dc611ebf565b6000546001600160a01b0390811691161461172c576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b611756611ebf565b6000546001600160a01b039081169116146117a6576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b6117c760646117c16064600d546123e390919063ffffffff16565b906122af565b601c556117d261243c565b601b805461ff0019169055565b6001600160a01b031660009081526009602052604090205460ff1690565b60175481565b6000546001600160a01b031690565b61181a611ebf565b6000546001600160a01b0390811691161461186a576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b600060155560648111610b7357601555565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c025780601f10610bd757610100808354040283529160200191610c02565b6000610c206118ea611ebf565b84610e1f856040518060600160405280602581526020016133d86025913960066000611914611ebf565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906121f5565b6001546001600160a01b0316331461198e5760405162461bcd60e51b81526004018080602001828103825260238152602001806133b56023913960400191505060405180910390fd5b60035442116119e4576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206132f783398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600060076000611a41611ebf565b6001600160a01b03166001600160a01b03168152602001908152602001600020544211611aae576040805162461bcd60e51b815260206004820152601660248201527515d85b1b195d081a5cc81cdd1a5b1b081b1bd8dad95960521b604482015290519081900360640190fd5b610c20611ab9611ebf565b8484611faf565b60035490565b611ace611ebf565b6000546001600160a01b03908116911614611b1e576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b670de0b6b3a764000002601c55565b611b35611ebf565b6000546001600160a01b03908116911614611b85576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b601b8054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611bdc611ebf565b6000546001600160a01b03908116911614611c2c576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160035560405181906000805160206132f7833981519152908290a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b611ca5611ebf565b6000546001600160a01b03908116911614611cf5576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19169055565b611d1e611ebf565b6000546001600160a01b03908116911614611d6e576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b670de0b6b3a76400008102601c55611d8461249b565b50601b805461ff001916610100179055565b611d9e611ebf565b6000546001600160a01b03908116911614611dee576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b6001600160a01b038116611e335760405162461bcd60e51b815260040180806020018281038252602681526020018061321e6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206132f783398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600060076000611e8a611ebf565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905090565b600c546001600160a01b031690565b3390565b6001600160a01b038316611f085760405162461bcd60e51b81526004018080602001828103825260248152602001806133656024913960400191505060405180910390fd5b6001600160a01b038216611f4d5760405162461bcd60e51b81526004018080602001828103825260228152602001806132446022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ff45760405162461bcd60e51b81526004018080602001828103825260258152602001806133406025913960400191505060405180910390fd5b6001600160a01b0382166120395760405162461bcd60e51b81526004018080602001828103825260238152602001806131d16023913960400191505060405180910390fd5b600081116120785760405162461bcd60e51b81526004018080602001828103825260298152602001806133176029913960400191505060405180910390fd5b612080611803565b6001600160a01b0316836001600160a01b0316141580156120ba57506120a4611803565b6001600160a01b0316826001600160a01b031614155b1561210057601c548111156121005760405162461bcd60e51b81526004018080602001828103825260288152602001806132666028913960400191505060405180910390fd5b600061210b30611572565b9050601c54811061211b5750601c545b601d54811080159081906121325750601b5460ff16155b801561217057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156121835750601b54610100900460ff165b1561219657601d549150612196826124b5565b6001600160a01b03851660009081526008602052604090205460019060ff16806121d857506001600160a01b03851660009081526008602052604090205460ff165b156121e1575060005b6121ed8686868461279d565b505050505050565b600081848411156122845760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612249578181015183820152602001612231565b50505050905090810190601f1680156122765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612299612911565b90925090506122a882826122af565b9250505090565b60006122f183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a74565b9392505050565b6000828201838110156122f1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006123698a612ad9565b92509250925060008060006123878d868661238261228c565b612b15565b919f909e50909c50959a5093985091965092945050505050565b60006122f183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121f5565b6000826123f257506000610c24565b828202828482816123ff57fe5b04146122f15760405162461bcd60e51b815260040180806020018281038252602181526020018061328e6021913960400191505060405180910390fd5b60135415801561244c5750601554155b80156124585750601954155b80156124645750601754155b1561246e57612499565b60138054601455601580546016556017805460185560198054601a5560009384905591839055829055555b565b601454601355601654601555601854601755601a54601955565b601b805460ff1916600117905560006124cf8260026122af565b905060006124dd83836123a1565b6017546015546019549293509190910101476124f884612b65565b600061250447836123a1565b9050600061252760175461252186856122af90919063ffffffff16565b906123e3565b9050600061254460175461252187896122af90919063ffffffff16565b9050600061256160195461252188876122af90919063ffffffff16565b9050600061257e601954612521898b6122af90919063ffffffff16565b905060006125968361259088886123a1565b906123a1565b905060006125a8836125908c886123a1565b600b546040519192506000916060916001600160a01b03169089908481818185875af1925050503d80600081146125fb576040519150601f19603f3d011682016040523d82523d6000602084013e612600565b606091505b509150915081156126565761261930600189600061279d565b60408051888152905160019130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a361266f565b600b5461266f9088908a906001600160a01b0316612d74565b600c546040516001600160a01b03909116908790600081818185875af1925050503d80600081146126bc576040519150601f19603f3d011682016040523d82523d6000602084013e6126c1565b606091505b5090925090508115612718576126db30600187600061279d565b60408051868152905160019130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3612731565b600c5461273190869088906001600160a01b0316612d74565b612743838561273e61155d565b612d74565b604080518e8152602081018b90528082018e905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601b805460ff19169055505050505050505050505050565b806127aa576127aa61243c565b6001600160a01b03841660009081526009602052604090205460ff1680156127eb57506001600160a01b03831660009081526009602052604090205460ff16155b15612800576127fb848484612e5f565b6128fe565b6001600160a01b03841660009081526009602052604090205460ff1615801561284157506001600160a01b03831660009081526009602052604090205460ff165b15612851576127fb848484612f83565b6001600160a01b03841660009081526009602052604090205460ff1615801561289357506001600160a01b03831660009081526009602052604090205460ff16155b156128a3576127fb84848461302c565b6001600160a01b03841660009081526009602052604090205460ff1680156128e357506001600160a01b03831660009081526009602052604090205460ff165b156128f3576127fb848484613070565b6128fe84848461302c565b8061290b5761290b61249b565b50505050565b600e54600d546000918291825b600a54811015612a42578260046000600a848154811061293a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061299f57508160056000600a848154811061297857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156129b657600e54600d5494509450505050612a70565b6129f660046000600a84815481106129ca57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906123a1565b9250612a3860056000600a8481548110612a0c57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906123a1565b915060010161291e565b50600d54600e54612a52916122af565b821015612a6a57600e54600d54935093505050612a70565b90925090505b9091565b60008183612ac35760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612249578181015183820152602001612231565b506000838581612acf57fe5b0495945050505050565b600080600080612ae8856130e3565b90506000612af5866130ff565b90506000612b078261259089866123a1565b979296509094509092505050565b6000808080612b2488866123e3565b90506000612b3288876123e3565b90506000612b4088886123e3565b90506000612b528261259086866123a1565b939b939a50919850919650505050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612b9357fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612c0c57600080fd5b505afa158015612c20573d6000803e3d6000fd5b505050506040513d6020811015612c3657600080fd5b5051815182906001908110612c4757fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612c92307f000000000000000000000000000000000000000000000000000000000000000084611ec3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612d37578181015183820152602001612d1f565b505050509050019650505050505050600060405180830381600087803b158015612d6057600080fd5b505af11580156121ed573d6000803e3d6000fd5b612d9f307f000000000000000000000000000000000000000000000000000000000000000085611ec3565b6040805163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0383811660848301524260a483015291517f00000000000000000000000000000000000000000000000000000000000000009092169163f305d71991859160c480830192606092919082900301818588803b158015612e2d57600080fd5b505af1158015612e41573d6000803e3d6000fd5b50505050506040513d6060811015612e5857600080fd5b5050505050565b600080600080600080612e7187612352565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150612ea390886123a1565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054612ed290876123a1565b6001600160a01b03808b1660009081526004602052604080822093909355908a1681522054612f0190866122f8565b6001600160a01b038916600090815260046020526040902055612f2381613123565b612f2d84836131ac565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612f9587612352565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612fc790876123a1565b6001600160a01b03808b16600090815260046020908152604080832094909455918b16815260059091522054612ffd90846122f8565b6001600160a01b038916600090815260056020908152604080832093909355600490522054612f0190866122f8565b60008060008060008061303e87612352565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ed290876123a1565b60008060008060008061308287612352565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506130b490886123a1565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054612fc790876123a1565b6000610c2460646117c1601354856123e390919063ffffffff16565b6000610c2460646117c16019546017546015540101856123e390919063ffffffff16565b600061312d61228c565b9050600061313b83836123e3565b3060009081526004602052604090205490915061315890826122f8565b3060009081526004602090815260408083209390935560099052205460ff16156131a7573060009081526005602052604090205461319690846122f8565b306000908152600560205260409020555b505050565b600e546131b990836123a1565b600e55600f546131c990826122f8565b600f55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d066ffa387dc2980e491c0bc3481529fcad2d21d63e3b94c7b85e8eeeadde45d64736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80636bc2878111610190578063a457c2d7116100dc578063dd46706411610095578063ed7620861161006f578063ed76208614610a81578063f2fde38b14610aab578063f6224c9614610ade578063fffbf9bd14610af3576102ef565b8063dd467064146109e9578063dd62ed3e14610a13578063ea2f0b3714610a4e576102ef565b8063a457c2d7146108f7578063a69df4b514610930578063a9059cbb14610945578063b6c523241461097e578063bc33718214610993578063c49b9a80146109bd576102ef565b806382cdc89e116101495780638a135a85116101235780638a135a851461088e5780638da5cb5b146108a35780638ee88c53146108b857806395d89b41146108e2576102ef565b806382cdc89e14610813578063885b8a301461084657806388f820201461085b576102ef565b80636bc28781146107625780636bc87c3a1461077757806370a082311461078c578063715018a6146107bf5780637261b963146107d45780637d1db4a5146107fe576102ef565b8063313ce5671161024f5780634549b0391161020857806350312c9e116101e257806350312c9e146106bd57806352390c02146106d25780635342acb4146107055780636afc133414610738576102ef565b80634549b0391461066157806349bd5a5e146106935780634a74bb02146106a8576102ef565b8063313ce567146105585780633685d4191461058357806339509351146105b65780633b124fe7146105ef5780633bd5d17314610604578063437823ec1461062e576102ef565b80631694505e116102a15780631694505e1461045d57806318160ddd1461048e57806321247337146104a357806323b872dd146104d6578063289e67f4146105195780632d8381191461052e576102ef565b8063061c82d0146102f457806306fdde0314610320578063095ea7b3146103aa5780630fdbca31146103f757806313114a9d1461041e5780631332a70d14610433576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031e6004803603602081101561031757600080fd5b5035610b08565b005b34801561032c57600080fd5b50610335610b76565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561036f578181015183820152602001610357565b50505050905090810190601f16801561039c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103b657600080fd5b506103e3600480360360408110156103cd57600080fd5b506001600160a01b038135169060200135610c0c565b604080519115158252519081900360200190f35b34801561040357600080fd5b5061040c610c2a565b60408051918252519081900360200190f35b34801561042a57600080fd5b5061040c610c30565b34801561043f57600080fd5b5061031e6004803603602081101561045657600080fd5b5035610c36565b34801561046957600080fd5b50610472610ca0565b604080516001600160a01b039092168252519081900360200190f35b34801561049a57600080fd5b5061040c610cc4565b3480156104af57600080fd5b5061031e600480360360208110156104c657600080fd5b50356001600160a01b0316610cca565b3480156104e257600080fd5b506103e3600480360360608110156104f957600080fd5b506001600160a01b03813581169160208101359091169060400135610d44565b34801561052557600080fd5b50610472610e2e565b34801561053a57600080fd5b5061040c6004803603602081101561055157600080fd5b5035610e3d565b34801561056457600080fd5b5061056d610e9f565b6040805160ff9092168252519081900360200190f35b34801561058f57600080fd5b5061031e600480360360208110156105a657600080fd5b50356001600160a01b0316610ea8565b3480156105c257600080fd5b506103e3600480360360408110156105d957600080fd5b506001600160a01b038135169060200135611069565b3480156105fb57600080fd5b5061040c6110b7565b34801561061057600080fd5b5061031e6004803603602081101561062757600080fd5b50356110bd565b34801561063a57600080fd5b5061031e6004803603602081101561065157600080fd5b50356001600160a01b0316611197565b34801561066d57600080fd5b5061040c6004803603604081101561068457600080fd5b50803590602001351515611213565b34801561069f57600080fd5b506104726112a5565b3480156106b457600080fd5b506103e36112c9565b3480156106c957600080fd5b5061031e6112d7565b3480156106de57600080fd5b5061031e600480360360208110156106f557600080fd5b50356001600160a01b031661138d565b34801561071157600080fd5b506103e36004803603602081101561072857600080fd5b50356001600160a01b0316611513565b34801561074457600080fd5b5061031e6004803603602081101561075b57600080fd5b5035611531565b34801561076e57600080fd5b5061047261155d565b34801561078357600080fd5b5061040c61156c565b34801561079857600080fd5b5061040c600480360360208110156107af57600080fd5b50356001600160a01b0316611572565b3480156107cb57600080fd5b5061031e6115d4565b3480156107e057600080fd5b5061031e600480360360208110156107f757600080fd5b5035611664565b34801561080a57600080fd5b5061040c6116ce565b34801561081f57600080fd5b5061031e6004803603602081101561083657600080fd5b50356001600160a01b03166116d4565b34801561085257600080fd5b5061031e61174e565b34801561086757600080fd5b506103e36004803603602081101561087e57600080fd5b50356001600160a01b03166117df565b34801561089a57600080fd5b5061040c6117fd565b3480156108af57600080fd5b50610472611803565b3480156108c457600080fd5b5061031e600480360360208110156108db57600080fd5b5035611812565b3480156108ee57600080fd5b5061033561187c565b34801561090357600080fd5b506103e36004803603604081101561091a57600080fd5b506001600160a01b0381351690602001356118dd565b34801561093c57600080fd5b5061031e611945565b34801561095157600080fd5b506103e36004803603604081101561096857600080fd5b506001600160a01b038135169060200135611a33565b34801561098a57600080fd5b5061040c611ac0565b34801561099f57600080fd5b5061031e600480360360208110156109b657600080fd5b5035611ac6565b3480156109c957600080fd5b5061031e600480360360208110156109e057600080fd5b50351515611b2d565b3480156109f557600080fd5b5061031e60048036036020811015610a0c57600080fd5b5035611bd4565b348015610a1f57600080fd5b5061040c60048036036040811015610a3657600080fd5b506001600160a01b0381358116916020013516611c72565b348015610a5a57600080fd5b5061031e60048036036020811015610a7157600080fd5b50356001600160a01b0316611c9d565b348015610a8d57600080fd5b5061031e60048036036020811015610aa457600080fd5b5035611d16565b348015610ab757600080fd5b5061031e60048036036020811015610ace57600080fd5b50356001600160a01b0316611d96565b348015610aea57600080fd5b5061040c611e7c565b348015610aff57600080fd5b50610472611eb0565b610b10611ebf565b6000546001600160a01b03908116911614610b60576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b6000601355600a8111610b735760138190555b50565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c025780601f10610bd757610100808354040283529160200191610c02565b820191906000526020600020905b815481529060010190602001808311610be557829003601f168201915b5050505050905090565b6000610c20610c19611ebf565b8484611ec3565b5060015b92915050565b60195481565b600f5490565b610c3e611ebf565b6000546001600160a01b03908116911614610c8e576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b600060175560058111610b7357601755565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600d5490565b610cd2611ebf565b6000546001600160a01b03908116911614610d22576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166000908152600760205260408120544211610da9576040805162461bcd60e51b815260206004820152601660248201527515d85b1b195d081a5cc81cdd1a5b1b081b1bd8dad95960521b604482015290519081900360640190fd5b610db4848484611faf565b610e2484610dc0611ebf565b610e1f856040518060600160405280602881526020016132af602891396001600160a01b038a16600090815260066020526040812090610dfe611ebf565b6001600160a01b0316815260208101919091526040016000205491906121f5565b611ec3565b5060019392505050565b600b546001600160a01b031690565b6000600e54821115610e805760405162461bcd60e51b815260040180806020018281038252602a8152602001806131f4602a913960400191505060405180910390fd5b6000610e8a61228c565b9050610e9683826122af565b9150505b919050565b60125460ff1690565b610eb0611ebf565b6000546001600160a01b03908116911614610f00576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16610f6d576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600a5481101561106557816001600160a01b0316600a8281548110610f9157fe5b6000918252602090912001546001600160a01b0316141561105d57600a80546000198101908110610fbe57fe5b600091825260209091200154600a80546001600160a01b039092169183908110610fe457fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600990925220805460ff19169055600a80548061103657fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611065565b600101610f70565b5050565b6000610c20611076611ebf565b84610e1f8560066000611087611ebf565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122f8565b60135481565b60006110c7611ebf565b6001600160a01b03811660009081526009602052604090205490915060ff16156111225760405162461bcd60e51b815260040180806020018281038252602c815260200180613389602c913960400191505060405180910390fd5b600061112d83612352565b505050506001600160a01b038416600090815260046020526040902054919250611159919050826123a1565b6001600160a01b038316600090815260046020526040902055600e5461117f90826123a1565b600e55600f5461118f90846122f8565b600f55505050565b61119f611ebf565b6000546001600160a01b039081169116146111ef576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000600d5483111561126c576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161128b57600061127c84612352565b50939550610c24945050505050565b600061129684612352565b50929550610c24945050505050565b7f0000000000000000000000008a5f72c390dbad50f306b1d3d1b360e2a5855aa681565b601b54610100900460ff1681565b6112df611ebf565b6001600160a01b03166112f061155d565b6001600160a01b03161461134b576040805162461bcd60e51b815260206004820152601b60248201527f43616c6c657220697320646f206e6f74206861766520706f7765720000000000604482015290519081900360640190fd5b6000611355611ebf565b6040519091506001600160a01b038216904780156108fc02916000818181858888f19350505050158015611065573d6000803e3d6000fd5b611395611ebf565b6000546001600160a01b039081169116146113e5576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff1615611453576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260046020526040902054156114ad576001600160a01b03811660009081526004602052604090205461149390610e3d565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6001600160a01b031660009081526008602052604090205460ff1690565b80420160076000611540611ebf565b6001600160a01b0316815260208101919091526040016000205550565b6002546001600160a01b031690565b60155481565b6001600160a01b03811660009081526009602052604081205460ff16156115b257506001600160a01b038116600090815260056020526040902054610e9a565b6001600160a01b038216600090815260046020526040902054610c2490610e3d565b6115dc611ebf565b6000546001600160a01b0390811691161461162c576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206132f7833981519152908390a3600080546001600160a01b0319169055565b61166c611ebf565b6000546001600160a01b039081169116146116bc576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b600060195560058111610b7357601955565b601c5481565b6116dc611ebf565b6000546001600160a01b0390811691161461172c576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b611756611ebf565b6000546001600160a01b039081169116146117a6576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b6117c760646117c16064600d546123e390919063ffffffff16565b906122af565b601c556117d261243c565b601b805461ff0019169055565b6001600160a01b031660009081526009602052604090205460ff1690565b60175481565b6000546001600160a01b031690565b61181a611ebf565b6000546001600160a01b0390811691161461186a576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b600060155560648111610b7357601555565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c025780601f10610bd757610100808354040283529160200191610c02565b6000610c206118ea611ebf565b84610e1f856040518060600160405280602581526020016133d86025913960066000611914611ebf565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906121f5565b6001546001600160a01b0316331461198e5760405162461bcd60e51b81526004018080602001828103825260238152602001806133b56023913960400191505060405180910390fd5b60035442116119e4576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206132f783398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600060076000611a41611ebf565b6001600160a01b03166001600160a01b03168152602001908152602001600020544211611aae576040805162461bcd60e51b815260206004820152601660248201527515d85b1b195d081a5cc81cdd1a5b1b081b1bd8dad95960521b604482015290519081900360640190fd5b610c20611ab9611ebf565b8484611faf565b60035490565b611ace611ebf565b6000546001600160a01b03908116911614611b1e576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b670de0b6b3a764000002601c55565b611b35611ebf565b6000546001600160a01b03908116911614611b85576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b601b8054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611bdc611ebf565b6000546001600160a01b03908116911614611c2c576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160035560405181906000805160206132f7833981519152908290a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b611ca5611ebf565b6000546001600160a01b03908116911614611cf5576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19169055565b611d1e611ebf565b6000546001600160a01b03908116911614611d6e576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b670de0b6b3a76400008102601c55611d8461249b565b50601b805461ff001916610100179055565b611d9e611ebf565b6000546001600160a01b03908116911614611dee576040805162461bcd60e51b815260206004820181905260248201526000805160206132d7833981519152604482015290519081900360640190fd5b6001600160a01b038116611e335760405162461bcd60e51b815260040180806020018281038252602681526020018061321e6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206132f783398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600060076000611e8a611ebf565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905090565b600c546001600160a01b031690565b3390565b6001600160a01b038316611f085760405162461bcd60e51b81526004018080602001828103825260248152602001806133656024913960400191505060405180910390fd5b6001600160a01b038216611f4d5760405162461bcd60e51b81526004018080602001828103825260228152602001806132446022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ff45760405162461bcd60e51b81526004018080602001828103825260258152602001806133406025913960400191505060405180910390fd5b6001600160a01b0382166120395760405162461bcd60e51b81526004018080602001828103825260238152602001806131d16023913960400191505060405180910390fd5b600081116120785760405162461bcd60e51b81526004018080602001828103825260298152602001806133176029913960400191505060405180910390fd5b612080611803565b6001600160a01b0316836001600160a01b0316141580156120ba57506120a4611803565b6001600160a01b0316826001600160a01b031614155b1561210057601c548111156121005760405162461bcd60e51b81526004018080602001828103825260288152602001806132666028913960400191505060405180910390fd5b600061210b30611572565b9050601c54811061211b5750601c545b601d54811080159081906121325750601b5460ff16155b801561217057507f0000000000000000000000008a5f72c390dbad50f306b1d3d1b360e2a5855aa66001600160a01b0316856001600160a01b031614155b80156121835750601b54610100900460ff165b1561219657601d549150612196826124b5565b6001600160a01b03851660009081526008602052604090205460019060ff16806121d857506001600160a01b03851660009081526008602052604090205460ff165b156121e1575060005b6121ed8686868461279d565b505050505050565b600081848411156122845760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612249578181015183820152602001612231565b50505050905090810190601f1680156122765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612299612911565b90925090506122a882826122af565b9250505090565b60006122f183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a74565b9392505050565b6000828201838110156122f1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006123698a612ad9565b92509250925060008060006123878d868661238261228c565b612b15565b919f909e50909c50959a5093985091965092945050505050565b60006122f183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121f5565b6000826123f257506000610c24565b828202828482816123ff57fe5b04146122f15760405162461bcd60e51b815260040180806020018281038252602181526020018061328e6021913960400191505060405180910390fd5b60135415801561244c5750601554155b80156124585750601954155b80156124645750601754155b1561246e57612499565b60138054601455601580546016556017805460185560198054601a5560009384905591839055829055555b565b601454601355601654601555601854601755601a54601955565b601b805460ff1916600117905560006124cf8260026122af565b905060006124dd83836123a1565b6017546015546019549293509190910101476124f884612b65565b600061250447836123a1565b9050600061252760175461252186856122af90919063ffffffff16565b906123e3565b9050600061254460175461252187896122af90919063ffffffff16565b9050600061256160195461252188876122af90919063ffffffff16565b9050600061257e601954612521898b6122af90919063ffffffff16565b905060006125968361259088886123a1565b906123a1565b905060006125a8836125908c886123a1565b600b546040519192506000916060916001600160a01b03169089908481818185875af1925050503d80600081146125fb576040519150601f19603f3d011682016040523d82523d6000602084013e612600565b606091505b509150915081156126565761261930600189600061279d565b60408051888152905160019130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a361266f565b600b5461266f9088908a906001600160a01b0316612d74565b600c546040516001600160a01b03909116908790600081818185875af1925050503d80600081146126bc576040519150601f19603f3d011682016040523d82523d6000602084013e6126c1565b606091505b5090925090508115612718576126db30600187600061279d565b60408051868152905160019130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3612731565b600c5461273190869088906001600160a01b0316612d74565b612743838561273e61155d565b612d74565b604080518e8152602081018b90528082018e905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601b805460ff19169055505050505050505050505050565b806127aa576127aa61243c565b6001600160a01b03841660009081526009602052604090205460ff1680156127eb57506001600160a01b03831660009081526009602052604090205460ff16155b15612800576127fb848484612e5f565b6128fe565b6001600160a01b03841660009081526009602052604090205460ff1615801561284157506001600160a01b03831660009081526009602052604090205460ff165b15612851576127fb848484612f83565b6001600160a01b03841660009081526009602052604090205460ff1615801561289357506001600160a01b03831660009081526009602052604090205460ff16155b156128a3576127fb84848461302c565b6001600160a01b03841660009081526009602052604090205460ff1680156128e357506001600160a01b03831660009081526009602052604090205460ff165b156128f3576127fb848484613070565b6128fe84848461302c565b8061290b5761290b61249b565b50505050565b600e54600d546000918291825b600a54811015612a42578260046000600a848154811061293a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061299f57508160056000600a848154811061297857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156129b657600e54600d5494509450505050612a70565b6129f660046000600a84815481106129ca57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906123a1565b9250612a3860056000600a8481548110612a0c57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906123a1565b915060010161291e565b50600d54600e54612a52916122af565b821015612a6a57600e54600d54935093505050612a70565b90925090505b9091565b60008183612ac35760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612249578181015183820152602001612231565b506000838581612acf57fe5b0495945050505050565b600080600080612ae8856130e3565b90506000612af5866130ff565b90506000612b078261259089866123a1565b979296509094509092505050565b6000808080612b2488866123e3565b90506000612b3288876123e3565b90506000612b4088886123e3565b90506000612b528261259086866123a1565b939b939a50919850919650505050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612b9357fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612c0c57600080fd5b505afa158015612c20573d6000803e3d6000fd5b505050506040513d6020811015612c3657600080fd5b5051815182906001908110612c4757fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612c92307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ec3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612d37578181015183820152602001612d1f565b505050509050019650505050505050600060405180830381600087803b158015612d6057600080fd5b505af11580156121ed573d6000803e3d6000fd5b612d9f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d85611ec3565b6040805163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0383811660848301524260a483015291517f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9092169163f305d71991859160c480830192606092919082900301818588803b158015612e2d57600080fd5b505af1158015612e41573d6000803e3d6000fd5b50505050506040513d6060811015612e5857600080fd5b5050505050565b600080600080600080612e7187612352565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150612ea390886123a1565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054612ed290876123a1565b6001600160a01b03808b1660009081526004602052604080822093909355908a1681522054612f0190866122f8565b6001600160a01b038916600090815260046020526040902055612f2381613123565b612f2d84836131ac565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612f9587612352565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612fc790876123a1565b6001600160a01b03808b16600090815260046020908152604080832094909455918b16815260059091522054612ffd90846122f8565b6001600160a01b038916600090815260056020908152604080832093909355600490522054612f0190866122f8565b60008060008060008061303e87612352565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ed290876123a1565b60008060008060008061308287612352565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506130b490886123a1565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054612fc790876123a1565b6000610c2460646117c1601354856123e390919063ffffffff16565b6000610c2460646117c16019546017546015540101856123e390919063ffffffff16565b600061312d61228c565b9050600061313b83836123e3565b3060009081526004602052604090205490915061315890826122f8565b3060009081526004602090815260408083209390935560099052205460ff16156131a7573060009081526005602052604090205461319690846122f8565b306000908152600560205260409020555b505050565b600e546131b990836123a1565b600e55600f546131c990826122f8565b600f55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d066ffa387dc2980e491c0bc3481529fcad2d21d63e3b94c7b85e8eeeadde45d64736f6c634300060c0033

Deployed Bytecode Sourcemap

25859:23111:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34995:157;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34995:157:0;;:::i;:::-;;28931:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29934:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29934:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;27061:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;31136:87;;;;;;;;;;;;;:::i;34803:180::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34803:180:0;;:::i;27195:51::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;27195:51:0;;;;;;;;;;;;;;29208:95;;;;;;;;;;;;;:::i;34295:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34295:127:0;-1:-1:-1;;;;;34295:127:0;;:::i;30103:394::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30103:394:0;;;;;;;;;;;;;;;;;:::i;34434:108::-;;;;;;;;;;;;;:::i;32186:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32186:253:0;;:::i;29117:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32902:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32902:479:0;-1:-1:-1;;;;;32902:479:0;;:::i;30505:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30505:218:0;;;;;;;;:::i;26770:26::-;;;;;;;;;;;;;:::i;31357:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31357:377:0;;:::i;34047:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34047:111:0;-1:-1:-1;;;;;34047:111:0;;:::i;31742:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31742:436:0;;;;;;;;;:::i;27253:38::-;;;;;;;;;;;;;:::i;27332:40::-;;;;;;;;;;;;;:::i;36349:231::-;;;;;;;;;;;;;:::i;32447:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32447:447:0;-1:-1:-1;;;;;32447:447:0;;:::i;40196:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40196:123:0;-1:-1:-1;;;;;40196:123:0;;:::i;31235:108::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31235:108:0;;:::i;15778:90::-;;;;;;;;;;;;;:::i;26857:32::-;;;;;;;;;;;;;:::i;29311:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29311:198:0;-1:-1:-1;;;;;29311:198:0;;:::i;16430:148::-;;;;;;;;;;;;;:::i;35164:240::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35164:240:0;;:::i;27385:55::-;;;;;;;;;;;;;:::i;34170:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34170:113:0;-1:-1:-1;;;;;34170:113:0;;:::i;35927:195::-;;;;;;;;;;;;;:::i;31008:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31008:120:0;-1:-1:-1;;;;;31008:120:0;;:::i;26962:30::-;;;;;;;;;;;;;:::i;15687:79::-;;;;;;;;;;;;;:::i;35416:194::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35416:194:0;;:::i;29022:87::-;;;;;;;;;;;;;:::i;30731:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30731:269:0;;;;;;;;:::i;17452:305::-;;;;;;;;;;;;;:::i;29521:254::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29521:254:0;;;;;;;;:::i;16985:89::-;;;;;;;;;;;;;:::i;35622:104::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35622:104:0;;:::i;35734:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35734:171:0;;;;:::i;17150:226::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17150:226:0;;:::i;29783:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29783:143:0;;;;;;;;;;:::i;34681:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34681:110:0;-1:-1:-1;;;;;34681:110:0;;:::i;36136:164::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36136:164:0;;:::i;16733:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16733:244:0;-1:-1:-1;;;;;16733:244:0;;:::i;28811:106::-;;;;;;;;;;;;;:::i;34554:115::-;;;;;;;;;;;;;:::i;34995:157::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;35077:1:::1;35067:7;:11:::0;35102:2:::1;35092:12:::0;::::1;35089:54;;35118:7;:16:::0;;;35089:54:::1;34995:157:::0;:::o;28931:83::-;29001:5;28994:12;;;;;;;;-1:-1:-1;;28994:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28968:13;;28994:12;;29001:5;;28994:12;;29001:5;28994:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28931:83;:::o;29934:161::-;30009:4;30026:39;30035:12;:10;:12::i;:::-;30049:7;30058:6;30026:8;:39::i;:::-;-1:-1:-1;30083:4:0;29934:161;;;;;:::o;27061:41::-;;;;:::o;31136:87::-;31205:10;;31136:87;:::o;34803:180::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;34897:1:::1;34883:11;:15:::0;34926:1:::1;34912:15:::0;::::1;34909:65;;34941:11;:24:::0;34803:180::o;27195:51::-;;;:::o;29208:95::-;29288:7;;29208:95;:::o;34295:127::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;34382:20:::1;:32:::0;;-1:-1:-1;;;;;;34382:32:0::1;-1:-1:-1::0;;;;;34382:32:0;;;::::1;::::0;;;::::1;::::0;;34295:127::o;30103:394::-;-1:-1:-1;;;;;30244:16:0;;30201:4;30244:16;;;:8;:16;;;;;;30226:15;:34;30218:70;;;;;-1:-1:-1;;;30218:70:0;;;;;;;;;;;;-1:-1:-1;;;30218:70:0;;;;;;;;;;;;;;;30299:36;30309:6;30317:9;30328:6;30299:9;:36::i;:::-;30346:121;30355:6;30363:12;:10;:12::i;:::-;30377:89;30415:6;30377:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30377:19:0;;;;;;:11;:19;;;;;;30397:12;:10;:12::i;:::-;-1:-1:-1;;;;;30377:33:0;;;;;;;;;;;;-1:-1:-1;30377:33:0;;;:89;:37;:89::i;:::-;30346:8;:121::i;:::-;-1:-1:-1;30485:4:0;30103:394;;;;;:::o;34434:108::-;34519:15;;-1:-1:-1;;;;;34519:15:0;34434:108;:::o;32186:253::-;32252:7;32291;;32280;:18;;32272:73;;;;-1:-1:-1;;;32272:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32356:19;32379:10;:8;:10::i;:::-;32356:33;-1:-1:-1;32407:24:0;:7;32356:33;32407:11;:24::i;:::-;32400:31;;;32186:253;;;;:::o;29117:83::-;29183:9;;;;29117:83;:::o;32902:479::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32984:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32976:60;;;::::0;;-1:-1:-1;;;32976:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33052:9;33047:327;33071:9;:16:::0;33067:20;::::1;33047:327;;;33129:7;-1:-1:-1::0;;;;;33113:23:0::1;:9;33123:1;33113:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33113:12:0::1;:23;33109:254;;;33172:9;33182:16:::0;;-1:-1:-1;;33182:20:0;;;33172:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33157:9:::1;:12:::0;;-1:-1:-1;;;;;33172:31:0;;::::1;::::0;33167:1;;33157:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33157:46:0::1;-1:-1:-1::0;;;;;33157:46:0;;::::1;;::::0;;33222:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33261:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33261:28:0::1;::::0;;33308:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33308:15:0;;;;;-1:-1:-1;;;;;;33308:15:0::1;::::0;;;;;33342:5:::1;;33109:254;33089:3;;33047:327;;;;32902:479:::0;:::o;30505:218::-;30593:4;30610:83;30619:12;:10;:12::i;:::-;30633:7;30642:50;30681:10;30642:11;:25;30654:12;:10;:12::i;:::-;-1:-1:-1;;;;;30642:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30642:25:0;;;:34;;;;;;;;;;;:38;:50::i;26770:26::-;;;;:::o;31357:377::-;31409:14;31426:12;:10;:12::i;:::-;-1:-1:-1;;;;;31458:19:0;;;;;;:11;:19;;;;;;31409:29;;-1:-1:-1;31458:19:0;;31457:20;31449:77;;;;-1:-1:-1;;;31449:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31538:15;31562:19;31573:7;31562:10;:19::i;:::-;-1:-1:-1;;;;;;;;;31610:15:0;;;;;;:7;:15;;;;;;31537:44;;-1:-1:-1;31610:28:0;;:15;-1:-1:-1;31537:44:0;31610:19;:28::i;:::-;-1:-1:-1;;;;;31592:15:0;;;;;;:7;:15;;;;;:46;31659:7;;:20;;31671:7;31659:11;:20::i;:::-;31649:7;:30;31703:10;;:23;;31718:7;31703:14;:23::i;:::-;31690:10;:36;-1:-1:-1;;;31357:377:0:o;34047:111::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34116:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;34116:34:0::1;34146:4;34116:34;::::0;;34047:111::o;31742:436::-;31832:7;31871;;31860;:18;;31852:62;;;;;-1:-1:-1;;;31852:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31930:17;31925:246;;31965:15;31989:19;32000:7;31989:10;:19::i;:::-;-1:-1:-1;31964:44:0;;-1:-1:-1;32023:14:0;;-1:-1:-1;;;;;32023:14:0;31925:246;32072:23;32103:19;32114:7;32103:10;:19::i;:::-;-1:-1:-1;32070:52:0;;-1:-1:-1;32137:22:0;;-1:-1:-1;;;;;32137:22:0;27253:38;;;:::o;27332:40::-;;;;;;;;;:::o;36349:231::-;36425:12;:10;:12::i;:::-;-1:-1:-1;;;;;36409:28:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;36409:28:0;;36401:68;;;;;-1:-1:-1;;;36401:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36480:25;36508:12;:10;:12::i;:::-;36531:41;;36480:40;;-1:-1:-1;;;;;;36531:18:0;;;36550:21;36531:41;;;;;;;;;36550:21;36531:18;:41;;;;;;;;;;;;;;;;;;;32447:447;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32644:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32643:21;32635:61;;;::::0;;-1:-1:-1;;;32635:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32710:16:0;::::1;32729:1;32710:16:::0;;;:7:::1;:16;::::0;;;;;:20;32707:108:::1;;-1:-1:-1::0;;;;;32786:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32766:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32747:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32707:108:::1;-1:-1:-1::0;;;;;32825:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32825:27:0::1;32848:4;32825:27:::0;;::::1;::::0;;;32863:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32863:23:0::1;::::0;;::::1;::::0;;32447:447::o;40196:123::-;-1:-1:-1;;;;;40284:27:0;40260:4;40284:27;;;:18;:27;;;;;;;;;40196:123::o;31235:108::-;31331:4;31313:15;:22;31288:8;:22;31297:12;:10;:12::i;:::-;-1:-1:-1;;;;;31288:22:0;;;;;;;;;;;;-1:-1:-1;31288:22:0;:47;-1:-1:-1;31235:108:0:o;15778:90::-;15849:11;;-1:-1:-1;;;;;15849:11:0;15778:90;:::o;26857:32::-;;;;:::o;29311:198::-;-1:-1:-1;;;;;29401:20:0;;29377:7;29401:20;;;:11;:20;;;;;;;;29397:49;;;-1:-1:-1;;;;;;29430:16:0;;;;;;:7;:16;;;;;;29423:23;;29397:49;-1:-1:-1;;;;;29484:16:0;;;;;;:7;:16;;;;;;29464:37;;:19;:37::i;16430:148::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;16537:1:::1;16521:6:::0;;16500:40:::1;::::0;-1:-1:-1;;;;;16521:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16500:40:0;16537:1;;16500:40:::1;16568:1;16551:19:::0;;-1:-1:-1;;;;;;16551:19:0::1;::::0;;16430:148::o;35164:240::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;35285:1:::1;35260:22;:26:::0;35325:1:::1;35300:26:::0;::::1;35297:98;;35340:22;:46:::0;35164:240::o;27385:55::-;;;;:::o;34170:113::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;34250:15:::1;:25:::0;;-1:-1:-1;;;;;;34250:25:0::1;-1:-1:-1::0;;;;;34250:25:0;;;::::1;::::0;;;::::1;::::0;;34170:113::o;35927:195::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;35998:51:::1;36033:5;35998:16;36010:3;35998:7;;:11;;:16;;;;:::i;:::-;:20:::0;::::1;:51::i;:::-;35983:12;:66:::0;36060:14:::1;:12;:14::i;:::-;36085:21;:29:::0;;-1:-1:-1;;36085:29:0::1;::::0;;35927:195::o;31008:120::-;-1:-1:-1;;;;;31100:20:0;31076:4;31100:20;;;:11;:20;;;;;;;;;31008:120::o;26962:30::-;;;;:::o;15687:79::-;15725:7;15752:6;-1:-1:-1;;;;;15752:6:0;15687:79;:::o;35416:194::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;35516:1:::1;35500:13;:17:::0;35547:3:::1;35531:19:::0;::::1;35528:73;;35564:13;:28:::0;35416:194::o;29022:87::-;29094:7;29087:14;;;;;;;;-1:-1:-1;;29087:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29061:13;;29087:14;;29094:7;;29087:14;;29094:7;29087:14;;;;;;;;;;;;;;;;;;;;;;;;30731:269;30824:4;30841:129;30850:12;:10;:12::i;:::-;30864:7;30873:96;30912:15;30873:96;;;;;;;;;;;;;;;;;:11;:25;30885:12;:10;:12::i;:::-;-1:-1:-1;;;;;30873:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30873:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17452:305::-;17504:14;;-1:-1:-1;;;;;17504:14:0;17522:10;17504:28;17496:76;;;;-1:-1:-1;;;17496:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17609:9;;17591:15;:27;17583:72;;;;;-1:-1:-1;;;17583:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17700:14;;;17692:6;;17671:44;;-1:-1:-1;;;;;17700:14:0;;;;17692:6;;;;-1:-1:-1;;;;;;;;;;;17671:44:0;;17735:14;;;17726:23;;-1:-1:-1;;;;;;17726:23:0;-1:-1:-1;;;;;17735:14:0;;;17726:23;;;;;;17452:305::o;29521:254::-;29599:4;29642:8;:22;29651:12;:10;:12::i;:::-;-1:-1:-1;;;;;29642:22:0;-1:-1:-1;;;;;29642:22:0;;;;;;;;;;;;;29624:15;:40;29616:76;;;;;-1:-1:-1;;;29616:76:0;;;;;;;;;;;;-1:-1:-1;;;29616:76:0;;;;;;;;;;;;;;;29703:42;29713:12;:10;:12::i;:::-;29727:9;29738:6;29703:9;:42::i;16985:89::-;17057:9;;16985:89;:::o;35622:104::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;35710:8:::1;35702:16;35687:12;:31:::0;35622:104::o;35734:171::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;35811:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;35811:32:0;;::::1;::::0;;;::::1;::::0;;;35859:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;35734:171:::0;:::o;17150:226::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;17231:6:::1;::::0;;;17214:23;;-1:-1:-1;;;;;;17214:23:0;;::::1;-1:-1:-1::0;;;;;17231:6:0;::::1;17214:23;::::0;;;17248:19:::1;::::0;;17290:15:::1;:22:::0;::::1;17278:9;:34:::0;17328:40:::1;::::0;17231:6;;-1:-1:-1;;;;;;;;;;;17328:40:0;17231:6;;17328:40:::1;17150:226:::0;:::o;29783:143::-;-1:-1:-1;;;;;29891:18:0;;;29864:7;29891:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29783:143::o;34681:110::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34748:27:0::1;34778:5;34748:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;34748:35:0::1;::::0;;34681:110::o;36136:164::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;36219:8:::1;36211:16:::0;::::1;36196:12;:31:::0;36238:15:::1;:13;:15::i;:::-;-1:-1:-1::0;36264:21:0::1;:28:::0;;-1:-1:-1;;36264:28:0::1;;;::::0;;36136:164::o;16733:244::-;16011:12;:10;:12::i;:::-;16001:6;;-1:-1:-1;;;;;16001:6:0;;;:22;;;15993:67;;;;;-1:-1:-1;;;15993:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15993:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16822:22:0;::::1;16814:73;;;;-1:-1:-1::0;;;16814:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16924:6;::::0;;16903:38:::1;::::0;-1:-1:-1;;;;;16903:38:0;;::::1;::::0;16924:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16903:38:0;::::1;16952:6;:17:::0;;-1:-1:-1;;;;;;16952:17:0::1;-1:-1:-1::0;;;;;16952:17:0;;;::::1;::::0;;;::::1;::::0;;16733:244::o;28811:106::-;28860:7;28887:8;:22;28896:12;:10;:12::i;:::-;-1:-1:-1;;;;;28887:22:0;-1:-1:-1;;;;;28887:22:0;;;;;;;;;;;;;28880:29;;28811:106;:::o;34554:115::-;34641:20;;-1:-1:-1;;;;;34641:20:0;34554:115;:::o;8018:106::-;8106:10;8018:106;:::o;40327:337::-;-1:-1:-1;;;;;40420:19:0;;40412:68;;;;-1:-1:-1;;;40412:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40499:21:0;;40491:68;;;;-1:-1:-1;;;40491:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40572:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;40624:32;;;;;;;;;;;;;;;;;40327:337;;;:::o;40672:1813::-;-1:-1:-1;;;;;40794:18:0;;40786:68;;;;-1:-1:-1;;;40786:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40873:16:0;;40865:64;;;;-1:-1:-1;;;40865:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40957:1;40948:6;:10;40940:64;;;;-1:-1:-1;;;40940:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41026:7;:5;:7::i;:::-;-1:-1:-1;;;;;41018:15:0;:4;-1:-1:-1;;;;;41018:15:0;;;:32;;;;;41043:7;:5;:7::i;:::-;-1:-1:-1;;;;;41037:13:0;:2;-1:-1:-1;;;;;41037:13:0;;;41018:32;41015:125;;;41083:12;;41073:6;:22;;41065:75;;;;-1:-1:-1;;;41065:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41435:28;41466:24;41484:4;41466:9;:24::i;:::-;41435:55;;41538:12;;41514:20;:36;41511:112;;-1:-1:-1;41599:12:0;;41511:112;41694:29;;41670:53;;;;;;;41752;;-1:-1:-1;41789:16:0;;;;41788:17;41752:53;:91;;;;;41830:13;-1:-1:-1;;;;;41822:21:0;:4;-1:-1:-1;;;;;41822:21:0;;;41752:91;:129;;;;-1:-1:-1;41860:21:0;;;;;;;41752:129;41734:318;;;41931:29;;41908:52;;42004:36;42019:20;42004:14;:36::i;:::-;-1:-1:-1;;;;;42260:24:0;;42133:12;42260:24;;;:18;:24;;;;;;42148:4;;42260:24;;;:50;;-1:-1:-1;;;;;;42288:22:0;;;;;;:18;:22;;;;;;;;42260:50;42257:96;;;-1:-1:-1;42336:5:0;42257:96;42439:38;42454:4;42459:2;42462:6;42469:7;42439:14;:38::i;:::-;40672:1813;;;;;;:::o;4428:192::-;4514:7;4550:12;4542:6;;;;4534:29;;;;-1:-1:-1;;;4534:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4586:5:0;;;4428:192::o;37956:163::-;37997:7;38018:15;38035;38054:19;:17;:19::i;:::-;38017:56;;-1:-1:-1;38017:56:0;-1:-1:-1;38091:20:0;38017:56;;38091:11;:20::i;:::-;38084:27;;;;37956:163;:::o;5826:132::-;5884:7;5911:39;5915:1;5918;5911:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5904:46;5826:132;-1:-1:-1;;;5826:132:0:o;3525:181::-;3583:7;3615:5;;;3639:6;;;;3631:46;;;;;-1:-1:-1;;;3631:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;36743:419;36802:7;36811;36820;36829;36838;36847;36868:23;36893:12;36907:18;36929:20;36941:7;36929:11;:20::i;:::-;36867:82;;;;;;36961:15;36978:23;37003:12;37019:50;37031:7;37040:4;37046:10;37058;:8;:10::i;:::-;37019:11;:50::i;:::-;36960:109;;;;-1:-1:-1;36960:109:0;;-1:-1:-1;37120:15:0;;-1:-1:-1;37137:4:0;;-1:-1:-1;37143:10:0;;-1:-1:-1;36743:419:0;;-1:-1:-1;;;;;36743:419:0:o;3989:136::-;4047:7;4074:43;4078:1;4081;4074:43;;;;;;;;;;;;;;;;;:3;:43::i;4879:471::-;4937:7;5182:6;5178:47;;-1:-1:-1;5212:1:0;5205:8;;5178:47;5249:5;;;5253:1;5249;:5;:1;5273:5;;;;;:10;5265:56;;;;-1:-1:-1;;;5265:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39463:474;39509:7;;:12;:34;;;;-1:-1:-1;39525:13:0;;:18;39509:34;:65;;;;-1:-1:-1;39547:22:0;;:27;39509:65;:85;;;;-1:-1:-1;39578:11:0;;:16;39509:85;39506:97;;;39596:7;;39506:97;39641:7;;;39623:15;:25;39683:13;;;39659:21;:37;39729:11;;;39707:19;:33;39784:22;;;39751:30;:55;-1:-1:-1;39827:11:0;;;;39849:17;;;;39877:15;;;39903:26;39463:474;:::o;39949:235::-;40003:15;;39993:7;:25;40045:21;;40029:13;:37;40091:19;;40077:11;:33;40146:30;;40121:22;:55;39949:235::o;42499:2726::-;27971:16;:23;;-1:-1:-1;;27971:23:0;27990:4;27971:23;;;:16;42650:27:::1;:20:::0;42675:1:::1;42650:24;:27::i;:::-;42635:42:::0;-1:-1:-1;42688:17:0::1;42708:30;:20:::0;42635:42;42708:24:::1;:30::i;:::-;42812:11;::::0;42796:13:::1;::::0;42771:22:::1;::::0;42688:50;;-1:-1:-1;42771:38:0;;;::::1;:52;43126:21;43192:22;43209:4:::0;43192:16:::1;:22::i;:::-;43345:18;43366:41;:21;43392:14:::0;43366:25:::1;:41::i;:::-;43345:62;;43498:22;43523:44;43555:11;;43523:27;43538:11;43523:10;:14;;:27;;;;:::i;:::-;:31:::0;::::1;:44::i;:::-;43498:69;;43578:22;43603:43;43634:11;;43603:26;43617:11;43603:9;:13;;:26;;;;:::i;:43::-;43578:68;;43738:24;43765:55;43797:22;;43765:27;43780:11;43765:10;:14;;:27;;;;:::i;:55::-;43738:82;;43831:24;43858:54;43889:22;;43858:26;43872:11;43858:9;:13;;:26;;;;:::i;:54::-;43831:81:::0;-1:-1:-1;43933:20:0::1;43956:52;43991:16:::0;43956:30:::1;:10:::0;43971:14;43956::::1;:30::i;:::-;:34:::0;::::1;:52::i;:::-;43933:75:::0;-1:-1:-1;44019:17:0::1;44039:51;44073:16:::0;44039:29:::1;:9:::0;44053:14;44039:13:::1;:29::i;:51::-;44164:15;::::0;:47:::1;::::0;44019:71;;-1:-1:-1;44132:9:0::1;::::0;44143:17:::1;::::0;-1:-1:-1;;;;;44164:15:0::1;::::0;44192:14;;44132:9;44164:47;44132:9;44164:47;44192:14;44164:15;:47:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44131:80;;;;44225:4;44222:328;;;44245:96;44268:4;44275:42;44319:14;44335:5;44245:14;:96::i;:::-;44361:83;::::0;;;;;;;44385:42:::1;::::0;44378:4:::1;::::0;44361:83:::1;::::0;;;;::::1;::::0;;::::1;44222:328;;;44522:15;::::0;44477:61:::1;::::0;44490:14;;44506;;-1:-1:-1;;;;;44522:15:0::1;44477:12;:61::i;:::-;44585:20;::::0;:54:::1;::::0;-1:-1:-1;;;;;44585:20:0;;::::1;::::0;44618:16;;44585:20:::1;:54:::0;:20;:54;44618:16;44585:20;:54:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;44570:69:0;;-1:-1:-1;44570:69:0;-1:-1:-1;44650:341:0;::::1;;;44673:98;44696:4;44703:42;44747:16;44765:5;44673:14;:98::i;:::-;44791:85;::::0;;;;;;;44815:42:::1;::::0;44808:4:::1;::::0;44791:85:::1;::::0;;;;::::1;::::0;;::::1;44650:341;;;44958:20;::::0;44909:70:::1;::::0;44922:16;;44940;;-1:-1:-1;;;;;44958:20:0::1;44909:12;:70::i;:::-;45048:51;45061:9;45072:12;45086;:10;:12::i;:::-;45048;:51::i;:::-;45174:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;28017:16:0;:24;;-1:-1:-1;;28017:24:0;;;-1:-1:-1;;;;;;;;;;;;42499:2726:0:o;46453:834::-;46564:7;46560:40;;46586:14;:12;:14::i;:::-;-1:-1:-1;;;;;46625:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;46649:22:0;;;;;;:11;:22;;;;;;;;46648:23;46625:46;46621:597;;;46688:48;46710:6;46718:9;46729:6;46688:21;:48::i;:::-;46621:597;;;-1:-1:-1;;;;;46759:19:0;;;;;;:11;:19;;;;;;;;46758:20;:46;;;;-1:-1:-1;;;;;;46782:22:0;;;;;;:11;:22;;;;;;;;46758:46;46754:464;;;46821:46;46841:6;46849:9;46860:6;46821:19;:46::i;46754:464::-;-1:-1:-1;;;;;46890:19:0;;;;;;:11;:19;;;;;;;;46889:20;:47;;;;-1:-1:-1;;;;;;46914:22:0;;;;;;:11;:22;;;;;;;;46913:23;46889:47;46885:333;;;46953:44;46971:6;46979:9;46990:6;46953:17;:44::i;46885:333::-;-1:-1:-1;;;;;47019:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;47042:22:0;;;;;;:11;:22;;;;;;;;47019:45;47015:203;;;47081:48;47103:6;47111:9;47122:6;47081:21;:48::i;47015:203::-;47162:44;47180:6;47188:9;47199:6;47162:17;:44::i;:::-;47242:7;47238:41;;47264:15;:13;:15::i;:::-;46453:834;;;;:::o;38127:561::-;38224:7;;38260;;38177;;;;;38284:289;38308:9;:16;38304:20;;38284:289;;;38374:7;38350;:21;38358:9;38368:1;38358:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38358:12:0;38350:21;;;;;;;;;;;;;:31;;:66;;;38409:7;38385;:21;38393:9;38403:1;38393:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38393:12:0;38385:21;;;;;;;;;;;;;:31;38350:66;38346:97;;;38426:7;;38435;;38418:25;;;;;;;;;38346:97;38468:34;38480:7;:21;38488:9;38498:1;38488:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38488:12:0;38480:21;;;;;;;;;;;;;38468:7;;:11;:34::i;:::-;38458:44;;38527:34;38539:7;:21;38547:9;38557:1;38547:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38547:12:0;38539:21;;;;;;;;;;;;;38527:7;;:11;:34::i;:::-;38517:44;-1:-1:-1;38326:3:0;;38284:289;;;-1:-1:-1;38609:7:0;;38597;;:20;;:11;:20::i;:::-;38587:7;:30;38583:61;;;38627:7;;38636;;38619:25;;;;;;;;38583:61;38663:7;;-1:-1:-1;38672:7:0;-1:-1:-1;38127:561:0;;;:::o;6454:278::-;6540:7;6575:12;6568:5;6560:28;;;;-1:-1:-1;;;6560:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6599:9;6615:1;6611;:5;;;;;;;6454:278;-1:-1:-1;;;;;6454:278:0:o;37170:341::-;37230:7;37239;37248;37268:12;37283:24;37299:7;37283:15;:24::i;:::-;37268:39;;37318:18;37339:41;37372:7;37339:32;:41::i;:::-;37318:62;-1:-1:-1;37391:23:0;37417:33;37318:62;37417:17;:7;37429:4;37417:11;:17::i;:33::-;37391:59;37486:4;;-1:-1:-1;37492:10:0;;-1:-1:-1;37170:341:0;;-1:-1:-1;;;37170:341:0:o;37519:429::-;37634:7;;;;37690:24;:7;37702:11;37690;:24::i;:::-;37672:42;-1:-1:-1;37725:12:0;37740:21;:4;37749:11;37740:8;:21::i;:::-;37725:36;-1:-1:-1;37772:18:0;37793:27;:10;37808:11;37793:14;:27::i;:::-;37772:48;-1:-1:-1;37831:23:0;37857:33;37772:48;37857:17;:7;37869:4;37857:11;:17::i;:33::-;37909:7;;;;-1:-1:-1;37935:4:0;;-1:-1:-1;37519:429:0;;-1:-1:-1;;;;;;;37519:429:0:o;45239:589::-;45389:16;;;45403:1;45389:16;;;45365:21;45389:16;;;;;45365:21;45389:16;;;;;;;;;;-1:-1:-1;45389:16:0;45365:40;;45434:4;45416;45421:1;45416:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;45416:23:0;;;-1:-1:-1;;;;;45416:23:0;;;;;45460:15;-1:-1:-1;;;;;45460:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45460:22:0;45450:7;;:4;;45455:1;;45450:7;;;;;;;;;;;:32;-1:-1:-1;;;;;45450:32:0;;;-1:-1:-1;;;;;45450:32:0;;;;;45495:62;45512:4;45527:15;45545:11;45495:8;:62::i;:::-;45596:15;-1:-1:-1;;;;;45596:66:0;;45677:11;45703:1;45747:4;45774;45794:15;45596:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45596:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45836:530;46001:62;46018:4;46033:15;46051:11;46001:8;:62::i;:::-;46106:252;;;-1:-1:-1;;;46106:252:0;;46178:4;46106:252;;;;;;;;;;-1:-1:-1;46106:252:0;;;;;;;;;;-1:-1:-1;;;;;46106:252:0;;;;;;;46332:15;46106:252;;;;;;:15;:31;;;;;;46145:9;;46106:252;;;;;;;;;;;;;;46145:9;46106:31;:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45836:530:0:o;48399:566::-;48502:15;48519:23;48544:12;48558:23;48583:12;48597:18;48619:19;48630:7;48619:10;:19::i;:::-;-1:-1:-1;;;;;48667:15:0;;;;;;:7;:15;;;;;;48501:137;;-1:-1:-1;48501:137:0;;-1:-1:-1;48501:137:0;;-1:-1:-1;48501:137:0;-1:-1:-1;48501:137:0;-1:-1:-1;48501:137:0;-1:-1:-1;48667:28:0;;48687:7;48667:19;:28::i;:::-;-1:-1:-1;;;;;48649:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48724:7;:15;;;;:28;;48744:7;48724:19;:28::i;:::-;-1:-1:-1;;;;;48706:15:0;;;;;;;:7;:15;;;;;;:46;;;;48784:18;;;;;;;:39;;48807:15;48784:22;:39::i;:::-;-1:-1:-1;;;;;48763:18:0;;;;;;:7;:18;;;;;:60;48837:26;48852:10;48837:14;:26::i;:::-;48874:23;48886:4;48892;48874:11;:23::i;:::-;48930:9;-1:-1:-1;;;;;48913:44:0;48922:6;-1:-1:-1;;;;;48913:44:0;;48941:15;48913:44;;;;;;;;;;;;;;;;;;48399:566;;;;;;;;;:::o;47805:586::-;47906:15;47923:23;47948:12;47962:23;47987:12;48001:18;48023:19;48034:7;48023:10;:19::i;:::-;-1:-1:-1;;;;;48071:15:0;;;;;;:7;:15;;;;;;47905:137;;-1:-1:-1;47905:137:0;;-1:-1:-1;47905:137:0;;-1:-1:-1;47905:137:0;-1:-1:-1;47905:137:0;-1:-1:-1;47905:137:0;-1:-1:-1;48071:28:0;;47905:137;48071:19;:28::i;:::-;-1:-1:-1;;;;;48053:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;48131:18;;;;;:7;:18;;;;;:39;;48154:15;48131:22;:39::i;:::-;-1:-1:-1;;;;;48110:18:0;;;;;;:7;:18;;;;;;;;:60;;;;48202:7;:18;;;;:39;;48225:15;48202:22;:39::i;47295:502::-;47394:15;47411:23;47436:12;47450:23;47475:12;47489:18;47511:19;47522:7;47511:10;:19::i;:::-;-1:-1:-1;;;;;47559:15:0;;;;;;:7;:15;;;;;;47393:137;;-1:-1:-1;47393:137:0;;-1:-1:-1;47393:137:0;;-1:-1:-1;47393:137:0;-1:-1:-1;47393:137:0;-1:-1:-1;47393:137:0;-1:-1:-1;47559:28:0;;47393:137;47559:19;:28::i;33393:642::-;33496:15;33513:23;33538:12;33552:23;33577:12;33591:18;33613:19;33624:7;33613:10;:19::i;:::-;-1:-1:-1;;;;;33661:15:0;;;;;;:7;:15;;;;;;33495:137;;-1:-1:-1;33495:137:0;;-1:-1:-1;33495:137:0;;-1:-1:-1;33495:137:0;-1:-1:-1;33495:137:0;-1:-1:-1;33495:137:0;-1:-1:-1;33661:28:0;;33681:7;33661:19;:28::i;:::-;-1:-1:-1;;;;;33643:15:0;;;;;;:7;:15;;;;;;;;:46;;;;33718:7;:15;;;;:28;;33738:7;33718:19;:28::i;39067:154::-;39131:7;39158:55;39197:5;39158:20;39170:7;;39158;:11;;:20;;;;:::i;39229:216::-;39310:7;39337:100;39421:5;39337:65;39379:22;;39365:11;;39349:13;;:27;:52;39337:7;:11;;:65;;;;:::i;38700:355::-;38763:19;38786:10;:8;:10::i;:::-;38763:33;-1:-1:-1;38807:18:0;38828:27;:10;38763:33;38828:14;:27::i;:::-;38907:4;38891:22;;;;:7;:22;;;;;;38807:48;;-1:-1:-1;38891:38:0;;38807:48;38891:26;:38::i;:::-;38882:4;38866:22;;;;:7;:22;;;;;;;;:63;;;;38943:11;:26;;;;;;38940:107;;;39025:4;39009:22;;;;:7;:22;;;;;;:38;;39036:10;39009:26;:38::i;:::-;39000:4;38984:22;;;;:7;:22;;;;;:63;38940:107;38700:355;;;:::o;36588:147::-;36666:7;;:17;;36678:4;36666:11;:17::i;:::-;36656:7;:27;36707:10;;:20;;36722:4;36707:14;:20::i;:::-;36694:10;:33;-1:-1:-1;;36588:147:0:o

Swarm Source

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