ETH Price: $3,265.76 (-1.35%)
Gas: 12 Gwei

Token

QUESO (QUESO)
 

Overview

Max Total Supply

1,000,000,000,000 QUESO

Holders

70

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,486,299,560.703845952 QUESO

Value
$0.00
0x719aE4f6ed9220caDfE869Fa44dF189053DE7b8D
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:
QUESO

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-09
*/

/**

░██████╗░██╗░░░██╗███████╗░██████╗░█████╗░
██╔═══██╗██║░░░██║██╔════╝██╔════╝██╔══██╗
██║██╗██║██║░░░██║█████╗░░╚█████╗░██║░░██║
╚██████╔╝██║░░░██║██╔══╝░░░╚═══██╗██║░░██║
░╚═██╔═╝░╚██████╔╝███████╗██████╔╝╚█████╔╝
░░░╚═╝░░░░╚═════╝░╚══════╝╚═════╝░░╚════╝░

Tg: https://t.me/queso_token_eth 
*/

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.0;

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


abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() external virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function startTrading() external virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


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

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

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

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

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

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

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

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

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = 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 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 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 QUESO is Context, IERC20, Ownable, Pausable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _whiteList;

    address public deadAddress = 0x000000000000000000000000000000000000dEaD;

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

    string private _name = "QUESO";
    string private _symbol = "QUESO";
    uint8 private _decimals = 9;
    
     //Buy Fees
    uint256 public _buyTaxFee = 0;
    uint256 public _buyLiquidityFee = 1;
    uint256 public _buyMarketingFee = 8;
    uint256 public _buyBurnFee = 1;

    //Sell Fees
    uint256 public _sellTaxFee = 0;
    uint256 public _sellMarketingFee = 23;
    uint256 public _sellLiquidityFee = 1;
    uint256 public _sellBurnFee = 1;

    // Fees (Current)
    uint256 private _taxFee;
    uint256 private _marketingFee;
    uint256 private _liquidityFee;
    uint256 private _burnFee;
    address payable public marketingWallet = payable(0x3186c671bD325E73057fbf2880Af0ccb129E689f);

    IUniswapV2Router02 public  uniswapV2Router;
    address public  uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public numTokensSellToAddToLiquidity = 1000000000 * 10**9; //0.1%
    uint256 public _maxTxAmount = 20000000000 * 10**9;
    uint256 public maxBuyTransactionAmount = 5000000000 * 10**9;  //0.5%
    uint256 public maxWalletToken = 10000000000 * 10**9; //1%
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor() {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function 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(!_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);
    }
    

    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

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

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

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

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

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

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

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0 && _marketingFee==0 && _burnFee==0) return;

        
        _taxFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
        _burnFee = 0;
    }
    

    
    function isWhiteListed(address account) public view returns(bool) {
        return _whiteList[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
    ) whenNotPaused() private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        
        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead) &&
            to != uniswapV2Pair
        ) {

            uint256 contractBalanceRecepient = balanceOf(to);
            require(
                contractBalanceRecepient + amount <= maxWalletToken,
                "Exceeds maximum wallet token amount."
            );
            
        }
        
        
        if(from == uniswapV2Pair &&  !isWhiteListed(to)){
            require(amount <= maxBuyTransactionAmount, "Buy transfer amount exceeds the maxBuyTransactionAmount.");
        }

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));        
        bool overMinTokenBalance = contractTokenBalance >= 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(isWhiteListed(from) || isWhiteListed(to)){
            takeFee = false;
        }

        // Set buy fees
        if(from == uniswapV2Pair || from.isContract()) {
            _taxFee = _buyTaxFee;
            _marketingFee = _buyMarketingFee;
            _liquidityFee = _buyLiquidityFee;
            _burnFee = _buyBurnFee;
        }
        
        // Set sell fees
        if(to == uniswapV2Pair || to.isContract()) {
            _taxFee = _sellTaxFee;
            _marketingFee = _sellMarketingFee;
            _liquidityFee = _sellLiquidityFee; 
            _burnFee = _sellBurnFee;           
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 combineFees = _liquidityFee.add(_marketingFee); // marketing + liquidity fees
        uint256 tokensForLiquidity = contractTokenBalance.mul(_liquidityFee).div(combineFees); 
        
        uint256 tokensForMarketing = contractTokenBalance.sub(tokensForLiquidity);
        
        // split the Liquidity tokens balance into halves
        uint256 half = tokensForLiquidity.div(2);
        uint256 otherHalf = tokensForLiquidity.sub(half);

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

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

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

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
        
        uint256 contractBalance = address(this).balance;
        swapTokensForEth(tokensForMarketing);
        uint256 transferredBalance = address(this).balance.sub(contractBalance);
        
        //Send to Marketing address
        transferToAddressETH(marketingWallet, transferredBalance);
    }

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

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

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

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

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount) private 
    {
        if(_whiteList[sender] || _whiteList[recipient])
        {   
           removeAllFee(); 
        }
        else  
        {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
        }

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



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


    function takeBurn(address sender, uint256 tTransferAmount, uint256 rTransferAmount, uint256 tAmount) private
    returns (uint256, uint256)
    {
        if(_burnFee==0) {  return(tTransferAmount, rTransferAmount); }
        uint256 tBurn = tAmount.div(100).mul(_burnFee);
        uint256 rBurn = tBurn.mul(_getRate());
        rTransferAmount = rTransferAmount.sub(rBurn);
        tTransferAmount = tTransferAmount.sub(tBurn);
        _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurn);
        emit Transfer(sender, deadAddress, tBurn);
        return(tTransferAmount, rTransferAmount);
    }


    function takeMarketing(address sender, uint256 tTransferAmount, uint256 rTransferAmount, uint256 tAmount) private
    returns (uint256, uint256)
    {
        if(_marketingFee==0) {  return(tTransferAmount, rTransferAmount); }
        uint256 tMarketing = tAmount.div(100).mul(_marketingFee);
        uint256 rMarketing = tMarketing.mul(_getRate());
        rTransferAmount = rTransferAmount.sub(rMarketing);
        tTransferAmount = tTransferAmount.sub(tMarketing);
        _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing);
        emit Transfer(sender, address(this), tMarketing);
        return(tTransferAmount, rTransferAmount); 
    }


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

    function excludeFromFee(address account) public onlyOwner {
        _whiteList[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _whiteList[account] = false;
    }
    
    function setMarketingWallet(address payable newWallet) external onlyOwner() {
        marketingWallet = newWallet;
    }
    
   
    function setBuyFeePercent(uint256 taxFee, uint256 MarketingFee, uint256 liquidityFee, uint256 burnFee) external onlyOwner() {
        _buyTaxFee = taxFee;
        _buyMarketingFee = MarketingFee;
        _buyLiquidityFee = liquidityFee;
        _buyBurnFee = burnFee;
    }

    function setSellFeePercent(uint256 taxFee, uint256 MarketingFee, uint256 liquidityFee, uint256 burnFee) external onlyOwner() {
        _sellTaxFee = taxFee;
        _sellMarketingFee = MarketingFee;
        _sellLiquidityFee = liquidityFee;
        _sellBurnFee = burnFee;
    }
    
    function setNumTokensSellToAddToLiquidity(uint256 newAmt) external onlyOwner() {
        numTokensSellToAddToLiquidity = newAmt*10**_decimals;
    }
    
    function setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        require(maxTxAmount > 0, "Cannot set transaction amount as zero");
        _maxTxAmount = maxTxAmount * 10**_decimals;
    }

    function setMaxBuytx(uint256 _newAmount) public onlyOwner {
        maxBuyTransactionAmount = _newAmount * 10**_decimals;
    }

    function setMaxWalletToken(uint256 _maxToken) external onlyOwner {
  	    maxWalletToken = _maxToken * 10**_decimals;
  	}
    
    //New router address?
    //No problem, just change it here!
    function setRouterAddress(address newRouter) public onlyOwner() {
        IUniswapV2Router02 _newPancakeRouter = IUniswapV2Router02(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this), _newPancakeRouter.WETH());
        uniswapV2Router = _newPancakeRouter;
    }
    
    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
    function transferToAddressETH(address payable recipient, uint256 amount) private {
        recipient.transfer(amount);
    }
    
}

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":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"_buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyTaxFee","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":"_pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhiteListed","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":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"MarketingFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setBuyFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setMaxBuytx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToken","type":"uint256"}],"name":"setMaxWalletToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmt","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"MarketingFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setSellFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600880546001600160a01b03191661dead179055683635c9adc5dea00000600b8190556200003590600019620005bc565b62000043906000196200055b565b600c5560408051808201909152600580825264515545534f60d81b60209092019182526200007491600e9162000462565b5060408051808201909152600580825264515545534f60d81b6020909201918252620000a391600f9162000462565b506010805460ff1916600917905560006011819055600160128190556008601355601481905560159190915560176016819055819055601855601d80546001600160a01b031916733186c671bd325e73057fbf2880af0ccb129e689f179055601f805460ff60a81b1916600160a81b179055670de0b6b3a76400006020556801158e460913d00000602155674563918244f40000602255678ac7230489e800006023553480156200015357600080fd5b506000620001606200044f565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506003805460ff19169055600c5460046000620001c56200044f565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023c57600080fd5b505afa15801562000251573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000277919062000508565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002c057600080fd5b505afa158015620002d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002fb919062000508565b6040518363ffffffff1660e01b81526004016200031a92919062000538565b602060405180830381600087803b1580156200033557600080fd5b505af11580156200034a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000370919062000508565b601f80546001600160a01b03199081166001600160a01b0393841617909155601e8054909116918316919091179055600160076000620003af62000453565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526007909252902080549091166001179055620003f96200044f565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b5460405162000440919062000552565b60405180910390a350620005dd565b3390565b6000546001600160a01b031690565b82805462000470906200057f565b90600052602060002090601f016020900481019282620004945760008555620004df565b82601f10620004af57805160ff1916838001178555620004df565b82800160010185558215620004df579182015b82811115620004df578251825591602001919060010190620004c2565b50620004ed929150620004f1565b5090565b5b80821115620004ed5760008155600101620004f2565b6000602082840312156200051a578081fd5b81516001600160a01b038116811462000531578182fd5b9392505050565b6001600160a01b0392831681529116602082015260400190565b90815260200190565b6000828210156200057a57634e487b7160e01b81526011600452602481fd5b500390565b6002810460018216806200059457607f821691505b60208210811415620005b657634e487b7160e01b600052602260045260246000fd5b50919050565b600082620005d857634e487b7160e01b81526012600452602481fd5b500690565b61374380620005ed6000396000f3fe60806040526004361061036f5760003560e01c806375f0a874116101c6578063b6c52324116100f7578063dd62ed3e11610095578063ec28438a1161006f578063ec28438a14610913578063efcc52de14610933578063f0f165af14610948578063f2fde38b1461096857610376565b8063dd62ed3e146108be578063e6c75f71146108de578063ea2f0b37146108f357610376565b8063c8607952116100d1578063c86079521461085f578063d12a768814610874578063dc44b6a014610889578063dd4670641461089e57610376565b8063b6c5232414610815578063c49b9a801461082a578063c5d241891461084a57610376565b806395d89b4111610164578063a68bacf31161013e578063a68bacf3146107a0578063a69df4b5146107c0578063a9059cbb146107d5578063afee32a9146107f557610376565b806395d89b411461074b5780639d854b6314610760578063a457c2d71461078057610376565b806388790a68116101a057806388790a68146106e157806388f82020146106f65780638da5cb5b1461071657806391d55f411461072b57610376565b806375f0a874146106a25780637abdc1ca146106b75780637d1db4a5146106cc57610376565b806339509351116102a057806352390c021161023e5780635d098b38116102185780635d098b381461062d5780636f9170f61461064d57806370a082311461066d578063715018a61461068d57610376565b806352390c02146105e35780635aa821a9146106035780635c975abb1461061857610376565b8063437823ec1161027a578063437823ec146105795780634549b0391461059957806349bd5a5e146105b95780634a74bb02146105ce57610376565b806339509351146105195780633bd5d1731461053957806341cb87fc1461055957610376565b806323b872dd1161030d5780632d838119116102e75780632d838119146104a2578063313ce567146104c2578063320b2ad9146104e45780633685d419146104f957610376565b806323b872dd1461045657806327c8f83514610476578063293230b81461048b57610376565b80631694505e116103495780631694505e146103f557806316f2f1a81461041757806318160ddd1461042c578063200a692d1461044157610376565b806306fdde031461037b578063095ea7b3146103a657806313114a9d146103d357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610988565b60405161039d9190612ea5565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612d4b565b610a1a565b60405161039d9190612e9a565b3480156103df57600080fd5b506103e8610a38565b60405161039d9190613403565b34801561040157600080fd5b5061040a610a3e565b60405161039d9190612e31565b34801561042357600080fd5b506103e8610a4d565b34801561043857600080fd5b506103e8610a53565b34801561044d57600080fd5b506103e8610a59565b34801561046257600080fd5b506103c6610471366004612d0b565b610a5f565b34801561048257600080fd5b5061040a610ae7565b34801561049757600080fd5b506104a0610af6565b005b3480156104ae57600080fd5b506103e86104bd366004612d90565b610b6d565b3480156104ce57600080fd5b506104d7610bb0565b60405161039d9190613492565b3480156104f057600080fd5b506104a0610bb9565b34801561050557600080fd5b506104a0610514366004612c9b565b610c14565b34801561052557600080fd5b506103c6610534366004612d4b565b610ddf565b34801561054557600080fd5b506104a0610554366004612d90565b610e2d565b34801561056557600080fd5b506104a0610574366004612c9b565b610ee8565b34801561058557600080fd5b506104a0610594366004612c9b565b6110b4565b3480156105a557600080fd5b506103e86105b4366004612da8565b61110d565b3480156105c557600080fd5b5061040a61116a565b3480156105da57600080fd5b506103c6611179565b3480156105ef57600080fd5b506104a06105fe366004612c9b565b611189565b34801561060f57600080fd5b506103e86112b7565b34801561062457600080fd5b506103c66112bd565b34801561063957600080fd5b506104a0610648366004612c9b565b6112c6565b34801561065957600080fd5b506103c6610668366004612c9b565b61131d565b34801561067957600080fd5b506103e8610688366004612c9b565b61133b565b34801561069957600080fd5b506104a061139d565b3480156106ae57600080fd5b5061040a61140a565b3480156106c357600080fd5b506103e8611419565b3480156106d857600080fd5b506103e861141f565b3480156106ed57600080fd5b506103e8611425565b34801561070257600080fd5b506103c6610711366004612c9b565b61142b565b34801561072257600080fd5b5061040a611449565b34801561073757600080fd5b506104a0610746366004612d90565b611458565b34801561075757600080fd5b506103906114ae565b34801561076c57600080fd5b506104a061077b366004612e00565b6114bd565b34801561078c57600080fd5b506103c661079b366004612d4b565b611506565b3480156107ac57600080fd5b506104a06107bb366004612d90565b61156e565b3480156107cc57600080fd5b506104a06115c4565b3480156107e157600080fd5b506103c66107f0366004612d4b565b61165e565b34801561080157600080fd5b506104a0610810366004612e00565b611672565b34801561082157600080fd5b506103e86116bb565b34801561083657600080fd5b506104a0610845366004612d76565b6116c1565b34801561085657600080fd5b506103e8611748565b34801561086b57600080fd5b506103e861174e565b34801561088057600080fd5b506103e8611754565b34801561089557600080fd5b506103e861175a565b3480156108aa57600080fd5b506104a06108b9366004612d90565b611760565b3480156108ca57600080fd5b506103e86108d9366004612cd3565b6117f0565b3480156108ea57600080fd5b506103e861181b565b3480156108ff57600080fd5b506104a061090e366004612c9b565b611821565b34801561091f57600080fd5b506104a061092e366004612d90565b611877565b34801561093f57600080fd5b506103e86118ed565b34801561095457600080fd5b506104a0610963366004612d90565b6118f3565b34801561097457600080fd5b506104a0610983366004612c9b565b611949565b6060600e80546109979061361c565b80601f01602080910402602001604051908101604052809291908181526020018280546109c39061361c565b8015610a105780601f106109e557610100808354040283529160200191610a10565b820191906000526020600020905b8154815290600101906020018083116109f357829003601f168201915b5050505050905090565b6000610a2e610a276119ed565b84846119f1565b5060015b92915050565b600d5490565b601e546001600160a01b031681565b60145481565b600b5490565b60155481565b6000610a6c848484611aa5565b610adc84610a786119ed565b610ad7856040518060600160405280602881526020016136a1602891396001600160a01b038a16600090815260066020526040812090610ab66119ed565b6001600160a01b031681526020810191909152604001600020549190611d53565b6119f1565b5060015b9392505050565b6008546001600160a01b031681565b610afe6112bd565b610b235760405162461bcd60e51b8152600401610b1a90612ef8565b60405180910390fd5b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610b566119ed565b604051610b639190612e31565b60405180910390a1565b6000600c54821115610b915760405162461bcd60e51b8152600401610b1a90612f6b565b6000610b9b611d8d565b9050610ba78382611db0565b9150505b919050565b60105460ff1690565b610bc16112bd565b15610bde5760405162461bcd60e51b8152600401610b1a906130ab565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b566119ed565b610c1c6119ed565b6000546001600160a01b03908116911614610c495760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03811660009081526009602052604090205460ff16610c815760405162461bcd60e51b8152600401610b1a90613074565b60005b600a54811015610ddb57816001600160a01b0316600a8281548110610cb957634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610dc957600a8054610ce490600190613605565b81548110610d0257634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a80546001600160a01b039092169183908110610d3c57634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600990925220805460ff19169055600a805480610da257634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055610ddb565b80610dd381613657565b915050610c84565b5050565b6000610a2e610dec6119ed565b84610ad78560066000610dfd6119ed565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611df2565b6000610e376119ed565b6001600160a01b03811660009081526009602052604090205490915060ff1615610e735760405162461bcd60e51b8152600401610b1a90613374565b6000610e7e83611e21565b505050506001600160a01b038416600090815260046020526040902054919250610eaa91905082611e70565b6001600160a01b038316600090815260046020526040902055600c54610ed09082611e70565b600c55600d54610ee09084611df2565b600d55505050565b610ef06119ed565b6000546001600160a01b03908116911614610f1d5760405162461bcd60e51b8152600401610b1a906131d9565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610f5b57600080fd5b505afa158015610f6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f939190612cb7565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610fdb57600080fd5b505afa158015610fef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110139190612cb7565b6040518363ffffffff1660e01b8152600401611030929190612e45565b602060405180830381600087803b15801561104a57600080fd5b505af115801561105e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110829190612cb7565b601f80546001600160a01b039283166001600160a01b031991821617909155601e805493909216921691909117905550565b6110bc6119ed565b6000546001600160a01b039081169116146110e95760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000600b548311156111315760405162461bcd60e51b8152600401610b1a906130d5565b8161115057600061114184611e21565b50939550610a32945050505050565b600061115b84611e21565b50929550610a32945050505050565b601f546001600160a01b031681565b601f54600160a81b900460ff1681565b6111916119ed565b6000546001600160a01b039081169116146111be5760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03811660009081526009602052604090205460ff16156111f75760405162461bcd60e51b8152600401610b1a90613074565b6001600160a01b03811660009081526004602052604090205415611251576001600160a01b03811660009081526004602052604090205461123790610b6d565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60225481565b60035460ff1690565b6112ce6119ed565b6000546001600160a01b039081169116146112fb5760405162461bcd60e51b8152600401610b1a906131d9565b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b6001600160a01b03811660009081526009602052604081205460ff161561137b57506001600160a01b038116600090815260056020526040902054610bab565b6001600160a01b038216600090815260046020526040902054610a3290610b6d565b6113a56119ed565b6000546001600160a01b039081169116146113d25760405162461bcd60e51b8152600401610b1a906131d9565b600080546040516001600160a01b03909116906000805160206136c9833981519152908390a3600080546001600160a01b0319169055565b601d546001600160a01b031681565b60185481565b60215481565b60175481565b6001600160a01b031660009081526009602052604090205460ff1690565b6000546001600160a01b031690565b6114606119ed565b6000546001600160a01b0390811691161461148d5760405162461bcd60e51b8152600401610b1a906131d9565b60105461149e9060ff16600a613515565b6114a890826135e6565b60235550565b6060600f80546109979061361c565b6114c56119ed565b6000546001600160a01b039081169116146114f25760405162461bcd60e51b8152600401610b1a906131d9565b601593909355601691909155601755601855565b6000610a2e6115136119ed565b84610ad7856040518060600160405280602581526020016136e9602591396006600061153d6119ed565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611d53565b6115766119ed565b6000546001600160a01b039081169116146115a35760405162461bcd60e51b8152600401610b1a906131d9565b6010546115b49060ff16600a613515565b6115be90826135e6565b60225550565b6001546001600160a01b031633146115ee5760405162461bcd60e51b8152600401610b1a906133c0565b600254421161160f5760405162461bcd60e51b8152600401610b1a906132e0565b600154600080546040516001600160a01b0393841693909116916000805160206136c983398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a2e61166b6119ed565b8484611aa5565b61167a6119ed565b6000546001600160a01b039081169116146116a75760405162461bcd60e51b8152600401610b1a906131d9565b601193909355601391909155601255601455565b60025490565b6116c96119ed565b6000546001600160a01b039081169116146116f65760405162461bcd60e51b8152600401610b1a906131d9565b601f805460ff60a81b1916600160a81b831515021790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061173d908390612e9a565b60405180910390a150565b60135481565b60165481565b60205481565b60125481565b6117686119ed565b6000546001600160a01b039081169116146117955760405162461bcd60e51b8152600401610b1a906131d9565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556117c481426134a0565b600255600080546040516001600160a01b03909116906000805160206136c9833981519152908390a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60235481565b6118296119ed565b6000546001600160a01b039081169116146118565760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03166000908152600760205260409020805460ff19169055565b61187f6119ed565b6000546001600160a01b039081169116146118ac5760405162461bcd60e51b8152600401610b1a906131d9565b600081116118cc5760405162461bcd60e51b8152600401610b1a90612f26565b6010546118dd9060ff16600a613515565b6118e790826135e6565b60215550565b60115481565b6118fb6119ed565b6000546001600160a01b039081169116146119285760405162461bcd60e51b8152600401610b1a906131d9565b6010546119399060ff16600a613515565b61194390826135e6565b60205550565b6119516119ed565b6000546001600160a01b0390811691161461197e5760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b0381166119a45760405162461bcd60e51b8152600401610b1a90612fb5565b600080546040516001600160a01b03808516939216916000805160206136c983398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611a175760405162461bcd60e51b8152600401610b1a9061329c565b6001600160a01b038216611a3d5760405162461bcd60e51b8152600401610b1a90612ffb565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611a98908590613403565b60405180910390a3505050565b611aad6112bd565b15611aca5760405162461bcd60e51b8152600401610b1a906130ab565b6001600160a01b038316611af05760405162461bcd60e51b8152600401610b1a90613257565b60008111611b105760405162461bcd60e51b8152600401610b1a9061320e565b611b18611449565b6001600160a01b0316836001600160a01b031614158015611b525750611b3c611449565b6001600160a01b0316826001600160a01b031614155b8015611b6657506001600160a01b03821615155b8015611b7d57506001600160a01b03821661dead14155b8015611b975750601f546001600160a01b03838116911614155b15611bd7576000611ba78361133b565b602354909150611bb783836134a0565b1115611bd55760405162461bcd60e51b8152600401610b1a90613154565b505b601f546001600160a01b038481169116148015611bfa5750611bf88261131d565b155b15611c2157602254811115611c215760405162461bcd60e51b8152600401610b1a90613317565b6000611c2c3061133b565b60205490915081108015908190611c4d5750601f54600160a01b900460ff16155b8015611c675750601f546001600160a01b03868116911614155b8015611c7c5750601f54600160a81b900460ff165b15611c8f576020549150611c8f82611eb2565b6001611c9a8661131d565b80611ca95750611ca98561131d565b15611cb2575060005b601f546001600160a01b0387811691161480611cdb5750611cdb866001600160a01b0316611fcd565b15611cf957601154601955601354601a55601254601b55601454601c555b601f546001600160a01b0386811691161480611d225750611d22856001600160a01b0316611fcd565b15611d4057601554601955601654601a55601754601b55601854601c555b611d4b868686612009565b505050505050565b60008184841115611d775760405162461bcd60e51b8152600401610b1a9190612ea5565b506000611d848486613605565b95945050505050565b6000806000611d9a6121d5565b9092509050611da98282611db0565b9250505090565b6000610ae083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612392565b600080611dff83856134a0565b905083811015610ae05760405162461bcd60e51b8152600401610b1a9061303d565b6000806000806000806000806000611e388a6123c0565b9250925092506000806000611e568d8686611e51611d8d565b612402565b919f909e50909c50959a5093985091965092945050505050565b6000610ae083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d53565b601f805460ff60a01b1916600160a01b179055601a54601b54600091611ed89190611df2565b90506000611efb82611ef5601b548661245290919063ffffffff16565b90611db0565b90506000611f098483611e70565b90506000611f18836002611db0565b90506000611f268483611e70565b905047611f3283612497565b6000611f3e4783611e70565b9050611f4a8382612614565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611f7d9392919061347c565b60405180910390a147611f8f86612497565b6000611f9b4783611e70565b601d54909150611fb4906001600160a01b0316826126c6565b5050601f805460ff60a01b191690555050505050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061200157508115155b949350505050565b6001600160a01b03831660009081526007602052604090205460ff168061204857506001600160a01b03821660009081526007602052604090205460ff165b1561205a576120556126fc565b61207c565b60215481111561207c5760405162461bcd60e51b8152600401610b1a9061310c565b6001600160a01b03831660009081526009602052604090205460ff1680156120bd57506001600160a01b03821660009081526009602052604090205460ff16155b156120d2576120cd838383612745565b6121d0565b6001600160a01b03831660009081526009602052604090205460ff1615801561211357506001600160a01b03821660009081526009602052604090205460ff165b15612123576120cd838383612869565b6001600160a01b03831660009081526009602052604090205460ff1615801561216557506001600160a01b03821660009081526009602052604090205460ff16155b15612175576120cd838383612912565b6001600160a01b03831660009081526009602052604090205460ff1680156121b557506001600160a01b03821660009081526009602052604090205460ff165b156121c5576120cd838383612975565b6121d0838383612912565b505050565b600c54600b546000918291825b600a54811015612360578260046000600a848154811061221257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061228b57508160056000600a848154811061226457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156122a257600c54600b549450945050505061238e565b6122f660046000600a84815481106122ca57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e70565b925061234c60056000600a848154811061232057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e70565b91508061235881613657565b9150506121e2565b50600b54600c5461237091611db0565b82101561238857600c54600b5493509350505061238e565b90925090505b9091565b600081836123b35760405162461bcd60e51b8152600401610b1a9190612ea5565b506000611d8484866134b8565b6000806000806123cf856129e8565b905060006123dc86612a04565b905060006123f4826123ee8986611e70565b90611e70565b979296509094509092505050565b60008080806124118886612452565b9050600061241f8887612452565b9050600061242d8888612452565b9050600061243f826123ee8686611e70565b939b939a50919850919650505050505050565b60008261246157506000610a32565b600061246d83856135e6565b90508261247a85836134b8565b14610ae05760405162461bcd60e51b8152600401610b1a90613198565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124da57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601e54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561252e57600080fd5b505afa158015612542573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125669190612cb7565b8160018151811061258757634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601e546125ad91309116846119f1565b601e5460405163791ac94760e01b81526001600160a01b039091169063791ac947906125e690859060009086903090429060040161340c565b600060405180830381600087803b15801561260057600080fd5b505af1158015611d4b573d6000803e3d6000fd5b601e5461262c9030906001600160a01b0316846119f1565b601e546001600160a01b031663f305d71982308560008061264b611449565b426040518863ffffffff1660e01b815260040161266d96959493929190612e5f565b6060604051808303818588803b15801561268657600080fd5b505af115801561269a573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126bf9190612dd3565b5050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156121d0573d6000803e3d6000fd5b60195415801561270c5750601b54155b80156127185750601a54155b80156127245750601c54155b1561272e57612743565b60006019819055601b819055601a819055601c555b565b60008060008060008061275787611e21565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506127899088611e70565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546127b89087611e70565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546127e79086611df2565b6001600160a01b03891660009081526004602052604090205561280981612a20565b6128138483612aa8565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516128569190613403565b60405180910390a3505050505050505050565b60008060008060008061287b87611e21565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128ad9087611e70565b6001600160a01b03808b16600090815260046020908152604080832094909455918b168152600590915220546128e39084611df2565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546127e79086611df2565b60008060008060008061292487611e21565b95509550955095509550955061293c8984878a612acc565b9550925061294c8984878a612bcb565b6001600160a01b038b166000908152600460205260409020549096509093506127b89087611e70565b60008060008060008061298787611e21565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506129b99088611e70565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546128ad9087611e70565b6000610a326064611ef56019548561245290919063ffffffff16565b6000610a326064611ef5601b548561245290919063ffffffff16565b6000612a2a611d8d565b90506000612a388383612452565b30600090815260046020526040902054909150612a559082611df2565b3060009081526004602090815260408083209390935560099052205460ff16156121d05730600090815260056020526040902054612a939084611df2565b30600090815260056020526040902055505050565b600c54612ab59083611e70565b600c55600d54612ac59082611df2565b600d555050565b600080601c5460001415612ae4575083905082612bc2565b601c54600090612aff90612af9866064611db0565b90612452565b90506000612b15612b0e611d8d565b8390612452565b9050612b218682611e70565b9550612b2d8783611e70565b6008546001600160a01b0316600090815260046020526040902054909750612b559082611df2565b600880546001600160a01b0390811660009081526004602052604090819020939093559054915191811691908a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612bb1908690613403565b60405180910390a386869350935050505b94509492505050565b600080601a5460001415612be3575083905082612bc2565b601a54600090612bf890612af9866064611db0565b90506000612c07612b0e611d8d565b9050612c138682611e70565b9550612c1f8783611e70565b30600090815260046020526040902054909750612c3c9082611df2565b30600081815260046020526040908190209290925590516001600160a01b038a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612bb1908690613403565b80358015158114610bab57600080fd5b600060208284031215612cac578081fd5b8135610ae081613688565b600060208284031215612cc8578081fd5b8151610ae081613688565b60008060408385031215612ce5578081fd5b8235612cf081613688565b91506020830135612d0081613688565b809150509250929050565b600080600060608486031215612d1f578081fd5b8335612d2a81613688565b92506020840135612d3a81613688565b929592945050506040919091013590565b60008060408385031215612d5d578182fd5b8235612d6881613688565b946020939093013593505050565b600060208284031215612d87578081fd5b610ae082612c8b565b600060208284031215612da1578081fd5b5035919050565b60008060408385031215612dba578182fd5b82359150612dca60208401612c8b565b90509250929050565b600080600060608486031215612de7578283fd5b8351925060208401519150604084015190509250925092565b60008060008060808587031215612e15578081fd5b5050823594602084013594506040840135936060013592509050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b81811015612ed157858101830151858201604001528201612eb5565b81811115612ee25783604083870101525b50601f01601f1916929092016040019392505050565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526025908201527f43616e6e6f7420736574207472616e73616374696f6e20616d6f756e74206173604082015264207a65726f60d81b606082015260800190565b6020808252602a908201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260408201526965666c656374696f6e7360b01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601b908201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601f908201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604082015260600190565b60208082526028908201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546040820152673c20b6b7bab73a1760c11b606082015260800190565b60208082526024908201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6040820152633ab73a1760e11b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604082015260600190565b60208082526038908201527f427579207472616e7366657220616d6f756e742065786365656473207468652060408201527f6d61784275795472616e73616374696f6e416d6f756e742e0000000000000000606082015260800190565b6020808252602c908201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460408201526b3434b990333ab731ba34b7b760a11b606082015260800190565b60208082526023908201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6040820152626f636b60e81b606082015260800190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561345b5784516001600160a01b031683529383019391830191600101613436565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600082198211156134b3576134b3613672565b500190565b6000826134d357634e487b7160e01b81526012600452602481fd5b500490565b80825b60018086116134ea5750612bc2565b8187048211156134fc576134fc613672565b8086161561350957918102915b9490941c9380026134db565b6000610ae060001960ff85168460008261353157506001610ae0565b8161353e57506000610ae0565b8160018114613554576002811461355e5761358b565b6001915050610ae0565b60ff84111561356f5761356f613672565b6001841b91508482111561358557613585613672565b50610ae0565b5060208310610133831016604e8410600b84101617156135be575081810a838111156135b9576135b9613672565b610ae0565b6135cb84848460016134d8565b8086048211156135dd576135dd613672565b02949350505050565b600081600019048311821515161561360057613600613672565b500290565b60008282101561361757613617613672565b500390565b60028104600182168061363057607f821691505b6020821081141561365157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561366b5761366b613672565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461369d57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220107883b6249ce3570b4fc011cf3440ecdab00dbaf9460ea8aa2671112e08236f64736f6c63430008000033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c806375f0a874116101c6578063b6c52324116100f7578063dd62ed3e11610095578063ec28438a1161006f578063ec28438a14610913578063efcc52de14610933578063f0f165af14610948578063f2fde38b1461096857610376565b8063dd62ed3e146108be578063e6c75f71146108de578063ea2f0b37146108f357610376565b8063c8607952116100d1578063c86079521461085f578063d12a768814610874578063dc44b6a014610889578063dd4670641461089e57610376565b8063b6c5232414610815578063c49b9a801461082a578063c5d241891461084a57610376565b806395d89b4111610164578063a68bacf31161013e578063a68bacf3146107a0578063a69df4b5146107c0578063a9059cbb146107d5578063afee32a9146107f557610376565b806395d89b411461074b5780639d854b6314610760578063a457c2d71461078057610376565b806388790a68116101a057806388790a68146106e157806388f82020146106f65780638da5cb5b1461071657806391d55f411461072b57610376565b806375f0a874146106a25780637abdc1ca146106b75780637d1db4a5146106cc57610376565b806339509351116102a057806352390c021161023e5780635d098b38116102185780635d098b381461062d5780636f9170f61461064d57806370a082311461066d578063715018a61461068d57610376565b806352390c02146105e35780635aa821a9146106035780635c975abb1461061857610376565b8063437823ec1161027a578063437823ec146105795780634549b0391461059957806349bd5a5e146105b95780634a74bb02146105ce57610376565b806339509351146105195780633bd5d1731461053957806341cb87fc1461055957610376565b806323b872dd1161030d5780632d838119116102e75780632d838119146104a2578063313ce567146104c2578063320b2ad9146104e45780633685d419146104f957610376565b806323b872dd1461045657806327c8f83514610476578063293230b81461048b57610376565b80631694505e116103495780631694505e146103f557806316f2f1a81461041757806318160ddd1461042c578063200a692d1461044157610376565b806306fdde031461037b578063095ea7b3146103a657806313114a9d146103d357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610988565b60405161039d9190612ea5565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612d4b565b610a1a565b60405161039d9190612e9a565b3480156103df57600080fd5b506103e8610a38565b60405161039d9190613403565b34801561040157600080fd5b5061040a610a3e565b60405161039d9190612e31565b34801561042357600080fd5b506103e8610a4d565b34801561043857600080fd5b506103e8610a53565b34801561044d57600080fd5b506103e8610a59565b34801561046257600080fd5b506103c6610471366004612d0b565b610a5f565b34801561048257600080fd5b5061040a610ae7565b34801561049757600080fd5b506104a0610af6565b005b3480156104ae57600080fd5b506103e86104bd366004612d90565b610b6d565b3480156104ce57600080fd5b506104d7610bb0565b60405161039d9190613492565b3480156104f057600080fd5b506104a0610bb9565b34801561050557600080fd5b506104a0610514366004612c9b565b610c14565b34801561052557600080fd5b506103c6610534366004612d4b565b610ddf565b34801561054557600080fd5b506104a0610554366004612d90565b610e2d565b34801561056557600080fd5b506104a0610574366004612c9b565b610ee8565b34801561058557600080fd5b506104a0610594366004612c9b565b6110b4565b3480156105a557600080fd5b506103e86105b4366004612da8565b61110d565b3480156105c557600080fd5b5061040a61116a565b3480156105da57600080fd5b506103c6611179565b3480156105ef57600080fd5b506104a06105fe366004612c9b565b611189565b34801561060f57600080fd5b506103e86112b7565b34801561062457600080fd5b506103c66112bd565b34801561063957600080fd5b506104a0610648366004612c9b565b6112c6565b34801561065957600080fd5b506103c6610668366004612c9b565b61131d565b34801561067957600080fd5b506103e8610688366004612c9b565b61133b565b34801561069957600080fd5b506104a061139d565b3480156106ae57600080fd5b5061040a61140a565b3480156106c357600080fd5b506103e8611419565b3480156106d857600080fd5b506103e861141f565b3480156106ed57600080fd5b506103e8611425565b34801561070257600080fd5b506103c6610711366004612c9b565b61142b565b34801561072257600080fd5b5061040a611449565b34801561073757600080fd5b506104a0610746366004612d90565b611458565b34801561075757600080fd5b506103906114ae565b34801561076c57600080fd5b506104a061077b366004612e00565b6114bd565b34801561078c57600080fd5b506103c661079b366004612d4b565b611506565b3480156107ac57600080fd5b506104a06107bb366004612d90565b61156e565b3480156107cc57600080fd5b506104a06115c4565b3480156107e157600080fd5b506103c66107f0366004612d4b565b61165e565b34801561080157600080fd5b506104a0610810366004612e00565b611672565b34801561082157600080fd5b506103e86116bb565b34801561083657600080fd5b506104a0610845366004612d76565b6116c1565b34801561085657600080fd5b506103e8611748565b34801561086b57600080fd5b506103e861174e565b34801561088057600080fd5b506103e8611754565b34801561089557600080fd5b506103e861175a565b3480156108aa57600080fd5b506104a06108b9366004612d90565b611760565b3480156108ca57600080fd5b506103e86108d9366004612cd3565b6117f0565b3480156108ea57600080fd5b506103e861181b565b3480156108ff57600080fd5b506104a061090e366004612c9b565b611821565b34801561091f57600080fd5b506104a061092e366004612d90565b611877565b34801561093f57600080fd5b506103e86118ed565b34801561095457600080fd5b506104a0610963366004612d90565b6118f3565b34801561097457600080fd5b506104a0610983366004612c9b565b611949565b6060600e80546109979061361c565b80601f01602080910402602001604051908101604052809291908181526020018280546109c39061361c565b8015610a105780601f106109e557610100808354040283529160200191610a10565b820191906000526020600020905b8154815290600101906020018083116109f357829003601f168201915b5050505050905090565b6000610a2e610a276119ed565b84846119f1565b5060015b92915050565b600d5490565b601e546001600160a01b031681565b60145481565b600b5490565b60155481565b6000610a6c848484611aa5565b610adc84610a786119ed565b610ad7856040518060600160405280602881526020016136a1602891396001600160a01b038a16600090815260066020526040812090610ab66119ed565b6001600160a01b031681526020810191909152604001600020549190611d53565b6119f1565b5060015b9392505050565b6008546001600160a01b031681565b610afe6112bd565b610b235760405162461bcd60e51b8152600401610b1a90612ef8565b60405180910390fd5b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610b566119ed565b604051610b639190612e31565b60405180910390a1565b6000600c54821115610b915760405162461bcd60e51b8152600401610b1a90612f6b565b6000610b9b611d8d565b9050610ba78382611db0565b9150505b919050565b60105460ff1690565b610bc16112bd565b15610bde5760405162461bcd60e51b8152600401610b1a906130ab565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b566119ed565b610c1c6119ed565b6000546001600160a01b03908116911614610c495760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03811660009081526009602052604090205460ff16610c815760405162461bcd60e51b8152600401610b1a90613074565b60005b600a54811015610ddb57816001600160a01b0316600a8281548110610cb957634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610dc957600a8054610ce490600190613605565b81548110610d0257634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a80546001600160a01b039092169183908110610d3c57634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600990925220805460ff19169055600a805480610da257634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055610ddb565b80610dd381613657565b915050610c84565b5050565b6000610a2e610dec6119ed565b84610ad78560066000610dfd6119ed565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611df2565b6000610e376119ed565b6001600160a01b03811660009081526009602052604090205490915060ff1615610e735760405162461bcd60e51b8152600401610b1a90613374565b6000610e7e83611e21565b505050506001600160a01b038416600090815260046020526040902054919250610eaa91905082611e70565b6001600160a01b038316600090815260046020526040902055600c54610ed09082611e70565b600c55600d54610ee09084611df2565b600d55505050565b610ef06119ed565b6000546001600160a01b03908116911614610f1d5760405162461bcd60e51b8152600401610b1a906131d9565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610f5b57600080fd5b505afa158015610f6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f939190612cb7565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610fdb57600080fd5b505afa158015610fef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110139190612cb7565b6040518363ffffffff1660e01b8152600401611030929190612e45565b602060405180830381600087803b15801561104a57600080fd5b505af115801561105e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110829190612cb7565b601f80546001600160a01b039283166001600160a01b031991821617909155601e805493909216921691909117905550565b6110bc6119ed565b6000546001600160a01b039081169116146110e95760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000600b548311156111315760405162461bcd60e51b8152600401610b1a906130d5565b8161115057600061114184611e21565b50939550610a32945050505050565b600061115b84611e21565b50929550610a32945050505050565b601f546001600160a01b031681565b601f54600160a81b900460ff1681565b6111916119ed565b6000546001600160a01b039081169116146111be5760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03811660009081526009602052604090205460ff16156111f75760405162461bcd60e51b8152600401610b1a90613074565b6001600160a01b03811660009081526004602052604090205415611251576001600160a01b03811660009081526004602052604090205461123790610b6d565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60225481565b60035460ff1690565b6112ce6119ed565b6000546001600160a01b039081169116146112fb5760405162461bcd60e51b8152600401610b1a906131d9565b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b6001600160a01b03811660009081526009602052604081205460ff161561137b57506001600160a01b038116600090815260056020526040902054610bab565b6001600160a01b038216600090815260046020526040902054610a3290610b6d565b6113a56119ed565b6000546001600160a01b039081169116146113d25760405162461bcd60e51b8152600401610b1a906131d9565b600080546040516001600160a01b03909116906000805160206136c9833981519152908390a3600080546001600160a01b0319169055565b601d546001600160a01b031681565b60185481565b60215481565b60175481565b6001600160a01b031660009081526009602052604090205460ff1690565b6000546001600160a01b031690565b6114606119ed565b6000546001600160a01b0390811691161461148d5760405162461bcd60e51b8152600401610b1a906131d9565b60105461149e9060ff16600a613515565b6114a890826135e6565b60235550565b6060600f80546109979061361c565b6114c56119ed565b6000546001600160a01b039081169116146114f25760405162461bcd60e51b8152600401610b1a906131d9565b601593909355601691909155601755601855565b6000610a2e6115136119ed565b84610ad7856040518060600160405280602581526020016136e9602591396006600061153d6119ed565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611d53565b6115766119ed565b6000546001600160a01b039081169116146115a35760405162461bcd60e51b8152600401610b1a906131d9565b6010546115b49060ff16600a613515565b6115be90826135e6565b60225550565b6001546001600160a01b031633146115ee5760405162461bcd60e51b8152600401610b1a906133c0565b600254421161160f5760405162461bcd60e51b8152600401610b1a906132e0565b600154600080546040516001600160a01b0393841693909116916000805160206136c983398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a2e61166b6119ed565b8484611aa5565b61167a6119ed565b6000546001600160a01b039081169116146116a75760405162461bcd60e51b8152600401610b1a906131d9565b601193909355601391909155601255601455565b60025490565b6116c96119ed565b6000546001600160a01b039081169116146116f65760405162461bcd60e51b8152600401610b1a906131d9565b601f805460ff60a81b1916600160a81b831515021790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061173d908390612e9a565b60405180910390a150565b60135481565b60165481565b60205481565b60125481565b6117686119ed565b6000546001600160a01b039081169116146117955760405162461bcd60e51b8152600401610b1a906131d9565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556117c481426134a0565b600255600080546040516001600160a01b03909116906000805160206136c9833981519152908390a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60235481565b6118296119ed565b6000546001600160a01b039081169116146118565760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03166000908152600760205260409020805460ff19169055565b61187f6119ed565b6000546001600160a01b039081169116146118ac5760405162461bcd60e51b8152600401610b1a906131d9565b600081116118cc5760405162461bcd60e51b8152600401610b1a90612f26565b6010546118dd9060ff16600a613515565b6118e790826135e6565b60215550565b60115481565b6118fb6119ed565b6000546001600160a01b039081169116146119285760405162461bcd60e51b8152600401610b1a906131d9565b6010546119399060ff16600a613515565b61194390826135e6565b60205550565b6119516119ed565b6000546001600160a01b0390811691161461197e5760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b0381166119a45760405162461bcd60e51b8152600401610b1a90612fb5565b600080546040516001600160a01b03808516939216916000805160206136c983398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611a175760405162461bcd60e51b8152600401610b1a9061329c565b6001600160a01b038216611a3d5760405162461bcd60e51b8152600401610b1a90612ffb565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611a98908590613403565b60405180910390a3505050565b611aad6112bd565b15611aca5760405162461bcd60e51b8152600401610b1a906130ab565b6001600160a01b038316611af05760405162461bcd60e51b8152600401610b1a90613257565b60008111611b105760405162461bcd60e51b8152600401610b1a9061320e565b611b18611449565b6001600160a01b0316836001600160a01b031614158015611b525750611b3c611449565b6001600160a01b0316826001600160a01b031614155b8015611b6657506001600160a01b03821615155b8015611b7d57506001600160a01b03821661dead14155b8015611b975750601f546001600160a01b03838116911614155b15611bd7576000611ba78361133b565b602354909150611bb783836134a0565b1115611bd55760405162461bcd60e51b8152600401610b1a90613154565b505b601f546001600160a01b038481169116148015611bfa5750611bf88261131d565b155b15611c2157602254811115611c215760405162461bcd60e51b8152600401610b1a90613317565b6000611c2c3061133b565b60205490915081108015908190611c4d5750601f54600160a01b900460ff16155b8015611c675750601f546001600160a01b03868116911614155b8015611c7c5750601f54600160a81b900460ff165b15611c8f576020549150611c8f82611eb2565b6001611c9a8661131d565b80611ca95750611ca98561131d565b15611cb2575060005b601f546001600160a01b0387811691161480611cdb5750611cdb866001600160a01b0316611fcd565b15611cf957601154601955601354601a55601254601b55601454601c555b601f546001600160a01b0386811691161480611d225750611d22856001600160a01b0316611fcd565b15611d4057601554601955601654601a55601754601b55601854601c555b611d4b868686612009565b505050505050565b60008184841115611d775760405162461bcd60e51b8152600401610b1a9190612ea5565b506000611d848486613605565b95945050505050565b6000806000611d9a6121d5565b9092509050611da98282611db0565b9250505090565b6000610ae083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612392565b600080611dff83856134a0565b905083811015610ae05760405162461bcd60e51b8152600401610b1a9061303d565b6000806000806000806000806000611e388a6123c0565b9250925092506000806000611e568d8686611e51611d8d565b612402565b919f909e50909c50959a5093985091965092945050505050565b6000610ae083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d53565b601f805460ff60a01b1916600160a01b179055601a54601b54600091611ed89190611df2565b90506000611efb82611ef5601b548661245290919063ffffffff16565b90611db0565b90506000611f098483611e70565b90506000611f18836002611db0565b90506000611f268483611e70565b905047611f3283612497565b6000611f3e4783611e70565b9050611f4a8382612614565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611f7d9392919061347c565b60405180910390a147611f8f86612497565b6000611f9b4783611e70565b601d54909150611fb4906001600160a01b0316826126c6565b5050601f805460ff60a01b191690555050505050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061200157508115155b949350505050565b6001600160a01b03831660009081526007602052604090205460ff168061204857506001600160a01b03821660009081526007602052604090205460ff165b1561205a576120556126fc565b61207c565b60215481111561207c5760405162461bcd60e51b8152600401610b1a9061310c565b6001600160a01b03831660009081526009602052604090205460ff1680156120bd57506001600160a01b03821660009081526009602052604090205460ff16155b156120d2576120cd838383612745565b6121d0565b6001600160a01b03831660009081526009602052604090205460ff1615801561211357506001600160a01b03821660009081526009602052604090205460ff165b15612123576120cd838383612869565b6001600160a01b03831660009081526009602052604090205460ff1615801561216557506001600160a01b03821660009081526009602052604090205460ff16155b15612175576120cd838383612912565b6001600160a01b03831660009081526009602052604090205460ff1680156121b557506001600160a01b03821660009081526009602052604090205460ff165b156121c5576120cd838383612975565b6121d0838383612912565b505050565b600c54600b546000918291825b600a54811015612360578260046000600a848154811061221257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061228b57508160056000600a848154811061226457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156122a257600c54600b549450945050505061238e565b6122f660046000600a84815481106122ca57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e70565b925061234c60056000600a848154811061232057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e70565b91508061235881613657565b9150506121e2565b50600b54600c5461237091611db0565b82101561238857600c54600b5493509350505061238e565b90925090505b9091565b600081836123b35760405162461bcd60e51b8152600401610b1a9190612ea5565b506000611d8484866134b8565b6000806000806123cf856129e8565b905060006123dc86612a04565b905060006123f4826123ee8986611e70565b90611e70565b979296509094509092505050565b60008080806124118886612452565b9050600061241f8887612452565b9050600061242d8888612452565b9050600061243f826123ee8686611e70565b939b939a50919850919650505050505050565b60008261246157506000610a32565b600061246d83856135e6565b90508261247a85836134b8565b14610ae05760405162461bcd60e51b8152600401610b1a90613198565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124da57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601e54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561252e57600080fd5b505afa158015612542573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125669190612cb7565b8160018151811061258757634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601e546125ad91309116846119f1565b601e5460405163791ac94760e01b81526001600160a01b039091169063791ac947906125e690859060009086903090429060040161340c565b600060405180830381600087803b15801561260057600080fd5b505af1158015611d4b573d6000803e3d6000fd5b601e5461262c9030906001600160a01b0316846119f1565b601e546001600160a01b031663f305d71982308560008061264b611449565b426040518863ffffffff1660e01b815260040161266d96959493929190612e5f565b6060604051808303818588803b15801561268657600080fd5b505af115801561269a573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126bf9190612dd3565b5050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156121d0573d6000803e3d6000fd5b60195415801561270c5750601b54155b80156127185750601a54155b80156127245750601c54155b1561272e57612743565b60006019819055601b819055601a819055601c555b565b60008060008060008061275787611e21565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506127899088611e70565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546127b89087611e70565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546127e79086611df2565b6001600160a01b03891660009081526004602052604090205561280981612a20565b6128138483612aa8565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516128569190613403565b60405180910390a3505050505050505050565b60008060008060008061287b87611e21565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128ad9087611e70565b6001600160a01b03808b16600090815260046020908152604080832094909455918b168152600590915220546128e39084611df2565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546127e79086611df2565b60008060008060008061292487611e21565b95509550955095509550955061293c8984878a612acc565b9550925061294c8984878a612bcb565b6001600160a01b038b166000908152600460205260409020549096509093506127b89087611e70565b60008060008060008061298787611e21565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506129b99088611e70565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546128ad9087611e70565b6000610a326064611ef56019548561245290919063ffffffff16565b6000610a326064611ef5601b548561245290919063ffffffff16565b6000612a2a611d8d565b90506000612a388383612452565b30600090815260046020526040902054909150612a559082611df2565b3060009081526004602090815260408083209390935560099052205460ff16156121d05730600090815260056020526040902054612a939084611df2565b30600090815260056020526040902055505050565b600c54612ab59083611e70565b600c55600d54612ac59082611df2565b600d555050565b600080601c5460001415612ae4575083905082612bc2565b601c54600090612aff90612af9866064611db0565b90612452565b90506000612b15612b0e611d8d565b8390612452565b9050612b218682611e70565b9550612b2d8783611e70565b6008546001600160a01b0316600090815260046020526040902054909750612b559082611df2565b600880546001600160a01b0390811660009081526004602052604090819020939093559054915191811691908a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612bb1908690613403565b60405180910390a386869350935050505b94509492505050565b600080601a5460001415612be3575083905082612bc2565b601a54600090612bf890612af9866064611db0565b90506000612c07612b0e611d8d565b9050612c138682611e70565b9550612c1f8783611e70565b30600090815260046020526040902054909750612c3c9082611df2565b30600081815260046020526040908190209290925590516001600160a01b038a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612bb1908690613403565b80358015158114610bab57600080fd5b600060208284031215612cac578081fd5b8135610ae081613688565b600060208284031215612cc8578081fd5b8151610ae081613688565b60008060408385031215612ce5578081fd5b8235612cf081613688565b91506020830135612d0081613688565b809150509250929050565b600080600060608486031215612d1f578081fd5b8335612d2a81613688565b92506020840135612d3a81613688565b929592945050506040919091013590565b60008060408385031215612d5d578182fd5b8235612d6881613688565b946020939093013593505050565b600060208284031215612d87578081fd5b610ae082612c8b565b600060208284031215612da1578081fd5b5035919050565b60008060408385031215612dba578182fd5b82359150612dca60208401612c8b565b90509250929050565b600080600060608486031215612de7578283fd5b8351925060208401519150604084015190509250925092565b60008060008060808587031215612e15578081fd5b5050823594602084013594506040840135936060013592509050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b81811015612ed157858101830151858201604001528201612eb5565b81811115612ee25783604083870101525b50601f01601f1916929092016040019392505050565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526025908201527f43616e6e6f7420736574207472616e73616374696f6e20616d6f756e74206173604082015264207a65726f60d81b606082015260800190565b6020808252602a908201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260408201526965666c656374696f6e7360b01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601b908201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601f908201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604082015260600190565b60208082526028908201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546040820152673c20b6b7bab73a1760c11b606082015260800190565b60208082526024908201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6040820152633ab73a1760e11b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604082015260600190565b60208082526038908201527f427579207472616e7366657220616d6f756e742065786365656473207468652060408201527f6d61784275795472616e73616374696f6e416d6f756e742e0000000000000000606082015260800190565b6020808252602c908201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460408201526b3434b990333ab731ba34b7b760a11b606082015260800190565b60208082526023908201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6040820152626f636b60e81b606082015260800190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561345b5784516001600160a01b031683529383019391830191600101613436565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600082198211156134b3576134b3613672565b500190565b6000826134d357634e487b7160e01b81526012600452602481fd5b500490565b80825b60018086116134ea5750612bc2565b8187048211156134fc576134fc613672565b8086161561350957918102915b9490941c9380026134db565b6000610ae060001960ff85168460008261353157506001610ae0565b8161353e57506000610ae0565b8160018114613554576002811461355e5761358b565b6001915050610ae0565b60ff84111561356f5761356f613672565b6001841b91508482111561358557613585613672565b50610ae0565b5060208310610133831016604e8410600b84101617156135be575081810a838111156135b9576135b9613672565b610ae0565b6135cb84848460016134d8565b8086048211156135dd576135dd613672565b02949350505050565b600081600019048311821515161561360057613600613672565b500290565b60008282101561361757613617613672565b500390565b60028104600182168061363057607f821691505b6020821081141561365157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561366b5761366b613672565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461369d57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220107883b6249ce3570b4fc011cf3440ecdab00dbaf9460ea8aa2671112e08236f64736f6c63430008000033

