ETH Price: $2,445.56 (+3.86%)

Token

WHITELADY (LADY)
 

Overview

Max Total Supply

1,000,000 LADY

Holders

74

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,118.488125353 LADY

Value
$0.00
0x9d49a06c66b7bfc9c23216f09e2141832b635e7c
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:
WHITELADY

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
             白人女性は、月に住む月の世界の王女です。
               Web: www.whiteladyerc.com
              Twitter: www.twitter.com/whiteladyerc
              Medium: www.medium.com/@whiteladyerc
              TG: t.me/whiteladyerc
*/

// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.10;

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.
     *
     * 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) {

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

/**
 * @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.
     */
    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;


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

}

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

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

    mapping(address => bool) private _isExcludedFromFee;

    mapping(address => bool) private _isExcluded;
    address[] private _excluded;

    mapping(address => bool) private _isExcludedFromLimit;

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

    address payable _marketingAddress = payable(address(0x81fB80FA4ECAf8F42D7942576e4135dcD655147A));

    string private _name = "WHITELADY";
    string private _symbol = "LADY";
    uint8 private _decimals = 9;

    struct BuyFee {
        uint8 reflection;
        uint8 liquidity;
        uint8 marketing;
    }

    struct SellFee {
        uint8 reflection;
        uint8 liquidity;
        uint8 marketing;
    }

    BuyFee public buyFee;
    SellFee public sellFee;

    uint8 private _reflectionFee;
    uint8 private _liquidityFee;
    uint8 private _marketingFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = _tTotal.div(1000).mul(20); //2%
    uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(3); //0.3%
    uint256 public _maxWalletSize = _tTotal.div(1000).mul(20); // 2%

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    uint256 public deadBlocks = 0;
    uint256 launchedAt = 0;
    bool tradingOpen = false;

    mapping (address => uint256) public _lastTrade;

    constructor() {
        _rOwned[_msgSender()] = _rTotal;

        buyFee.reflection = 1;
        buyFee.liquidity = 1;
        buyFee.marketing = 3;

        sellFee.reflection = 1;
        sellFee.liquidity = 1;
        sellFee.marketing = 3;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D  );
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        // exclude owner, and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingAddress] = true;

        _isExcludedFromLimit[_marketingAddress] = true;
        _isExcludedFromLimit[owner()] = true;
        _isExcludedFromLimit[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 isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }


    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 excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function excludeFromLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = true;
    }

    function includeInLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = false;
    }

    function setBothFees(
        uint8 buy_reflection,
        uint8 buy_liquidity,
        uint8 buy_marketing,
        uint8 sell_reflection,
        uint8 sell_liquidity,
        uint8 sell_marketing


    ) external onlyOwner {
        buyFee.reflection = buy_reflection;
        buyFee.liquidity = buy_liquidity;
        buyFee.marketing = buy_marketing;

        sellFee.reflection = sell_reflection;
        sellFee.liquidity = sell_liquidity;
        sellFee.marketing = sell_marketing;
    }

    function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner {
        numTokensSellToAddToLiquidity = numTokens;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

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

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

    function _getTValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = calculateReflectionFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tWallet = calculateMarketingFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        tTransferAmount = tTransferAmount.sub(tWallet);

        return (tTransferAmount, tFee, tLiquidity, tWallet);
    }

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tLiquidity,
        uint256 tWallet,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rWallet = tWallet.mul(currentRate);
        uint256 rTransferAmount = rAmount
            .sub(rFee)
            .sub(rLiquidity)
            .sub(rWallet);
        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 _takeWalletFee(uint256 tWallet) private {
        uint256 currentRate = _getRate();
        uint256 rWallet = tWallet.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rWallet);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tWallet);
    }

    function calculateReflectionFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_reflectionFee).div(10**2);
    }

    function calculateLiquidityFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_liquidityFee).div(10**2);
    }

    function calculateMarketingFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_marketingFee).div(10**2);
    }

   
    function removeAllFee() private {
        _reflectionFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
     
    }

    function setBuy() private {
        _reflectionFee = buyFee.reflection;
        _liquidityFee = buyFee.liquidity;
        _marketingFee = buyFee.marketing;
      
    }

    function setSell() private {
        _reflectionFee = sellFee.reflection;
        _liquidityFee = sellFee.liquidity;
        _marketingFee = sellFee.marketing;
      
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function isExcludedFromLimit(address account) public view returns (bool) {
        return _isExcludedFromLimit[account];
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if ( from != owner() && to != owner() ) require(tradingOpen, "Trading not yet enabled."); //transfers disabled before openTrading

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

        if (contractTokenBalance >= _maxTxAmount) {
            contractTokenBalance = _maxTxAmount;
        }

        bool overMinTokenBalance = contractTokenBalance >=
            numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }
        if (takeFee) {
            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                require(
                    amount <= _maxTxAmount,
                    "Transfer amount exceeds the maxTxAmount."
                );
                if (to != uniswapV2Pair) {
                    require(
                        amount + balanceOf(to) <= _maxWalletSize,
                        "Recipient exceeds max wallet size."
                    );
                }

              
            }
        }

        //transfer amount, it will take reflection, liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        // Split the contract balance into halves
        uint256 denominator = (buyFee.liquidity + sellFee.liquidity + buyFee.marketing + sellFee.marketing) * 2;
        uint256 tokensToAddLiquidityWith = (tokens * (buyFee.liquidity + sellFee.liquidity)) / denominator;
        uint256 toSwap = tokens - tokensToAddLiquidityWith;

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(toSwap);

        uint256 deltaBalance = address(this).balance - initialBalance;
        uint256 unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity));
        uint256 ethToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity);

        if (ethToAddLiquidityWith > 0) {
            // Add liquidity to uniswap
            addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith);
        }

        // Send ETH to marketing
        uint256 marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing);
       

        if (marketingAmt > 0) {
            payable(_marketingAddress).transfer(marketingAmt);
        }

    
    }

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

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

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

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

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (takeFee) {
            removeAllFee();
            if (sender == uniswapV2Pair) {
                setBuy();
            }
            if (recipient == uniswapV2Pair) {
                setSell();
            }
        }

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

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }


    function _transferToExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        _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);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function openTrading(bool _status,uint256 _deadBlocks) external onlyOwner() {
        tradingOpen = _status;
        if(tradingOpen && launchedAt == 0){
            launchedAt = block.number;
            deadBlocks = _deadBlocks;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_lastTrade","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":"_maxWalletSize","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":"buyFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"},{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"buy_reflection","type":"uint8"},{"internalType":"uint8","name":"buy_liquidity","type":"uint8"},{"internalType":"uint8","name":"buy_marketing","type":"uint8"},{"internalType":"uint8","name":"sell_reflection","type":"uint8"},{"internalType":"uint8","name":"sell_liquidity","type":"uint8"},{"internalType":"uint8","name":"sell_marketing","type":"uint8"}],"name":"setBothFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405266038d7ea4c6800060098190556200001f90600019620005da565b6200002d9060001962000607565b600a55600c80546001600160a01b0319167381fb80fa4ecaf8f42d7942576e4135dcd655147a17905560408051808201909152600981526857484954454c41445960b81b6020820152600d90620000859082620006c2565b506040805180820190915260048152634c41445960e01b6020820152600e90620000b09082620006c2565b50600f805460ff191660099081179091556012805460ff60201b1916640100000000179055546200010f90601490620000fb906103e862000d10620004a7602090811b91909117901c565b620004fa60201b62000d521790919060201c565b601355620001366003620000fb6103e8600954620004a760201b62000d101790919060201c565b6014556200015d6014620000fb6103e8600954620004a760201b62000d101790919060201c565b601555600060168190556017556018805460ff191690553480156200018157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a543360009081526002602090815260409182902092909255601080546203010162ffffff199182168117909255601180549091169091179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa1580156200024b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027191906200078e565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002bf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e591906200078e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000333573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035991906200078e565b6001600160a01b0390811660a0528116608052600160056000620003856000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260058452828120805486166001908117909155600c805484168352848320805488168317905554909216815260089384905291822080549094168117909355620004086000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526008909252902080549091166001179055620004503390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040516200049891815260200190565b60405180910390a35062000842565b6000620004f183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200058860201b60201c565b90505b92915050565b6000826000036200050e57506000620004f4565b60006200051c8385620007b9565b9050826200052b8583620007db565b14620004f15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b60008183620005ac5760405162461bcd60e51b81526004016200057f9190620007f2565b506000620005bb8486620007db565b95945050505050565b634e487b7160e01b600052601260045260246000fd5b600082620005ec57620005ec620005c4565b500690565b634e487b7160e01b600052601160045260246000fd5b81810381811115620004f457620004f4620005f1565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200064857607f821691505b6020821081036200066957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006bd57600081815260208120601f850160051c81016020861015620006985750805b601f850160051c820191505b81811015620006b957828155600101620006a4565b5050505b505050565b81516001600160401b03811115620006de57620006de6200061d565b620006f681620006ef845462000633565b846200066f565b602080601f8311600181146200072e5760008415620007155750858301515b600019600386901b1c1916600185901b178555620006b9565b600085815260208120601f198616915b828110156200075f578886015182559484019460019091019084016200073e565b50858210156200077e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007a157600080fd5b81516001600160a01b0381168114620004f157600080fd5b6000816000190483118215151615620007d657620007d6620005f1565b500290565b600082620007ed57620007ed620005c4565b500490565b600060208083528351808285015260005b81811015620008215785810183015185820160400152820162000803565b506000604082860101526040601f19601f8301168501019250505092915050565b60805160a0516125c5620008a76000396000818161040d015281816110e5015281816112400152818161158201526115f8015260008181610282015281816119b001528181611a6901528181611aa501528181611b170152611b7301526125c56000f3fe6080604052600436106101e75760003560e01c80637d1db4a511610102578063b27bcfba11610095578063ea2f0b3711610064578063ea2f0b3714610661578063f0f165af14610681578063f2fde38b146106a1578063fabb0b4f146106c157600080fd5b8063b27bcfba146105a2578063c49b9a80146105c2578063d94160e0146105e2578063dd62ed3e1461061b57600080fd5b806391d919a9116100d157806391d919a91461052057806395d89b4114610540578063a87859f614610555578063a9059cbb1461058257600080fd5b80637d1db4a51461049d57806388f82020146104b35780638da5cb5b146104ec5780638f9a55c01461050a57600080fd5b80632d8381191161017a57806349bd5a5e1161014957806349bd5a5e146103fb5780635342acb41461042f57806370a0823114610468578063715018a61461048857600080fd5b80632d8381191461036c578063313ce5671461038c578063437823ec146103ae57806347062402146103ce57600080fd5b806318160ddd116101b657806318160ddd146102bc57806323b872dd146102db5780632b14ca56146102fb5780632d4103d61461034c57600080fd5b806306fdde03146101f3578063095ea7b31461021e5780630bd3a7f91461024e5780631694505e1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086106d7565b604051610215919061213b565b60405180910390f35b34801561022a57600080fd5b5061023e6102393660046121a1565b610769565b6040519015158152602001610215565b34801561025a57600080fd5b5061026e6102693660046121cd565b610780565b005b34801561027c57600080fd5b506102a47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610215565b3480156102c857600080fd5b506009545b604051908152602001610215565b3480156102e757600080fd5b5061023e6102f63660046121ea565b6107d7565b34801561030757600080fd5b506011546103289060ff808216916101008104821691620100009091041683565b6040805160ff94851681529284166020840152921691810191909152606001610215565b34801561035857600080fd5b5061026e610367366004612240565b610840565b34801561037857600080fd5b506102cd61038736600461225c565b61089d565b34801561039857600080fd5b50600f5460405160ff9091168152602001610215565b3480156103ba57600080fd5b5061026e6103c93660046121cd565b610921565b3480156103da57600080fd5b506010546103289060ff808216916101008104821691620100009091041683565b34801561040757600080fd5b506102a47f000000000000000000000000000000000000000000000000000000000000000081565b34801561043b57600080fd5b5061023e61044a3660046121cd565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561047457600080fd5b506102cd6104833660046121cd565b61096f565b34801561049457600080fd5b5061026e6109ce565b3480156104a957600080fd5b506102cd60135481565b3480156104bf57600080fd5b5061023e6104ce3660046121cd565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156104f857600080fd5b506000546001600160a01b03166102a4565b34801561051657600080fd5b506102cd60155481565b34801561052c57600080fd5b5061026e61053b3660046121cd565b610a42565b34801561054c57600080fd5b50610208610a8d565b34801561056157600080fd5b506102cd6105703660046121cd565b60196020526000908152604090205481565b34801561058e57600080fd5b5061023e61059d3660046121a1565b610a9c565b3480156105ae57600080fd5b5061026e6105bd366004612286565b610aa9565b3480156105ce57600080fd5b5061026e6105dd3660046122fa565b610b28565b3480156105ee57600080fd5b5061023e6105fd3660046121cd565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561062757600080fd5b506102cd610636366004612315565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561066d57600080fd5b5061026e61067c3660046121cd565b610bac565b34801561068d57600080fd5b5061026e61069c36600461225c565b610bf7565b3480156106ad57600080fd5b5061026e6106bc3660046121cd565b610c26565b3480156106cd57600080fd5b506102cd60165481565b6060600d80546106e69061234e565b80601f01602080910402602001604051908101604052809291908181526020018280546107129061234e565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b6000610776338484610dd4565b5060015b92915050565b6000546001600160a01b031633146107b35760405162461bcd60e51b81526004016107aa90612388565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b60006107e4848484610ef8565b610836843361083185604051806060016040528060288152602001612568602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906112fa565b610dd4565b5060019392505050565b6000546001600160a01b0316331461086a5760405162461bcd60e51b81526004016107aa90612388565b6018805460ff191683151590811790915560ff16801561088a5750601754155b15610899574360175560168190555b5050565b6000600a548211156109045760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107aa565b600061090e611334565b905061091a8382610d10565b9392505050565b6000546001600160a01b0316331461094b5760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6001600160a01b03811660009081526006602052604081205460ff16156109ac57506001600160a01b031660009081526003602052604090205490565b6001600160a01b03821660009081526002602052604090205461077a9061089d565b6000546001600160a01b031633146109f85760405162461bcd60e51b81526004016107aa90612388565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600e80546106e69061234e565b6000610776338484610ef8565b6000546001600160a01b03163314610ad35760405162461bcd60e51b81526004016107aa90612388565b6010805460ff97881661ffff199182161761010097891688021762ff00001990811662010000978a16880217909255601180549589169590911694909417928716909502919091179093169290931602179055565b6000546001600160a01b03163314610b525760405162461bcd60e51b81526004016107aa90612388565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610ba190831515815260200190565b60405180910390a150565b6000546001600160a01b03163314610bd65760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b03163314610c215760405162461bcd60e51b81526004016107aa90612388565b601455565b6000546001600160a01b03163314610c505760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b038116610cb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107aa565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061091a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611357565b600082600003610d645750600061077a565b6000610d7083856123d3565b905082610d7d85836123f2565b1461091a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107aa565b6001600160a01b038316610e365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107aa565b6001600160a01b038216610e975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107aa565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f5c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107aa565b6001600160a01b038216610fbe5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107aa565b600081116110205760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107aa565b6000546001600160a01b0384811691161480159061104c57506000546001600160a01b03838116911614155b156110a35760185460ff166110a35760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e000000000000000060448201526064016107aa565b60006110ae3061096f565b905060135481106110be57506013545b601454811080159081906110dc57506012546301000000900460ff16155b801561111a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156111305750601254640100000000900460ff165b1561114357601454915061114382611385565b6001600160a01b03851660009081526005602052604090205460019060ff168061118557506001600160a01b03851660009081526005602052604090205460ff165b1561118e575060005b80156112e6576001600160a01b03861660009081526008602052604090205460ff161580156111d657506001600160a01b03851660009081526008602052604090205460ff16155b156112e65760135484111561123e5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107aa565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316146112e6576015546112838661096f565b61128d9086612414565b11156112e65760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b60648201526084016107aa565b6112f286868684611569565b505050505050565b6000818484111561131e5760405162461bcd60e51b81526004016107aa919061213b565b50600061132b8486612427565b95945050505050565b60008060006113416117d7565b90925090506113508282610d10565b9250505090565b600081836113785760405162461bcd60e51b81526004016107aa919061213b565b50600061132b84866123f2565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff908116939182048116926113cb92610100918290048316929190041661243a565b6113d5919061243a565b6113df919061243a565b6113ea906002612453565b60115460105460ff9283169350600092849261141392610100918290048316929190041661243a565b6114209060ff16856123d3565b61142a91906123f2565b905060006114388285612427565b90504761144482611959565b60006114508247612427565b6011546010549192506000916114769160ff61010091829004811692919091041661243a565b6114839060ff1687612427565b61148d90836123f2565b6011546010549192506000916114b39160ff61010091829004811692919091041661243a565b6114c09060ff16836123d3565b905080156114d2576114d28682611b11565b6011546010546000916114f59160ff62010000928390048116929091041661243a565b60ff166115038460026123d3565b61150d91906123d3565b9050801561155157600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561154f573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b801561166c576115806012805462ffffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036115f6576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03160361166c576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff1680156116ad57506001600160a01b03831660009081526006602052604090205460ff16155b156116c2576116bd848484611bf1565b6117c0565b6001600160a01b03841660009081526006602052604090205460ff1615801561170357506001600160a01b03831660009081526006602052604090205460ff165b15611713576116bd848484611d38565b6001600160a01b03841660009081526006602052604090205460ff1615801561175557506001600160a01b03831660009081526006602052604090205460ff16155b15611765576116bd848484611df3565b6001600160a01b03841660009081526006602052604090205460ff1680156117a557506001600160a01b03831660009081526006602052604090205460ff165b156117b5576116bd848484611e49565b6117c0848484611df3565b6117d16012805462ffffff19169055565b50505050565b600a546009546000918291825b600754811015611929578260026000600784815481106118065761180661247c565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611871575081600360006007848154811061184a5761184a61247c565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561188757600a54600954945094505050509091565b6118cd60026000600784815481106118a1576118a161247c565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611eca565b925061191560036000600784815481106118e9576118e961247c565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611eca565b91508061192181612492565b9150506117e4565b50600954600a5461193991610d10565b82101561195057600a546009549350935050509091565b90939092509050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061198e5761198e61247c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3091906124ab565b81600181518110611a4357611a4361247c565b60200260200101906001600160a01b031690816001600160a01b031681525050611a8e307f000000000000000000000000000000000000000000000000000000000000000084610dd4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611ae39085906000908690309042906004016124c8565b600060405180830381600087803b158015611afd57600080fd5b505af11580156112f2573d6000803e3d6000fd5b611b3c307f000000000000000000000000000000000000000000000000000000000000000084610dd4565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611bc5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bea9190612539565b5050505050565b600080600080611c0085611f0c565b93509350935093506000806000611c2188878787611c1c611334565b611f6b565b6001600160a01b038d166000908152600360205260409020549295509093509150611c4c9089611eca565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611c7b9084611eca565b6001600160a01b03808c1660009081526002602052604080822093909355908b1681522054611caa9083611fcd565b6001600160a01b038a16600090815260026020526040902055611ccc8561202c565b611cd58461202c565b611cdf81876120b5565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef89604051611d2491815260200190565b60405180910390a350505050505050505050565b600080600080611d4785611f0c565b93509350935093506000806000611d6388878787611c1c611334565b6001600160a01b038d166000908152600260205260409020549295509093509150611d8e9084611eca565b6001600160a01b03808c16600090815260026020908152604080832094909455918c16815260039091522054611dc49088611fcd565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054611caa9083611fcd565b600080600080611e0285611f0c565b93509350935093506000806000611e1e88878787611c1c611334565b6001600160a01b038d166000908152600260205260409020549295509093509150611c7b9084611eca565b600080600080611e5885611f0c565b93509350935093506000806000611e7488878787611c1c611334565b6001600160a01b038d166000908152600360205260409020549295509093509150611e9f9089611eca565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611d8e90845b600061091a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112fa565b6000806000806000611f1d866120d9565b90506000611f2a876120fa565b90506000611f378861211a565b90506000611f4f83611f498b87611eca565b90611eca565b9050611f5b8183611eca565b9993985091965094509092505050565b6000808080611f7a8986610d52565b90506000611f888987610d52565b90506000611f968988610d52565b90506000611fa48989610d52565b90506000611fb882611f4985818989611eca565b949d949c50929a509298505050505050505050565b600080611fda8385612414565b90508381101561091a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107aa565b6000612036611334565b905060006120448383610d52565b306000908152600260205260409020549091506120619082611fcd565b3060009081526002602090815260408083209390935560069052205460ff16156120b0573060009081526003602052604090205461209f9084611fcd565b306000908152600360205260409020555b505050565b600a546120c29083611eca565b600a55600b546120d29082611fcd565b600b555050565b60125460009061077a906064906120f490859060ff16610d52565b90610d10565b60125460009061077a906064906120f4908590610100900460ff16610d52565b60125460009061077a906064906120f490859062010000900460ff16610d52565b600060208083528351808285015260005b818110156121685785810183015185820160400152820161214c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461219e57600080fd5b50565b600080604083850312156121b457600080fd5b82356121bf81612189565b946020939093013593505050565b6000602082840312156121df57600080fd5b813561091a81612189565b6000806000606084860312156121ff57600080fd5b833561220a81612189565b9250602084013561221a81612189565b929592945050506040919091013590565b8035801515811461223b57600080fd5b919050565b6000806040838503121561225357600080fd5b6121bf8361222b565b60006020828403121561226e57600080fd5b5035919050565b803560ff8116811461223b57600080fd5b60008060008060008060c0878903121561229f57600080fd5b6122a887612275565b95506122b660208801612275565b94506122c460408801612275565b93506122d260608801612275565b92506122e060808801612275565b91506122ee60a08801612275565b90509295509295509295565b60006020828403121561230c57600080fd5b61091a8261222b565b6000806040838503121561232857600080fd5b823561233381612189565b9150602083013561234381612189565b809150509250929050565b600181811c9082168061236257607f821691505b60208210810361238257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156123ed576123ed6123bd565b500290565b60008261240f57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561077a5761077a6123bd565b8181038181111561077a5761077a6123bd565b60ff818116838216019081111561077a5761077a6123bd565b600060ff821660ff84168160ff0481118215151615612474576124746123bd565b029392505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016124a4576124a46123bd565b5060010190565b6000602082840312156124bd57600080fd5b815161091a81612189565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125185784516001600160a01b0316835293830193918301916001016124f3565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561254e57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212206c0cc42ec6e70500c6bf4ca64fa6f269621567cac2559ee2b1b9984848e4bde764736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c80637d1db4a511610102578063b27bcfba11610095578063ea2f0b3711610064578063ea2f0b3714610661578063f0f165af14610681578063f2fde38b146106a1578063fabb0b4f146106c157600080fd5b8063b27bcfba146105a2578063c49b9a80146105c2578063d94160e0146105e2578063dd62ed3e1461061b57600080fd5b806391d919a9116100d157806391d919a91461052057806395d89b4114610540578063a87859f614610555578063a9059cbb1461058257600080fd5b80637d1db4a51461049d57806388f82020146104b35780638da5cb5b146104ec5780638f9a55c01461050a57600080fd5b80632d8381191161017a57806349bd5a5e1161014957806349bd5a5e146103fb5780635342acb41461042f57806370a0823114610468578063715018a61461048857600080fd5b80632d8381191461036c578063313ce5671461038c578063437823ec146103ae57806347062402146103ce57600080fd5b806318160ddd116101b657806318160ddd146102bc57806323b872dd146102db5780632b14ca56146102fb5780632d4103d61461034c57600080fd5b806306fdde03146101f3578063095ea7b31461021e5780630bd3a7f91461024e5780631694505e1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086106d7565b604051610215919061213b565b60405180910390f35b34801561022a57600080fd5b5061023e6102393660046121a1565b610769565b6040519015158152602001610215565b34801561025a57600080fd5b5061026e6102693660046121cd565b610780565b005b34801561027c57600080fd5b506102a47f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610215565b3480156102c857600080fd5b506009545b604051908152602001610215565b3480156102e757600080fd5b5061023e6102f63660046121ea565b6107d7565b34801561030757600080fd5b506011546103289060ff808216916101008104821691620100009091041683565b6040805160ff94851681529284166020840152921691810191909152606001610215565b34801561035857600080fd5b5061026e610367366004612240565b610840565b34801561037857600080fd5b506102cd61038736600461225c565b61089d565b34801561039857600080fd5b50600f5460405160ff9091168152602001610215565b3480156103ba57600080fd5b5061026e6103c93660046121cd565b610921565b3480156103da57600080fd5b506010546103289060ff808216916101008104821691620100009091041683565b34801561040757600080fd5b506102a47f0000000000000000000000008f1d8ed4ad1bb39b97455f828b652d36800536e581565b34801561043b57600080fd5b5061023e61044a3660046121cd565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561047457600080fd5b506102cd6104833660046121cd565b61096f565b34801561049457600080fd5b5061026e6109ce565b3480156104a957600080fd5b506102cd60135481565b3480156104bf57600080fd5b5061023e6104ce3660046121cd565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156104f857600080fd5b506000546001600160a01b03166102a4565b34801561051657600080fd5b506102cd60155481565b34801561052c57600080fd5b5061026e61053b3660046121cd565b610a42565b34801561054c57600080fd5b50610208610a8d565b34801561056157600080fd5b506102cd6105703660046121cd565b60196020526000908152604090205481565b34801561058e57600080fd5b5061023e61059d3660046121a1565b610a9c565b3480156105ae57600080fd5b5061026e6105bd366004612286565b610aa9565b3480156105ce57600080fd5b5061026e6105dd3660046122fa565b610b28565b3480156105ee57600080fd5b5061023e6105fd3660046121cd565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561062757600080fd5b506102cd610636366004612315565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561066d57600080fd5b5061026e61067c3660046121cd565b610bac565b34801561068d57600080fd5b5061026e61069c36600461225c565b610bf7565b3480156106ad57600080fd5b5061026e6106bc3660046121cd565b610c26565b3480156106cd57600080fd5b506102cd60165481565b6060600d80546106e69061234e565b80601f01602080910402602001604051908101604052809291908181526020018280546107129061234e565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b6000610776338484610dd4565b5060015b92915050565b6000546001600160a01b031633146107b35760405162461bcd60e51b81526004016107aa90612388565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b60006107e4848484610ef8565b610836843361083185604051806060016040528060288152602001612568602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906112fa565b610dd4565b5060019392505050565b6000546001600160a01b0316331461086a5760405162461bcd60e51b81526004016107aa90612388565b6018805460ff191683151590811790915560ff16801561088a5750601754155b15610899574360175560168190555b5050565b6000600a548211156109045760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107aa565b600061090e611334565b905061091a8382610d10565b9392505050565b6000546001600160a01b0316331461094b5760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6001600160a01b03811660009081526006602052604081205460ff16156109ac57506001600160a01b031660009081526003602052604090205490565b6001600160a01b03821660009081526002602052604090205461077a9061089d565b6000546001600160a01b031633146109f85760405162461bcd60e51b81526004016107aa90612388565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600e80546106e69061234e565b6000610776338484610ef8565b6000546001600160a01b03163314610ad35760405162461bcd60e51b81526004016107aa90612388565b6010805460ff97881661ffff199182161761010097891688021762ff00001990811662010000978a16880217909255601180549589169590911694909417928716909502919091179093169290931602179055565b6000546001600160a01b03163314610b525760405162461bcd60e51b81526004016107aa90612388565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610ba190831515815260200190565b60405180910390a150565b6000546001600160a01b03163314610bd65760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b03163314610c215760405162461bcd60e51b81526004016107aa90612388565b601455565b6000546001600160a01b03163314610c505760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b038116610cb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107aa565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061091a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611357565b600082600003610d645750600061077a565b6000610d7083856123d3565b905082610d7d85836123f2565b1461091a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107aa565b6001600160a01b038316610e365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107aa565b6001600160a01b038216610e975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107aa565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f5c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107aa565b6001600160a01b038216610fbe5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107aa565b600081116110205760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107aa565b6000546001600160a01b0384811691161480159061104c57506000546001600160a01b03838116911614155b156110a35760185460ff166110a35760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e000000000000000060448201526064016107aa565b60006110ae3061096f565b905060135481106110be57506013545b601454811080159081906110dc57506012546301000000900460ff16155b801561111a57507f0000000000000000000000008f1d8ed4ad1bb39b97455f828b652d36800536e56001600160a01b0316856001600160a01b031614155b80156111305750601254640100000000900460ff165b1561114357601454915061114382611385565b6001600160a01b03851660009081526005602052604090205460019060ff168061118557506001600160a01b03851660009081526005602052604090205460ff165b1561118e575060005b80156112e6576001600160a01b03861660009081526008602052604090205460ff161580156111d657506001600160a01b03851660009081526008602052604090205460ff16155b156112e65760135484111561123e5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107aa565b7f0000000000000000000000008f1d8ed4ad1bb39b97455f828b652d36800536e56001600160a01b0316856001600160a01b0316146112e6576015546112838661096f565b61128d9086612414565b11156112e65760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b60648201526084016107aa565b6112f286868684611569565b505050505050565b6000818484111561131e5760405162461bcd60e51b81526004016107aa919061213b565b50600061132b8486612427565b95945050505050565b60008060006113416117d7565b90925090506113508282610d10565b9250505090565b600081836113785760405162461bcd60e51b81526004016107aa919061213b565b50600061132b84866123f2565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff908116939182048116926113cb92610100918290048316929190041661243a565b6113d5919061243a565b6113df919061243a565b6113ea906002612453565b60115460105460ff9283169350600092849261141392610100918290048316929190041661243a565b6114209060ff16856123d3565b61142a91906123f2565b905060006114388285612427565b90504761144482611959565b60006114508247612427565b6011546010549192506000916114769160ff61010091829004811692919091041661243a565b6114839060ff1687612427565b61148d90836123f2565b6011546010549192506000916114b39160ff61010091829004811692919091041661243a565b6114c09060ff16836123d3565b905080156114d2576114d28682611b11565b6011546010546000916114f59160ff62010000928390048116929091041661243a565b60ff166115038460026123d3565b61150d91906123d3565b9050801561155157600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561154f573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b801561166c576115806012805462ffffff19169055565b7f0000000000000000000000008f1d8ed4ad1bb39b97455f828b652d36800536e56001600160a01b0316846001600160a01b0316036115f6576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f0000000000000000000000008f1d8ed4ad1bb39b97455f828b652d36800536e56001600160a01b0316836001600160a01b03160361166c576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff1680156116ad57506001600160a01b03831660009081526006602052604090205460ff16155b156116c2576116bd848484611bf1565b6117c0565b6001600160a01b03841660009081526006602052604090205460ff1615801561170357506001600160a01b03831660009081526006602052604090205460ff165b15611713576116bd848484611d38565b6001600160a01b03841660009081526006602052604090205460ff1615801561175557506001600160a01b03831660009081526006602052604090205460ff16155b15611765576116bd848484611df3565b6001600160a01b03841660009081526006602052604090205460ff1680156117a557506001600160a01b03831660009081526006602052604090205460ff165b156117b5576116bd848484611e49565b6117c0848484611df3565b6117d16012805462ffffff19169055565b50505050565b600a546009546000918291825b600754811015611929578260026000600784815481106118065761180661247c565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611871575081600360006007848154811061184a5761184a61247c565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561188757600a54600954945094505050509091565b6118cd60026000600784815481106118a1576118a161247c565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611eca565b925061191560036000600784815481106118e9576118e961247c565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611eca565b91508061192181612492565b9150506117e4565b50600954600a5461193991610d10565b82101561195057600a546009549350935050509091565b90939092509050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061198e5761198e61247c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3091906124ab565b81600181518110611a4357611a4361247c565b60200260200101906001600160a01b031690816001600160a01b031681525050611a8e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dd4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611ae39085906000908690309042906004016124c8565b600060405180830381600087803b158015611afd57600080fd5b505af11580156112f2573d6000803e3d6000fd5b611b3c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dd4565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611bc5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bea9190612539565b5050505050565b600080600080611c0085611f0c565b93509350935093506000806000611c2188878787611c1c611334565b611f6b565b6001600160a01b038d166000908152600360205260409020549295509093509150611c4c9089611eca565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611c7b9084611eca565b6001600160a01b03808c1660009081526002602052604080822093909355908b1681522054611caa9083611fcd565b6001600160a01b038a16600090815260026020526040902055611ccc8561202c565b611cd58461202c565b611cdf81876120b5565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef89604051611d2491815260200190565b60405180910390a350505050505050505050565b600080600080611d4785611f0c565b93509350935093506000806000611d6388878787611c1c611334565b6001600160a01b038d166000908152600260205260409020549295509093509150611d8e9084611eca565b6001600160a01b03808c16600090815260026020908152604080832094909455918c16815260039091522054611dc49088611fcd565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054611caa9083611fcd565b600080600080611e0285611f0c565b93509350935093506000806000611e1e88878787611c1c611334565b6001600160a01b038d166000908152600260205260409020549295509093509150611c7b9084611eca565b600080600080611e5885611f0c565b93509350935093506000806000611e7488878787611c1c611334565b6001600160a01b038d166000908152600360205260409020549295509093509150611e9f9089611eca565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611d8e90845b600061091a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112fa565b6000806000806000611f1d866120d9565b90506000611f2a876120fa565b90506000611f378861211a565b90506000611f4f83611f498b87611eca565b90611eca565b9050611f5b8183611eca565b9993985091965094509092505050565b6000808080611f7a8986610d52565b90506000611f888987610d52565b90506000611f968988610d52565b90506000611fa48989610d52565b90506000611fb882611f4985818989611eca565b949d949c50929a509298505050505050505050565b600080611fda8385612414565b90508381101561091a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107aa565b6000612036611334565b905060006120448383610d52565b306000908152600260205260409020549091506120619082611fcd565b3060009081526002602090815260408083209390935560069052205460ff16156120b0573060009081526003602052604090205461209f9084611fcd565b306000908152600360205260409020555b505050565b600a546120c29083611eca565b600a55600b546120d29082611fcd565b600b555050565b60125460009061077a906064906120f490859060ff16610d52565b90610d10565b60125460009061077a906064906120f4908590610100900460ff16610d52565b60125460009061077a906064906120f490859062010000900460ff16610d52565b600060208083528351808285015260005b818110156121685785810183015185820160400152820161214c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461219e57600080fd5b50565b600080604083850312156121b457600080fd5b82356121bf81612189565b946020939093013593505050565b6000602082840312156121df57600080fd5b813561091a81612189565b6000806000606084860312156121ff57600080fd5b833561220a81612189565b9250602084013561221a81612189565b929592945050506040919091013590565b8035801515811461223b57600080fd5b919050565b6000806040838503121561225357600080fd5b6121bf8361222b565b60006020828403121561226e57600080fd5b5035919050565b803560ff8116811461223b57600080fd5b60008060008060008060c0878903121561229f57600080fd5b6122a887612275565b95506122b660208801612275565b94506122c460408801612275565b93506122d260608801612275565b92506122e060808801612275565b91506122ee60a08801612275565b90509295509295509295565b60006020828403121561230c57600080fd5b61091a8261222b565b6000806040838503121561232857600080fd5b823561233381612189565b9150602083013561234381612189565b809150509250929050565b600181811c9082168061236257607f821691505b60208210810361238257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156123ed576123ed6123bd565b500290565b60008261240f57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561077a5761077a6123bd565b8181038181111561077a5761077a6123bd565b60ff818116838216019081111561077a5761077a6123bd565b600060ff821660ff84168160ff0481118215151615612474576124746123bd565b029392505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016124a4576124a46123bd565b5060010190565b6000602082840312156124bd57600080fd5b815161091a81612189565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125185784516001600160a01b0316835293830193918301916001016124f3565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561254e57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212206c0cc42ec6e70500c6bf4ca64fa6f269621567cac2559ee2b1b9984848e4bde764736f6c63430008100033

Deployed Bytecode Sourcemap

25397:20980:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28708:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29693:193;;;;;;;;;;-1:-1:-1;29693:193:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;29693:193:0;1023:187:1;31049:115:0;;;;;;;;;;-1:-1:-1;31049:115:0;;;;;:::i;:::-;;:::i;:::-;;26693:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;26693:51:0;1467:230:1;28985:95:0;;;;;;;;;;-1:-1:-1;29065:7:0;;28985:95;;;1848:25:1;;;1836:2;1821:18;28985:95:0;1702:177:1;29894:446:0;;;;;;;;;;-1:-1:-1;29894:446:0;;;;;:::i;:::-;;:::i;26557:22::-;;;;;;;;;;-1:-1:-1;26557:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;2565:4:1;2553:17;;;2535:36;;2607:17;;;2602:2;2587:18;;2580:45;2661:17;;2641:18;;;2634:45;;;;2523:2;2508:18;26557:22:0;2345:340:1;46123:251:0;;;;;;;;;;-1:-1:-1;46123:251:0;;;;;:::i;:::-;;:::i;30480:322::-;;;;;;;;;;-1:-1:-1;30480:322:0;;;;;:::i;:::-;;:::i;28894:83::-;;;;;;;;;;-1:-1:-1;28960:9:0;;28894:83;;28960:9;;;;3435:36:1;;3423:2;3408:18;28894:83:0;3293:184:1;30812:111:0;;;;;;;;;;-1:-1:-1;30812:111:0;;;;;:::i;:::-;;:::i;26530:20::-;;;;;;;;;;-1:-1:-1;26530:20:0;;;;;;;;;;;;;;;;;;;;;;26751:38;;;;;;;;;;;;;;;36187:124;;;;;;;;;;-1:-1:-1;36187:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;36276:27:0;36252:4;36276:27;;;:18;:27;;;;;;;;;36187:124;29088:198;;;;;;;;;;-1:-1:-1;29088:198:0;;;;;:::i;:::-;;:::i;15461:148::-;;;;;;;;;;;;;:::i;26868:55::-;;;;;;;;;;;;;;;;30350:120;;;;;;;;;;-1:-1:-1;30350:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;30442:20:0;30418:4;30442:20;;;:11;:20;;;;;;;;;30350:120;14819:79;;;;;;;;;;-1:-1:-1;14857:7:0;14884:6;-1:-1:-1;;;;;14884:6:0;14819:79;;27021:57;;;;;;;;;;;;;;;;31172:114;;;;;;;;;;-1:-1:-1;31172:114:0;;;;;:::i;:::-;;:::i;28799:87::-;;;;;;;;;;;;;:::i;27569:46::-;;;;;;;;;;-1:-1:-1;27569:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;29294:199;;;;;;;;;;-1:-1:-1;29294:199:0;;;;;:::i;:::-;;:::i;31294:514::-;;;;;;;;;;-1:-1:-1;31294:514:0;;;;;:::i;:::-;;:::i;31964:171::-;;;;;;;;;;-1:-1:-1;31964:171:0;;;;;:::i;:::-;;:::i;36319:128::-;;;;;;;;;;-1:-1:-1;36319:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;36410:29:0;36386:4;36410:29;;;:20;:29;;;;;;;;;36319:128;29501:184;;;;;;;;;;-1:-1:-1;29501:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;29650:18:0;;;29618:7;29650:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29501:184;30931:110;;;;;;;;;;-1:-1:-1;30931:110:0;;;;;:::i;:::-;;:::i;31816:140::-;;;;;;;;;;-1:-1:-1;31816:140:0;;;;;:::i;:::-;;:::i;15764:281::-;;;;;;;;;;-1:-1:-1;15764:281:0;;;;;:::i;:::-;;:::i;27471:29::-;;;;;;;;;;;;;;;;28708:83;28745:13;28778:5;28771:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28708:83;:::o;29693:193::-;29795:4;29817:39;7663:10;29840:7;29849:6;29817:8;:39::i;:::-;-1:-1:-1;29874:4:0;29693:193;;;;;:::o;31049:115::-;15031:6;;-1:-1:-1;;;;;15031:6:0;7663:10;15031:22;15023:67;;;;-1:-1:-1;;;15023:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;31120:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;31120:36:0::1;31152:4;31120:36;::::0;;31049:115::o;29894:446::-;30026:4;30043:36;30053:6;30061:9;30072:6;30043:9;:36::i;:::-;30090:220;30113:6;7663:10;30161:138;30217:6;30161:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30161:19:0;;;;;;:11;:19;;;;;;;;7663:10;30161:33;;;;;;;;;;:37;:138::i;:::-;30090:8;:220::i;:::-;-1:-1:-1;30328:4:0;29894:446;;;;;:::o;46123:251::-;15031:6;;-1:-1:-1;;;;;15031:6:0;7663:10;15031:22;15023:67;;;;-1:-1:-1;;;15023:67:0;;;;;;;:::i;:::-;46210:11:::1;:21:::0;;-1:-1:-1;;46210:21:0::1;::::0;::::1;;::::0;;::::1;::::0;;;::::1;46245:11:::0;:30;::::1;;;-1:-1:-1::0;46260:10:0::1;::::0;:15;46245:30:::1;46242:125;;;46304:12;46291:10;:25:::0;46331:10:::1;:24:::0;;;46242:125:::1;46123:251:::0;;:::o;30480:322::-;30574:7;30632;;30621;:18;;30599:110;;;;-1:-1:-1;;;30599:110:0;;5917:2:1;30599:110:0;;;5899:21:1;5956:2;5936:18;;;5929:30;5995:34;5975:18;;;5968:62;-1:-1:-1;;;6046:18:1;;;6039:40;6096:19;;30599:110:0;5715:406:1;30599:110:0;30720:19;30742:10;:8;:10::i;:::-;30720:32;-1:-1:-1;30770:24:0;:7;30720:32;30770:11;:24::i;:::-;30763:31;30480:322;-1:-1:-1;;;30480:322:0:o;30812:111::-;15031:6;;-1:-1:-1;;;;;15031:6:0;7663:10;15031:22;15023:67;;;;-1:-1:-1;;;15023:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30881:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;30881:34:0::1;30911:4;30881:34;::::0;;30812:111::o;29088:198::-;-1:-1:-1;;;;;29178:20:0;;29154:7;29178:20;;;:11;:20;;;;;;;;29174:49;;;-1:-1:-1;;;;;;29207:16:0;;;;;:7;:16;;;;;;;29088:198::o;29174:49::-;-1:-1:-1;;;;;29261:16:0;;;;;;:7;:16;;;;;;29241:37;;:19;:37::i;15461:148::-;15031:6;;-1:-1:-1;;;;;15031:6:0;7663:10;15031:22;15023:67;;;;-1:-1:-1;;;15023:67:0;;;;;;;:::i;:::-;15568:1:::1;15552:6:::0;;15531:40:::1;::::0;-1:-1:-1;;;;;15552:6:0;;::::1;::::0;15531:40:::1;::::0;15568:1;;15531:40:::1;15599:1;15582:19:::0;;-1:-1:-1;;;;;;15582:19:0::1;::::0;;15461:148::o;31172:114::-;15031:6;;-1:-1:-1;;;;;15031:6:0;7663:10;15031:22;15023:67;;;;-1:-1:-1;;;15023:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31241:29:0::1;31273:5;31241:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;31241:37:0::1;::::0;;31172:114::o;28799:87::-;28838:13;28871:7;28864:14;;;;;:::i;29294:199::-;29399:4;29421:42;7663:10;29445:9;29456:6;29421:9;:42::i;31294:514::-;15031:6;;-1:-1:-1;;;;;15031:6:0;7663:10;15031:22;15023:67;;;;-1:-1:-1;;;15023:67:0;;;;;;;:::i;:::-;31541:6:::1;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;31586:32:0;;;;31541:34:::1;31586:32:::0;;::::1;::::0;::::1;;-1:-1:-1::0;;31629:32:0;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;31674:7:::1;:36:::0;;;;::::1;31721:34:::0;;;;;;;;;;::::1;::::0;;::::1;::::0;;;::::1;31766::::0;;::::1;::::0;;;::::1;;;::::0;;31294:514::o;31964:171::-;15031:6;;-1:-1:-1;;;;;15031:6:0;7663:10;15031:22;15023:67;;;;-1:-1:-1;;;15023:67:0;;;;;;;:::i;:::-;32041:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;32041:32:0;;::::1;;::::0;;32089:38:::1;::::0;::::1;::::0;::::1;::::0;32065:8;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;32089:38:0::1;;;;;;;;31964:171:::0;:::o;30931:110::-;15031:6;;-1:-1:-1;;;;;15031:6:0;7663:10;15031:22;15023:67;;;;-1:-1:-1;;;15023:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30998:27:0::1;31028:5;30998:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;30998:35:0::1;::::0;;30931:110::o;31816:140::-;15031:6;;-1:-1:-1;;;;;15031:6:0;7663:10;15031:22;15023:67;;;;-1:-1:-1;;;15023:67:0;;;;;;;:::i;:::-;31907:29:::1;:41:::0;31816:140::o;15764:281::-;15031:6;;-1:-1:-1;;;;;15031:6:0;7663:10;15031:22;15023:67;;;;-1:-1:-1;;;15023:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15867:22:0;::::1;15845:110;;;::::0;-1:-1:-1;;;15845:110:0;;6328:2:1;15845:110:0::1;::::0;::::1;6310:21:1::0;6367:2;6347:18;;;6340:30;6406:34;6386:18;;;6379:62;-1:-1:-1;;;6457:18:1;;;6450:36;6503:19;;15845:110:0::1;6126:402:1::0;15845:110:0::1;15992:6;::::0;;15971:38:::1;::::0;-1:-1:-1;;;;;15971:38:0;;::::1;::::0;15992:6;::::1;::::0;15971:38:::1;::::0;::::1;16020:6;:17:::0;;-1:-1:-1;;;;;;16020:17:0::1;-1:-1:-1::0;;;;;16020:17:0;;;::::1;::::0;;;::::1;::::0;;15764:281::o;5307:132::-;5365:7;5392:39;5396:1;5399;5392:39;;;;;;;;;;;;;;;;;:3;:39::i;4812:252::-;4870:7;4896:1;4901;4896:6;4892:47;;-1:-1:-1;4926:1:0;4919:8;;4892:47;4951:9;4963:5;4967:1;4963;:5;:::i;:::-;4951:17;-1:-1:-1;4996:1:0;4987:5;4991:1;4951:17;4987:5;:::i;:::-;:10;4979:56;;;;-1:-1:-1;;;4979:56:0;;7262:2:1;4979:56:0;;;7244:21:1;7301:2;7281:18;;;7274:30;7340:34;7320:18;;;7313:62;-1:-1:-1;;;7391:18:1;;;7384:31;7432:19;;4979:56:0;7060:397:1;36455:371:0;-1:-1:-1;;;;;36582:19:0;;36574:68;;;;-1:-1:-1;;;36574:68:0;;7664:2:1;36574:68:0;;;7646:21:1;7703:2;7683:18;;;7676:30;7742:34;7722:18;;;7715:62;-1:-1:-1;;;7793:18:1;;;7786:34;7837:19;;36574:68:0;7462:400:1;36574:68:0;-1:-1:-1;;;;;36661:21:0;;36653:68;;;;-1:-1:-1;;;36653:68:0;;8069:2:1;36653:68:0;;;8051:21:1;8108:2;8088:18;;;8081:30;8147:34;8127:18;;;8120:62;-1:-1:-1;;;8198:18:1;;;8191:32;8240:19;;36653:68:0;7867:398:1;36653:68:0;-1:-1:-1;;;;;36734:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36786:32;;1848:25:1;;;36786:32:0;;1821:18:1;36786:32:0;;;;;;;36455:371;;;:::o;36834:2343::-;-1:-1:-1;;;;;36956:18:0;;36948:68;;;;-1:-1:-1;;;36948:68:0;;8472:2:1;36948:68:0;;;8454:21:1;8511:2;8491:18;;;8484:30;8550:34;8530:18;;;8523:62;-1:-1:-1;;;8601:18:1;;;8594:35;8646:19;;36948:68:0;8270:401:1;36948:68:0;-1:-1:-1;;;;;37035:16:0;;37027:64;;;;-1:-1:-1;;;37027:64:0;;8878:2:1;37027:64:0;;;8860:21:1;8917:2;8897:18;;;8890:30;8956:34;8936:18;;;8929:62;-1:-1:-1;;;9007:18:1;;;9000:33;9050:19;;37027:64:0;8676:399:1;37027:64:0;37119:1;37110:6;:10;37102:64;;;;-1:-1:-1;;;37102:64:0;;9282:2:1;37102:64:0;;;9264:21:1;9321:2;9301:18;;;9294:30;9360:34;9340:18;;;9333:62;-1:-1:-1;;;9411:18:1;;;9404:39;9460:19;;37102:64:0;9080:405:1;37102:64:0;14857:7;14884:6;-1:-1:-1;;;;;37192:15:0;;;14884:6;;37192:15;;;;:32;;-1:-1:-1;14857:7:0;14884:6;-1:-1:-1;;;;;37211:13:0;;;14884:6;;37211:13;;37192:32;37187:88;;;37235:11;;;;37227:48;;;;-1:-1:-1;;;37227:48:0;;9692:2:1;37227:48:0;;;9674:21:1;9731:2;9711:18;;;9704:30;9770:26;9750:18;;;9743:54;9814:18;;37227:48:0;9490:348:1;37227:48:0;37610:28;37641:24;37659:4;37641:9;:24::i;:::-;37610:55;;37706:12;;37682:20;:36;37678:104;;-1:-1:-1;37758:12:0;;37678:104;37858:29;;37821:66;;;;;;;37916:53;;-1:-1:-1;37953:16:0;;;;;;;37952:17;37916:53;:91;;;;;37994:13;-1:-1:-1;;;;;37986:21:0;:4;-1:-1:-1;;;;;37986:21:0;;;37916:91;:129;;;;-1:-1:-1;38024:21:0;;;;;;;37916:129;37898:318;;;38095:29;;38072:52;;38168:36;38183:20;38168:14;:36::i;:::-;-1:-1:-1;;;;;38409:24:0;;38289:12;38409:24;;;:18;:24;;;;;;38304:4;;38409:24;;;:50;;-1:-1:-1;;;;;;38437:22:0;;;;;;:18;:22;;;;;;;;38409:50;38405:98;;;-1:-1:-1;38486:5:0;38405:98;38517:7;38513:536;;;-1:-1:-1;;;;;38546:26:0;;;;;;:20;:26;;;;;;;;38545:27;:56;;;;-1:-1:-1;;;;;;38577:24:0;;;;;;:20;:24;;;;;;;;38576:25;38545:56;38541:497;;;38662:12;;38652:6;:22;;38622:136;;;;-1:-1:-1;;;38622:136:0;;10045:2:1;38622:136:0;;;10027:21:1;10084:2;10064:18;;;10057:30;10123:34;10103:18;;;10096:62;-1:-1:-1;;;10174:18:1;;;10167:38;10222:19;;38622:136:0;9843:404:1;38622:136:0;38787:13;-1:-1:-1;;;;;38781:19:0;:2;-1:-1:-1;;;;;38781:19:0;;38777:228;;38885:14;;38868:13;38878:2;38868:9;:13::i;:::-;38859:22;;:6;:22;:::i;:::-;:40;;38825:160;;;;-1:-1:-1;;;38825:160:0;;10584:2:1;38825:160:0;;;10566:21:1;10623:2;10603:18;;;10596:30;10662:34;10642:18;;;10635:62;-1:-1:-1;;;10713:18:1;;;10706:32;10755:19;;38825:160:0;10382:398:1;38825:160:0;39128:41;39143:4;39149:2;39153:6;39161:7;39128:14;:41::i;:::-;36937:2240;;;36834:2343;;;:::o;4327:226::-;4447:7;4483:12;4475:6;;;;4467:29;;;;-1:-1:-1;;;4467:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4507:9:0;4519:5;4523:1;4519;:5;:::i;:::-;4507:17;4327:226;-1:-1:-1;;;;;4327:226:0:o;33664:164::-;33706:7;33727:15;33744;33763:19;:17;:19::i;:::-;33726:56;;-1:-1:-1;33726:56:0;-1:-1:-1;33800:20:0;33726:56;;33800:11;:20::i;:::-;33793:27;;;;33664:164;:::o;5935:312::-;6055:7;6090:12;6083:5;6075:28;;;;-1:-1:-1;;;6075:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6114:9:0;6126:5;6130:1;6126;:5;:::i;39185:1195::-;27385:16;:23;;-1:-1:-1;;27385:23:0;;;;;39388:7:::1;:17:::0;39369:6:::1;:16:::0;27385:23;;39388:17;;;::::1;27385:23:::0;39388:17;;::::1;::::0;39369:16;;::::1;::::0;::::1;::::0;39330:36:::1;::::0;27385:23;39349:17;;;::::1;::::0;::::1;::::0;39330:16;;::::1;;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;39329:81;::::0;39409:1:::1;39329:81;:::i;:::-;39486:7;:17:::0;39467:6:::1;:16:::0;39307:103:::1;::::0;;::::1;::::0;-1:-1:-1;39421:32:0::1;::::0;39307:103;;39467:36:::1;::::0;39486:17:::1;::::0;;;::::1;::::0;::::1;::::0;39467:16;;::::1;;:36;:::i;:::-;39457:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;39456:63;;;;:::i;:::-;39421:98:::0;-1:-1:-1;39530:14:0::1;39547:33;39421:98:::0;39547:6;:33:::1;:::i;:::-;39530:50:::0;-1:-1:-1;39618:21:0::1;39652:24;39530:50:::0;39652:16:::1;:24::i;:::-;39689:20;39712:38;39736:14:::0;39712:21:::1;:38;:::i;:::-;39833:7;:17:::0;39814:6:::1;:16:::0;39689:61;;-1:-1:-1;39761:19:0::1;::::0;39814:36:::1;::::0;39833:17:::1;;::::0;;;::::1;::::0;::::1;::::0;39814:16;;;::::1;;:36;:::i;:::-;39799:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;39783:69;::::0;:12;:69:::1;:::i;:::-;39929:7;:17:::0;39910:6:::1;:16:::0;39761:91;;-1:-1:-1;39863:29:0::1;::::0;39910:36:::1;::::0;39929:17:::1;;::::0;;;::::1;::::0;::::1;::::0;39910:16;;;::::1;;:36;:::i;:::-;39895:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;39863:84:::0;-1:-1:-1;39964:25:0;;39960:160:::1;;40047:61;40060:24;40086:21;40047:12;:61::i;:::-;40227:7;:17:::0;40208:6:::1;:16:::0;40166:20:::1;::::0;40208:36:::1;::::0;40227:17:::1;::::0;;;;::::1;::::0;::::1;::::0;40208:16;;::::1;;:36;:::i;:::-;40189:56;;:15;:11:::0;40203:1:::1;40189:15;:::i;:::-;:56;;;;:::i;:::-;40166:79:::0;-1:-1:-1;40271:16:0;;40267:98:::1;;40312:17;::::0;40304:49:::1;::::0;-1:-1:-1;;;;;40312:17:0;;::::1;::::0;40304:49;::::1;;;::::0;40340:12;;40312:17:::1;40304:49:::0;40312:17;40304:49;40340:12;40312:17;40304:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40267:98;-1:-1:-1::0;;27431:16:0;:24;;-1:-1:-1;;27431:24:0;;;-1:-1:-1;;;;;;;39185:1195:0:o;41585:1022::-;41740:7;41736:230;;;41764:14;35724;:18;;-1:-1:-1;;35781:17:0;;;35681:132;41764:14;41807:13;-1:-1:-1;;;;;41797:23:0;:6;-1:-1:-1;;;;;41797:23:0;;41793:72;;35875:6;:17;35858:14;:34;;35875:17;;;;-1:-1:-1;;35903:32:0;;;;;;;35875:17;35919:16;;;;;35903:32;;-1:-1:-1;;35946:32:0;35962:16;;;;;;;;;35946:32;;;;;;;;;41841:8;41896:13;-1:-1:-1;;;;;41883:26:0;:9;-1:-1:-1;;;;;41883:26:0;;41879:76;;36057:7;:18;36040:14;:35;;36057:18;;;;-1:-1:-1;;36086:33:0;;;;;;;36057:18;36102:17;;;;;36086:33;;-1:-1:-1;;36130:33:0;36146:17;;;;;;;;;36130:33;;;;;;;;;41930:9;-1:-1:-1;;;;;41982:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;42006:22:0;;;;;;:11;:22;;;;;;;;42005:23;41982:46;41978:597;;;42045:48;42067:6;42075:9;42086:6;42045:21;:48::i;:::-;41978:597;;;-1:-1:-1;;;;;42116:19:0;;;;;;:11;:19;;;;;;;;42115:20;:46;;;;-1:-1:-1;;;;;;42139:22:0;;;;;;:11;:22;;;;;;;;42115:46;42111:464;;;42178:46;42198:6;42206:9;42217:6;42178:19;:46::i;42111:464::-;-1:-1:-1;;;;;42247:19:0;;;;;;:11;:19;;;;;;;;42246:20;:47;;;;-1:-1:-1;;;;;;42271:22:0;;;;;;:11;:22;;;;;;;;42270:23;42246:47;42242:333;;;42310:44;42328:6;42336:9;42347:6;42310:17;:44::i;42242:333::-;-1:-1:-1;;;;;42376:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42399:22:0;;;;;;:11;:22;;;;;;;;42376:45;42372:203;;;42438:48;42460:6;42468:9;42479:6;42438:21;:48::i;42372:203::-;42519:44;42537:6;42545:9;42556:6;42519:17;:44::i;:::-;42585:14;35724;:18;;-1:-1:-1;;35781:17:0;;;35681:132;42585:14;41585:1022;;;;:::o;33836:605::-;33934:7;;33970;;33887;;;;;33988:338;34012:9;:16;34008:20;;33988:338;;;34096:7;34072;:21;34080:9;34090:1;34080:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34080:12:0;34072:21;;;;;;;;;;;;;:31;;:83;;;34148:7;34124;:21;34132:9;34142:1;34132:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34132:12:0;34124:21;;;;;;;;;;;;;:31;34072:83;34050:146;;;34179:7;;34188;;34171:25;;;;;;;33836:605;;:::o;34050:146::-;34221:34;34233:7;:21;34241:9;34251:1;34241:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34241:12:0;34233:21;;;;;;;;;;;;;34221:7;;:11;:34::i;:::-;34211:44;;34280:34;34292:7;:21;34300:9;34310:1;34300:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34300:12:0;34292:21;;;;;;;;;;;;;34280:7;;:11;:34::i;:::-;34270:44;-1:-1:-1;34030:3:0;;;;:::i;:::-;;;;33988:338;;;-1:-1:-1;34362:7:0;;34350;;:20;;:11;:20::i;:::-;34340:7;:30;34336:61;;;34380:7;;34389;;34372:25;;;;;;33836:605;;:::o;34336:61::-;34416:7;;34425;;-1:-1:-1;33836:605:0;-1:-1:-1;33836:605:0:o;40388:589::-;40538:16;;;40552:1;40538:16;;;;;;;;40514:21;;40538:16;;;;;;;;;;-1:-1:-1;40538:16:0;40514:40;;40583:4;40565;40570:1;40565:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40565:23:0;;;-1:-1:-1;;;;;40565:23:0;;;;;40609:15;-1:-1:-1;;;;;40609:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40599:4;40604:1;40599:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;40599:32:0;;;-1:-1:-1;;;;;40599:32:0;;;;;40644:62;40661:4;40676:15;40694:11;40644:8;:62::i;:::-;40745:224;;-1:-1:-1;;;40745:224:0;;-1:-1:-1;;;;;40745:15:0;:66;;;;:224;;40826:11;;40852:1;;40896:4;;40923;;40943:15;;40745:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40985:519;41133:62;41150:4;41165:15;41183:11;41133:8;:62::i;:::-;41238:258;;-1:-1:-1;;;41238:258:0;;41310:4;41238:258;;;13300:34:1;;;13350:18;;;13343:34;;;41356:1:0;13393:18:1;;;13386:34;;;13436:18;;;13429:34;13479:19;;;13472:44;41470:15:0;13532:19:1;;;13525:35;41238:15:0;-1:-1:-1;;;;;41238:31:0;;;;41277:9;;13234:19:1;;41238:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40985:519;;:::o;44310:863::-;44461:23;44499:12;44526:18;44559:15;44588:20;44600:7;44588:11;:20::i;:::-;44446:162;;;;;;;;44620:15;44637:23;44662:12;44678:135;44704:7;44726:4;44745:10;44770:7;44792:10;:8;:10::i;:::-;44678:11;:135::i;:::-;-1:-1:-1;;;;;44844:15:0;;;;;;:7;:15;;;;;;44619:194;;-1:-1:-1;44619:194:0;;-1:-1:-1;44619:194:0;-1:-1:-1;44844:28:0;;44864:7;44844:19;:28::i;:::-;-1:-1:-1;;;;;44826:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44901:7;:15;;;;:28;;44921:7;44901:19;:28::i;:::-;-1:-1:-1;;;;;44883:15:0;;;;;;;:7;:15;;;;;;:46;;;;44961:18;;;;;;;:39;;44984:15;44961:22;:39::i;:::-;-1:-1:-1;;;;;44940:18:0;;;;;;:7;:18;;;;;:60;45011:26;45026:10;45011:14;:26::i;:::-;45048:23;45063:7;45048:14;:23::i;:::-;45082;45094:4;45100;45082:11;:23::i;:::-;45138:9;-1:-1:-1;;;;;45121:44:0;45130:6;-1:-1:-1;;;;;45121:44:0;;45149:15;45121:44;;;;1848:25:1;;1836:2;1821:18;;1702:177;45121:44:0;;;;;;;;44435:738;;;;;;;44310:863;;;:::o;43427:875::-;43576:23;43614:12;43641:18;43674:15;43703:20;43715:7;43703:11;:20::i;:::-;43561:162;;;;;;;;43735:15;43752:23;43777:12;43793:135;43819:7;43841:4;43860:10;43885:7;43907:10;:8;:10::i;43793:135::-;-1:-1:-1;;;;;43959:15:0;;;;;;:7;:15;;;;;;43734:194;;-1:-1:-1;43734:194:0;;-1:-1:-1;43734:194:0;-1:-1:-1;43959:28:0;;43734:194;43959:19;:28::i;:::-;-1:-1:-1;;;;;43941:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;44019:18;;;;;:7;:18;;;;;:39;;44042:15;44019:22;:39::i;:::-;-1:-1:-1;;;;;43998:18:0;;;;;;:7;:18;;;;;;;;:60;;;;44090:7;:18;;;;:39;;44113:15;44090:22;:39::i;42615:802::-;42762:23;42800:12;42827:18;42860:15;42889:20;42901:7;42889:11;:20::i;:::-;42747:162;;;;;;;;42921:15;42938:23;42963:12;42979:135;43005:7;43027:4;43046:10;43071:7;43093:10;:8;:10::i;42979:135::-;-1:-1:-1;;;;;43145:15:0;;;;;;:7;:15;;;;;;42920:194;;-1:-1:-1;42920:194:0;;-1:-1:-1;42920:194:0;-1:-1:-1;43145:28:0;;42920:194;43145:19;:28::i;45181:934::-;45332:23;45370:12;45397:18;45430:15;45459:20;45471:7;45459:11;:20::i;:::-;45317:162;;;;;;;;45491:15;45508:23;45533:12;45549:135;45575:7;45597:4;45616:10;45641:7;45663:10;:8;:10::i;45549:135::-;-1:-1:-1;;;;;45715:15:0;;;;;;:7;:15;;;;;;45490:194;;-1:-1:-1;45490:194:0;;-1:-1:-1;45490:194:0;-1:-1:-1;45715:28:0;;45735:7;45715:19;:28::i;:::-;-1:-1:-1;;;;;45697:15:0;;;;;;:7;:15;;;;;;;;:46;;;;45772:7;:15;;;;:28;;45792:7;3888:136;3946:7;3973:43;3977:1;3980;3973:43;;;;;;;;;;;;;;;;;:3;:43::i;32392:568::-;32493:7;32515;32537;32559;32594:12;32609:31;32632:7;32609:22;:31::i;:::-;32594:46;;32651:18;32672:30;32694:7;32672:21;:30::i;:::-;32651:51;;32713:15;32731:30;32753:7;32731:21;:30::i;:::-;32713:48;-1:-1:-1;32772:23:0;32798:33;32820:10;32798:17;:7;32810:4;32798:11;:17::i;:::-;:21;;:33::i;:::-;32772:59;-1:-1:-1;32860:28:0;32772:59;32880:7;32860:19;:28::i;:::-;32842:46;32926:4;;-1:-1:-1;32932:10:0;;-1:-1:-1;32932:10:0;-1:-1:-1;32392:568:0;;-1:-1:-1;;;32392:568:0:o;32968:688::-;33193:7;;;;33290:24;:7;33302:11;33290;:24::i;:::-;33272:42;-1:-1:-1;33325:12:0;33340:21;:4;33349:11;33340:8;:21::i;:::-;33325:36;-1:-1:-1;33372:18:0;33393:27;:10;33408:11;33393:14;:27::i;:::-;33372:48;-1:-1:-1;33431:15:0;33449:24;:7;33461:11;33449;:24::i;:::-;33431:42;-1:-1:-1;33484:23:0;33510:88;33431:42;33510:61;33560:10;33510:61;:7;33536:4;33510:25;:31::i;:88::-;33617:7;;;;-1:-1:-1;33643:4:0;;-1:-1:-1;32968:688:0;;-1:-1:-1;;;;;;;;;32968:688:0:o;3424:181::-;3482:7;;3514:5;3518:1;3514;:5;:::i;:::-;3502:17;;3543:1;3538;:6;;3530:46;;;;-1:-1:-1;;;3530:46:0;;14084:2:1;3530:46:0;;;14066:21:1;14123:2;14103:18;;;14096:30;14162:29;14142:18;;;14135:57;14209:18;;3530:46:0;13882:351:1;34449:355:0;34512:19;34534:10;:8;:10::i;:::-;34512:32;-1:-1:-1;34555:18:0;34576:27;:10;34512:32;34576:14;:27::i;:::-;34655:4;34639:22;;;;:7;:22;;;;;;34555:48;;-1:-1:-1;34639:38:0;;34555:48;34639:26;:38::i;:::-;34630:4;34614:22;;;;:7;:22;;;;;;;;:63;;;;34692:11;:26;;;;;;34688:108;;;34774:4;34758:22;;;;:7;:22;;;;;;:38;;34785:10;34758:26;:38::i;:::-;34749:4;34733:22;;;;:7;:22;;;;;:63;34688:108;34501:303;;34449:355;:::o;32237:147::-;32315:7;;:17;;32327:4;32315:11;:17::i;:::-;32305:7;:27;32356:10;;:20;;32371:4;32356:14;:20::i;:::-;32343:10;:33;-1:-1:-1;;32237:147:0:o;35160:144::-;35270:14;;35231:7;;35258:38;;35290:5;;35258:27;;:7;;35270:14;;35258:11;:27::i;:::-;:31;;:38::i;35312:174::-;35453:13;;35409:7;;35441:37;;35472:5;;35441:26;;:7;;35453:13;;;;;35441:11;:26::i;35494:174::-;35635:13;;35591:7;;35623:37;;35654:5;;35623:26;;:7;;35635:13;;;;;35623:11;:26::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2690:160::-;2755:20;;2811:13;;2804:21;2794:32;;2784:60;;2840:1;2837;2830:12;2784:60;2690:160;;;:::o;2855:248::-;2920:6;2928;2981:2;2969:9;2960:7;2956:23;2952:32;2949:52;;;2997:1;2994;2987:12;2949:52;3020:26;3036:9;3020:26;:::i;3108:180::-;3167:6;3220:2;3208:9;3199:7;3195:23;3191:32;3188:52;;;3236:1;3233;3226:12;3188:52;-1:-1:-1;3259:23:1;;3108:180;-1:-1:-1;3108:180:1:o;3690:156::-;3756:20;;3816:4;3805:16;;3795:27;;3785:55;;3836:1;3833;3826:12;3851:535;3943:6;3951;3959;3967;3975;3983;4036:3;4024:9;4015:7;4011:23;4007:33;4004:53;;;4053:1;4050;4043:12;4004:53;4076:27;4093:9;4076:27;:::i;:::-;4066:37;;4122:36;4154:2;4143:9;4139:18;4122:36;:::i;:::-;4112:46;;4177:36;4209:2;4198:9;4194:18;4177:36;:::i;:::-;4167:46;;4232:36;4264:2;4253:9;4249:18;4232:36;:::i;:::-;4222:46;;4287:37;4319:3;4308:9;4304:19;4287:37;:::i;:::-;4277:47;;4343:37;4375:3;4364:9;4360:19;4343:37;:::i;:::-;4333:47;;3851:535;;;;;;;;:::o;4391:180::-;4447:6;4500:2;4488:9;4479:7;4475:23;4471:32;4468:52;;;4516:1;4513;4506:12;4468:52;4539:26;4555:9;4539:26;:::i;4576:388::-;4644:6;4652;4705:2;4693:9;4684:7;4680:23;4676:32;4673:52;;;4721:1;4718;4711:12;4673:52;4760:9;4747:23;4779:31;4804:5;4779:31;:::i;:::-;4829:5;-1:-1:-1;4886:2:1;4871:18;;4858:32;4899:33;4858:32;4899:33;:::i;:::-;4951:7;4941:17;;;4576:388;;;;;:::o;4969:380::-;5048:1;5044:12;;;;5091;;;5112:61;;5166:4;5158:6;5154:17;5144:27;;5112:61;5219:2;5211:6;5208:14;5188:18;5185:38;5182:161;;5265:10;5260:3;5256:20;5253:1;5246:31;5300:4;5297:1;5290:15;5328:4;5325:1;5318:15;5182:161;;4969:380;;;:::o;5354:356::-;5556:2;5538:21;;;5575:18;;;5568:30;5634:34;5629:2;5614:18;;5607:62;5701:2;5686:18;;5354:356::o;6533:127::-;6594:10;6589:3;6585:20;6582:1;6575:31;6625:4;6622:1;6615:15;6649:4;6646:1;6639:15;6665:168;6705:7;6771:1;6767;6763:6;6759:14;6756:1;6753:21;6748:1;6741:9;6734:17;6730:45;6727:71;;;6778:18;;:::i;:::-;-1:-1:-1;6818:9:1;;6665:168::o;6838:217::-;6878:1;6904;6894:132;;6948:10;6943:3;6939:20;6936:1;6929:31;6983:4;6980:1;6973:15;7011:4;7008:1;7001:15;6894:132;-1:-1:-1;7040:9:1;;6838:217::o;10252:125::-;10317:9;;;10338:10;;;10335:36;;;10351:18;;:::i;10785:128::-;10852:9;;;10873:11;;;10870:37;;;10887:18;;:::i;10918:148::-;11006:4;10985:12;;;10999;;;10981:31;;11024:13;;11021:39;;;11040:18;;:::i;11071:238::-;11109:7;11149:4;11146:1;11142:12;11181:4;11178:1;11174:12;11241:3;11235:4;11231:14;11226:3;11223:23;11216:3;11209:11;11202:19;11198:49;11195:75;;;11250:18;;:::i;:::-;11290:13;;11071:238;-1:-1:-1;;;11071:238:1:o;11314:127::-;11375:10;11370:3;11366:20;11363:1;11356:31;11406:4;11403:1;11396:15;11430:4;11427:1;11420:15;11446:135;11485:3;11506:17;;;11503:43;;11526:18;;:::i;:::-;-1:-1:-1;11573:1:1;11562:13;;11446:135::o;11718:251::-;11788:6;11841:2;11829:9;11820:7;11816:23;11812:32;11809:52;;;11857:1;11854;11847:12;11809:52;11889:9;11883:16;11908:31;11933:5;11908:31;:::i;11974:980::-;12236:4;12284:3;12273:9;12269:19;12315:6;12304:9;12297:25;12341:2;12379:6;12374:2;12363:9;12359:18;12352:34;12422:3;12417:2;12406:9;12402:18;12395:31;12446:6;12481;12475:13;12512:6;12504;12497:22;12550:3;12539:9;12535:19;12528:26;;12589:2;12581:6;12577:15;12563:29;;12610:1;12620:195;12634:6;12631:1;12628:13;12620:195;;;12699:13;;-1:-1:-1;;;;;12695:39:1;12683:52;;12790:15;;;;12755:12;;;;12731:1;12649:9;12620:195;;;-1:-1:-1;;;;;;;12871:32:1;;;;12866:2;12851:18;;12844:60;-1:-1:-1;;;12935:3:1;12920:19;12913:35;12832:3;11974:980;-1:-1:-1;;;11974:980:1:o;13571:306::-;13659:6;13667;13675;13728:2;13716:9;13707:7;13703:23;13699:32;13696:52;;;13744:1;13741;13734:12;13696:52;13773:9;13767:16;13757:26;;13823:2;13812:9;13808:18;13802:25;13792:35;;13867:2;13856:9;13852:18;13846:25;13836:35;;13571:306;;;;;:::o

Swarm Source

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