ETH Price: $3,412.50 (+1.62%)
Gas: 6 Gwei

Token

THEZEUS ($ZEUS)
 

Overview

Max Total Supply

100,000,000 $ZEUS

Holders

56

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
107.427465828 $ZEUS

Value
$0.00
0x44fa8b414d29f2fccec034de117fe234719c5b3d
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:
THEZEUS

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/*
Website - https://www.thezeus.site
Telegram - https://t.me/thezeuseth
*/

// 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 THEZEUS 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 = 100000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    address payable public _marketingAddress = payable(address(0xe6E306bD15375Bfb8F9c0fC42d3d5A87eAD10551));

    string private _name = "THEZEUS";
    string private _symbol = "$ZEUS";
    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 public swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = _tTotal.div(1000).mul(10); //1%
    uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(1); //0.1%
    uint256 public _maxWalletSize = _tTotal.div(1000).mul(10); // 1%

    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 = 2;
    uint256 public launchedAt = 0;
    bool tradingOpen = false;

    mapping (address => uint256) public _lastTrade;

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

        buyFee.reflection = 1;
        buyFee.liquidity = 2;
        buyFee.marketing = 5;

        sellFee.reflection = 2;
        sellFee.liquidity = 4;
        sellFee.marketing = 10;

        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 increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

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

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

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

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(
            !_isExcluded[sender],
            "Excluded addresses cannot call this function"
        );

        (
            ,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, , ) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee)
        public
        view
        returns (uint256)
    {
        require(tAmount <= _tTotal, "Amount must be less than supply");

        (
            ,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, ) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        if (!deductTransferFee) {
            return rAmount;
        } else {
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount)
        public
        view
        returns (uint256)
    {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }


    function updateMarketingWallet(address payable newAddress) external onlyOwner {
        _marketingAddress = newAddress;
    }

    function excludeFromReward(address account) public onlyOwner {
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner {
        require(_isExcluded[account], "Account is not excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function 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 setSellFee(
        uint8 reflection,
        uint8 liquidity,
        uint8 marketing
    ) external onlyOwner {
        sellFee.reflection = reflection;
        sellFee.marketing = marketing;
        sellFee.liquidity = liquidity;
    }

    function setBuyFee(
        uint8 reflection,
        uint8 liquidity,
        uint8 marketing
    ) external onlyOwner {
        buyFee.reflection = reflection;
        buyFee.marketing = marketing;
        buyFee.liquidity = liquidity;
    }

    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.marketing = buy_marketing;
        buyFee.liquidity = buy_liquidity;

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

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

    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**3);
    }

    function _setMaxWalletSizePercent(uint256 maxWalletSize)
        external
        onlyOwner
    {
        _maxWalletSize = _tTotal.mul(maxWalletSize).div(10**3);
    }

    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;
        excludeFromReward(address(this));
        excludeFromReward(uniswapV2Pair);
        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":"_marketingAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSizePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"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":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405267016345785d8a000060098190556200002090600019620005db565b6200002e9060001962000608565b600a55600c80546001600160a01b03191673e6e306bd15375bfb8f9c0fc42d3d5a87ead105511790556040805180820190915260078152665448455a45555360c81b6020820152600d90620000849082620006c7565b50604080518082019091526005815264245a45555360d81b6020820152600e90620000b09082620006c7565b50600f805460ff191660099081179091556012805460ff60201b1916640100000000179055546200010f90600a90620000fb906103e86200168b620004a8602090811b91909117901c565b620004fb60201b620016cd1790919060201c565b601355620001366001620000fb6103e8600954620004a860201b6200168b1790919060201c565b6014556200015d600a620000fb6103e8600954620004a860201b6200168b1790919060201c565b601555600260165560006017556018805460ff191690553480156200018157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a5433600090815260026020908152604091829020929092556010805462ffffff19908116620502011790915560118054909116620a0402179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa1580156200024c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000272919062000793565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e6919062000793565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000334573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035a919062000793565b6001600160a01b0390811660a0528116608052600160056000620003866000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260058452828120805486166001908117909155600c805484168352848320805488168317905554909216815260089384905291822080549094168117909355620004096000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526008909252902080549091166001179055620004513390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040516200049991815260200190565b60405180910390a3506200084f565b6000620004f283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200058960201b60201c565b90505b92915050565b6000826000036200050f57506000620004f5565b60006200051d8385620007be565b9050826200052c8583620007e0565b14620004f25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b60008183620005ad5760405162461bcd60e51b8152600401620005809190620007f7565b506000620005bc8486620007e0565b95945050505050565b634e487b7160e01b600052601260045260246000fd5b600082620005ed57620005ed620005c5565b500690565b634e487b7160e01b600052601160045260246000fd5b6000828210156200061d576200061d620005f2565b500390565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200064d57607f821691505b6020821081036200066e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006c257600081815260208120601f850160051c810160208610156200069d5750805b601f850160051c820191505b81811015620006be57828155600101620006a9565b5050505b505050565b81516001600160401b03811115620006e357620006e362000622565b620006fb81620006f4845462000638565b8462000674565b602080601f8311600181146200073357600084156200071a5750858301515b600019600386901b1c1916600185901b178555620006be565b600085815260208120601f198616915b82811015620007645788860151825594840194600190910190840162000743565b5085821015620007835787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007a657600080fd5b81516001600160a01b0381168114620004f257600080fd5b6000816000190483118215151615620007db57620007db620005f2565b500290565b600082620007f257620007f2620005c5565b500490565b600060208083528351808285015260005b81811015620008265785810183015185820160400152820162000808565b8181111562000839576000604083870101525b50601f01601f1916929092016040019392505050565b60805160a051612fff620008bb6000396000818161056701528181610b5801528181611a6001528181611bbb0152818161205f01526120d5015260008181610366015281816124e9015281816125a2015281816125de0152818161265001526126ac0152612fff6000f3fe60806040526004361061028c5760003560e01c8063715018a61161015a578063af2ce614116100c1578063d94160e01161007a578063d94160e014610854578063dd62ed3e1461088d578063ea2f0b37146108d3578063f0f165af146108f3578063f2fde38b14610913578063fabb0b4f1461093357600080fd5b8063af2ce6141461079e578063b27bcfba146107be578063bf56b371146107de578063c49b9a80146107f4578063caac793414610814578063d543dbeb1461083457600080fd5b8063954c6d3f11610113578063954c6d3f146106dc57806395d89b41146106fc578063a457c2d714610711578063a87859f614610731578063a9059cbb1461075e578063aacebbe31461077e57600080fd5b8063715018a6146106245780637d1db4a51461063957806388f820201461064f5780638da5cb5b146106885780638f9a55c0146106a657806391d919a9146106bc57600080fd5b8063313ce567116101fe57806347062402116101b7578063470624021461052857806349bd5a5e146105555780634a74bb021461058957806352390c02146105ab5780635342acb4146105cb57806370a082311461060457600080fd5b8063313ce567146104665780633685d4191461048857806339509351146104a85780633bd5d173146104c8578063437823ec146104e85780634549b0391461050857600080fd5b80631694505e116102505780631694505e1461035457806318160ddd146103a057806323b872dd146103b55780632b14ca56146103d55780632d4103d6146104265780632d8381191461044657600080fd5b806306fdde0314610298578063095ea7b3146102c35780630bd3a7f9146102f35780630c2536d71461031557806313114a9d1461033557600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610949565b6040516102ba9190612aaf565b60405180910390f35b3480156102cf57600080fd5b506102e36102de366004612b1c565b6109db565b60405190151581526020016102ba565b3480156102ff57600080fd5b5061031361030e366004612b48565b6109f2565b005b34801561032157600080fd5b50610313610330366004612b7b565b610a49565b34801561034157600080fd5b50600b545b6040519081526020016102ba565b34801561036057600080fd5b506103887f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102ba565b3480156103ac57600080fd5b50600954610346565b3480156103c157600080fd5b506102e36103d0366004612bbe565b610aa9565b3480156103e157600080fd5b506011546104029060ff808216916101008104821691620100009091041683565b6040805160ff948516815292841660208401529216918101919091526060016102ba565b34801561043257600080fd5b50610313610441366004612c0f565b610b12565b34801561045257600080fd5b50610346610461366004612c2b565b610ba1565b34801561047257600080fd5b50600f5460405160ff90911681526020016102ba565b34801561049457600080fd5b506103136104a3366004612b48565b610c25565b3480156104b457600080fd5b506102e36104c3366004612b1c565b610dd7565b3480156104d457600080fd5b506103136104e3366004612c2b565b610e0d565b3480156104f457600080fd5b50610313610503366004612b48565b610f16565b34801561051457600080fd5b50610346610523366004612c44565b610f64565b34801561053457600080fd5b506010546104029060ff808216916101008104821691620100009091041683565b34801561056157600080fd5b506103887f000000000000000000000000000000000000000000000000000000000000000081565b34801561059557600080fd5b506012546102e390640100000000900460ff1681565b3480156105b757600080fd5b506103136105c6366004612b48565b611001565b3480156105d757600080fd5b506102e36105e6366004612b48565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561061057600080fd5b5061034661061f366004612b48565b611154565b34801561063057600080fd5b506103136111b3565b34801561064557600080fd5b5061034660135481565b34801561065b57600080fd5b506102e361066a366004612b48565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561069457600080fd5b506000546001600160a01b0316610388565b3480156106b257600080fd5b5061034660155481565b3480156106c857600080fd5b506103136106d7366004612b48565b611227565b3480156106e857600080fd5b506103136106f7366004612b7b565b611272565b34801561070857600080fd5b506102ad6112d2565b34801561071d57600080fd5b506102e361072c366004612b1c565b6112e1565b34801561073d57600080fd5b5061034661074c366004612b48565b60196020526000908152604090205481565b34801561076a57600080fd5b506102e3610779366004612b1c565b611330565b34801561078a57600080fd5b50610313610799366004612b48565b61133d565b3480156107aa57600080fd5b506103136107b9366004612c2b565b611389565b3480156107ca57600080fd5b506103136107d9366004612c70565b6113da565b3480156107ea57600080fd5b5061034660175481565b34801561080057600080fd5b5061031361080f366004612ce4565b611458565b34801561082057600080fd5b50600c54610388906001600160a01b031681565b34801561084057600080fd5b5061031361084f366004612c2b565b6114dc565b34801561086057600080fd5b506102e361086f366004612b48565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561089957600080fd5b506103466108a8366004612cff565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156108df57600080fd5b506103136108ee366004612b48565b611527565b3480156108ff57600080fd5b5061031361090e366004612c2b565b611572565b34801561091f57600080fd5b5061031361092e366004612b48565b6115a1565b34801561093f57600080fd5b5061034660165481565b6060600d805461095890612d38565b80601f016020809104026020016040519081016040528092919081815260200182805461098490612d38565b80156109d15780601f106109a6576101008083540402835291602001916109d1565b820191906000526020600020905b8154815290600101906020018083116109b457829003601f168201915b5050505050905090565b60006109e833848461174f565b5060015b92915050565b6000546001600160a01b03163314610a255760405162461bcd60e51b8152600401610a1c90612d72565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b03163314610a735760405162461bcd60e51b8152600401610a1c90612d72565b6011805460ff9384166101000261ff0019938516620100000262ff00ff1990921694909516939093179290921716919091179055565b6000610ab6848484611873565b610b088433610b0385604051806060016040528060288152602001612f7d602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611c75565b61174f565b5060019392505050565b6000546001600160a01b03163314610b3c5760405162461bcd60e51b8152600401610a1c90612d72565b6018805460ff1916831515179055610b5330611001565b610b7c7f0000000000000000000000000000000000000000000000000000000000000000611001565b60185460ff168015610b8e5750601754155b15610b9d574360175560168190555b5050565b6000600a54821115610c085760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a1c565b6000610c12611caf565b9050610c1e838261168b565b9392505050565b6000546001600160a01b03163314610c4f5760405162461bcd60e51b8152600401610a1c90612d72565b6001600160a01b03811660009081526006602052604090205460ff16610cb75760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610a1c565b60005b600754811015610b9d57816001600160a01b031660078281548110610ce157610ce1612da7565b6000918252602090912001546001600160a01b031603610dc55760078054610d0b90600190612dd3565b81548110610d1b57610d1b612da7565b600091825260209091200154600780546001600160a01b039092169183908110610d4757610d47612da7565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610d9f57610d9f612dea565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610dcf81612e00565b915050610cba565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916109e8918590610b039086611cd2565b3360008181526006602052604090205460ff1615610e825760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a1c565b6000806000610e9085611d31565b935093509350506000610ead86858585610ea8611caf565b611d90565b50506001600160a01b038616600090815260026020526040902054909150610ed59082611df2565b6001600160a01b038616600090815260026020526040902055600a54610efb9082611df2565b600a55600b54610f0b9087611cd2565b600b55505050505050565b6000546001600160a01b03163314610f405760405162461bcd60e51b8152600401610a1c90612d72565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000600954831115610fb85760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a1c565b6000806000610fc686611d31565b93509350935050600080610fdf88868686610ea8611caf565b509150915086610ff5575093506109ec92505050565b94506109ec9350505050565b6000546001600160a01b0316331461102b5760405162461bcd60e51b8152600401610a1c90612d72565b6001600160a01b03811660009081526006602052604090205460ff16156110945760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a1c565b6001600160a01b038116600090815260026020526040902054156110ee576001600160a01b0381166000908152600260205260409020546110d490610ba1565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff161561119157506001600160a01b031660009081526003602052604090205490565b6001600160a01b0382166000908152600260205260409020546109ec90610ba1565b6000546001600160a01b031633146111dd5760405162461bcd60e51b8152600401610a1c90612d72565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112515760405162461bcd60e51b8152600401610a1c90612d72565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6000546001600160a01b0316331461129c5760405162461bcd60e51b8152600401610a1c90612d72565b6010805460ff9384166101000261ff0019938516620100000262ff00ff1990921694909516939093179290921716919091179055565b6060600e805461095890612d38565b60006109e83384610b0385604051806060016040528060258152602001612fa5602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611c75565b60006109e8338484611873565b6000546001600160a01b031633146113675760405162461bcd60e51b8152600401610a1c90612d72565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146113b35760405162461bcd60e51b8152600401610a1c90612d72565b6113d46103e86113ce836009546116cd90919063ffffffff16565b9061168b565b60155550565b6000546001600160a01b031633146114045760405162461bcd60e51b8152600401610a1c90612d72565b6010805460ff97881662ff00ff19918216176201000096891687021761ff0019908116610100988a168902179092556011805495891695909116949094179187169094021790921691909316909102179055565b6000546001600160a01b031633146114825760405162461bcd60e51b8152600401610a1c90612d72565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906114d190831515815260200190565b60405180910390a150565b6000546001600160a01b031633146115065760405162461bcd60e51b8152600401610a1c90612d72565b6115216103e86113ce836009546116cd90919063ffffffff16565b60135550565b6000546001600160a01b031633146115515760405162461bcd60e51b8152600401610a1c90612d72565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b0316331461159c5760405162461bcd60e51b8152600401610a1c90612d72565b601455565b6000546001600160a01b031633146115cb5760405162461bcd60e51b8152600401610a1c90612d72565b6001600160a01b0381166116305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1c565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c1e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e34565b6000826000036116df575060006109ec565b60006116eb8385612e19565b9050826116f88583612e38565b14610c1e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a1c565b6001600160a01b0383166117b15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a1c565b6001600160a01b0382166118125760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a1c565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a1c565b6001600160a01b0382166119395760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a1c565b6000811161199b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a1c565b6000546001600160a01b038481169116148015906119c757506000546001600160a01b03838116911614155b15611a1e5760185460ff16611a1e5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610a1c565b6000611a2930611154565b90506013548110611a3957506013545b60145481108015908190611a5757506012546301000000900460ff16155b8015611a9557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611aab5750601254640100000000900460ff165b15611abe576014549150611abe82611e62565b6001600160a01b03851660009081526005602052604090205460019060ff1680611b0057506001600160a01b03851660009081526005602052604090205460ff165b15611b09575060005b8015611c61576001600160a01b03861660009081526008602052604090205460ff16158015611b5157506001600160a01b03851660009081526008602052604090205460ff16155b15611c6157601354841115611bb95760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a1c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614611c6157601554611bfe86611154565b611c089086612e5a565b1115611c615760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610a1c565b611c6d86868684612046565b505050505050565b60008184841115611c995760405162461bcd60e51b8152600401610a1c9190612aaf565b506000611ca68486612dd3565b95945050505050565b6000806000611cbc6122b4565b9092509050611ccb828261168b565b9250505090565b600080611cdf8385612e5a565b905083811015610c1e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a1c565b6000806000806000611d4286612436565b90506000611d4f87612451565b90506000611d5c88612471565b90506000611d7483611d6e8b87611df2565b90611df2565b9050611d808183611df2565b9993985091965094509092505050565b6000808080611d9f89866116cd565b90506000611dad89876116cd565b90506000611dbb89886116cd565b90506000611dc989896116cd565b90506000611ddd82611d6e85818989611df2565b949d949c50929a509298505050505050505050565b6000610c1e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c75565b60008183611e555760405162461bcd60e51b8152600401610a1c9190612aaf565b506000611ca68486612e38565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff90811693918204811692611ea8926101009182900483169291900416612e72565b611eb29190612e72565b611ebc9190612e72565b611ec7906002612e97565b60115460105460ff92831693506000928492611ef0926101009182900483169291900416612e72565b611efd9060ff1685612e19565b611f079190612e38565b90506000611f158285612dd3565b905047611f2182612492565b6000611f2d8247612dd3565b601154601054919250600091611f539160ff610100918290048116929190910416612e72565b611f609060ff1687612dd3565b611f6a9083612e38565b601154601054919250600091611f909160ff610100918290048116929190910416612e72565b611f9d9060ff1683612e19565b90508015611faf57611faf868261264a565b601154601054600091611fd29160ff620100009283900481169290910416612e72565b60ff16611fe0846002612e19565b611fea9190612e19565b9050801561202e57600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561202c573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b80156121495761205d6012805462ffffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036120d3576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031603612149576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff16801561218a57506001600160a01b03831660009081526006602052604090205460ff16155b1561219f5761219a84848461272a565b61229d565b6001600160a01b03841660009081526006602052604090205460ff161580156121e057506001600160a01b03831660009081526006602052604090205460ff165b156121f05761219a84848461286c565b6001600160a01b03841660009081526006602052604090205460ff1615801561223257506001600160a01b03831660009081526006602052604090205460ff16155b156122425761219a848484612927565b6001600160a01b03841660009081526006602052604090205460ff16801561228257506001600160a01b03831660009081526006602052604090205460ff165b156122925761219a84848461297d565b61229d848484612927565b6122ae6012805462ffffff19169055565b50505050565b600a546009546000918291825b600754811015612406578260026000600784815481106122e3576122e3612da7565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061234e575081600360006007848154811061232757612327612da7565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561236457600a54600954945094505050509091565b6123aa600260006007848154811061237e5761237e612da7565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611df2565b92506123f260036000600784815481106123c6576123c6612da7565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611df2565b9150806123fe81612e00565b9150506122c1565b50600954600a546124169161168b565b82101561242d57600a546009549350935050509091565b90939092509050565b6012546000906109ec906064906113ce90859060ff166116cd565b6012546000906109ec906064906113ce908590610100900460ff166116cd565b6012546000906109ec906064906113ce90859062010000900460ff166116cd565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124c7576124c7612da7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612545573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125699190612ec0565b8160018151811061257c5761257c612da7565b60200260200101906001600160a01b031690816001600160a01b0316815250506125c7307f00000000000000000000000000000000000000000000000000000000000000008461174f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061261c908590600090869030904290600401612edd565b600060405180830381600087803b15801561263657600080fd5b505af1158015611c6d573d6000803e3d6000fd5b612675307f00000000000000000000000000000000000000000000000000000000000000008461174f565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156126fe573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127239190612f4e565b5050505050565b60008060008061273985611d31565b9350935093509350600080600061275588878787610ea8611caf565b6001600160a01b038d1660009081526003602052604090205492955090935091506127809089611df2565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546127af9084611df2565b6001600160a01b03808c1660009081526002602052604080822093909355908b16815220546127de9083611cd2565b6001600160a01b038a1660009081526002602052604090205561280085612a02565b61280984612a02565b6128138187612a8b565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8960405161285891815260200190565b60405180910390a350505050505050505050565b60008060008061287b85611d31565b9350935093509350600080600061289788878787610ea8611caf565b6001600160a01b038d1660009081526002602052604090205492955090935091506128c29084611df2565b6001600160a01b03808c16600090815260026020908152604080832094909455918c168152600390915220546128f89088611cd2565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546127de9083611cd2565b60008060008061293685611d31565b9350935093509350600080600061295288878787610ea8611caf565b6001600160a01b038d1660009081526002602052604090205492955090935091506127af9084611df2565b60008060008061298c85611d31565b935093509350935060008060006129a888878787610ea8611caf565b6001600160a01b038d1660009081526003602052604090205492955090935091506129d39089611df2565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546128c29084611df2565b6000612a0c611caf565b90506000612a1a83836116cd565b30600090815260026020526040902054909150612a379082611cd2565b3060009081526002602090815260408083209390935560069052205460ff1615612a865730600090815260036020526040902054612a759084611cd2565b306000908152600360205260409020555b505050565b600a54612a989083611df2565b600a55600b54612aa89082611cd2565b600b555050565b600060208083528351808285015260005b81811015612adc57858101830151858201604001528201612ac0565b81811115612aee576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114612b1957600080fd5b50565b60008060408385031215612b2f57600080fd5b8235612b3a81612b04565b946020939093013593505050565b600060208284031215612b5a57600080fd5b8135610c1e81612b04565b803560ff81168114612b7657600080fd5b919050565b600080600060608486031215612b9057600080fd5b612b9984612b65565b9250612ba760208501612b65565b9150612bb560408501612b65565b90509250925092565b600080600060608486031215612bd357600080fd5b8335612bde81612b04565b92506020840135612bee81612b04565b929592945050506040919091013590565b80358015158114612b7657600080fd5b60008060408385031215612c2257600080fd5b612b3a83612bff565b600060208284031215612c3d57600080fd5b5035919050565b60008060408385031215612c5757600080fd5b82359150612c6760208401612bff565b90509250929050565b60008060008060008060c08789031215612c8957600080fd5b612c9287612b65565b9550612ca060208801612b65565b9450612cae60408801612b65565b9350612cbc60608801612b65565b9250612cca60808801612b65565b9150612cd860a08801612b65565b90509295509295509295565b600060208284031215612cf657600080fd5b610c1e82612bff565b60008060408385031215612d1257600080fd5b8235612d1d81612b04565b91506020830135612d2d81612b04565b809150509250929050565b600181811c90821680612d4c57607f821691505b602082108103612d6c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015612de557612de5612dbd565b500390565b634e487b7160e01b600052603160045260246000fd5b600060018201612e1257612e12612dbd565b5060010190565b6000816000190483118215151615612e3357612e33612dbd565b500290565b600082612e5557634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612e6d57612e6d612dbd565b500190565b600060ff821660ff84168060ff03821115612e8f57612e8f612dbd565b019392505050565b600060ff821660ff84168160ff0481118215151615612eb857612eb8612dbd565b029392505050565b600060208284031215612ed257600080fd5b8151610c1e81612b04565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f2d5784516001600160a01b031683529383019391830191600101612f08565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612f6357600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220651d101ebf889ee2ca4c8813052022b6eda6bbb106a5ef4cafb2db1864b7441764736f6c634300080f0033

Deployed Bytecode

0x60806040526004361061028c5760003560e01c8063715018a61161015a578063af2ce614116100c1578063d94160e01161007a578063d94160e014610854578063dd62ed3e1461088d578063ea2f0b37146108d3578063f0f165af146108f3578063f2fde38b14610913578063fabb0b4f1461093357600080fd5b8063af2ce6141461079e578063b27bcfba146107be578063bf56b371146107de578063c49b9a80146107f4578063caac793414610814578063d543dbeb1461083457600080fd5b8063954c6d3f11610113578063954c6d3f146106dc57806395d89b41146106fc578063a457c2d714610711578063a87859f614610731578063a9059cbb1461075e578063aacebbe31461077e57600080fd5b8063715018a6146106245780637d1db4a51461063957806388f820201461064f5780638da5cb5b146106885780638f9a55c0146106a657806391d919a9146106bc57600080fd5b8063313ce567116101fe57806347062402116101b7578063470624021461052857806349bd5a5e146105555780634a74bb021461058957806352390c02146105ab5780635342acb4146105cb57806370a082311461060457600080fd5b8063313ce567146104665780633685d4191461048857806339509351146104a85780633bd5d173146104c8578063437823ec146104e85780634549b0391461050857600080fd5b80631694505e116102505780631694505e1461035457806318160ddd146103a057806323b872dd146103b55780632b14ca56146103d55780632d4103d6146104265780632d8381191461044657600080fd5b806306fdde0314610298578063095ea7b3146102c35780630bd3a7f9146102f35780630c2536d71461031557806313114a9d1461033557600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610949565b6040516102ba9190612aaf565b60405180910390f35b3480156102cf57600080fd5b506102e36102de366004612b1c565b6109db565b60405190151581526020016102ba565b3480156102ff57600080fd5b5061031361030e366004612b48565b6109f2565b005b34801561032157600080fd5b50610313610330366004612b7b565b610a49565b34801561034157600080fd5b50600b545b6040519081526020016102ba565b34801561036057600080fd5b506103887f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102ba565b3480156103ac57600080fd5b50600954610346565b3480156103c157600080fd5b506102e36103d0366004612bbe565b610aa9565b3480156103e157600080fd5b506011546104029060ff808216916101008104821691620100009091041683565b6040805160ff948516815292841660208401529216918101919091526060016102ba565b34801561043257600080fd5b50610313610441366004612c0f565b610b12565b34801561045257600080fd5b50610346610461366004612c2b565b610ba1565b34801561047257600080fd5b50600f5460405160ff90911681526020016102ba565b34801561049457600080fd5b506103136104a3366004612b48565b610c25565b3480156104b457600080fd5b506102e36104c3366004612b1c565b610dd7565b3480156104d457600080fd5b506103136104e3366004612c2b565b610e0d565b3480156104f457600080fd5b50610313610503366004612b48565b610f16565b34801561051457600080fd5b50610346610523366004612c44565b610f64565b34801561053457600080fd5b506010546104029060ff808216916101008104821691620100009091041683565b34801561056157600080fd5b506103887f00000000000000000000000063dcea95042fdc1a0d7612d6c87deb2dfb62795d81565b34801561059557600080fd5b506012546102e390640100000000900460ff1681565b3480156105b757600080fd5b506103136105c6366004612b48565b611001565b3480156105d757600080fd5b506102e36105e6366004612b48565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561061057600080fd5b5061034661061f366004612b48565b611154565b34801561063057600080fd5b506103136111b3565b34801561064557600080fd5b5061034660135481565b34801561065b57600080fd5b506102e361066a366004612b48565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561069457600080fd5b506000546001600160a01b0316610388565b3480156106b257600080fd5b5061034660155481565b3480156106c857600080fd5b506103136106d7366004612b48565b611227565b3480156106e857600080fd5b506103136106f7366004612b7b565b611272565b34801561070857600080fd5b506102ad6112d2565b34801561071d57600080fd5b506102e361072c366004612b1c565b6112e1565b34801561073d57600080fd5b5061034661074c366004612b48565b60196020526000908152604090205481565b34801561076a57600080fd5b506102e3610779366004612b1c565b611330565b34801561078a57600080fd5b50610313610799366004612b48565b61133d565b3480156107aa57600080fd5b506103136107b9366004612c2b565b611389565b3480156107ca57600080fd5b506103136107d9366004612c70565b6113da565b3480156107ea57600080fd5b5061034660175481565b34801561080057600080fd5b5061031361080f366004612ce4565b611458565b34801561082057600080fd5b50600c54610388906001600160a01b031681565b34801561084057600080fd5b5061031361084f366004612c2b565b6114dc565b34801561086057600080fd5b506102e361086f366004612b48565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561089957600080fd5b506103466108a8366004612cff565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156108df57600080fd5b506103136108ee366004612b48565b611527565b3480156108ff57600080fd5b5061031361090e366004612c2b565b611572565b34801561091f57600080fd5b5061031361092e366004612b48565b6115a1565b34801561093f57600080fd5b5061034660165481565b6060600d805461095890612d38565b80601f016020809104026020016040519081016040528092919081815260200182805461098490612d38565b80156109d15780601f106109a6576101008083540402835291602001916109d1565b820191906000526020600020905b8154815290600101906020018083116109b457829003601f168201915b5050505050905090565b60006109e833848461174f565b5060015b92915050565b6000546001600160a01b03163314610a255760405162461bcd60e51b8152600401610a1c90612d72565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b03163314610a735760405162461bcd60e51b8152600401610a1c90612d72565b6011805460ff9384166101000261ff0019938516620100000262ff00ff1990921694909516939093179290921716919091179055565b6000610ab6848484611873565b610b088433610b0385604051806060016040528060288152602001612f7d602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611c75565b61174f565b5060019392505050565b6000546001600160a01b03163314610b3c5760405162461bcd60e51b8152600401610a1c90612d72565b6018805460ff1916831515179055610b5330611001565b610b7c7f00000000000000000000000063dcea95042fdc1a0d7612d6c87deb2dfb62795d611001565b60185460ff168015610b8e5750601754155b15610b9d574360175560168190555b5050565b6000600a54821115610c085760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a1c565b6000610c12611caf565b9050610c1e838261168b565b9392505050565b6000546001600160a01b03163314610c4f5760405162461bcd60e51b8152600401610a1c90612d72565b6001600160a01b03811660009081526006602052604090205460ff16610cb75760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610a1c565b60005b600754811015610b9d57816001600160a01b031660078281548110610ce157610ce1612da7565b6000918252602090912001546001600160a01b031603610dc55760078054610d0b90600190612dd3565b81548110610d1b57610d1b612da7565b600091825260209091200154600780546001600160a01b039092169183908110610d4757610d47612da7565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610d9f57610d9f612dea565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610dcf81612e00565b915050610cba565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916109e8918590610b039086611cd2565b3360008181526006602052604090205460ff1615610e825760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a1c565b6000806000610e9085611d31565b935093509350506000610ead86858585610ea8611caf565b611d90565b50506001600160a01b038616600090815260026020526040902054909150610ed59082611df2565b6001600160a01b038616600090815260026020526040902055600a54610efb9082611df2565b600a55600b54610f0b9087611cd2565b600b55505050505050565b6000546001600160a01b03163314610f405760405162461bcd60e51b8152600401610a1c90612d72565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000600954831115610fb85760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a1c565b6000806000610fc686611d31565b93509350935050600080610fdf88868686610ea8611caf565b509150915086610ff5575093506109ec92505050565b94506109ec9350505050565b6000546001600160a01b0316331461102b5760405162461bcd60e51b8152600401610a1c90612d72565b6001600160a01b03811660009081526006602052604090205460ff16156110945760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a1c565b6001600160a01b038116600090815260026020526040902054156110ee576001600160a01b0381166000908152600260205260409020546110d490610ba1565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff161561119157506001600160a01b031660009081526003602052604090205490565b6001600160a01b0382166000908152600260205260409020546109ec90610ba1565b6000546001600160a01b031633146111dd5760405162461bcd60e51b8152600401610a1c90612d72565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112515760405162461bcd60e51b8152600401610a1c90612d72565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6000546001600160a01b0316331461129c5760405162461bcd60e51b8152600401610a1c90612d72565b6010805460ff9384166101000261ff0019938516620100000262ff00ff1990921694909516939093179290921716919091179055565b6060600e805461095890612d38565b60006109e83384610b0385604051806060016040528060258152602001612fa5602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611c75565b60006109e8338484611873565b6000546001600160a01b031633146113675760405162461bcd60e51b8152600401610a1c90612d72565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146113b35760405162461bcd60e51b8152600401610a1c90612d72565b6113d46103e86113ce836009546116cd90919063ffffffff16565b9061168b565b60155550565b6000546001600160a01b031633146114045760405162461bcd60e51b8152600401610a1c90612d72565b6010805460ff97881662ff00ff19918216176201000096891687021761ff0019908116610100988a168902179092556011805495891695909116949094179187169094021790921691909316909102179055565b6000546001600160a01b031633146114825760405162461bcd60e51b8152600401610a1c90612d72565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906114d190831515815260200190565b60405180910390a150565b6000546001600160a01b031633146115065760405162461bcd60e51b8152600401610a1c90612d72565b6115216103e86113ce836009546116cd90919063ffffffff16565b60135550565b6000546001600160a01b031633146115515760405162461bcd60e51b8152600401610a1c90612d72565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b0316331461159c5760405162461bcd60e51b8152600401610a1c90612d72565b601455565b6000546001600160a01b031633146115cb5760405162461bcd60e51b8152600401610a1c90612d72565b6001600160a01b0381166116305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1c565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c1e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e34565b6000826000036116df575060006109ec565b60006116eb8385612e19565b9050826116f88583612e38565b14610c1e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a1c565b6001600160a01b0383166117b15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a1c565b6001600160a01b0382166118125760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a1c565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a1c565b6001600160a01b0382166119395760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a1c565b6000811161199b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a1c565b6000546001600160a01b038481169116148015906119c757506000546001600160a01b03838116911614155b15611a1e5760185460ff16611a1e5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610a1c565b6000611a2930611154565b90506013548110611a3957506013545b60145481108015908190611a5757506012546301000000900460ff16155b8015611a9557507f00000000000000000000000063dcea95042fdc1a0d7612d6c87deb2dfb62795d6001600160a01b0316856001600160a01b031614155b8015611aab5750601254640100000000900460ff165b15611abe576014549150611abe82611e62565b6001600160a01b03851660009081526005602052604090205460019060ff1680611b0057506001600160a01b03851660009081526005602052604090205460ff165b15611b09575060005b8015611c61576001600160a01b03861660009081526008602052604090205460ff16158015611b5157506001600160a01b03851660009081526008602052604090205460ff16155b15611c6157601354841115611bb95760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a1c565b7f00000000000000000000000063dcea95042fdc1a0d7612d6c87deb2dfb62795d6001600160a01b0316856001600160a01b031614611c6157601554611bfe86611154565b611c089086612e5a565b1115611c615760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610a1c565b611c6d86868684612046565b505050505050565b60008184841115611c995760405162461bcd60e51b8152600401610a1c9190612aaf565b506000611ca68486612dd3565b95945050505050565b6000806000611cbc6122b4565b9092509050611ccb828261168b565b9250505090565b600080611cdf8385612e5a565b905083811015610c1e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a1c565b6000806000806000611d4286612436565b90506000611d4f87612451565b90506000611d5c88612471565b90506000611d7483611d6e8b87611df2565b90611df2565b9050611d808183611df2565b9993985091965094509092505050565b6000808080611d9f89866116cd565b90506000611dad89876116cd565b90506000611dbb89886116cd565b90506000611dc989896116cd565b90506000611ddd82611d6e85818989611df2565b949d949c50929a509298505050505050505050565b6000610c1e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c75565b60008183611e555760405162461bcd60e51b8152600401610a1c9190612aaf565b506000611ca68486612e38565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff90811693918204811692611ea8926101009182900483169291900416612e72565b611eb29190612e72565b611ebc9190612e72565b611ec7906002612e97565b60115460105460ff92831693506000928492611ef0926101009182900483169291900416612e72565b611efd9060ff1685612e19565b611f079190612e38565b90506000611f158285612dd3565b905047611f2182612492565b6000611f2d8247612dd3565b601154601054919250600091611f539160ff610100918290048116929190910416612e72565b611f609060ff1687612dd3565b611f6a9083612e38565b601154601054919250600091611f909160ff610100918290048116929190910416612e72565b611f9d9060ff1683612e19565b90508015611faf57611faf868261264a565b601154601054600091611fd29160ff620100009283900481169290910416612e72565b60ff16611fe0846002612e19565b611fea9190612e19565b9050801561202e57600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561202c573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b80156121495761205d6012805462ffffff19169055565b7f00000000000000000000000063dcea95042fdc1a0d7612d6c87deb2dfb62795d6001600160a01b0316846001600160a01b0316036120d3576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f00000000000000000000000063dcea95042fdc1a0d7612d6c87deb2dfb62795d6001600160a01b0316836001600160a01b031603612149576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff16801561218a57506001600160a01b03831660009081526006602052604090205460ff16155b1561219f5761219a84848461272a565b61229d565b6001600160a01b03841660009081526006602052604090205460ff161580156121e057506001600160a01b03831660009081526006602052604090205460ff165b156121f05761219a84848461286c565b6001600160a01b03841660009081526006602052604090205460ff1615801561223257506001600160a01b03831660009081526006602052604090205460ff16155b156122425761219a848484612927565b6001600160a01b03841660009081526006602052604090205460ff16801561228257506001600160a01b03831660009081526006602052604090205460ff165b156122925761219a84848461297d565b61229d848484612927565b6122ae6012805462ffffff19169055565b50505050565b600a546009546000918291825b600754811015612406578260026000600784815481106122e3576122e3612da7565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061234e575081600360006007848154811061232757612327612da7565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561236457600a54600954945094505050509091565b6123aa600260006007848154811061237e5761237e612da7565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611df2565b92506123f260036000600784815481106123c6576123c6612da7565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611df2565b9150806123fe81612e00565b9150506122c1565b50600954600a546124169161168b565b82101561242d57600a546009549350935050509091565b90939092509050565b6012546000906109ec906064906113ce90859060ff166116cd565b6012546000906109ec906064906113ce908590610100900460ff166116cd565b6012546000906109ec906064906113ce90859062010000900460ff166116cd565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124c7576124c7612da7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612545573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125699190612ec0565b8160018151811061257c5761257c612da7565b60200260200101906001600160a01b031690816001600160a01b0316815250506125c7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461174f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061261c908590600090869030904290600401612edd565b600060405180830381600087803b15801561263657600080fd5b505af1158015611c6d573d6000803e3d6000fd5b612675307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461174f565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156126fe573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127239190612f4e565b5050505050565b60008060008061273985611d31565b9350935093509350600080600061275588878787610ea8611caf565b6001600160a01b038d1660009081526003602052604090205492955090935091506127809089611df2565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546127af9084611df2565b6001600160a01b03808c1660009081526002602052604080822093909355908b16815220546127de9083611cd2565b6001600160a01b038a1660009081526002602052604090205561280085612a02565b61280984612a02565b6128138187612a8b565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8960405161285891815260200190565b60405180910390a350505050505050505050565b60008060008061287b85611d31565b9350935093509350600080600061289788878787610ea8611caf565b6001600160a01b038d1660009081526002602052604090205492955090935091506128c29084611df2565b6001600160a01b03808c16600090815260026020908152604080832094909455918c168152600390915220546128f89088611cd2565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546127de9083611cd2565b60008060008061293685611d31565b9350935093509350600080600061295288878787610ea8611caf565b6001600160a01b038d1660009081526002602052604090205492955090935091506127af9084611df2565b60008060008061298c85611d31565b935093509350935060008060006129a888878787610ea8611caf565b6001600160a01b038d1660009081526003602052604090205492955090935091506129d39089611df2565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546128c29084611df2565b6000612a0c611caf565b90506000612a1a83836116cd565b30600090815260026020526040902054909150612a379082611cd2565b3060009081526002602090815260408083209390935560069052205460ff1615612a865730600090815260036020526040902054612a759084611cd2565b306000908152600360205260409020555b505050565b600a54612a989083611df2565b600a55600b54612aa89082611cd2565b600b555050565b600060208083528351808285015260005b81811015612adc57858101830151858201604001528201612ac0565b81811115612aee576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114612b1957600080fd5b50565b60008060408385031215612b2f57600080fd5b8235612b3a81612b04565b946020939093013593505050565b600060208284031215612b5a57600080fd5b8135610c1e81612b04565b803560ff81168114612b7657600080fd5b919050565b600080600060608486031215612b9057600080fd5b612b9984612b65565b9250612ba760208501612b65565b9150612bb560408501612b65565b90509250925092565b600080600060608486031215612bd357600080fd5b8335612bde81612b04565b92506020840135612bee81612b04565b929592945050506040919091013590565b80358015158114612b7657600080fd5b60008060408385031215612c2257600080fd5b612b3a83612bff565b600060208284031215612c3d57600080fd5b5035919050565b60008060408385031215612c5757600080fd5b82359150612c6760208401612bff565b90509250929050565b60008060008060008060c08789031215612c8957600080fd5b612c9287612b65565b9550612ca060208801612b65565b9450612cae60408801612b65565b9350612cbc60608801612b65565b9250612cca60808801612b65565b9150612cd860a08801612b65565b90509295509295509295565b600060208284031215612cf657600080fd5b610c1e82612bff565b60008060408385031215612d1257600080fd5b8235612d1d81612b04565b91506020830135612d2d81612b04565b809150509250929050565b600181811c90821680612d4c57607f821691505b602082108103612d6c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015612de557612de5612dbd565b500390565b634e487b7160e01b600052603160045260246000fd5b600060018201612e1257612e12612dbd565b5060010190565b6000816000190483118215151615612e3357612e33612dbd565b500290565b600082612e5557634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612e6d57612e6d612dbd565b500190565b600060ff821660ff84168060ff03821115612e8f57612e8f612dbd565b019392505050565b600060ff821660ff84168160ff0481118215151615612eb857612eb8612dbd565b029392505050565b600060208284031215612ed257600080fd5b8151610c1e81612b04565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f2d5784516001600160a01b031683529383019391830191600101612f08565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612f6357600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220651d101ebf889ee2ca4c8813052022b6eda6bbb106a5ef4cafb2db1864b7441764736f6c634300080f0033

Deployed Bytecode Sourcemap

25210:25083:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28542:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29527:193;;;;;;;;;;-1:-1:-1;29527:193:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;29527:193:0;1072:187:1;34035:115:0;;;;;;;;;;-1:-1:-1;34035:115:0;;;;;:::i;:::-;;:::i;:::-;;34280:255;;;;;;;;;;-1:-1:-1;34280:255:0;;;;;:::i;:::-;;:::i;31026:87::-;;;;;;;;;;-1:-1:-1;31095:10:0;;31026:87;;;2150:25:1;;;2138:2;2123:18;31026:87:0;2004:177:1;26512:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2377:32:1;;;2359:51;;2347:2;2332:18;26512:51:0;2186:230:1;28819:95:0;;;;;;;;;;-1:-1:-1;28899:7:0;;28819:95;;29728:446;;;;;;;;;;-1:-1:-1;29728:446:0;;;;;:::i;:::-;;:::i;26376:22::-;;;;;;;;;;-1:-1:-1;26376:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;3102:4:1;3090:17;;;3072:36;;3144:17;;;3139:2;3124:18;;3117:45;3198:17;;3178:18;;;3171:45;;;;3060:2;3045:18;26376:22:0;2882:340:1;49953:337:0;;;;;;;;;;-1:-1:-1;49953:337:0;;;;;:::i;:::-;;:::i;32510:322::-;;;;;;;;;;-1:-1:-1;32510:322:0;;;;;:::i;:::-;;:::i;28728:83::-;;;;;;;;;;-1:-1:-1;28794:9:0;;28728:83;;28794:9;;;;3972:36:1;;3960:2;3945:18;28728:83:0;3830:184:1;33317:473:0;;;;;;;;;;-1:-1:-1;33317:473:0;;;;;:::i;:::-;;:::i;30182:300::-;;;;;;;;;;-1:-1:-1;30182:300:0;;;;;:::i;:::-;;:::i;31121:683::-;;;;;;;;;;-1:-1:-1;31121:683:0;;;;;:::i;:::-;;:::i;33798:111::-;;;;;;;;;;-1:-1:-1;33798:111:0;;;;;:::i;:::-;;:::i;31812:690::-;;;;;;;;;;-1:-1:-1;31812:690:0;;;;;:::i;:::-;;:::i;26349:20::-;;;;;;;;;;-1:-1:-1;26349:20:0;;;;;;;;;;;;;;;;;;;;;;26570:38;;;;;;;;;;;;;;;26645:40;;;;;;;;;;-1:-1:-1;26645:40:0;;;;;;;;;;;32977:332;;;;;;;;;;-1:-1:-1;32977:332:0;;;;;:::i;:::-;;:::i;40017:124::-;;;;;;;;;;-1:-1:-1;40017:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;40106:27:0;40082:4;40106:27;;;:18;:27;;;;;;;;;40017:124;28922:198;;;;;;;;;;-1:-1:-1;28922:198:0;;;;;:::i;:::-;;:::i;15274:148::-;;;;;;;;;;;;;:::i;26694:55::-;;;;;;;;;;;;;;;;30898:120;;;;;;;;;;-1:-1:-1;30898:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;30990:20:0;30966:4;30990:20;;;:11;:20;;;;;;;;;30898:120;14632:79;;;;;;;;;;-1:-1:-1;14670:7:0;14697:6;-1:-1:-1;;;;;14697:6:0;14632:79;;26847:57;;;;;;;;;;;;;;;;34158:114;;;;;;;;;;-1:-1:-1;34158:114:0;;;;;:::i;:::-;;:::i;34543:251::-;;;;;;;;;;-1:-1:-1;34543:251:0;;;;;:::i;:::-;;:::i;28633:87::-;;;;;;;;;;;;;:::i;30490:400::-;;;;;;;;;;-1:-1:-1;30490:400:0;;;;;:::i;:::-;;:::i;27402:46::-;;;;;;;;;;-1:-1:-1;27402:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;29128:199;;;;;;;;;;-1:-1:-1;29128:199:0;;;;;:::i;:::-;;:::i;32842:127::-;;;;;;;;;;-1:-1:-1;32842:127:0;;;;;:::i;:::-;;:::i;35614:172::-;;;;;;;;;;-1:-1:-1;35614:172:0;;;;;:::i;:::-;;:::i;34802:512::-;;;;;;;;;;-1:-1:-1;34802:512:0;;;;;:::i;:::-;;:::i;27333:29::-;;;;;;;;;;;;;;;;35794:171;;;;;;;;;;-1:-1:-1;35794:171:0;;;;;:::i;:::-;;:::i;25904:103::-;;;;;;;;;;-1:-1:-1;25904:103:0;;;;-1:-1:-1;;;;;25904:103:0;;;35470:136;;;;;;;;;;-1:-1:-1;35470:136:0;;;;;:::i;:::-;;:::i;40149:128::-;;;;;;;;;;-1:-1:-1;40149:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;40240:29:0;40216:4;40240:29;;;:20;:29;;;;;;;;;40149:128;29335:184;;;;;;;;;;-1:-1:-1;29335:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;29484:18:0;;;29452:7;29484:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29335:184;33917:110;;;;;;;;;;-1:-1:-1;33917:110:0;;;;;:::i;:::-;;:::i;35322:140::-;;;;;;;;;;-1:-1:-1;35322:140:0;;;;;:::i;:::-;;:::i;15577:281::-;;;;;;;;;;-1:-1:-1;15577:281:0;;;;;:::i;:::-;;:::i;27297:29::-;;;;;;;;;;;;;;;;28542:83;28579:13;28612:5;28605:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28542:83;:::o;29527:193::-;29629:4;29651:39;7476:10;29674:7;29683:6;29651:8;:39::i;:::-;-1:-1:-1;29708:4:0;29527:193;;;;;:::o;34035:115::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;34106:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;34106:36:0::1;34138:4;34106:36;::::0;;34035:115::o;34280:255::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;34416:7:::1;:31:::0;;::::1;34498:29:::0;;::::1;34416:31;34498:29;-1:-1:-1::0;;34458:29:0;;::::1;::::0;::::1;-1:-1:-1::0;;34458:29:0;;;34416:31;;;::::1;34458:29:::0;;;;;;;::::1;34498;::::0;;;::::1;::::0;;34280:255::o;29728:446::-;29860:4;29877:36;29887:6;29895:9;29906:6;29877:9;:36::i;:::-;29924:220;29947:6;7476:10;29995:138;30051:6;29995:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29995:19:0;;;;;;:11;:19;;;;;;;;7476:10;29995:33;;;;;;;;;;:37;:138::i;:::-;29924:8;:220::i;:::-;-1:-1:-1;30162:4:0;29728:446;;;;;:::o;49953:337::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;50040:11:::1;:21:::0;;-1:-1:-1;;50040:21:0::1;::::0;::::1;;;::::0;;50072:32:::1;50098:4;50072:17;:32::i;:::-;50115;50133:13;50115:17;:32::i;:::-;50161:11;::::0;::::1;;:30:::0;::::1;;;-1:-1:-1::0;50176:10:0::1;::::0;:15;50161:30:::1;50158:125;;;50220:12;50207:10;:25:::0;50247:10:::1;:24:::0;;;50158:125:::1;49953:337:::0;;:::o;32510:322::-;32604:7;32662;;32651;:18;;32629:110;;;;-1:-1:-1;;;32629:110:0;;7030:2:1;32629:110:0;;;7012:21:1;7069:2;7049:18;;;7042:30;7108:34;7088:18;;;7081:62;-1:-1:-1;;;7159:18:1;;;7152:40;7209:19;;32629:110:0;6828:406:1;32629:110:0;32750:19;32772:10;:8;:10::i;:::-;32750:32;-1:-1:-1;32800:24:0;:7;32750:32;32800:11;:24::i;:::-;32793:31;32510:322;-1:-1:-1;;;32510:322:0:o;33317:473::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33397:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33389:56;;;::::0;-1:-1:-1;;;33389:56:0;;7441:2:1;33389:56:0::1;::::0;::::1;7423:21:1::0;7480:2;7460:18;;;7453:30;7519:25;7499:18;;;7492:53;7562:18;;33389:56:0::1;7239:347:1::0;33389:56:0::1;33461:9;33456:327;33480:9;:16:::0;33476:20;::::1;33456:327;;;33538:7;-1:-1:-1::0;;;;;33522:23:0::1;:9;33532:1;33522:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33522:12:0::1;:23:::0;33518:254:::1;;33581:9;33591:16:::0;;:20:::1;::::0;33610:1:::1;::::0;33591:20:::1;:::i;:::-;33581:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;33566:9:::1;:12:::0;;-1:-1:-1;;;;;33581:31:0;;::::1;::::0;33576:1;;33566:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33566:46:0::1;-1:-1:-1::0;;;;;33566:46:0;;::::1;;::::0;;33631:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33670:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33670:28:0::1;::::0;;33717:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33717:15:0;;;;;-1:-1:-1;;;;;;33717:15:0::1;::::0;;;;;49953:337;;:::o;33518:254::-:1;33498:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33456:327;;30182:300:::0;7476:10;30297:4;30391:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30391:34:0;;;;;;;;;;30297:4;;30319:133;;30369:7;;30391:50;;30430:10;30391:38;:50::i;31121:683::-;7476:10;31173:14;31236:19;;;:11;:19;;;;;;;;31235:20;31213:114;;;;-1:-1:-1;;;31213:114:0;;8459:2:1;31213:114:0;;;8441:21:1;8498:2;8478:18;;;8471:30;8537:34;8517:18;;;8510:62;-1:-1:-1;;;8588:18:1;;;8581:42;8640:19;;31213:114:0;8257:408:1;31213:114:0;31370:12;31397:18;31430:15;31459:20;31471:7;31459:11;:20::i;:::-;31340:139;;;;;;;31491:15;31514:135;31540:7;31562:4;31581:10;31606:7;31628:10;:8;:10::i;:::-;31514:11;:135::i;:::-;-1:-1:-1;;;;;;;31680:15:0;;;;;;:7;:15;;;;;;31490:159;;-1:-1:-1;31680:28:0;;31490:159;31680:19;:28::i;:::-;-1:-1:-1;;;;;31662:15:0;;;;;;:7;:15;;;;;:46;31729:7;;:20;;31741:7;31729:11;:20::i;:::-;31719:7;:30;31773:10;;:23;;31788:7;31773:14;:23::i;:::-;31760:10;:36;-1:-1:-1;;;;;;31121:683:0:o;33798:111::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33867:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33867:34:0::1;33897:4;33867:34;::::0;;33798:111::o;31812:690::-;31930:7;31974;;31963;:18;;31955:62;;;;-1:-1:-1;;;31955:62:0;;8872:2:1;31955:62:0;;;8854:21:1;8911:2;8891:18;;;8884:30;8950:33;8930:18;;;8923:61;9001:18;;31955:62:0;8670:355:1;31955:62:0;32060:12;32087:18;32120:15;32149:20;32161:7;32149:11;:20::i;:::-;32030:139;;;;;;;32181:15;32198:23;32227:135;32253:7;32275:4;32294:10;32319:7;32341:10;:8;:10::i;32227:135::-;32180:182;;;;;32380:17;32375:120;;-1:-1:-1;32421:7:0;-1:-1:-1;32414:14:0;;-1:-1:-1;;;32414:14:0;32375:120;32468:15;-1:-1:-1;32461:22:0;;-1:-1:-1;;;;32461:22:0;32977:332;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33058:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33057:21;33049:61;;;::::0;-1:-1:-1;;;33049:61:0;;9232:2:1;33049:61:0::1;::::0;::::1;9214:21:1::0;9271:2;9251:18;;;9244:30;9310:29;9290:18;;;9283:57;9357:18;;33049:61:0::1;9030:351:1::0;33049:61:0::1;-1:-1:-1::0;;;;;33125:16:0;::::1;33144:1;33125:16:::0;;;:7:::1;:16;::::0;;;;;:20;33121:109:::1;;-1:-1:-1::0;;;;;33201:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33181:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33162:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33121:109:::1;-1:-1:-1::0;;;;;33240:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33240:27:0::1;33263:4;33240:27:::0;;::::1;::::0;;;33278:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33278:23:0::1;::::0;;::::1;::::0;;32977:332::o;28922:198::-;-1:-1:-1;;;;;29012:20:0;;28988:7;29012:20;;;:11;:20;;;;;;;;29008:49;;;-1:-1:-1;;;;;;29041:16:0;;;;;:7;:16;;;;;;;28922:198::o;29008:49::-;-1:-1:-1;;;;;29095:16:0;;;;;;:7;:16;;;;;;29075:37;;:19;:37::i;15274:148::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;15381:1:::1;15365:6:::0;;15344:40:::1;::::0;-1:-1:-1;;;;;15365:6:0;;::::1;::::0;15344:40:::1;::::0;15381:1;;15344:40:::1;15412:1;15395:19:::0;;-1:-1:-1;;;;;;15395:19:0::1;::::0;;15274:148::o;34158:114::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34227:29:0::1;34259:5;34227:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;34227:37:0::1;::::0;;34158:114::o;34543:251::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;34678:6:::1;:30:::0;;::::1;34758:28:::0;;::::1;34678:30;34758:28;-1:-1:-1::0;;34719:28:0;;::::1;::::0;::::1;-1:-1:-1::0;;34719:28:0;;;34678:30;;;::::1;34719:28:::0;;;;;;;::::1;34758;::::0;;;::::1;::::0;;34543:251::o;28633:87::-;28672:13;28705:7;28698:14;;;;;:::i;30490:400::-;30610:4;30632:228;7476:10;30682:7;30704:145;30761:15;30704:145;;;;;;;;;;;;;;;;;7476:10;30704:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30704:34:0;;;;;;;;;;;;:38;:145::i;29128:199::-;29233:4;29255:42;7476:10;29279:9;29290:6;29255:9;:42::i;32842:127::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;32931:17:::1;:30:::0;;-1:-1:-1;;;;;;32931:30:0::1;-1:-1:-1::0;;;;;32931:30:0;;;::::1;::::0;;;::::1;::::0;;32842:127::o;35614:172::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;35741:37:::1;35772:5;35741:26;35753:13;35741:7;;:11;;:26;;;;:::i;:::-;:30:::0;::::1;:37::i;:::-;35724:14;:54:::0;-1:-1:-1;35614:172:0:o;34802:512::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;35047:6:::1;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;35092:32:0;;;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;35135:32:0;;::::1;35047:34;35135:32:::0;;::::1;::::0;::::1;;::::0;;;35180:7:::1;:36:::0;;;;::::1;35227:34:::0;;;;;;;;;;::::1;::::0;;::::1;;35272::::0;;::::1;::::0;;;::::1;::::0;;::::1;;::::0;;34802:512::o;35794:171::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;35871:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;35871:32:0;;::::1;;::::0;;35919:38:::1;::::0;::::1;::::0;::::1;::::0;35895:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;35919:38:0::1;;;;;;;;35794:171:::0;:::o;35470:136::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;35562:36:::1;35592:5;35562:25;35574:12;35562:7;;:11;;:25;;;;:::i;:36::-;35547:12;:51:::0;-1:-1:-1;35470:136:0:o;33917:110::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33984:27:0::1;34014:5;33984:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33984:35:0::1;::::0;;33917:110::o;35322:140::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;35413:29:::1;:41:::0;35322:140::o;15577:281::-;14844:6;;-1:-1:-1;;;;;14844:6:0;7476:10;14844:22;14836:67;;;;-1:-1:-1;;;14836:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15680:22:0;::::1;15658:110;;;::::0;-1:-1:-1;;;15658:110:0;;9588:2:1;15658:110:0::1;::::0;::::1;9570:21:1::0;9627:2;9607:18;;;9600:30;9666:34;9646:18;;;9639:62;-1:-1:-1;;;9717:18:1;;;9710:36;9763:19;;15658:110:0::1;9386:402:1::0;15658:110:0::1;15805:6;::::0;;15784:38:::1;::::0;-1:-1:-1;;;;;15784:38:0;;::::1;::::0;15805:6;::::1;::::0;15784:38:::1;::::0;::::1;15833:6;:17:::0;;-1:-1:-1;;;;;;15833:17:0::1;-1:-1:-1::0;;;;;15833:17:0;;;::::1;::::0;;;::::1;::::0;;15577:281::o;5120:132::-;5178:7;5205:39;5209:1;5212;5205:39;;;;;;;;;;;;;;;;;:3;:39::i;4625:252::-;4683:7;4709:1;4714;4709:6;4705:47;;-1:-1:-1;4739:1:0;4732:8;;4705:47;4764:9;4776:5;4780:1;4776;:5;:::i;:::-;4764:17;-1:-1:-1;4809:1:0;4800:5;4804:1;4764:17;4800:5;:::i;:::-;:10;4792:56;;;;-1:-1:-1;;;4792:56:0;;10390:2:1;4792:56:0;;;10372:21:1;10429:2;10409:18;;;10402:30;10468:34;10448:18;;;10441:62;-1:-1:-1;;;10519:18:1;;;10512:31;10560:19;;4792:56:0;10188:397:1;40285:371:0;-1:-1:-1;;;;;40412:19:0;;40404:68;;;;-1:-1:-1;;;40404:68:0;;10792:2:1;40404:68:0;;;10774:21:1;10831:2;10811:18;;;10804:30;10870:34;10850:18;;;10843:62;-1:-1:-1;;;10921:18:1;;;10914:34;10965:19;;40404:68:0;10590:400:1;40404:68:0;-1:-1:-1;;;;;40491:21:0;;40483:68;;;;-1:-1:-1;;;40483:68:0;;11197:2:1;40483:68:0;;;11179:21:1;11236:2;11216:18;;;11209:30;11275:34;11255:18;;;11248:62;-1:-1:-1;;;11326:18:1;;;11319:32;11368:19;;40483:68:0;10995:398:1;40483:68:0;-1:-1:-1;;;;;40564:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;40616:32;;2150:25:1;;;40616:32:0;;2123:18:1;40616:32:0;;;;;;;40285:371;;;:::o;40664:2343::-;-1:-1:-1;;;;;40786:18:0;;40778:68;;;;-1:-1:-1;;;40778:68:0;;11600:2:1;40778:68:0;;;11582:21:1;11639:2;11619:18;;;11612:30;11678:34;11658:18;;;11651:62;-1:-1:-1;;;11729:18:1;;;11722:35;11774:19;;40778:68:0;11398:401:1;40778:68:0;-1:-1:-1;;;;;40865:16:0;;40857:64;;;;-1:-1:-1;;;40857:64:0;;12006:2:1;40857:64:0;;;11988:21:1;12045:2;12025:18;;;12018:30;12084:34;12064:18;;;12057:62;-1:-1:-1;;;12135:18:1;;;12128:33;12178:19;;40857:64:0;11804:399:1;40857:64:0;40949:1;40940:6;:10;40932:64;;;;-1:-1:-1;;;40932:64:0;;12410:2:1;40932:64:0;;;12392:21:1;12449:2;12429:18;;;12422:30;12488:34;12468:18;;;12461:62;-1:-1:-1;;;12539:18:1;;;12532:39;12588:19;;40932:64:0;12208:405:1;40932:64:0;14670:7;14697:6;-1:-1:-1;;;;;41022:15:0;;;14697:6;;41022:15;;;;:32;;-1:-1:-1;14670:7:0;14697:6;-1:-1:-1;;;;;41041:13:0;;;14697:6;;41041:13;;41022:32;41017:88;;;41065:11;;;;41057:48;;;;-1:-1:-1;;;41057:48:0;;12820:2:1;41057:48:0;;;12802:21:1;12859:2;12839:18;;;12832:30;12898:26;12878:18;;;12871:54;12942:18;;41057:48:0;12618:348:1;41057:48:0;41440:28;41471:24;41489:4;41471:9;:24::i;:::-;41440:55;;41536:12;;41512:20;:36;41508:104;;-1:-1:-1;41588:12:0;;41508:104;41688:29;;41651:66;;;;;;;41746:53;;-1:-1:-1;41783:16:0;;;;;;;41782:17;41746:53;:91;;;;;41824:13;-1:-1:-1;;;;;41816:21:0;:4;-1:-1:-1;;;;;41816:21:0;;;41746:91;:129;;;;-1:-1:-1;41854:21:0;;;;;;;41746:129;41728:318;;;41925:29;;41902:52;;41998:36;42013:20;41998:14;:36::i;:::-;-1:-1:-1;;;;;42239:24:0;;42119:12;42239:24;;;:18;:24;;;;;;42134:4;;42239:24;;;:50;;-1:-1:-1;;;;;;42267:22:0;;;;;;:18;:22;;;;;;;;42239:50;42235:98;;;-1:-1:-1;42316:5:0;42235:98;42347:7;42343:536;;;-1:-1:-1;;;;;42376:26:0;;;;;;:20;:26;;;;;;;;42375:27;:56;;;;-1:-1:-1;;;;;;42407:24:0;;;;;;:20;:24;;;;;;;;42406:25;42375:56;42371:497;;;42492:12;;42482:6;:22;;42452:136;;;;-1:-1:-1;;;42452:136:0;;13173:2:1;42452:136:0;;;13155:21:1;13212:2;13192:18;;;13185:30;13251:34;13231:18;;;13224:62;-1:-1:-1;;;13302:18:1;;;13295:38;13350:19;;42452:136:0;12971:404:1;42452:136:0;42617:13;-1:-1:-1;;;;;42611:19:0;:2;-1:-1:-1;;;;;42611:19:0;;42607:228;;42715:14;;42698:13;42708:2;42698:9;:13::i;:::-;42689:22;;:6;:22;:::i;:::-;:40;;42655:160;;;;-1:-1:-1;;;42655:160:0;;13715:2:1;42655:160:0;;;13697:21:1;13754:2;13734:18;;;13727:30;13793:34;13773:18;;;13766:62;-1:-1:-1;;;13844:18:1;;;13837:32;13886:19;;42655:160:0;13513:398:1;42655:160:0;42958:41;42973:4;42979:2;42983:6;42991:7;42958:14;:41::i;:::-;40767:2240;;;40664:2343;;;:::o;4140:226::-;4260:7;4296:12;4288:6;;;;4280:29;;;;-1:-1:-1;;;4280:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4320:9:0;4332:5;4336:1;4332;:5;:::i;:::-;4320:17;4140:226;-1:-1:-1;;;;;4140:226:0:o;37494:164::-;37536:7;37557:15;37574;37593:19;:17;:19::i;:::-;37556:56;;-1:-1:-1;37556:56:0;-1:-1:-1;37630:20:0;37556:56;;37630:11;:20::i;:::-;37623:27;;;;37494:164;:::o;3237:181::-;3295:7;;3327:5;3331:1;3327;:5;:::i;:::-;3315:17;;3356:1;3351;:6;;3343:46;;;;-1:-1:-1;;;3343:46:0;;14118:2:1;3343:46:0;;;14100:21:1;14157:2;14137:18;;;14130:30;14196:29;14176:18;;;14169:57;14243:18;;3343:46:0;13916:351:1;36222:568:0;36323:7;36345;36367;36389;36424:12;36439:31;36462:7;36439:22;:31::i;:::-;36424:46;;36481:18;36502:30;36524:7;36502:21;:30::i;:::-;36481:51;;36543:15;36561:30;36583:7;36561:21;:30::i;:::-;36543:48;-1:-1:-1;36602:23:0;36628:33;36650:10;36628:17;:7;36640:4;36628:11;:17::i;:::-;:21;;:33::i;:::-;36602:59;-1:-1:-1;36690:28:0;36602:59;36710:7;36690:19;:28::i;:::-;36672:46;36756:4;;-1:-1:-1;36762:10:0;;-1:-1:-1;36762:10:0;-1:-1:-1;36222:568:0;;-1:-1:-1;;;36222:568:0:o;36798:688::-;37023:7;;;;37120:24;:7;37132:11;37120;:24::i;:::-;37102:42;-1:-1:-1;37155:12:0;37170:21;:4;37179:11;37170:8;:21::i;:::-;37155:36;-1:-1:-1;37202:18:0;37223:27;:10;37238:11;37223:14;:27::i;:::-;37202:48;-1:-1:-1;37261:15:0;37279:24;:7;37291:11;37279;:24::i;:::-;37261:42;-1:-1:-1;37314:23:0;37340:88;37261:42;37340:61;37390:10;37340:61;:7;37366:4;37340:25;:31::i;:88::-;37447:7;;;;-1:-1:-1;37473:4:0;;-1:-1:-1;36798:688:0;;-1:-1:-1;;;;;;;;;36798:688:0:o;3701:136::-;3759:7;3786:43;3790:1;3793;3786:43;;;;;;;;;;;;;;;;;:3;:43::i;5748:312::-;5868:7;5903:12;5896:5;5888:28;;;;-1:-1:-1;;;5888:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5927:9:0;5939:5;5943:1;5939;:5;:::i;43015:1195::-;27211:16;:23;;-1:-1:-1;;27211:23:0;;;;;43218:7:::1;:17:::0;43199:6:::1;:16:::0;27211:23;;43218:17;;;::::1;27211:23:::0;43218:17;;::::1;::::0;43199:16;;::::1;::::0;::::1;::::0;43160:36:::1;::::0;27211:23;43179:17;;;::::1;::::0;::::1;::::0;43160:16;;::::1;;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;43159:81;::::0;43239:1:::1;43159:81;:::i;:::-;43316:7;:17:::0;43297:6:::1;:16:::0;43137:103:::1;::::0;;::::1;::::0;-1:-1:-1;43251:32:0::1;::::0;43137:103;;43297:36:::1;::::0;43316:17:::1;::::0;;;::::1;::::0;::::1;::::0;43297:16;;::::1;;:36;:::i;:::-;43287:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;43286:63;;;;:::i;:::-;43251:98:::0;-1:-1:-1;43360:14:0::1;43377:33;43251:98:::0;43377:6;:33:::1;:::i;:::-;43360:50:::0;-1:-1:-1;43448:21:0::1;43482:24;43360:50:::0;43482:16:::1;:24::i;:::-;43519:20;43542:38;43566:14:::0;43542:21:::1;:38;:::i;:::-;43663:7;:17:::0;43644:6:::1;:16:::0;43519:61;;-1:-1:-1;43591:19:0::1;::::0;43644:36:::1;::::0;43663:17:::1;;::::0;;;::::1;::::0;::::1;::::0;43644:16;;;::::1;;:36;:::i;:::-;43629:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;43613:69;::::0;:12;:69:::1;:::i;:::-;43759:7;:17:::0;43740:6:::1;:16:::0;43591:91;;-1:-1:-1;43693:29:0::1;::::0;43740:36:::1;::::0;43759:17:::1;;::::0;;;::::1;::::0;::::1;::::0;43740:16;;;::::1;;:36;:::i;:::-;43725:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;43693:84:::0;-1:-1:-1;43794:25:0;;43790:160:::1;;43877:61;43890:24;43916:21;43877:12;:61::i;:::-;44057:7;:17:::0;44038:6:::1;:16:::0;43996:20:::1;::::0;44038:36:::1;::::0;44057:17:::1;::::0;;;;::::1;::::0;::::1;::::0;44038:16;;::::1;;:36;:::i;:::-;44019:56;;:15;:11:::0;44033:1:::1;44019:15;:::i;:::-;:56;;;;:::i;:::-;43996:79:::0;-1:-1:-1;44101:16:0;;44097:98:::1;;44142:17;::::0;44134:49:::1;::::0;-1:-1:-1;;;;;44142:17:0;;::::1;::::0;44134:49;::::1;;;::::0;44170:12;;44142:17:::1;44134:49:::0;44142:17;44134:49;44170:12;44142:17;44134:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44097:98;-1:-1:-1::0;;27257:16:0;:24;;-1:-1:-1;;27257:24:0;;;-1:-1:-1;;;;;;;43015:1195:0:o;45415:1022::-;45570:7;45566:230;;;45594:14;39554;:18;;-1:-1:-1;;39611:17:0;;;39511:132;45594:14;45637:13;-1:-1:-1;;;;;45627:23:0;:6;-1:-1:-1;;;;;45627:23:0;;45623:72;;39705:6;:17;39688:14;:34;;39705:17;;;;-1:-1:-1;;39733:32:0;;;;;;;39705:17;39749:16;;;;;39733:32;;-1:-1:-1;;39776:32:0;39792:16;;;;;;;;;39776:32;;;;;;;;;45671:8;45726:13;-1:-1:-1;;;;;45713:26:0;:9;-1:-1:-1;;;;;45713:26:0;;45709:76;;39887:7;:18;39870:14;:35;;39887:18;;;;-1:-1:-1;;39916:33:0;;;;;;;39887:18;39932:17;;;;;39916:33;;-1:-1:-1;;39960:33:0;39976:17;;;;;;;;;39960:33;;;;;;;;;45760:9;-1:-1:-1;;;;;45812:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;45836:22:0;;;;;;:11;:22;;;;;;;;45835:23;45812:46;45808:597;;;45875:48;45897:6;45905:9;45916:6;45875:21;:48::i;:::-;45808:597;;;-1:-1:-1;;;;;45946:19:0;;;;;;:11;:19;;;;;;;;45945:20;:46;;;;-1:-1:-1;;;;;;45969:22:0;;;;;;:11;:22;;;;;;;;45945:46;45941:464;;;46008:46;46028:6;46036:9;46047:6;46008:19;:46::i;45941:464::-;-1:-1:-1;;;;;46077:19:0;;;;;;:11;:19;;;;;;;;46076:20;:47;;;;-1:-1:-1;;;;;;46101:22:0;;;;;;:11;:22;;;;;;;;46100:23;46076:47;46072:333;;;46140:44;46158:6;46166:9;46177:6;46140:17;:44::i;46072:333::-;-1:-1:-1;;;;;46206:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;46229:22:0;;;;;;:11;:22;;;;;;;;46206:45;46202:203;;;46268:48;46290:6;46298:9;46309:6;46268:21;:48::i;46202:203::-;46349:44;46367:6;46375:9;46386:6;46349:17;:44::i;:::-;46415:14;39554;:18;;-1:-1:-1;;39611:17:0;;;39511:132;46415:14;45415:1022;;;;:::o;37666:605::-;37764:7;;37800;;37717;;;;;37818:338;37842:9;:16;37838:20;;37818:338;;;37926:7;37902;:21;37910:9;37920:1;37910:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37910:12:0;37902:21;;;;;;;;;;;;;:31;;:83;;;37978:7;37954;:21;37962:9;37972:1;37962:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37962:12:0;37954:21;;;;;;;;;;;;;:31;37902:83;37880:146;;;38009:7;;38018;;38001:25;;;;;;;37666:605;;:::o;37880:146::-;38051:34;38063:7;:21;38071:9;38081:1;38071:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38071:12:0;38063:21;;;;;;;;;;;;;38051:7;;:11;:34::i;:::-;38041:44;;38110:34;38122:7;:21;38130:9;38140:1;38130:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38130:12:0;38122:21;;;;;;;;;;;;;38110:7;;:11;:34::i;:::-;38100:44;-1:-1:-1;37860:3:0;;;;:::i;:::-;;;;37818:338;;;-1:-1:-1;38192:7:0;;38180;;:20;;:11;:20::i;:::-;38170:7;:30;38166:61;;;38210:7;;38219;;38202:25;;;;;;37666:605;;:::o;38166:61::-;38246:7;;38255;;-1:-1:-1;37666:605:0;-1:-1:-1;37666:605:0:o;38990:144::-;39100:14;;39061:7;;39088:38;;39120:5;;39088:27;;:7;;39100:14;;39088:11;:27::i;39142:174::-;39283:13;;39239:7;;39271:37;;39302:5;;39271:26;;:7;;39283:13;;;;;39271:11;:26::i;39324:174::-;39465:13;;39421:7;;39453:37;;39484:5;;39453:26;;:7;;39465:13;;;;;39453:11;:26::i;44218:589::-;44368:16;;;44382:1;44368:16;;;;;;;;44344:21;;44368:16;;;;;;;;;;-1:-1:-1;44368:16:0;44344:40;;44413:4;44395;44400:1;44395:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44395:23:0;;;-1:-1:-1;;;;;44395:23:0;;;;;44439:15;-1:-1:-1;;;;;44439:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44429:4;44434:1;44429:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44429:32:0;;;-1:-1:-1;;;;;44429:32:0;;;;;44474:62;44491:4;44506:15;44524:11;44474:8;:62::i;:::-;44575:224;;-1:-1:-1;;;44575:224:0;;-1:-1:-1;;;;;44575:15:0;:66;;;;:224;;44656:11;;44682:1;;44726:4;;44753;;44773:15;;44575:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44815:519;44963:62;44980:4;44995:15;45013:11;44963:8;:62::i;:::-;45068:258;;-1:-1:-1;;;45068:258:0;;45140:4;45068:258;;;16438:34:1;;;16488:18;;;16481:34;;;45186:1:0;16531:18:1;;;16524:34;;;16574:18;;;16567:34;16617:19;;;16610:44;45300:15:0;16670:19:1;;;16663:35;45068:15:0;-1:-1:-1;;;;;45068:31:0;;;;45107:9;;16372:19:1;;45068:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44815:519;;:::o;48140:863::-;48291:23;48329:12;48356:18;48389:15;48418:20;48430:7;48418:11;:20::i;:::-;48276:162;;;;;;;;48450:15;48467:23;48492:12;48508:135;48534:7;48556:4;48575:10;48600:7;48622:10;:8;:10::i;48508:135::-;-1:-1:-1;;;;;48674:15:0;;;;;;:7;:15;;;;;;48449:194;;-1:-1:-1;48449:194:0;;-1:-1:-1;48449:194:0;-1:-1:-1;48674:28:0;;48694:7;48674:19;:28::i;:::-;-1:-1:-1;;;;;48656:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48731:7;:15;;;;:28;;48751:7;48731:19;:28::i;:::-;-1:-1:-1;;;;;48713:15:0;;;;;;;:7;:15;;;;;;:46;;;;48791:18;;;;;;;:39;;48814:15;48791:22;:39::i;:::-;-1:-1:-1;;;;;48770:18:0;;;;;;:7;:18;;;;;:60;48841:26;48856:10;48841:14;:26::i;:::-;48878:23;48893:7;48878:14;:23::i;:::-;48912;48924:4;48930;48912:11;:23::i;:::-;48968:9;-1:-1:-1;;;;;48951:44:0;48960:6;-1:-1:-1;;;;;48951:44:0;;48979:15;48951:44;;;;2150:25:1;;2138:2;2123:18;;2004:177;48951:44:0;;;;;;;;48265:738;;;;;;;48140:863;;;:::o;47257:875::-;47406:23;47444:12;47471:18;47504:15;47533:20;47545:7;47533:11;:20::i;:::-;47391:162;;;;;;;;47565:15;47582:23;47607:12;47623:135;47649:7;47671:4;47690:10;47715:7;47737:10;:8;:10::i;47623:135::-;-1:-1:-1;;;;;47789:15:0;;;;;;:7;:15;;;;;;47564:194;;-1:-1:-1;47564:194:0;;-1:-1:-1;47564:194:0;-1:-1:-1;47789:28:0;;47564:194;47789:19;:28::i;:::-;-1:-1:-1;;;;;47771:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;47849:18;;;;;:7;:18;;;;;:39;;47872:15;47849:22;:39::i;:::-;-1:-1:-1;;;;;47828:18:0;;;;;;:7;:18;;;;;;;;:60;;;;47920:7;:18;;;;:39;;47943:15;47920:22;:39::i;46445:802::-;46592:23;46630:12;46657:18;46690:15;46719:20;46731:7;46719:11;:20::i;:::-;46577:162;;;;;;;;46751:15;46768:23;46793:12;46809:135;46835:7;46857:4;46876:10;46901:7;46923:10;:8;:10::i;46809:135::-;-1:-1:-1;;;;;46975:15:0;;;;;;:7;:15;;;;;;46750:194;;-1:-1:-1;46750:194:0;;-1:-1:-1;46750:194:0;-1:-1:-1;46975:28:0;;46750:194;46975:19;:28::i;49011:934::-;49162:23;49200:12;49227:18;49260:15;49289:20;49301:7;49289:11;:20::i;:::-;49147:162;;;;;;;;49321:15;49338:23;49363:12;49379:135;49405:7;49427:4;49446:10;49471:7;49493:10;:8;:10::i;49379:135::-;-1:-1:-1;;;;;49545:15:0;;;;;;:7;:15;;;;;;49320:194;;-1:-1:-1;49320:194:0;;-1:-1:-1;49320:194:0;-1:-1:-1;49545:28:0;;49565:7;49545:19;:28::i;:::-;-1:-1:-1;;;;;49527:15:0;;;;;;:7;:15;;;;;;;;:46;;;;49602:7;:15;;;;:28;;49622:7;49602:19;:28::i;38279:355::-;38342:19;38364:10;:8;:10::i;:::-;38342:32;-1:-1:-1;38385:18:0;38406:27;:10;38342:32;38406:14;:27::i;:::-;38485:4;38469:22;;;;:7;:22;;;;;;38385:48;;-1:-1:-1;38469:38:0;;38385:48;38469:26;:38::i;:::-;38460:4;38444:22;;;;:7;:22;;;;;;;;:63;;;;38522:11;:26;;;;;;38518:108;;;38604:4;38588:22;;;;:7;:22;;;;;;:38;;38615:10;38588:26;:38::i;:::-;38579:4;38563:22;;;;:7;:22;;;;;:63;38518:108;38331:303;;38279:355;:::o;36067:147::-;36145:7;;:17;;36157:4;36145:11;:17::i;:::-;36135:7;:27;36186:10;;:20;;36201:4;36186:14;:20::i;:::-;36173:10;:33;-1:-1:-1;;36067:147:0:o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1516:156::-;1582:20;;1642:4;1631:16;;1621:27;;1611:55;;1662:1;1659;1652:12;1611:55;1516:156;;;:::o;1677:322::-;1748:6;1756;1764;1817:2;1805:9;1796:7;1792:23;1788:32;1785:52;;;1833:1;1830;1823:12;1785:52;1856:27;1873:9;1856:27;:::i;:::-;1846:37;;1902:36;1934:2;1923:9;1919:18;1902:36;:::i;:::-;1892:46;;1957:36;1989:2;1978:9;1974:18;1957:36;:::i;:::-;1947:46;;1677:322;;;;;:::o;2421:456::-;2498:6;2506;2514;2567:2;2555:9;2546:7;2542:23;2538:32;2535:52;;;2583:1;2580;2573:12;2535:52;2622:9;2609:23;2641:31;2666:5;2641:31;:::i;:::-;2691:5;-1:-1:-1;2748:2:1;2733:18;;2720:32;2761:33;2720:32;2761:33;:::i;:::-;2421:456;;2813:7;;-1:-1:-1;;;2867:2:1;2852:18;;;;2839:32;;2421:456::o;3227:160::-;3292:20;;3348:13;;3341:21;3331:32;;3321:60;;3377:1;3374;3367:12;3392:248;3457:6;3465;3518:2;3506:9;3497:7;3493:23;3489:32;3486:52;;;3534:1;3531;3524:12;3486:52;3557:26;3573:9;3557:26;:::i;3645:180::-;3704:6;3757:2;3745:9;3736:7;3732:23;3728:32;3725:52;;;3773:1;3770;3763:12;3725:52;-1:-1:-1;3796:23:1;;3645:180;-1:-1:-1;3645:180:1:o;4019:248::-;4084:6;4092;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4197:9;4184:23;4174:33;;4226:35;4257:2;4246:9;4242:18;4226:35;:::i;:::-;4216:45;;4019:248;;;;;:::o;4740:535::-;4832:6;4840;4848;4856;4864;4872;4925:3;4913:9;4904:7;4900:23;4896:33;4893:53;;;4942:1;4939;4932:12;4893:53;4965:27;4982:9;4965:27;:::i;:::-;4955:37;;5011:36;5043:2;5032:9;5028:18;5011:36;:::i;:::-;5001:46;;5066:36;5098:2;5087:9;5083:18;5066:36;:::i;:::-;5056:46;;5121:36;5153:2;5142:9;5138:18;5121:36;:::i;:::-;5111:46;;5176:37;5208:3;5197:9;5193:19;5176:37;:::i;:::-;5166:47;;5232:37;5264:3;5253:9;5249:19;5232:37;:::i;:::-;5222:47;;4740:535;;;;;;;;:::o;5280:180::-;5336:6;5389:2;5377:9;5368:7;5364:23;5360:32;5357:52;;;5405:1;5402;5395:12;5357:52;5428:26;5444:9;5428:26;:::i;5689:388::-;5757:6;5765;5818:2;5806:9;5797:7;5793:23;5789:32;5786:52;;;5834:1;5831;5824:12;5786:52;5873:9;5860:23;5892:31;5917:5;5892:31;:::i;:::-;5942:5;-1:-1:-1;5999:2:1;5984:18;;5971:32;6012:33;5971:32;6012:33;:::i;:::-;6064:7;6054:17;;;5689:388;;;;;:::o;6082:380::-;6161:1;6157:12;;;;6204;;;6225:61;;6279:4;6271:6;6267:17;6257:27;;6225:61;6332:2;6324:6;6321:14;6301:18;6298:38;6295:161;;6378:10;6373:3;6369:20;6366:1;6359:31;6413:4;6410:1;6403:15;6441:4;6438:1;6431:15;6295:161;;6082:380;;;:::o;6467:356::-;6669:2;6651:21;;;6688:18;;;6681:30;6747:34;6742:2;6727:18;;6720:62;6814:2;6799:18;;6467:356::o;7591:127::-;7652:10;7647:3;7643:20;7640:1;7633:31;7683:4;7680:1;7673:15;7707:4;7704:1;7697:15;7723:127;7784:10;7779:3;7775:20;7772:1;7765:31;7815:4;7812:1;7805:15;7839:4;7836:1;7829:15;7855:125;7895:4;7923:1;7920;7917:8;7914:34;;;7928:18;;:::i;:::-;-1:-1:-1;7965:9:1;;7855:125::o;7985:127::-;8046:10;8041:3;8037:20;8034:1;8027:31;8077:4;8074:1;8067:15;8101:4;8098:1;8091:15;8117:135;8156:3;8177:17;;;8174:43;;8197:18;;:::i;:::-;-1:-1:-1;8244:1:1;8233:13;;8117:135::o;9793:168::-;9833:7;9899:1;9895;9891:6;9887:14;9884:1;9881:21;9876:1;9869:9;9862:17;9858:45;9855:71;;;9906:18;;:::i;:::-;-1:-1:-1;9946:9:1;;9793:168::o;9966:217::-;10006:1;10032;10022:132;;10076:10;10071:3;10067:20;10064:1;10057:31;10111:4;10108:1;10101:15;10139:4;10136:1;10129:15;10022:132;-1:-1:-1;10168:9:1;;9966:217::o;13380:128::-;13420:3;13451:1;13447:6;13444:1;13441:13;13438:39;;;13457:18;;:::i;:::-;-1:-1:-1;13493:9:1;;13380:128::o;14272:204::-;14310:3;14346:4;14343:1;14339:12;14378:4;14375:1;14371:12;14413:3;14407:4;14403:14;14398:3;14395:23;14392:49;;;14421:18;;:::i;:::-;14457:13;;14272:204;-1:-1:-1;;;14272:204:1:o;14481:238::-;14519:7;14559:4;14556:1;14552:12;14591:4;14588:1;14584:12;14651:3;14645:4;14641:14;14636:3;14633:23;14626:3;14619:11;14612:19;14608:49;14605:75;;;14660:18;;:::i;:::-;14700:13;;14481:238;-1:-1:-1;;;14481:238:1:o;14856:251::-;14926:6;14979:2;14967:9;14958:7;14954:23;14950:32;14947:52;;;14995:1;14992;14985:12;14947:52;15027:9;15021:16;15046:31;15071:5;15046:31;:::i;15112:980::-;15374:4;15422:3;15411:9;15407:19;15453:6;15442:9;15435:25;15479:2;15517:6;15512:2;15501:9;15497:18;15490:34;15560:3;15555:2;15544:9;15540:18;15533:31;15584:6;15619;15613:13;15650:6;15642;15635:22;15688:3;15677:9;15673:19;15666:26;;15727:2;15719:6;15715:15;15701:29;;15748:1;15758:195;15772:6;15769:1;15766:13;15758:195;;;15837:13;;-1:-1:-1;;;;;15833:39:1;15821:52;;15928:15;;;;15893:12;;;;15869:1;15787:9;15758:195;;;-1:-1:-1;;;;;;;16009:32:1;;;;16004:2;15989:18;;15982:60;-1:-1:-1;;;16073:3:1;16058:19;16051:35;15970:3;15112:980;-1:-1:-1;;;15112:980:1:o;16709:306::-;16797:6;16805;16813;16866:2;16854:9;16845:7;16841:23;16837:32;16834:52;;;16882:1;16879;16872:12;16834:52;16911:9;16905:16;16895:26;;16961:2;16950:9;16946:18;16940:25;16930:35;;17005:2;16994:9;16990:18;16984:25;16974:35;;16709:306;;;;;:::o

Swarm Source

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