Deployed Bytecode Sourcemap

28048:23257:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31026:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31938:161;;;;;;;;;;-1:-1:-1;31938:161:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;33059:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29503:42::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29026:30::-;;;;;;;;;;;;;:::i;31303:95::-;;;;;;;;;;;;;:::i;29082:30::-;;;;;;;;;;;;;:::i;32107:313::-;;;;;;;;;;-1:-1:-1;32107:313:0;;;;;:::i;:::-;;:::i;28408:71::-;;;;;;;;;;;;;:::i;10752:124::-;;;;;;;;;;;;;:::i;:::-;;33983:253;;;;;;;;;;-1:-1:-1;33983:253:0;;;;;:::i;:::-;;:::i;31212:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10493:118::-;;;;;;;;;;;;;:::i;34585:479::-;;;;;;;;;;-1:-1:-1;34585:479:0;;;;;:::i;:::-;;:::i;32428:218::-;;;;;;;;;;-1:-1:-1;32428:218:0;;;;;:::i;:::-;;:::i;33154:377::-;;;;;;;;;;-1:-1:-1;33154:377:0;;;;;:::i;:::-;;:::i;50653:322::-;;;;;;;;;;-1:-1:-1;50653:322:0;;;;;:::i;:::-;;:::i;48991:103::-;;;;;;;;;;-1:-1:-1;48991:103:0;;;;;:::i;:::-;;:::i;33539:436::-;;;;;;;;;;-1:-1:-1;33539:436:0;;;;;:::i;:::-;;:::i;29552:29::-;;;;;;;;;;;;;:::i;29622:40::-;;;;;;;;;;;;;:::i;34244:333::-;;;;;;;;;;-1:-1:-1;34244:333:0;;;;;:::i;:::-;;:::i;29806:59::-;;;;;;;;;;;;;:::i;9693:86::-;;;;;;;;;;;;;:::i;49220:122::-;;;;;;;;;;-1:-1:-1;49220:122:0;;;;;:::i;:::-;;:::i;38900:111::-;;;;;;;;;;-1:-1:-1;38900:111:0;;;;;:::i;:::-;;:::i;31406:198::-;;;;;;;;;;-1:-1:-1;31406:198:0;;;;;:::i;:::-;;:::i;18754:148::-;;;;;;;;;;;;;:::i;29402:92::-;;;;;;;;;;;;;:::i;29206:31::-;;;;;;;;;;;;;:::i;29750:49::-;;;;;;;;;;;;;:::i;29163:36::-;;;;;;;;;;;;;:::i;32931:120::-;;;;;;;;;;-1:-1:-1;32931:120:0;;;;;:::i;:::-;;:::i;18111:79::-;;;;;;;;;;;;;:::i;50450:124::-;;;;;;;;;;-1:-1:-1;50450:124:0;;;;;:::i;:::-;;:::i;31117:87::-;;;;;;;;;;;;;:::i;49645:283::-;;;;;;;;;;-1:-1:-1;49645:283:0;;;;;:::i;:::-;;:::i;32654:269::-;;;;;;;;;;-1:-1:-1;32654:269:0;;;;;:::i;:::-;;:::i;50313:129::-;;;;;;;;;;-1:-1:-1;50313:129:0;;;;;:::i;:::-;;:::i;19776:305::-;;;;;;;;;;;;;:::i;31612:167::-;;;;;;;;;;-1:-1:-1;31612:167:0;;;;;:::i;:::-;;:::i;49359:278::-;;;;;;;;;;-1:-1:-1;49359:278:0;;;;;:::i;:::-;;:::i;19309:89::-;;;;;;;;;;;;;:::i;50987:171::-;;;;;;;;;;-1:-1:-1;50987:171:0;;;;;:::i;:::-;;:::i;28984:35::-;;;;;;;;;;;;;:::i;29119:37::-;;;;;;;;;;;;;:::i;29671:65::-;;;;;;;;;;;;;:::i;28942:35::-;;;;;;;;;;;;;:::i;19474:226::-;;;;;;;;;;-1:-1:-1;19474:226:0;;;;;:::i;:::-;;:::i;31787:143::-;;;;;;;;;;-1:-1:-1;31787:143:0;;;;;:::i;:::-;;:::i;29880:51::-;;;;;;;;;;;;;:::i;49106:102::-;;;;;;;;;;-1:-1:-1;49106:102:0;;;;;:::i;:::-;;:::i;50102:203::-;;;;;;;;;;-1:-1:-1;50102:203:0;;;;;:::i;:::-;;:::i;28906:29::-;;;;;;;;;;;;;:::i;49940:150::-;;;;;;;;;;-1:-1:-1;49940:150:0;;;;;:::i;:::-;;:::i;19057:244::-;;;;;;;;;;-1:-1:-1;19057:244:0;;;;;:::i;:::-;;:::i;31026:83::-;31063:13;31096:5;31089:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31026:83;:::o;31938:161::-;32013:4;32030:39;32039:12;:10;:12::i;:::-;32053:7;32062:6;32030:8;:39::i;:::-;-1:-1:-1;32087:4:0;31938:161;;;;;:::o;33059:87::-;33128:10;;33059:87;:::o;29503:42::-;;;-1:-1:-1;;;;;29503:42:0;;:::o;29026:30::-;;;;:::o;31303:95::-;31383:7;;31303:95;:::o;29082:30::-;;;;:::o;32107:313::-;32205:4;32222:36;32232:6;32240:9;32251:6;32222:9;:36::i;:::-;32269:121;32278:6;32286:12;:10;:12::i;:::-;32300:89;32338:6;32300:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32300:19:0;;;;;;:11;:19;;;;;;32320:12;:10;:12::i;:::-;-1:-1:-1;;;;;32300:33:0;;;;;;;;;;;;-1:-1:-1;32300:33:0;;;:89;:37;:89::i;:::-;32269:8;:121::i;:::-;-1:-1:-1;32408:4:0;32107:313;;;;;;:::o;28408:71::-;;;-1:-1:-1;;;;;28408:71:0;;:::o;10752:124::-;10296:8;:6;:8::i;:::-;10288:41;;;;-1:-1:-1;;;10288:41:0;;;;;;;:::i;:::-;;;;;;;;;10815:7:::1;:15:::0;;-1:-1:-1;;10815:15:0::1;::::0;;10846:22:::1;10855:12;:10;:12::i;:::-;10846:22;;;;;;:::i;:::-;;;;;;;;10752:124::o:0;33983:253::-;34049:7;34088;;34077;:18;;34069:73;;;;-1:-1:-1;;;34069:73:0;;;;;;;:::i;:::-;34153:19;34176:10;:8;:10::i;:::-;34153:33;-1:-1:-1;34204:24:0;:7;34153:33;34204:11;:24::i;:::-;34197:31;;;33983:253;;;;:::o;31212:83::-;31278:9;;;;31212:83;:::o;10493:118::-;10019:8;:6;:8::i;:::-;10018:9;10010:38;;;;-1:-1:-1;;;10010:38:0;;;;;;;:::i;:::-;10553:7:::1;:14:::0;;-1:-1:-1;;10553:14:0::1;10563:4;10553:14;::::0;;10583:20:::1;10590:12;:10;:12::i;34585:479::-:0;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34667:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;34659:60;;;;-1:-1:-1::0;;;34659:60:0::1;;;;;;;:::i;:::-;34735:9;34730:327;34754:9;:16:::0;34750:20;::::1;34730:327;;;34812:7;-1:-1:-1::0;;;;;34796:23:0::1;:9;34806:1;34796:12;;;;;;-1:-1:-1::0;;;34796:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;34796:12:0::1;:23;34792:254;;;34855:9;34865:16:::0;;:20:::1;::::0;34884:1:::1;::::0;34865:20:::1;:::i;:::-;34855:31;;;;;;-1:-1:-1::0;;;34855:31:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;34840:9:::1;:12:::0;;-1:-1:-1;;;;;34855:31:0;;::::1;::::0;34850:1;;34840:12;::::1;;;-1:-1:-1::0;;;34840:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;34840:46:0::1;-1:-1:-1::0;;;;;34840:46:0;;::::1;;::::0;;34905:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34944:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34944:28:0::1;::::0;;34991:9:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;34991:15:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34991:15:0;;;;;-1:-1:-1;;;;;;34991:15:0::1;::::0;;;;;35025:5:::1;;34792:254;34772:3:::0;::::1;::::0;::::1;:::i;:::-;;;;34730:327;;;;34585:479:::0;:::o;32428:218::-;32516:4;32533:83;32542:12;:10;:12::i;:::-;32556:7;32565:50;32604:10;32565:11;:25;32577:12;:10;:12::i;:::-;-1:-1:-1;;;;;32565:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32565:25:0;;;:34;;;;;;;;;;;:38;:50::i;33154:377::-;33206:14;33223:12;:10;:12::i;:::-;-1:-1:-1;;;;;33255:19:0;;;;;;:11;:19;;;;;;33206:29;;-1:-1:-1;33255:19:0;;33254:20;33246:77;;;;-1:-1:-1;;;33246:77:0;;;;;;;:::i;:::-;33335:15;33359:19;33370:7;33359:10;:19::i;:::-;-1:-1:-1;;;;;;;;;33407:15:0;;;;;;:7;:15;;;;;;33334:44;;-1:-1:-1;33407:28:0;;:15;-1:-1:-1;33334:44:0;33407:19;:28::i;:::-;-1:-1:-1;;;;;33389:15:0;;;;;;:7;:15;;;;;:46;33456:7;;:20;;33468:7;33456:11;:20::i;:::-;33446:7;:30;33500:10;;:23;;33515:7;33500:14;:23::i;:::-;33487:10;:36;-1:-1:-1;;;33154:377:0:o;50653:322::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;50728:36:::1;50786:9;50728:68;;50841:17;-1:-1:-1::0;;;;;50841:25:0::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50823:57:0::1;;50889:4;50896:17;-1:-1:-1::0;;;;;50896:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50823:98;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50807:13;:114:::0;;-1:-1:-1;;;;;50807:114:0;;::::1;-1:-1:-1::0;;;;;;50807:114:0;;::::1;;::::0;;;50932:15:::1;:35:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;50653:322:0:o;48991:103::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49060:19:0::1;;::::0;;;:10:::1;:19;::::0;;;;:26;;-1:-1:-1;;49060:26:0::1;49082:4;49060:26;::::0;;48991:103::o;33539:436::-;33629:7;33668;;33657;:18;;33649:62;;;;-1:-1:-1;;;33649:62:0;;;;;;;:::i;:::-;33727:17;33722:246;;33762:15;33786:19;33797:7;33786:10;:19::i;:::-;-1:-1:-1;33761:44:0;;-1:-1:-1;33820:14:0;;-1:-1:-1;;;;;33820:14:0;33722:246;33869:23;33900:19;33911:7;33900:10;:19::i;:::-;-1:-1:-1;33867:52:0;;-1:-1:-1;33934:22:0;;-1:-1:-1;;;;;33934:22:0;29552:29;;;-1:-1:-1;;;;;29552:29:0;;:::o;29622:40::-;;;-1:-1:-1;;;29622:40:0;;;;;:::o;34244:333::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34327:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;34326:21;34318:61;;;;-1:-1:-1::0;;;34318:61:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34393:16:0;::::1;34412:1;34393:16:::0;;;:7:::1;:16;::::0;;;;;:20;34390:108:::1;;-1:-1:-1::0;;;;;34469:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;34449:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;34430:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;34390:108:::1;-1:-1:-1::0;;;;;34508:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;34508:27:0::1;34531:4;34508:27:::0;;::::1;::::0;;;34546:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;34546:23:0::1;::::0;;::::1;::::0;;34244:333::o;29806:59::-;;;;:::o;9693:86::-;9764:7;;;;9693:86;:::o;49220:122::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;49307:15:::1;:27:::0;;-1:-1:-1;;;;;;49307:27:0::1;-1:-1:-1::0;;;;;49307:27:0;;;::::1;::::0;;;::::1;::::0;;49220:122::o;38900:111::-;-1:-1:-1;;;;;38984:19:0;38960:4;38984:19;;;:10;:19;;;;;;;;;38900:111::o;31406:198::-;-1:-1:-1;;;;;31496:20:0;;31472:7;31496:20;;;:11;:20;;;;;;;;31492:49;;;-1:-1:-1;;;;;;31525:16:0;;;;;;:7;:16;;;;;;31518:23;;31492:49;-1:-1:-1;;;;;31579:16:0;;;;;;:7;:16;;;;;;31559:37;;:19;:37::i;18754:148::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;18861:1:::1;18845:6:::0;;18824:40:::1;::::0;-1:-1:-1;;;;;18845:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;18824:40:0;18861:1;;18824:40:::1;18892:1;18875:19:::0;;-1:-1:-1;;;;;;18875:19:0::1;::::0;;18754:148::o;29402:92::-;;;-1:-1:-1;;;;;29402:92:0;;:::o;29206:31::-;;;;:::o;29750:49::-;;;;:::o;29163:36::-;;;;:::o;32931:120::-;-1:-1:-1;;;;;33023:20:0;32999:4;33023:20;;;:11;:20;;;;;;;;;32931:120::o;18111:79::-;18149:7;18176:6;-1:-1:-1;;;;;18176:6:0;18111:79;:::o;50450:124::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;50558:9:::1;::::0;50554:13:::1;::::0;50558:9:::1;;50554:2;:13;:::i;:::-;50542:25;::::0;:9;:25:::1;:::i;:::-;50525:14;:42:::0;-1:-1:-1;50450:124:0:o;31117:87::-;31156:13;31189:7;31182:14;;;;;:::i;49645:283::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;49781:11:::1;:20:::0;;;;49812:17:::1;:32:::0;;;;49855:17:::1;:32:::0;49898:12:::1;:22:::0;49645:283::o;32654:269::-;32747:4;32764:129;32773:12;:10;:12::i;:::-;32787:7;32796:96;32835:15;32796:96;;;;;;;;;;;;;;;;;:11;:25;32808:12;:10;:12::i;:::-;-1:-1:-1;;;;;32796:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32796:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;50313:129::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;50425:9:::1;::::0;50421:13:::1;::::0;50425:9:::1;;50421:2;:13;:::i;:::-;50408:26;::::0;:10;:26:::1;:::i;:::-;50382:23;:52:::0;-1:-1:-1;50313:129:0:o;19776:305::-;19828:14;;-1:-1:-1;;;;;19828:14:0;19846:10;19828:28;19820:76;;;;-1:-1:-1;;;19820:76:0;;;;;;;:::i;:::-;19933:9;;19915:15;:27;19907:72;;;;-1:-1:-1;;;19907:72:0;;;;;;;:::i;:::-;20024:14;;;20016:6;;19995:44;;-1:-1:-1;;;;;20024:14:0;;;;20016:6;;;;-1:-1:-1;;;;;;;;;;;19995:44:0;;20059:14;;;20050:23;;-1:-1:-1;;;;;;20050:23:0;-1:-1:-1;;;;;20059:14:0;;;20050:23;;;;;;19776:305::o;31612:167::-;31690:4;31707:42;31717:12;:10;:12::i;:::-;31731:9;31742:6;31707:9;:42::i;49359:278::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;49494:10:::1;:19:::0;;;;49524:16:::1;:31:::0;;;;49566:16:::1;:31:::0;49608:11:::1;:21:::0;49359:278::o;19309:89::-;19381:9;;19309:89;:::o;50987:171::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;51064:21:::1;:32:::0;;-1:-1:-1;;;;51064:32:0::1;-1:-1:-1::0;;;51064:32:0;::::1;;;;::::0;;51112:38:::1;::::0;::::1;::::0;::::1;::::0;51064:32;;51112:38:::1;:::i;:::-;;;;;;;;50987:171:::0;:::o;28984:35::-;;;;:::o;29119:37::-;;;;:::o;29671:65::-;;;;:::o;28942:35::-;;;;:::o;19474:226::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;19555:6:::1;::::0;;;19538:23;;-1:-1:-1;;;;;;19538:23:0;;::::1;-1:-1:-1::0;;;;;19555:6:0;::::1;19538:23;::::0;;;19572:19:::1;::::0;;19614:22:::1;19632:4:::0;19614:15:::1;:22;:::i;:::-;19602:9;:34:::0;19689:1:::1;19673:6:::0;;19652:40:::1;::::0;-1:-1:-1;;;;;19673:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;19652:40:0;19689:1;;19652:40:::1;19474:226:::0;:::o;31787:143::-;-1:-1:-1;;;;;31895:18:0;;;31868:7;31895:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;31787:143::o;29880:51::-;;;;:::o;49106:102::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49173:19:0::1;49195:5;49173:19:::0;;;:10:::1;:19;::::0;;;;:27;;-1:-1:-1;;49173:27:0::1;::::0;;49106:102::o;50102:203::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;50201:1:::1;50187:11;:15;50179:65;;;;-1:-1:-1::0;;;50179:65:0::1;;;;;;;:::i;:::-;50288:9;::::0;50284:13:::1;::::0;50288:9:::1;;50284:2;:13;:::i;:::-;50270:27;::::0;:11;:27:::1;:::i;:::-;50255:12;:42:::0;-1:-1:-1;50102:203:0:o;28906:29::-;;;;:::o;49940:150::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;50073:9:::1;::::0;50069:13:::1;::::0;50073:9:::1;;50069:2;:13;:::i;:::-;50062:20;::::0;:6;:20:::1;:::i;:::-;50030:29;:52:::0;-1:-1:-1;49940:150:0:o;19057:244::-;18333:12;:10;:12::i;:::-;18323:6;;-1:-1:-1;;;;;18323:6:0;;;:22;;;18315:67;;;;-1:-1:-1;;;18315:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19146:22:0;::::1;19138:73;;;;-1:-1:-1::0;;;19138:73:0::1;;;;;;;:::i;:::-;19248:6;::::0;;19227:38:::1;::::0;-1:-1:-1;;;;;19227:38:0;;::::1;::::0;19248:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;19227:38:0;::::1;19276:6;:17:::0;;-1:-1:-1;;;;;;19276:17:0::1;-1:-1:-1::0;;;;;19276:17:0;;;::::1;::::0;;;::::1;::::0;;19057:244::o;8794:115::-;8890:10;8794:115;:::o;39019:337::-;-1:-1:-1;;;;;39112:19:0;;39104:68;;;;-1:-1:-1;;;39104:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39191:21:0;;39183:68;;;;-1:-1:-1;;;39183:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39264:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;39316:32;;;;;39294:6;;39316:32;:::i;:::-;;;;;;;;39019:337;;;:::o;39364:2666::-;10019:8;:6;:8::i;:::-;10018:9;10010:38;;;;-1:-1:-1;;;10010:38:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39502:18:0;::::1;39494:68;;;;-1:-1:-1::0;;;39494:68:0::1;;;;;;;:::i;:::-;39590:1;39581:6;:10;39573:64;;;;-1:-1:-1::0;;;39573:64:0::1;;;;;;;:::i;:::-;39686:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;39678:15:0::1;:4;-1:-1:-1::0;;;;;39678:15:0::1;;;:45;;;;;39716:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;39710:13:0::1;:2;-1:-1:-1::0;;;;;39710:13:0::1;;;39678:45;:78;;;;-1:-1:-1::0;;;;;;39740:16:0;::::1;::::0;::::1;39678:78;:116;;;;-1:-1:-1::0;;;;;;39773:21:0;::::1;39787:6;39773:21;;39678:116;:152;;;;-1:-1:-1::0;39817:13:0::1;::::0;-1:-1:-1;;;;;39811:19:0;;::::1;39817:13:::0;::::1;39811:19;;39678:152;39660:437;;;39859:32;39894:13;39904:2;39894:9;:13::i;:::-;39985:14;::::0;39859:48;;-1:-1:-1;39948:33:0::1;39975:6:::0;39859:48;39948:33:::1;:::i;:::-;:51;;39922:149;;;;-1:-1:-1::0;;;39922:149:0::1;;;;;;;:::i;:::-;39660:437;;40138:13;::::0;-1:-1:-1;;;;;40130:21:0;;::::1;40138:13:::0;::::1;40130:21;:44:::0;::::1;;;;40157:17;40171:2;40157:13;:17::i;:::-;40156:18;40130:44;40127:177;;;40208:23;;40198:6;:33;;40190:102;;;;-1:-1:-1::0;;;40190:102:0::1;;;;;;;:::i;:::-;40598:28;40629:24;40647:4;40629:9;:24::i;:::-;40723:29;::::0;40598:55;;-1:-1:-1;40699:53:0;::::1;::::0;::::1;::::0;;;40781::::1;;-1:-1:-1::0;40818:16:0::1;::::0;-1:-1:-1;;;40818:16:0;::::1;;;40817:17;40781:53;:91;;;;-1:-1:-1::0;40859:13:0::1;::::0;-1:-1:-1;;;;;40851:21:0;;::::1;40859:13:::0;::::1;40851:21;;40781:91;:129;;;;-1:-1:-1::0;40889:21:0::1;::::0;-1:-1:-1;;;40889:21:0;::::1;;;40781:129;40763:318;;;40960:29;;40937:52;;41033:36;41048:20;41033:14;:36::i;:::-;41171:4;41278:19;41292:4:::0;41278:13:::1;:19::i;:::-;:40;;;;41301:17;41315:2;41301:13;:17::i;:::-;41275:86;;;-1:-1:-1::0;41344:5:0::1;41275:86;41409:13;::::0;-1:-1:-1;;;;;41401:21:0;;::::1;41409:13:::0;::::1;41401:21;::::0;:42:::1;;;41426:17;:4;-1:-1:-1::0;;;;;41426:15:0::1;;:17::i;:::-;41398:225;;;41470:10;::::0;41460:7:::1;:20:::0;41511:16:::1;::::0;41495:13:::1;:32:::0;41558:16:::1;::::0;41542:13:::1;:32:::0;41600:11:::1;::::0;41589:8:::1;:22:::0;41398:225:::1;41678:13;::::0;-1:-1:-1;;;;;41672:19:0;;::::1;41678:13:::0;::::1;41672:19;::::0;:38:::1;;;41695:15;:2;-1:-1:-1::0;;;;;41695:13:0::1;;:15::i;:::-;41669:237;;;41737:11;::::0;41727:7:::1;:21:::0;41779:17:::1;::::0;41763:13:::1;:33:::0;41827:17:::1;::::0;41811:13:::1;:33:::0;41871:12:::1;::::0;41860:8:::1;:23:::0;41669:237:::1;41992:30;42007:4;42012:2;42015:6;41992:14;:30::i;:::-;10059:1;;;39364:2666:::0;;;:::o;5204:192::-;5290:7;5326:12;5318:6;;;;5310:29;;;;-1:-1:-1;;;5310:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5350:9:0;5362:5;5366:1;5362;:5;:::i;:::-;5350:17;5204:192;-1:-1:-1;;;;;5204:192:0:o;37185:163::-;37226:7;37247:15;37264;37283:19;:17;:19::i;:::-;37246:56;;-1:-1:-1;37246:56:0;-1:-1:-1;37320:20:0;37246:56;;37320:11;:20::i;:::-;37313:27;;;;37185:163;:::o;6602:132::-;6660:7;6687:39;6691:1;6694;6687:39;;;;;;;;;;;;;;;;;:3;:39::i;4301:181::-;4359:7;;4391:5;4395:1;4391;:5;:::i;:::-;4379:17;;4420:1;4415;:6;;4407:46;;;;-1:-1:-1;;;4407:46:0;;;;;;;:::i;35983:419::-;36042:7;36051;36060;36069;36078;36087;36108:23;36133:12;36147:18;36169:20;36181:7;36169:11;:20::i;:::-;36107:82;;;;;;36201:15;36218:23;36243:12;36259:50;36271:7;36280:4;36286:10;36298;:8;:10::i;:::-;36259:11;:50::i;:::-;36200:109;;;;-1:-1:-1;36200:109:0;;-1:-1:-1;36360:15:0;;-1:-1:-1;36377:4:0;;-1:-1:-1;36383:10:0;;-1:-1:-1;35983:419:0;;-1:-1:-1;;;;;35983:419:0:o;4765:136::-;4823:7;4850:43;4854:1;4857;4850:43;;;;;;;;;;;;;;;;;:3;:43::i;42038:1597::-;30243:16;:23;;-1:-1:-1;;;;30243:23:0;-1:-1:-1;;;30243:23:0;;;42163:13:::1;::::0;42145::::1;::::0;30243:23;;42145:32:::1;::::0;:13;:17:::1;:32::i;:::-;42123:54;;42218:26;42247:56;42291:11;42247:39;42272:13;;42247:20;:24;;:39;;;;:::i;:::-;:43:::0;::::1;:56::i;:::-;42218:85:::0;-1:-1:-1;42325:26:0::1;42354:44;:20:::0;42218:85;42354:24:::1;:44::i;:::-;42325:73:::0;-1:-1:-1;42478:12:0::1;42493:25;:18:::0;42516:1:::1;42493:22;:25::i;:::-;42478:40:::0;-1:-1:-1;42529:17:0::1;42549:28;:18:::0;42478:40;42549:22:::1;:28::i;:::-;42529:48:::0;-1:-1:-1;42880:21:0::1;42946:22;42963:4:::0;42946:16:::1;:22::i;:::-;43099:18;43120:41;:21;43146:14:::0;43120:25:::1;:41::i;:::-;43099:62;;43211:35;43224:9;43235:10;43211:12;:35::i;:::-;43272:43;43287:4;43293:10;43305:9;43272:43;;;;;;;;:::i;:::-;;;;;;;;43362:21;43394:36;43411:18:::0;43394:16:::1;:36::i;:::-;43441:26;43470:42;:21;43496:15:::0;43470:25:::1;:42::i;:::-;43591:15;::::0;43441:71;;-1:-1:-1;43570:57:0::1;::::0;-1:-1:-1;;;;;43591:15:0::1;43441:71:::0;43570:20:::1;:57::i;:::-;-1:-1:-1::0;;30289:16:0;:24;;-1:-1:-1;;;;30289:24:0;;;-1:-1:-1;;;;;;;;42038:1597:0:o;11566:619::-;11626:4;12094:20;;11937:66;12134:23;;;;;;:42;;-1:-1:-1;12161:15:0;;;12134:42;12126:51;11566:619;-1:-1:-1;;;;11566:619:0:o;44834:945::-;-1:-1:-1;;;;;44937:18:0;;;;;;:10;:18;;;;;;;;;:43;;-1:-1:-1;;;;;;44959:21:0;;;;;;:10;:21;;;;;;;;44937:43;44934:229;;;45008:14;:12;:14::i;:::-;44934:229;;;45094:12;;45084:6;:22;;45076:75;;;;-1:-1:-1;;;45076:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45179:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;45203:22:0;;;;;;:11;:22;;;;;;;;45202:23;45179:46;45175:597;;;45242:48;45264:6;45272:9;45283:6;45242:21;:48::i;:::-;45175:597;;;-1:-1:-1;;;;;45313:19:0;;;;;;:11;:19;;;;;;;;45312:20;:46;;;;-1:-1:-1;;;;;;45336:22:0;;;;;;:11;:22;;;;;;;;45312:46;45308:464;;;45375:46;45395:6;45403:9;45414:6;45375:19;:46::i;45308:464::-;-1:-1:-1;;;;;45444:19:0;;;;;;:11;:19;;;;;;;;45443:20;:47;;;;-1:-1:-1;;;;;;45468:22:0;;;;;;:11;:22;;;;;;;;45467:23;45443:47;45439:333;;;45507:44;45525:6;45533:9;45544:6;45507:17;:44::i;45439:333::-;-1:-1:-1;;;;;45573:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;45596:22:0;;;;;;:11;:22;;;;;;;;45573:45;45569:203;;;45635:48;45657:6;45665:9;45676:6;45635:21;:48::i;45569:203::-;45716:44;45734:6;45742:9;45753:6;45716:17;:44::i;:::-;44834:945;;;:::o;37356:561::-;37453:7;;37489;;37406;;;;;37513:289;37537:9;:16;37533:20;;37513:289;;;37603:7;37579;:21;37587:9;37597:1;37587:12;;;;;;-1:-1:-1;;;37587:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37587:12:0;37579:21;;;;;;;;;;;;;:31;;:66;;;37638:7;37614;:21;37622:9;37632:1;37622:12;;;;;;-1:-1:-1;;;37622:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37622:12:0;37614:21;;;;;;;;;;;;;:31;37579:66;37575:97;;;37655:7;;37664;;37647:25;;;;;;;;;37575:97;37697:34;37709:7;:21;37717:9;37727:1;37717:12;;;;;;-1:-1:-1;;;37717:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37717:12:0;37709:21;;;;;;;;;;;;;37697:7;;:11;:34::i;:::-;37687:44;;37756:34;37768:7;:21;37776:9;37786:1;37776:12;;;;;;-1:-1:-1;;;37776:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37776:12:0;37768:21;;;;;;;;;;;;;37756:7;;:11;:34::i;:::-;37746:44;-1:-1:-1;37555:3:0;;;;:::i;:::-;;;;37513:289;;;-1:-1:-1;37838:7:0;;37826;;:20;;:11;:20::i;:::-;37816:7;:30;37812:61;;;37856:7;;37865;;37848:25;;;;;;;;37812:61;37892:7;;-1:-1:-1;37901:7:0;-1:-1:-1;37356:561:0;;;:::o;7230:278::-;7316:7;7351:12;7344:5;7336:28;;;;-1:-1:-1;;;7336:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7375:9:0;7387:5;7391:1;7387;:5;:::i;36410:330::-;36470:7;36479;36488;36508:12;36523:24;36539:7;36523:15;:24::i;:::-;36508:39;;36558:18;36579:30;36601:7;36579:21;:30::i;:::-;36558:51;-1:-1:-1;36620:23:0;36646:33;36558:51;36646:17;:7;36658:4;36646:11;:17::i;:::-;:21;;:33::i;:::-;36620:59;36715:4;;-1:-1:-1;36721:10:0;;-1:-1:-1;36410:330:0;;-1:-1:-1;;;36410:330:0:o;36748:429::-;36863:7;;;;36919:24;:7;36931:11;36919;:24::i;:::-;36901:42;-1:-1:-1;36954:12:0;36969:21;:4;36978:11;36969:8;:21::i;:::-;36954:36;-1:-1:-1;37001:18:0;37022:27;:10;37037:11;37022:14;:27::i;:::-;37001:48;-1:-1:-1;37060:23:0;37086:33;37001:48;37086:17;:7;37098:4;37086:11;:17::i;:33::-;37138:7;;;;-1:-1:-1;37164:4:0;;-1:-1:-1;36748:429:0;;-1:-1:-1;;;;;;;36748:429:0:o;5655:471::-;5713:7;5958:6;5954:47;;-1:-1:-1;5988:1:0;5981:8;;5954:47;6013:9;6025:5;6029:1;6025;:5;:::i;:::-;6013:17;-1:-1:-1;6058:1:0;6049:5;6053:1;6013:17;6049:5;:::i;:::-;:10;6041:56;;;;-1:-1:-1;;;6041:56:0;;;;;;;:::i;43643:589::-;43793:16;;;43807:1;43793:16;;;;;;;;43769:21;;43793:16;;;;;;;;;;-1:-1:-1;43793:16:0;43769:40;;43838:4;43820;43825:1;43820:7;;;;;;-1:-1:-1;;;43820:7:0;;;;;;;;;-1:-1:-1;;;;;43820:23:0;;;:7;;;;;;;;;;:23;;;;43864:15;;:22;;;-1:-1:-1;;;43864:22:0;;;;:15;;;;;:20;;:22;;;;;43820:7;;43864:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43854:4;43859:1;43854:7;;;;;;-1:-1:-1;;;43854:7:0;;;;;;;;;-1:-1:-1;;;;;43854:32:0;;;:7;;;;;;;;;:32;43931:15;;43899:62;;43916:4;;43931:15;43949:11;43899:8;:62::i;:::-;44000:15;;:224;;-1:-1:-1;;;44000:224:0;;-1:-1:-1;;;;;44000:15:0;;;;:66;;:224;;44081:11;;44000:15;;44151:4;;44178;;44198:15;;44000:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44240:513;44420:15;;44388:62;;44405:4;;-1:-1:-1;;;;;44420:15:0;44438:11;44388:8;:62::i;:::-;44493:15;;-1:-1:-1;;;;;44493:15:0;:31;44532:9;44565:4;44585:11;44493:15;;44697:7;:5;:7::i;:::-;44719:15;44493:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44240:513;;:::o;51170:126::-;51262:26;;-1:-1:-1;;;;;51262:18:0;;;:26;;;;;51281:6;;51262:26;;;;51281:6;51262:18;:26;;;;;;;;;;;;;;;;;;;38636:244;38682:7;;:12;:34;;;;-1:-1:-1;38698:13:0;;:18;38682:34;:54;;;;-1:-1:-1;38720:13:0;;:16;38682:54;:69;;;;-1:-1:-1;38740:8:0;;:11;38682:69;38679:81;;;38753:7;;38679:81;38792:1;38782:7;:11;;;38804:13;:17;;;38832:13;:17;;;38860:8;:12;38636:244;:::o;48417:566::-;48520:15;48537:23;48562:12;48576:23;48601:12;48615:18;48637:19;48648:7;48637:10;:19::i;:::-;-1:-1:-1;;;;;48685:15:0;;;;;;:7;:15;;;;;;48519:137;;-1:-1:-1;48519:137:0;;-1:-1:-1;48519:137:0;;-1:-1:-1;48519:137:0;-1:-1:-1;48519:137:0;-1:-1:-1;48519:137:0;-1:-1:-1;48685:28:0;;48705:7;48685:19;:28::i;:::-;-1:-1:-1;;;;;48667:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48742:7;:15;;;;:28;;48762:7;48742:19;:28::i;:::-;-1:-1:-1;;;;;48724:15:0;;;;;;;:7;:15;;;;;;:46;;;;48802:18;;;;;;;:39;;48825:15;48802:22;:39::i;:::-;-1:-1:-1;;;;;48781:18:0;;;;;;:7;:18;;;;;:60;48855:26;48870:10;48855:14;:26::i;:::-;48892:23;48904:4;48910;48892:11;:23::i;:::-;48948:9;-1:-1:-1;;;;;48931:44:0;48940:6;-1:-1:-1;;;;;48931:44:0;;48959:15;48931:44;;;;;;:::i;:::-;;;;;;;;48417:566;;;;;;;;;:::o;47823:586::-;47924:15;47941:23;47966:12;47980:23;48005:12;48019:18;48041:19;48052:7;48041:10;:19::i;:::-;-1:-1:-1;;;;;48089:15:0;;;;;;:7;:15;;;;;;47923:137;;-1:-1:-1;47923:137:0;;-1:-1:-1;47923:137:0;;-1:-1:-1;47923:137:0;-1:-1:-1;47923:137:0;-1:-1:-1;47923:137:0;-1:-1:-1;48089:28:0;;47923:137;48089:19;:28::i;:::-;-1:-1:-1;;;;;48071:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;48149:18;;;;;:7;:18;;;;;:39;;48172:15;48149:22;:39::i;:::-;-1:-1:-1;;;;;48128:18:0;;;;;;:7;:18;;;;;;;;:60;;;;48220:7;:18;;;;:39;;48243:15;48220:22;:39::i;45791:727::-;45896:15;45913:23;45938:12;45952:23;45977:12;45991:18;46013:19;46024:7;46013:10;:19::i;:::-;45895:137;;;;;;;;;;;;46080:59;46089:6;46097:15;46114;46131:7;46080:8;:59::i;:::-;46043:96;-1:-1:-1;46043:96:0;-1:-1:-1;46187:64:0;46201:6;46043:96;;46243:7;46187:13;:64::i;:::-;-1:-1:-1;;;;;46280:15:0;;;;;;:7;:15;;;;;;46150:101;;-1:-1:-1;46150:101:0;;-1:-1:-1;46280:28:0;;46300:7;46280:19;:28::i;35072:642::-;35175:15;35192:23;35217:12;35231:23;35256:12;35270:18;35292:19;35303:7;35292:10;:19::i;:::-;-1:-1:-1;;;;;35340:15:0;;;;;;:7;:15;;;;;;35174:137;;-1:-1:-1;35174:137:0;;-1:-1:-1;35174:137:0;;-1:-1:-1;35174:137:0;-1:-1:-1;35174:137:0;-1:-1:-1;35174:137:0;-1:-1:-1;35340:28:0;;35360:7;35340:19;:28::i;:::-;-1:-1:-1;;;;;35322:15:0;;;;;;:7;:15;;;;;;;;:46;;;;35397:7;:15;;;;:28;;35417:7;35397:19;:28::i;38296:154::-;38360:7;38387:55;38426:5;38387:20;38399:7;;38387;:11;;:20;;;;:::i;38458:166::-;38528:7;38555:61;38600:5;38555:26;38567:13;;38555:7;:11;;:26;;;;:::i;37929:355::-;37992:19;38015:10;:8;:10::i;:::-;37992:33;-1:-1:-1;38036:18:0;38057:27;:10;37992:33;38057:14;:27::i;:::-;38136:4;38120:22;;;;:7;:22;;;;;;38036:48;;-1:-1:-1;38120:38:0;;38036:48;38120:26;:38::i;:::-;38111:4;38095:22;;;;:7;:22;;;;;;;;:63;;;;38172:11;:26;;;;;;38169:107;;;38254:4;38238:22;;;;:7;:22;;;;;;:38;;38265:10;38238:26;:38::i;:::-;38229:4;38213:22;;;;:7;:22;;;;;:63;37929:355;;;:::o;35828:147::-;35906:7;;:17;;35918:4;35906:11;:17::i;:::-;35896:7;:27;35947:10;;:20;;35962:4;35947:14;:20::i;:::-;35934:10;:33;-1:-1:-1;;35828:147:0:o;46528:609::-;46651:7;46660;46688:8;;46698:1;46688:11;46685:62;;;-1:-1:-1;46711:15:0;;-1:-1:-1;46728:15:0;46704:40;;46685:62;46794:8;;46757:13;;46773:30;;:16;:7;46785:3;46773:11;:16::i;:::-;:20;;:30::i;:::-;46757:46;;46814:13;46830:21;46840:10;:8;:10::i;:::-;46830:5;;:9;:21::i;:::-;46814:37;-1:-1:-1;46880:26:0;:15;46814:37;46880:19;:26::i;:::-;46862:44;-1:-1:-1;46935:26:0;:15;46955:5;46935:19;:26::i;:::-;47003:11;;-1:-1:-1;;;;;47003:11:0;46995:20;;;;:7;:20;;;;;;46917:44;;-1:-1:-1;46995:31:0;;47020:5;46995:24;:31::i;:::-;46980:11;;;-1:-1:-1;;;;;46980:11:0;;;46972:20;;;;:7;:20;;;;;;;:54;;;;47059:11;;47042:36;;47059:11;;;;47042:36;;;;;;;;47072:5;;47042:36;:::i;:::-;;;;;;;;47096:15;47113;47089:40;;;;;;46528:609;;;;;;;;:::o;47147:666::-;47275:7;47284;47312:13;;47327:1;47312:16;47309:67;;;-1:-1:-1;47340:15:0;;-1:-1:-1;47357:15:0;47333:40;;47309:67;47428:13;;47386:18;;47407:35;;:16;:7;47419:3;47407:11;:16::i;:35::-;47386:56;;47453:18;47474:26;47489:10;:8;:10::i;47474:26::-;47453:47;-1:-1:-1;47529:31:0;:15;47453:47;47529:19;:31::i;:::-;47511:49;-1:-1:-1;47589:31:0;:15;47609:10;47589:19;:31::i;:::-;47672:4;47656:22;;;;:7;:22;;;;;;47571:49;;-1:-1:-1;47656:38:0;;47683:10;47656:26;:38::i;:::-;47647:4;47631:22;;;;:7;:22;;;;;;;:63;;;;47710:43;;-1:-1:-1;;;;;47710:43:0;;;;;;;47742:10;;47710:43;:::i;14:162:1:-;81:20;;137:13;;130:21;120:32;;110:2;;166:1;163;156:12;181:259;;293:2;281:9;272:7;268:23;264:32;261:2;;;314:6;306;299:22;261:2;358:9;345:23;377:33;404:5;377:33;:::i;445:263::-;;568:2;556:9;547:7;543:23;539:32;536:2;;;589:6;581;574:22;536:2;626:9;620:16;645:33;672:5;645:33;:::i;985:402::-;;;1114:2;1102:9;1093:7;1089:23;1085:32;1082:2;;;1135:6;1127;1120:22;1082:2;1179:9;1166:23;1198:33;1225:5;1198:33;:::i;:::-;1250:5;-1:-1:-1;1307:2:1;1292:18;;1279:32;1320:35;1279:32;1320:35;:::i;:::-;1374:7;1364:17;;;1072:315;;;;;:::o;1392:470::-;;;;1538:2;1526:9;1517:7;1513:23;1509:32;1506:2;;;1559:6;1551;1544:22;1506:2;1603:9;1590:23;1622:33;1649:5;1622:33;:::i;:::-;1674:5;-1:-1:-1;1731:2:1;1716:18;;1703:32;1744:35;1703:32;1744:35;:::i;:::-;1496:366;;1798:7;;-1:-1:-1;;;1852:2:1;1837:18;;;;1824:32;;1496:366::o;1867:327::-;;;1996:2;1984:9;1975:7;1971:23;1967:32;1964:2;;;2017:6;2009;2002:22;1964:2;2061:9;2048:23;2080:33;2107:5;2080:33;:::i;:::-;2132:5;2184:2;2169:18;;;;2156:32;;-1:-1:-1;;;1954:240:1:o;2199:192::-;;2308:2;2296:9;2287:7;2283:23;2279:32;2276:2;;;2329:6;2321;2314:22;2276:2;2357:28;2375:9;2357:28;:::i;2396:190::-;;2508:2;2496:9;2487:7;2483:23;2479:32;2476:2;;;2529:6;2521;2514:22;2476:2;-1:-1:-1;2557:23:1;;2466:120;-1:-1:-1;2466:120:1:o;2591:260::-;;;2717:2;2705:9;2696:7;2692:23;2688:32;2685:2;;;2738:6;2730;2723:22;2685:2;2779:9;2766:23;2756:33;;2808:37;2841:2;2830:9;2826:18;2808:37;:::i;:::-;2798:47;;2675:176;;;;;:::o;2856:316::-;;;;3013:2;3001:9;2992:7;2988:23;2984:32;2981:2;;;3034:6;3026;3019:22;2981:2;3068:9;3062:16;3052:26;;3118:2;3107:9;3103:18;3097:25;3087:35;;3162:2;3151:9;3147:18;3141:25;3131:35;;2971:201;;;;;:::o;3177:395::-;;;;;3340:3;3328:9;3319:7;3315:23;3311:33;3308:2;;;3362:6;3354;3347:22;3308:2;-1:-1:-1;;3390:23:1;;;3460:2;3445:18;;3432:32;;-1:-1:-1;3511:2:1;3496:18;;3483:32;;3562:2;3547:18;3534:32;;-1:-1:-1;3298:274:1;-1:-1:-1;3298:274:1:o;3577:203::-;-1:-1:-1;;;;;3741:32:1;;;;3723:51;;3711:2;3696:18;;3678:102::o;4225:304::-;-1:-1:-1;;;;;4455:15:1;;;4437:34;;4507:15;;4502:2;4487:18;;4480:43;4387:2;4372:18;;4354:175::o;4534:607::-;-1:-1:-1;;;;;4893:15:1;;;4875:34;;4940:2;4925:18;;4918:34;;;;4983:2;4968:18;;4961:34;;;;5026:2;5011:18;;5004:34;;;;5075:15;;;5069:3;5054:19;;5047:44;4855:3;5107:19;;5100:35;;;;4824:3;4809:19;;4791:350::o;5146:187::-;5311:14;;5304:22;5286:41;;5274:2;5259:18;;5241:92::o;5573:603::-;;5714:2;5743;5732:9;5725:21;5775:6;5769:13;5818:6;5813:2;5802:9;5798:18;5791:34;5843:4;5856:140;5870:6;5867:1;5864:13;5856:140;;;5965:14;;;5961:23;;5955:30;5931:17;;;5950:2;5927:26;5920:66;5885:10;;5856:140;;;6014:6;6011:1;6008:13;6005:2;;;6084:4;6079:2;6070:6;6059:9;6055:22;6051:31;6044:45;6005:2;-1:-1:-1;6160:2:1;6139:15;-1:-1:-1;;6135:29:1;6120:45;;;;6167:2;6116:54;;5694:482;-1:-1:-1;;;5694:482:1:o;6181:344::-;6383:2;6365:21;;;6422:2;6402:18;;;6395:30;-1:-1:-1;;;6456:2:1;6441:18;;6434:50;6516:2;6501:18;;6355:170::o;6530:401::-;6732:2;6714:21;;;6771:2;6751:18;;;6744:30;6810:34;6805:2;6790:18;;6783:62;-1:-1:-1;;;6876:2:1;6861:18;;6854:35;6921:3;6906:19;;6704:227::o;6936:406::-;7138:2;7120:21;;;7177:2;7157:18;;;7150:30;7216:34;7211:2;7196:18;;7189:62;-1:-1:-1;;;7282:2:1;7267:18;;7260:40;7332:3;7317:19;;7110:232::o;7347:402::-;7549:2;7531:21;;;7588:2;7568:18;;;7561:30;7627:34;7622:2;7607:18;;7600:62;-1:-1:-1;;;7693:2:1;7678:18;;7671:36;7739:3;7724:19;;7521:228::o;7754:398::-;7956:2;7938:21;;;7995:2;7975:18;;;7968:30;8034:34;8029:2;8014:18;;8007:62;-1:-1:-1;;;8100:2:1;8085:18;;8078:32;8142:3;8127:19;;7928:224::o;8157:351::-;8359:2;8341:21;;;8398:2;8378:18;;;8371:30;8437:29;8432:2;8417:18;;8410:57;8499:2;8484:18;;8331:177::o;8513:351::-;8715:2;8697:21;;;8754:2;8734:18;;;8727:30;8793:29;8788:2;8773:18;;8766:57;8855:2;8840:18;;8687:177::o;8869:340::-;9071:2;9053:21;;;9110:2;9090:18;;;9083:30;-1:-1:-1;;;9144:2:1;9129:18;;9122:46;9200:2;9185:18;;9043:166::o;9214:355::-;9416:2;9398:21;;;9455:2;9435:18;;;9428:30;9494:33;9489:2;9474:18;;9467:61;9560:2;9545:18;;9388:181::o;9574:404::-;9776:2;9758:21;;;9815:2;9795:18;;;9788:30;9854:34;9849:2;9834:18;;9827:62;-1:-1:-1;;;9920:2:1;9905:18;;9898:38;9968:3;9953:19;;9748:230::o;9983:400::-;10185:2;10167:21;;;10224:2;10204:18;;;10197:30;10263:34;10258:2;10243:18;;10236:62;-1:-1:-1;;;10329:2:1;10314:18;;10307:34;10373:3;10358:19;;10157:226::o;10388:397::-;10590:2;10572:21;;;10629:2;10609:18;;;10602:30;10668:34;10663:2;10648:18;;10641:62;-1:-1:-1;;;10734:2:1;10719:18;;10712:31;10775:3;10760:19;;10562:223::o;10790:356::-;10992:2;10974:21;;;11011:18;;;11004:30;11070:34;11065:2;11050:18;;11043:62;11137:2;11122:18;;10964:182::o;11151:405::-;11353:2;11335:21;;;11392:2;11372:18;;;11365:30;11431:34;11426:2;11411:18;;11404:62;-1:-1:-1;;;11497:2:1;11482:18;;11475:39;11546:3;11531:19;;11325:231::o;11561:401::-;11763:2;11745:21;;;11802:2;11782:18;;;11775:30;11841:34;11836:2;11821:18;;11814:62;-1:-1:-1;;;11907:2:1;11892:18;;11885:35;11952:3;11937:19;;11735:227::o;11967:400::-;12169:2;12151:21;;;12208:2;12188:18;;;12181:30;12247:34;12242:2;12227:18;;12220:62;-1:-1:-1;;;12313:2:1;12298:18;;12291:34;12357:3;12342:19;;12141:226::o;12372:355::-;12574:2;12556:21;;;12613:2;12593:18;;;12586:30;12652:33;12647:2;12632:18;;12625:61;12718:2;12703:18;;12546:181::o;12732:420::-;12934:2;12916:21;;;12973:2;12953:18;;;12946:30;13012:34;13007:2;12992:18;;12985:62;13083:26;13078:2;13063:18;;13056:54;13142:3;13127:19;;12906:246::o;13157:408::-;13359:2;13341:21;;;13398:2;13378:18;;;13371:30;13437:34;13432:2;13417:18;;13410:62;-1:-1:-1;;;13503:2:1;13488:18;;13481:42;13555:3;13540:19;;13331:234::o;13570:399::-;13772:2;13754:21;;;13811:2;13791:18;;;13784:30;13850:34;13845:2;13830:18;;13823:62;-1:-1:-1;;;13916:2:1;13901:18;;13894:33;13959:3;13944:19;;13744:225::o;13974:177::-;14120:25;;;14108:2;14093:18;;14075:76::o;14156:983::-;;14466:3;14455:9;14451:19;14497:6;14486:9;14479:25;14523:2;14561:6;14556:2;14545:9;14541:18;14534:34;14604:3;14599:2;14588:9;14584:18;14577:31;14628:6;14663;14657:13;14694:6;14686;14679:22;14732:3;14721:9;14717:19;14710:26;;14771:2;14763:6;14759:15;14745:29;;14792:4;14805:195;14819:6;14816:1;14813:13;14805:195;;;14884:13;;-1:-1:-1;;;;;14880:39:1;14868:52;;14975:15;;;;14940:12;;;;14916:1;14834:9;14805:195;;;-1:-1:-1;;;;;;;15056:32:1;;;;15051:2;15036:18;;15029:60;-1:-1:-1;;;15120:3:1;15105:19;15098:35;15017:3;14427:712;-1:-1:-1;;;14427:712:1:o;15144:319::-;15346:25;;;15402:2;15387:18;;15380:34;;;;15445:2;15430:18;;15423:34;15334:2;15319:18;;15301:162::o;15468:184::-;15640:4;15628:17;;;;15610:36;;15598:2;15583:18;;15565:87::o;15657:128::-;;15728:1;15724:6;15721:1;15718:13;15715:2;;;15734:18;;:::i;:::-;-1:-1:-1;15770:9:1;;15705:80::o;15790:217::-;;15856:1;15846:2;;-1:-1:-1;;;15881:31:1;;15935:4;15932:1;15925:15;15963:4;15888:1;15953:15;15846:2;-1:-1:-1;15992:9:1;;15836:171::o;16012:453::-;16108:6;16131:5;16145:314;16194:1;16231:2;16221:8;16218:16;16208:2;;16238:5;;;16208:2;16279:4;16274:3;16270:14;16264:4;16261:24;16258:2;;;16288:18;;:::i;:::-;16338:2;16328:8;16324:17;16321:2;;;16353:16;;;;16321:2;16432:17;;;;;16392:15;;16145:314;;16470:148;;16557:55;-1:-1:-1;;16598:4:1;16584:19;;16578:4;16623:922;16707:8;16697:2;;-1:-1:-1;16748:1:1;16762:5;;16697:2;16796:4;16786:2;;-1:-1:-1;16833:1:1;16847:5;;16786:2;16878:4;16896:1;16891:59;;;;16964:1;16959:183;;;;16871:271;;16891:59;16921:1;16912:10;;16935:5;;;16959:183;16996:3;16986:8;16983:17;16980:2;;;17003:18;;:::i;:::-;17059:1;17049:8;17045:16;17036:25;;17087:3;17080:5;17077:14;17074:2;;;17094:18;;:::i;:::-;17127:5;;;16871:271;;17226:2;17216:8;17213:16;17207:3;17201:4;17198:13;17194:36;17188:2;17178:8;17175:16;17170:2;17164:4;17161:12;17157:35;17154:77;17151:2;;;-1:-1:-1;17263:19:1;;;17298:14;;;17295:2;;;17315:18;;:::i;:::-;17348:5;;17151:2;17395:42;17433:3;17423:8;17417:4;17414:1;17395:42;:::i;:::-;17470:6;17465:3;17461:16;17452:7;17449:29;17446:2;;;17481:18;;:::i;:::-;17519:20;;16687:858;-1:-1:-1;;;;16687:858:1:o;17550:168::-;;17656:1;17652;17648:6;17644:14;17641:1;17638:21;17633:1;17626:9;17619:17;17615:45;17612:2;;;17663:18;;:::i;:::-;-1:-1:-1;17703:9:1;;17602:116::o;17723:125::-;;17791:1;17788;17785:8;17782:2;;;17796:18;;:::i;:::-;-1:-1:-1;17833:9:1;;17772:76::o;17853:380::-;17938:1;17928:12;;17985:1;17975:12;;;17996:2;;18050:4;18042:6;18038:17;18028:27;;17996:2;18103;18095:6;18092:14;18072:18;18069:38;18066:2;;;18149:10;18144:3;18140:20;18137:1;18130:31;18184:4;18181:1;18174:15;18212:4;18209:1;18202:15;18066:2;;17908:325;;;:::o;18238:135::-;;-1:-1:-1;;18298:17:1;;18295:2;;;18318:18;;:::i;:::-;-1:-1:-1;18365:1:1;18354:13;;18285:88::o;18378:127::-;18439:10;18434:3;18430:20;18427:1;18420:31;18470:4;18467:1;18460:15;18494:4;18491:1;18484:15;18510:133;-1:-1:-1;;;;;18587:31:1;;18577:42;;18567:2;;18633:1;18630;18623:12;18567:2;18557:86;:::o

Swarm Source

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