ETH Price: $3,286.75 (+0.66%)
Gas: 29 Gwei

Token

THEVOID ($VOID)
 

Overview

Max Total Supply

777,777 $VOID

Holders

90

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
7,558.227180061 $VOID

Value
$0.00
0x3f328e127a96d9df109654e103e561d416bcefe7
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:
THEVOID

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
TG: https://t.me/TheVoid_Join
WEB: https://www.TheVoidErc.com
Twitter: twitter.com/TheVoidERC
*/

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

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

    string private _name = "THEVOID";
    string private _symbol = "$VOID";
    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(3); //0.3%
    uint256 public _maxWalletSize = _tTotal.div(1000).mul(20); // 2%

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

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

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

    mapping (address => uint256) public _lastTrade;

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

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

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

        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"}]

60c06040526602c36251ccaa0060098190556200001f90600019620005d9565b6200002d9060001962000606565b600a55600c80546001600160a01b03191673be317dcadb1940688b63182647ed9d6d0fc6af601790556040805180820190915260078152661512115593d25160ca1b6020820152600d90620000839082620006c1565b50604080518082019091526005815264091593d25160da1b6020820152600e90620000af9082620006c1565b50600f805460ff191660099081179091556012805460ff60201b1916640100000000179055546200010e90600a90620000fa906103e86200168b620004a6602090811b91909117901c565b620004f960201b620016cd1790919060201c565b601355620001356003620000fa6103e8600954620004a660201b6200168b1790919060201c565b6014556200015c6014620000fa6103e8600954620004a660201b6200168b1790919060201c565b601555600260165560006017556018805460ff191690553480156200018057600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a543360009081526002602090815260409182902092909255601080546201010162ffffff199182168117909255601180549091169091179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa1580156200024a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027091906200078d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e491906200078d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000332573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035891906200078d565b6001600160a01b0390811660a0528116608052600160056000620003846000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260058452828120805486166001908117909155600c805484168352848320805488168317905554909216815260089384905291822080549094168117909355620004076000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260089092529020805490911660011790556200044f3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040516200049791815260200190565b60405180910390a35062000841565b6000620004f083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200058760201b60201c565b90505b92915050565b6000826000036200050d57506000620004f3565b60006200051b8385620007b8565b9050826200052a8583620007da565b14620004f05760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b60008183620005ab5760405162461bcd60e51b81526004016200057e9190620007f1565b506000620005ba8486620007da565b95945050505050565b634e487b7160e01b600052601260045260246000fd5b600082620005eb57620005eb620005c3565b500690565b634e487b7160e01b600052601160045260246000fd5b81810381811115620004f357620004f3620005f0565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200064757607f821691505b6020821081036200066857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006bc57600081815260208120601f850160051c81016020861015620006975750805b601f850160051c820191505b81811015620006b857828155600101620006a3565b5050505b505050565b81516001600160401b03811115620006dd57620006dd6200061c565b620006f581620006ee845462000632565b846200066e565b602080601f8311600181146200072d5760008415620007145750858301515b600019600386901b1c1916600185901b178555620006b8565b600085815260208120601f198616915b828110156200075e578886015182559484019460019091019084016200073d565b50858210156200077d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007a057600080fd5b81516001600160a01b0381168114620004f057600080fd5b6000816000190483118215151615620007d557620007d5620005f0565b500290565b600082620007ec57620007ec620005c3565b500490565b600060208083528351808285015260005b81811015620008205785810183015185820160400152820162000802565b506000604082860101526040601f19601f8301168501019250505092915050565b60805160a051612fe3620008ad6000396000818161056701528181610b5801528181611a6001528181611bbb0152818161205f01526120d5015260008181610366015281816124e9015281816125a2015281816125de0152818161265001526126ac0152612fe36000f3fe60806040526004361061028c5760003560e01c8063715018a61161015a578063af2ce614116100c1578063d94160e01161007a578063d94160e014610854578063dd62ed3e1461088d578063ea2f0b37146108d3578063f0f165af146108f3578063f2fde38b14610913578063fabb0b4f1461093357600080fd5b8063af2ce6141461079e578063b27bcfba146107be578063bf56b371146107de578063c49b9a80146107f4578063caac793414610814578063d543dbeb1461083457600080fd5b8063954c6d3f11610113578063954c6d3f146106dc57806395d89b41146106fc578063a457c2d714610711578063a87859f614610731578063a9059cbb1461075e578063aacebbe31461077e57600080fd5b8063715018a6146106245780637d1db4a51461063957806388f820201461064f5780638da5cb5b146106885780638f9a55c0146106a657806391d919a9146106bc57600080fd5b8063313ce567116101fe57806347062402116101b7578063470624021461052857806349bd5a5e146105555780634a74bb021461058957806352390c02146105ab5780635342acb4146105cb57806370a082311461060457600080fd5b8063313ce567146104665780633685d4191461048857806339509351146104a85780633bd5d173146104c8578063437823ec146104e85780634549b0391461050857600080fd5b80631694505e116102505780631694505e1461035457806318160ddd146103a057806323b872dd146103b55780632b14ca56146103d55780632d4103d6146104265780632d8381191461044657600080fd5b806306fdde0314610298578063095ea7b3146102c35780630bd3a7f9146102f35780630c2536d71461031557806313114a9d1461033557600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610949565b6040516102ba9190612aaf565b60405180910390f35b3480156102cf57600080fd5b506102e36102de366004612b15565b6109db565b60405190151581526020016102ba565b3480156102ff57600080fd5b5061031361030e366004612b41565b6109f2565b005b34801561032157600080fd5b50610313610330366004612b74565b610a49565b34801561034157600080fd5b50600b545b6040519081526020016102ba565b34801561036057600080fd5b506103887f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102ba565b3480156103ac57600080fd5b50600954610346565b3480156103c157600080fd5b506102e36103d0366004612bb7565b610aa9565b3480156103e157600080fd5b506011546104029060ff808216916101008104821691620100009091041683565b6040805160ff948516815292841660208401529216918101919091526060016102ba565b34801561043257600080fd5b50610313610441366004612c08565b610b12565b34801561045257600080fd5b50610346610461366004612c24565b610ba1565b34801561047257600080fd5b50600f5460405160ff90911681526020016102ba565b34801561049457600080fd5b506103136104a3366004612b41565b610c25565b3480156104b457600080fd5b506102e36104c3366004612b15565b610dd7565b3480156104d457600080fd5b506103136104e3366004612c24565b610e0d565b3480156104f457600080fd5b50610313610503366004612b41565b610f16565b34801561051457600080fd5b50610346610523366004612c3d565b610f64565b34801561053457600080fd5b506010546104029060ff808216916101008104821691620100009091041683565b34801561056157600080fd5b506103887f000000000000000000000000000000000000000000000000000000000000000081565b34801561059557600080fd5b506012546102e390640100000000900460ff1681565b3480156105b757600080fd5b506103136105c6366004612b41565b611001565b3480156105d757600080fd5b506102e36105e6366004612b41565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561061057600080fd5b5061034661061f366004612b41565b611154565b34801561063057600080fd5b506103136111b3565b34801561064557600080fd5b5061034660135481565b34801561065b57600080fd5b506102e361066a366004612b41565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561069457600080fd5b506000546001600160a01b0316610388565b3480156106b257600080fd5b5061034660155481565b3480156106c857600080fd5b506103136106d7366004612b41565b611227565b3480156106e857600080fd5b506103136106f7366004612b74565b611272565b34801561070857600080fd5b506102ad6112d2565b34801561071d57600080fd5b506102e361072c366004612b15565b6112e1565b34801561073d57600080fd5b5061034661074c366004612b41565b60196020526000908152604090205481565b34801561076a57600080fd5b506102e3610779366004612b15565b611330565b34801561078a57600080fd5b50610313610799366004612b41565b61133d565b3480156107aa57600080fd5b506103136107b9366004612c24565b611389565b3480156107ca57600080fd5b506103136107d9366004612c69565b6113da565b3480156107ea57600080fd5b5061034660175481565b34801561080057600080fd5b5061031361080f366004612cdd565b611458565b34801561082057600080fd5b50600c54610388906001600160a01b031681565b34801561084057600080fd5b5061031361084f366004612c24565b6114dc565b34801561086057600080fd5b506102e361086f366004612b41565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561089957600080fd5b506103466108a8366004612cf8565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156108df57600080fd5b506103136108ee366004612b41565b611527565b3480156108ff57600080fd5b5061031361090e366004612c24565b611572565b34801561091f57600080fd5b5061031361092e366004612b41565b6115a1565b34801561093f57600080fd5b5061034660165481565b6060600d805461095890612d31565b80601f016020809104026020016040519081016040528092919081815260200182805461098490612d31565b80156109d15780601f106109a6576101008083540402835291602001916109d1565b820191906000526020600020905b8154815290600101906020018083116109b457829003601f168201915b5050505050905090565b60006109e833848461174f565b5060015b92915050565b6000546001600160a01b03163314610a255760405162461bcd60e51b8152600401610a1c90612d6b565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b03163314610a735760405162461bcd60e51b8152600401610a1c90612d6b565b6011805460ff9384166101000261ff0019938516620100000262ff00ff1990921694909516939093179290921716919091179055565b6000610ab6848484611873565b610b088433610b0385604051806060016040528060288152602001612f61602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611c75565b61174f565b5060019392505050565b6000546001600160a01b03163314610b3c5760405162461bcd60e51b8152600401610a1c90612d6b565b6018805460ff1916831515179055610b5330611001565b610b7c7f0000000000000000000000000000000000000000000000000000000000000000611001565b60185460ff168015610b8e5750601754155b15610b9d574360175560168190555b5050565b6000600a54821115610c085760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a1c565b6000610c12611caf565b9050610c1e838261168b565b9392505050565b6000546001600160a01b03163314610c4f5760405162461bcd60e51b8152600401610a1c90612d6b565b6001600160a01b03811660009081526006602052604090205460ff16610cb75760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610a1c565b60005b600754811015610b9d57816001600160a01b031660078281548110610ce157610ce1612da0565b6000918252602090912001546001600160a01b031603610dc55760078054610d0b90600190612dcc565b81548110610d1b57610d1b612da0565b600091825260209091200154600780546001600160a01b039092169183908110610d4757610d47612da0565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610d9f57610d9f612ddf565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610dcf81612df5565b915050610cba565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916109e8918590610b039086611cd2565b3360008181526006602052604090205460ff1615610e825760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a1c565b6000806000610e9085611d31565b935093509350506000610ead86858585610ea8611caf565b611d90565b50506001600160a01b038616600090815260026020526040902054909150610ed59082611df2565b6001600160a01b038616600090815260026020526040902055600a54610efb9082611df2565b600a55600b54610f0b9087611cd2565b600b55505050505050565b6000546001600160a01b03163314610f405760405162461bcd60e51b8152600401610a1c90612d6b565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000600954831115610fb85760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a1c565b6000806000610fc686611d31565b93509350935050600080610fdf88868686610ea8611caf565b509150915086610ff5575093506109ec92505050565b94506109ec9350505050565b6000546001600160a01b0316331461102b5760405162461bcd60e51b8152600401610a1c90612d6b565b6001600160a01b03811660009081526006602052604090205460ff16156110945760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a1c565b6001600160a01b038116600090815260026020526040902054156110ee576001600160a01b0381166000908152600260205260409020546110d490610ba1565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff161561119157506001600160a01b031660009081526003602052604090205490565b6001600160a01b0382166000908152600260205260409020546109ec90610ba1565b6000546001600160a01b031633146111dd5760405162461bcd60e51b8152600401610a1c90612d6b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112515760405162461bcd60e51b8152600401610a1c90612d6b565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6000546001600160a01b0316331461129c5760405162461bcd60e51b8152600401610a1c90612d6b565b6010805460ff9384166101000261ff0019938516620100000262ff00ff1990921694909516939093179290921716919091179055565b6060600e805461095890612d31565b60006109e83384610b0385604051806060016040528060258152602001612f89602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611c75565b60006109e8338484611873565b6000546001600160a01b031633146113675760405162461bcd60e51b8152600401610a1c90612d6b565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146113b35760405162461bcd60e51b8152600401610a1c90612d6b565b6113d46103e86113ce836009546116cd90919063ffffffff16565b9061168b565b60155550565b6000546001600160a01b031633146114045760405162461bcd60e51b8152600401610a1c90612d6b565b6010805460ff97881662ff00ff19918216176201000096891687021761ff0019908116610100988a168902179092556011805495891695909116949094179187169094021790921691909316909102179055565b6000546001600160a01b031633146114825760405162461bcd60e51b8152600401610a1c90612d6b565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906114d190831515815260200190565b60405180910390a150565b6000546001600160a01b031633146115065760405162461bcd60e51b8152600401610a1c90612d6b565b6115216103e86113ce836009546116cd90919063ffffffff16565b60135550565b6000546001600160a01b031633146115515760405162461bcd60e51b8152600401610a1c90612d6b565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b0316331461159c5760405162461bcd60e51b8152600401610a1c90612d6b565b601455565b6000546001600160a01b031633146115cb5760405162461bcd60e51b8152600401610a1c90612d6b565b6001600160a01b0381166116305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1c565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c1e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e34565b6000826000036116df575060006109ec565b60006116eb8385612e0e565b9050826116f88583612e2d565b14610c1e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a1c565b6001600160a01b0383166117b15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a1c565b6001600160a01b0382166118125760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a1c565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a1c565b6001600160a01b0382166119395760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a1c565b6000811161199b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a1c565b6000546001600160a01b038481169116148015906119c757506000546001600160a01b03838116911614155b15611a1e5760185460ff16611a1e5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610a1c565b6000611a2930611154565b90506013548110611a3957506013545b60145481108015908190611a5757506012546301000000900460ff16155b8015611a9557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611aab5750601254640100000000900460ff165b15611abe576014549150611abe82611e62565b6001600160a01b03851660009081526005602052604090205460019060ff1680611b0057506001600160a01b03851660009081526005602052604090205460ff165b15611b09575060005b8015611c61576001600160a01b03861660009081526008602052604090205460ff16158015611b5157506001600160a01b03851660009081526008602052604090205460ff16155b15611c6157601354841115611bb95760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a1c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614611c6157601554611bfe86611154565b611c089086612e4f565b1115611c615760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610a1c565b611c6d86868684612046565b505050505050565b60008184841115611c995760405162461bcd60e51b8152600401610a1c9190612aaf565b506000611ca68486612dcc565b95945050505050565b6000806000611cbc6122b4565b9092509050611ccb828261168b565b9250505090565b600080611cdf8385612e4f565b905083811015610c1e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a1c565b6000806000806000611d4286612436565b90506000611d4f87612451565b90506000611d5c88612471565b90506000611d7483611d6e8b87611df2565b90611df2565b9050611d808183611df2565b9993985091965094509092505050565b6000808080611d9f89866116cd565b90506000611dad89876116cd565b90506000611dbb89886116cd565b90506000611dc989896116cd565b90506000611ddd82611d6e85818989611df2565b949d949c50929a509298505050505050505050565b6000610c1e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c75565b60008183611e555760405162461bcd60e51b8152600401610a1c9190612aaf565b506000611ca68486612e2d565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff90811693918204811692611ea8926101009182900483169291900416612e62565b611eb29190612e62565b611ebc9190612e62565b611ec7906002612e7b565b60115460105460ff92831693506000928492611ef0926101009182900483169291900416612e62565b611efd9060ff1685612e0e565b611f079190612e2d565b90506000611f158285612dcc565b905047611f2182612492565b6000611f2d8247612dcc565b601154601054919250600091611f539160ff610100918290048116929190910416612e62565b611f609060ff1687612dcc565b611f6a9083612e2d565b601154601054919250600091611f909160ff610100918290048116929190910416612e62565b611f9d9060ff1683612e0e565b90508015611faf57611faf868261264a565b601154601054600091611fd29160ff620100009283900481169290910416612e62565b60ff16611fe0846002612e0e565b611fea9190612e0e565b9050801561202e57600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561202c573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b80156121495761205d6012805462ffffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036120d3576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031603612149576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff16801561218a57506001600160a01b03831660009081526006602052604090205460ff16155b1561219f5761219a84848461272a565b61229d565b6001600160a01b03841660009081526006602052604090205460ff161580156121e057506001600160a01b03831660009081526006602052604090205460ff165b156121f05761219a84848461286c565b6001600160a01b03841660009081526006602052604090205460ff1615801561223257506001600160a01b03831660009081526006602052604090205460ff16155b156122425761219a848484612927565b6001600160a01b03841660009081526006602052604090205460ff16801561228257506001600160a01b03831660009081526006602052604090205460ff165b156122925761219a84848461297d565b61229d848484612927565b6122ae6012805462ffffff19169055565b50505050565b600a546009546000918291825b600754811015612406578260026000600784815481106122e3576122e3612da0565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061234e575081600360006007848154811061232757612327612da0565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561236457600a54600954945094505050509091565b6123aa600260006007848154811061237e5761237e612da0565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611df2565b92506123f260036000600784815481106123c6576123c6612da0565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611df2565b9150806123fe81612df5565b9150506122c1565b50600954600a546124169161168b565b82101561242d57600a546009549350935050509091565b90939092509050565b6012546000906109ec906064906113ce90859060ff166116cd565b6012546000906109ec906064906113ce908590610100900460ff166116cd565b6012546000906109ec906064906113ce90859062010000900460ff166116cd565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124c7576124c7612da0565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612545573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125699190612ea4565b8160018151811061257c5761257c612da0565b60200260200101906001600160a01b031690816001600160a01b0316815250506125c7307f00000000000000000000000000000000000000000000000000000000000000008461174f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061261c908590600090869030904290600401612ec1565b600060405180830381600087803b15801561263657600080fd5b505af1158015611c6d573d6000803e3d6000fd5b612675307f00000000000000000000000000000000000000000000000000000000000000008461174f565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156126fe573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127239190612f32565b5050505050565b60008060008061273985611d31565b9350935093509350600080600061275588878787610ea8611caf565b6001600160a01b038d1660009081526003602052604090205492955090935091506127809089611df2565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546127af9084611df2565b6001600160a01b03808c1660009081526002602052604080822093909355908b16815220546127de9083611cd2565b6001600160a01b038a1660009081526002602052604090205561280085612a02565b61280984612a02565b6128138187612a8b565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8960405161285891815260200190565b60405180910390a350505050505050505050565b60008060008061287b85611d31565b9350935093509350600080600061289788878787610ea8611caf565b6001600160a01b038d1660009081526002602052604090205492955090935091506128c29084611df2565b6001600160a01b03808c16600090815260026020908152604080832094909455918c168152600390915220546128f89088611cd2565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546127de9083611cd2565b60008060008061293685611d31565b9350935093509350600080600061295288878787610ea8611caf565b6001600160a01b038d1660009081526002602052604090205492955090935091506127af9084611df2565b60008060008061298c85611d31565b935093509350935060008060006129a888878787610ea8611caf565b6001600160a01b038d1660009081526003602052604090205492955090935091506129d39089611df2565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546128c29084611df2565b6000612a0c611caf565b90506000612a1a83836116cd565b30600090815260026020526040902054909150612a379082611cd2565b3060009081526002602090815260408083209390935560069052205460ff1615612a865730600090815260036020526040902054612a759084611cd2565b306000908152600360205260409020555b505050565b600a54612a989083611df2565b600a55600b54612aa89082611cd2565b600b555050565b600060208083528351808285015260005b81811015612adc57858101830151858201604001528201612ac0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114612b1257600080fd5b50565b60008060408385031215612b2857600080fd5b8235612b3381612afd565b946020939093013593505050565b600060208284031215612b5357600080fd5b8135610c1e81612afd565b803560ff81168114612b6f57600080fd5b919050565b600080600060608486031215612b8957600080fd5b612b9284612b5e565b9250612ba060208501612b5e565b9150612bae60408501612b5e565b90509250925092565b600080600060608486031215612bcc57600080fd5b8335612bd781612afd565b92506020840135612be781612afd565b929592945050506040919091013590565b80358015158114612b6f57600080fd5b60008060408385031215612c1b57600080fd5b612b3383612bf8565b600060208284031215612c3657600080fd5b5035919050565b60008060408385031215612c5057600080fd5b82359150612c6060208401612bf8565b90509250929050565b60008060008060008060c08789031215612c8257600080fd5b612c8b87612b5e565b9550612c9960208801612b5e565b9450612ca760408801612b5e565b9350612cb560608801612b5e565b9250612cc360808801612b5e565b9150612cd160a08801612b5e565b90509295509295509295565b600060208284031215612cef57600080fd5b610c1e82612bf8565b60008060408385031215612d0b57600080fd5b8235612d1681612afd565b91506020830135612d2681612afd565b809150509250929050565b600181811c90821680612d4557607f821691505b602082108103612d6557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156109ec576109ec612db6565b634e487b7160e01b600052603160045260246000fd5b600060018201612e0757612e07612db6565b5060010190565b6000816000190483118215151615612e2857612e28612db6565b500290565b600082612e4a57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156109ec576109ec612db6565b60ff81811683821601908111156109ec576109ec612db6565b600060ff821660ff84168160ff0481118215151615612e9c57612e9c612db6565b029392505050565b600060208284031215612eb657600080fd5b8151610c1e81612afd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f115784516001600160a01b031683529383019391830191600101612eec565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612f4757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d7e0f8f420fa5ed01f9fa9018899d011f1484cf525fba25e88068cd51870bf6864736f6c63430008100033

Deployed Bytecode

0x60806040526004361061028c5760003560e01c8063715018a61161015a578063af2ce614116100c1578063d94160e01161007a578063d94160e014610854578063dd62ed3e1461088d578063ea2f0b37146108d3578063f0f165af146108f3578063f2fde38b14610913578063fabb0b4f1461093357600080fd5b8063af2ce6141461079e578063b27bcfba146107be578063bf56b371146107de578063c49b9a80146107f4578063caac793414610814578063d543dbeb1461083457600080fd5b8063954c6d3f11610113578063954c6d3f146106dc57806395d89b41146106fc578063a457c2d714610711578063a87859f614610731578063a9059cbb1461075e578063aacebbe31461077e57600080fd5b8063715018a6146106245780637d1db4a51461063957806388f820201461064f5780638da5cb5b146106885780638f9a55c0146106a657806391d919a9146106bc57600080fd5b8063313ce567116101fe57806347062402116101b7578063470624021461052857806349bd5a5e146105555780634a74bb021461058957806352390c02146105ab5780635342acb4146105cb57806370a082311461060457600080fd5b8063313ce567146104665780633685d4191461048857806339509351146104a85780633bd5d173146104c8578063437823ec146104e85780634549b0391461050857600080fd5b80631694505e116102505780631694505e1461035457806318160ddd146103a057806323b872dd146103b55780632b14ca56146103d55780632d4103d6146104265780632d8381191461044657600080fd5b806306fdde0314610298578063095ea7b3146102c35780630bd3a7f9146102f35780630c2536d71461031557806313114a9d1461033557600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610949565b6040516102ba9190612aaf565b60405180910390f35b3480156102cf57600080fd5b506102e36102de366004612b15565b6109db565b60405190151581526020016102ba565b3480156102ff57600080fd5b5061031361030e366004612b41565b6109f2565b005b34801561032157600080fd5b50610313610330366004612b74565b610a49565b34801561034157600080fd5b50600b545b6040519081526020016102ba565b34801561036057600080fd5b506103887f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102ba565b3480156103ac57600080fd5b50600954610346565b3480156103c157600080fd5b506102e36103d0366004612bb7565b610aa9565b3480156103e157600080fd5b506011546104029060ff808216916101008104821691620100009091041683565b6040805160ff948516815292841660208401529216918101919091526060016102ba565b34801561043257600080fd5b50610313610441366004612c08565b610b12565b34801561045257600080fd5b50610346610461366004612c24565b610ba1565b34801561047257600080fd5b50600f5460405160ff90911681526020016102ba565b34801561049457600080fd5b506103136104a3366004612b41565b610c25565b3480156104b457600080fd5b506102e36104c3366004612b15565b610dd7565b3480156104d457600080fd5b506103136104e3366004612c24565b610e0d565b3480156104f457600080fd5b50610313610503366004612b41565b610f16565b34801561051457600080fd5b50610346610523366004612c3d565b610f64565b34801561053457600080fd5b506010546104029060ff808216916101008104821691620100009091041683565b34801561056157600080fd5b506103887f000000000000000000000000b8f36553aecf8c528718edaa29adc566d87e6b6d81565b34801561059557600080fd5b506012546102e390640100000000900460ff1681565b3480156105b757600080fd5b506103136105c6366004612b41565b611001565b3480156105d757600080fd5b506102e36105e6366004612b41565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561061057600080fd5b5061034661061f366004612b41565b611154565b34801561063057600080fd5b506103136111b3565b34801561064557600080fd5b5061034660135481565b34801561065b57600080fd5b506102e361066a366004612b41565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561069457600080fd5b506000546001600160a01b0316610388565b3480156106b257600080fd5b5061034660155481565b3480156106c857600080fd5b506103136106d7366004612b41565b611227565b3480156106e857600080fd5b506103136106f7366004612b74565b611272565b34801561070857600080fd5b506102ad6112d2565b34801561071d57600080fd5b506102e361072c366004612b15565b6112e1565b34801561073d57600080fd5b5061034661074c366004612b41565b60196020526000908152604090205481565b34801561076a57600080fd5b506102e3610779366004612b15565b611330565b34801561078a57600080fd5b50610313610799366004612b41565b61133d565b3480156107aa57600080fd5b506103136107b9366004612c24565b611389565b3480156107ca57600080fd5b506103136107d9366004612c69565b6113da565b3480156107ea57600080fd5b5061034660175481565b34801561080057600080fd5b5061031361080f366004612cdd565b611458565b34801561082057600080fd5b50600c54610388906001600160a01b031681565b34801561084057600080fd5b5061031361084f366004612c24565b6114dc565b34801561086057600080fd5b506102e361086f366004612b41565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561089957600080fd5b506103466108a8366004612cf8565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156108df57600080fd5b506103136108ee366004612b41565b611527565b3480156108ff57600080fd5b5061031361090e366004612c24565b611572565b34801561091f57600080fd5b5061031361092e366004612b41565b6115a1565b34801561093f57600080fd5b5061034660165481565b6060600d805461095890612d31565b80601f016020809104026020016040519081016040528092919081815260200182805461098490612d31565b80156109d15780601f106109a6576101008083540402835291602001916109d1565b820191906000526020600020905b8154815290600101906020018083116109b457829003601f168201915b5050505050905090565b60006109e833848461174f565b5060015b92915050565b6000546001600160a01b03163314610a255760405162461bcd60e51b8152600401610a1c90612d6b565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b03163314610a735760405162461bcd60e51b8152600401610a1c90612d6b565b6011805460ff9384166101000261ff0019938516620100000262ff00ff1990921694909516939093179290921716919091179055565b6000610ab6848484611873565b610b088433610b0385604051806060016040528060288152602001612f61602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611c75565b61174f565b5060019392505050565b6000546001600160a01b03163314610b3c5760405162461bcd60e51b8152600401610a1c90612d6b565b6018805460ff1916831515179055610b5330611001565b610b7c7f000000000000000000000000b8f36553aecf8c528718edaa29adc566d87e6b6d611001565b60185460ff168015610b8e5750601754155b15610b9d574360175560168190555b5050565b6000600a54821115610c085760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a1c565b6000610c12611caf565b9050610c1e838261168b565b9392505050565b6000546001600160a01b03163314610c4f5760405162461bcd60e51b8152600401610a1c90612d6b565b6001600160a01b03811660009081526006602052604090205460ff16610cb75760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610a1c565b60005b600754811015610b9d57816001600160a01b031660078281548110610ce157610ce1612da0565b6000918252602090912001546001600160a01b031603610dc55760078054610d0b90600190612dcc565b81548110610d1b57610d1b612da0565b600091825260209091200154600780546001600160a01b039092169183908110610d4757610d47612da0565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610d9f57610d9f612ddf565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610dcf81612df5565b915050610cba565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916109e8918590610b039086611cd2565b3360008181526006602052604090205460ff1615610e825760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a1c565b6000806000610e9085611d31565b935093509350506000610ead86858585610ea8611caf565b611d90565b50506001600160a01b038616600090815260026020526040902054909150610ed59082611df2565b6001600160a01b038616600090815260026020526040902055600a54610efb9082611df2565b600a55600b54610f0b9087611cd2565b600b55505050505050565b6000546001600160a01b03163314610f405760405162461bcd60e51b8152600401610a1c90612d6b565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000600954831115610fb85760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a1c565b6000806000610fc686611d31565b93509350935050600080610fdf88868686610ea8611caf565b509150915086610ff5575093506109ec92505050565b94506109ec9350505050565b6000546001600160a01b0316331461102b5760405162461bcd60e51b8152600401610a1c90612d6b565b6001600160a01b03811660009081526006602052604090205460ff16156110945760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a1c565b6001600160a01b038116600090815260026020526040902054156110ee576001600160a01b0381166000908152600260205260409020546110d490610ba1565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff161561119157506001600160a01b031660009081526003602052604090205490565b6001600160a01b0382166000908152600260205260409020546109ec90610ba1565b6000546001600160a01b031633146111dd5760405162461bcd60e51b8152600401610a1c90612d6b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112515760405162461bcd60e51b8152600401610a1c90612d6b565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6000546001600160a01b0316331461129c5760405162461bcd60e51b8152600401610a1c90612d6b565b6010805460ff9384166101000261ff0019938516620100000262ff00ff1990921694909516939093179290921716919091179055565b6060600e805461095890612d31565b60006109e83384610b0385604051806060016040528060258152602001612f89602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611c75565b60006109e8338484611873565b6000546001600160a01b031633146113675760405162461bcd60e51b8152600401610a1c90612d6b565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146113b35760405162461bcd60e51b8152600401610a1c90612d6b565b6113d46103e86113ce836009546116cd90919063ffffffff16565b9061168b565b60155550565b6000546001600160a01b031633146114045760405162461bcd60e51b8152600401610a1c90612d6b565b6010805460ff97881662ff00ff19918216176201000096891687021761ff0019908116610100988a168902179092556011805495891695909116949094179187169094021790921691909316909102179055565b6000546001600160a01b031633146114825760405162461bcd60e51b8152600401610a1c90612d6b565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906114d190831515815260200190565b60405180910390a150565b6000546001600160a01b031633146115065760405162461bcd60e51b8152600401610a1c90612d6b565b6115216103e86113ce836009546116cd90919063ffffffff16565b60135550565b6000546001600160a01b031633146115515760405162461bcd60e51b8152600401610a1c90612d6b565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b0316331461159c5760405162461bcd60e51b8152600401610a1c90612d6b565b601455565b6000546001600160a01b031633146115cb5760405162461bcd60e51b8152600401610a1c90612d6b565b6001600160a01b0381166116305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1c565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c1e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e34565b6000826000036116df575060006109ec565b60006116eb8385612e0e565b9050826116f88583612e2d565b14610c1e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a1c565b6001600160a01b0383166117b15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a1c565b6001600160a01b0382166118125760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a1c565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a1c565b6001600160a01b0382166119395760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a1c565b6000811161199b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a1c565b6000546001600160a01b038481169116148015906119c757506000546001600160a01b03838116911614155b15611a1e5760185460ff16611a1e5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610a1c565b6000611a2930611154565b90506013548110611a3957506013545b60145481108015908190611a5757506012546301000000900460ff16155b8015611a9557507f000000000000000000000000b8f36553aecf8c528718edaa29adc566d87e6b6d6001600160a01b0316856001600160a01b031614155b8015611aab5750601254640100000000900460ff165b15611abe576014549150611abe82611e62565b6001600160a01b03851660009081526005602052604090205460019060ff1680611b0057506001600160a01b03851660009081526005602052604090205460ff165b15611b09575060005b8015611c61576001600160a01b03861660009081526008602052604090205460ff16158015611b5157506001600160a01b03851660009081526008602052604090205460ff16155b15611c6157601354841115611bb95760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a1c565b7f000000000000000000000000b8f36553aecf8c528718edaa29adc566d87e6b6d6001600160a01b0316856001600160a01b031614611c6157601554611bfe86611154565b611c089086612e4f565b1115611c615760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610a1c565b611c6d86868684612046565b505050505050565b60008184841115611c995760405162461bcd60e51b8152600401610a1c9190612aaf565b506000611ca68486612dcc565b95945050505050565b6000806000611cbc6122b4565b9092509050611ccb828261168b565b9250505090565b600080611cdf8385612e4f565b905083811015610c1e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a1c565b6000806000806000611d4286612436565b90506000611d4f87612451565b90506000611d5c88612471565b90506000611d7483611d6e8b87611df2565b90611df2565b9050611d808183611df2565b9993985091965094509092505050565b6000808080611d9f89866116cd565b90506000611dad89876116cd565b90506000611dbb89886116cd565b90506000611dc989896116cd565b90506000611ddd82611d6e85818989611df2565b949d949c50929a509298505050505050505050565b6000610c1e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c75565b60008183611e555760405162461bcd60e51b8152600401610a1c9190612aaf565b506000611ca68486612e2d565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff90811693918204811692611ea8926101009182900483169291900416612e62565b611eb29190612e62565b611ebc9190612e62565b611ec7906002612e7b565b60115460105460ff92831693506000928492611ef0926101009182900483169291900416612e62565b611efd9060ff1685612e0e565b611f079190612e2d565b90506000611f158285612dcc565b905047611f2182612492565b6000611f2d8247612dcc565b601154601054919250600091611f539160ff610100918290048116929190910416612e62565b611f609060ff1687612dcc565b611f6a9083612e2d565b601154601054919250600091611f909160ff610100918290048116929190910416612e62565b611f9d9060ff1683612e0e565b90508015611faf57611faf868261264a565b601154601054600091611fd29160ff620100009283900481169290910416612e62565b60ff16611fe0846002612e0e565b611fea9190612e0e565b9050801561202e57600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561202c573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b80156121495761205d6012805462ffffff19169055565b7f000000000000000000000000b8f36553aecf8c528718edaa29adc566d87e6b6d6001600160a01b0316846001600160a01b0316036120d3576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f000000000000000000000000b8f36553aecf8c528718edaa29adc566d87e6b6d6001600160a01b0316836001600160a01b031603612149576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff16801561218a57506001600160a01b03831660009081526006602052604090205460ff16155b1561219f5761219a84848461272a565b61229d565b6001600160a01b03841660009081526006602052604090205460ff161580156121e057506001600160a01b03831660009081526006602052604090205460ff165b156121f05761219a84848461286c565b6001600160a01b03841660009081526006602052604090205460ff1615801561223257506001600160a01b03831660009081526006602052604090205460ff16155b156122425761219a848484612927565b6001600160a01b03841660009081526006602052604090205460ff16801561228257506001600160a01b03831660009081526006602052604090205460ff165b156122925761219a84848461297d565b61229d848484612927565b6122ae6012805462ffffff19169055565b50505050565b600a546009546000918291825b600754811015612406578260026000600784815481106122e3576122e3612da0565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061234e575081600360006007848154811061232757612327612da0565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561236457600a54600954945094505050509091565b6123aa600260006007848154811061237e5761237e612da0565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611df2565b92506123f260036000600784815481106123c6576123c6612da0565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611df2565b9150806123fe81612df5565b9150506122c1565b50600954600a546124169161168b565b82101561242d57600a546009549350935050509091565b90939092509050565b6012546000906109ec906064906113ce90859060ff166116cd565b6012546000906109ec906064906113ce908590610100900460ff166116cd565b6012546000906109ec906064906113ce90859062010000900460ff166116cd565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124c7576124c7612da0565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612545573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125699190612ea4565b8160018151811061257c5761257c612da0565b60200260200101906001600160a01b031690816001600160a01b0316815250506125c7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461174f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061261c908590600090869030904290600401612ec1565b600060405180830381600087803b15801561263657600080fd5b505af1158015611c6d573d6000803e3d6000fd5b612675307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461174f565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156126fe573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127239190612f32565b5050505050565b60008060008061273985611d31565b9350935093509350600080600061275588878787610ea8611caf565b6001600160a01b038d1660009081526003602052604090205492955090935091506127809089611df2565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546127af9084611df2565b6001600160a01b03808c1660009081526002602052604080822093909355908b16815220546127de9083611cd2565b6001600160a01b038a1660009081526002602052604090205561280085612a02565b61280984612a02565b6128138187612a8b565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8960405161285891815260200190565b60405180910390a350505050505050505050565b60008060008061287b85611d31565b9350935093509350600080600061289788878787610ea8611caf565b6001600160a01b038d1660009081526002602052604090205492955090935091506128c29084611df2565b6001600160a01b03808c16600090815260026020908152604080832094909455918c168152600390915220546128f89088611cd2565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546127de9083611cd2565b60008060008061293685611d31565b9350935093509350600080600061295288878787610ea8611caf565b6001600160a01b038d1660009081526002602052604090205492955090935091506127af9084611df2565b60008060008061298c85611d31565b935093509350935060008060006129a888878787610ea8611caf565b6001600160a01b038d1660009081526003602052604090205492955090935091506129d39089611df2565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546128c29084611df2565b6000612a0c611caf565b90506000612a1a83836116cd565b30600090815260026020526040902054909150612a379082611cd2565b3060009081526002602090815260408083209390935560069052205460ff1615612a865730600090815260036020526040902054612a759084611cd2565b306000908152600360205260409020555b505050565b600a54612a989083611df2565b600a55600b54612aa89082611cd2565b600b555050565b600060208083528351808285015260005b81811015612adc57858101830151858201604001528201612ac0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114612b1257600080fd5b50565b60008060408385031215612b2857600080fd5b8235612b3381612afd565b946020939093013593505050565b600060208284031215612b5357600080fd5b8135610c1e81612afd565b803560ff81168114612b6f57600080fd5b919050565b600080600060608486031215612b8957600080fd5b612b9284612b5e565b9250612ba060208501612b5e565b9150612bae60408501612b5e565b90509250925092565b600080600060608486031215612bcc57600080fd5b8335612bd781612afd565b92506020840135612be781612afd565b929592945050506040919091013590565b80358015158114612b6f57600080fd5b60008060408385031215612c1b57600080fd5b612b3383612bf8565b600060208284031215612c3657600080fd5b5035919050565b60008060408385031215612c5057600080fd5b82359150612c6060208401612bf8565b90509250929050565b60008060008060008060c08789031215612c8257600080fd5b612c8b87612b5e565b9550612c9960208801612b5e565b9450612ca760408801612b5e565b9350612cb560608801612b5e565b9250612cc360808801612b5e565b9150612cd160a08801612b5e565b90509295509295509295565b600060208284031215612cef57600080fd5b610c1e82612bf8565b60008060408385031215612d0b57600080fd5b8235612d1681612afd565b91506020830135612d2681612afd565b809150509250929050565b600181811c90821680612d4557607f821691505b602082108103612d6557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156109ec576109ec612db6565b634e487b7160e01b600052603160045260246000fd5b600060018201612e0757612e07612db6565b5060010190565b6000816000190483118215151615612e2857612e28612db6565b500290565b600082612e4a57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156109ec576109ec612db6565b60ff81811683821601908111156109ec576109ec612db6565b600060ff821660ff84168160ff0481118215151615612e9c57612e9c612db6565b029392505050565b600060208284031215612eb657600080fd5b8151610c1e81612afd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f115784516001600160a01b031683529383019391830191600101612eec565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612f4757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d7e0f8f420fa5ed01f9fa9018899d011f1484cf525fba25e88068cd51870bf6864736f6c63430008100033

Deployed Bytecode Sourcemap

25235:25079:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28563:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29548:193;;;;;;;;;;-1:-1:-1;29548:193:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;29548:193:0;1023:187:1;34056:115:0;;;;;;;;;;-1:-1:-1;34056:115:0;;;;;:::i;:::-;;:::i;:::-;;34301:255;;;;;;;;;;-1:-1:-1;34301:255:0;;;;;:::i;:::-;;:::i;31047:87::-;;;;;;;;;;-1:-1:-1;31116:10:0;;31047:87;;;2101:25:1;;;2089:2;2074:18;31047:87:0;1955:177:1;26534:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2328:32:1;;;2310:51;;2298:2;2283:18;26534:51:0;2137:230:1;28840:95:0;;;;;;;;;;-1:-1:-1;28920:7:0;;28840:95;;29749:446;;;;;;;;;;-1:-1:-1;29749:446:0;;;;;:::i;:::-;;:::i;26398:22::-;;;;;;;;;;-1:-1:-1;26398:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;3053:4:1;3041:17;;;3023:36;;3095:17;;;3090:2;3075:18;;3068:45;3149:17;;3129:18;;;3122:45;;;;3011:2;2996:18;26398:22:0;2833:340:1;49974:337:0;;;;;;;;;;-1:-1:-1;49974:337:0;;;;;:::i;:::-;;:::i;32531:322::-;;;;;;;;;;-1:-1:-1;32531:322:0;;;;;:::i;:::-;;:::i;28749:83::-;;;;;;;;;;-1:-1:-1;28815:9:0;;28749:83;;28815:9;;;;3923:36:1;;3911:2;3896:18;28749:83:0;3781:184:1;33338:473:0;;;;;;;;;;-1:-1:-1;33338:473:0;;;;;:::i;:::-;;:::i;30203:300::-;;;;;;;;;;-1:-1:-1;30203:300:0;;;;;:::i;:::-;;:::i;31142:683::-;;;;;;;;;;-1:-1:-1;31142:683:0;;;;;:::i;:::-;;:::i;33819:111::-;;;;;;;;;;-1:-1:-1;33819:111:0;;;;;:::i;:::-;;:::i;31833:690::-;;;;;;;;;;-1:-1:-1;31833:690:0;;;;;:::i;:::-;;:::i;26371:20::-;;;;;;;;;;-1:-1:-1;26371:20:0;;;;;;;;;;;;;;;;;;;;;;26592:38;;;;;;;;;;;;;;;26667:40;;;;;;;;;;-1:-1:-1;26667:40:0;;;;;;;;;;;32998:332;;;;;;;;;;-1:-1:-1;32998:332:0;;;;;:::i;:::-;;:::i;40038:124::-;;;;;;;;;;-1:-1:-1;40038:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;40127:27:0;40103:4;40127:27;;;:18;:27;;;;;;;;;40038:124;28943:198;;;;;;;;;;-1:-1:-1;28943:198:0;;;;;:::i;:::-;;:::i;15299:148::-;;;;;;;;;;;;;:::i;26716:55::-;;;;;;;;;;;;;;;;30919:120;;;;;;;;;;-1:-1:-1;30919:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;31011:20:0;30987:4;31011:20;;;:11;:20;;;;;;;;;30919:120;14657:79;;;;;;;;;;-1:-1:-1;14695:7:0;14722:6;-1:-1:-1;;;;;14722:6:0;14657:79;;26869:57;;;;;;;;;;;;;;;;34179:114;;;;;;;;;;-1:-1:-1;34179:114:0;;;;;:::i;:::-;;:::i;34564:251::-;;;;;;;;;;-1:-1:-1;34564:251:0;;;;;:::i;:::-;;:::i;28654:87::-;;;;;;;;;;;;;:::i;30511:400::-;;;;;;;;;;-1:-1:-1;30511:400:0;;;;;:::i;:::-;;:::i;27424:46::-;;;;;;;;;;-1:-1:-1;27424:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;29149:199;;;;;;;;;;-1:-1:-1;29149:199:0;;;;;:::i;:::-;;:::i;32863:127::-;;;;;;;;;;-1:-1:-1;32863:127:0;;;;;:::i;:::-;;:::i;35635:172::-;;;;;;;;;;-1:-1:-1;35635:172:0;;;;;:::i;:::-;;:::i;34823:512::-;;;;;;;;;;-1:-1:-1;34823:512:0;;;;;:::i;:::-;;:::i;27355:29::-;;;;;;;;;;;;;;;;35815:171;;;;;;;;;;-1:-1:-1;35815:171:0;;;;;:::i;:::-;;:::i;25926:103::-;;;;;;;;;;-1:-1:-1;25926:103:0;;;;-1:-1:-1;;;;;25926:103:0;;;35491:136;;;;;;;;;;-1:-1:-1;35491:136:0;;;;;:::i;:::-;;:::i;40170:128::-;;;;;;;;;;-1:-1:-1;40170:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;40261:29:0;40237:4;40261:29;;;:20;:29;;;;;;;;;40170:128;29356:184;;;;;;;;;;-1:-1:-1;29356:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;29505:18:0;;;29473:7;29505:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29356:184;33938:110;;;;;;;;;;-1:-1:-1;33938:110:0;;;;;:::i;:::-;;:::i;35343:140::-;;;;;;;;;;-1:-1:-1;35343:140:0;;;;;:::i;:::-;;:::i;15602:281::-;;;;;;;;;;-1:-1:-1;15602:281:0;;;;;:::i;:::-;;:::i;27319:29::-;;;;;;;;;;;;;;;;28563:83;28600:13;28633:5;28626:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28563:83;:::o;29548:193::-;29650:4;29672:39;7501:10;29695:7;29704:6;29672:8;:39::i;:::-;-1:-1:-1;29729:4:0;29548:193;;;;;:::o;34056:115::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;34127:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;34127:36:0::1;34159:4;34127:36;::::0;;34056:115::o;34301:255::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;34437:7:::1;:31:::0;;::::1;34519:29:::0;;::::1;34437:31;34519:29;-1:-1:-1::0;;34479:29:0;;::::1;::::0;::::1;-1:-1:-1::0;;34479:29:0;;;34437:31;;;::::1;34479:29:::0;;;;;;;::::1;34519;::::0;;;::::1;::::0;;34301:255::o;29749:446::-;29881:4;29898:36;29908:6;29916:9;29927:6;29898:9;:36::i;:::-;29945:220;29968:6;7501:10;30016:138;30072:6;30016:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30016:19:0;;;;;;:11;:19;;;;;;;;7501:10;30016:33;;;;;;;;;;:37;:138::i;:::-;29945:8;:220::i;:::-;-1:-1:-1;30183:4:0;29749:446;;;;;:::o;49974:337::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;50061:11:::1;:21:::0;;-1:-1:-1;;50061:21:0::1;::::0;::::1;;;::::0;;50093:32:::1;50119:4;50093:17;:32::i;:::-;50136;50154:13;50136:17;:32::i;:::-;50182:11;::::0;::::1;;:30:::0;::::1;;;-1:-1:-1::0;50197:10:0::1;::::0;:15;50182:30:::1;50179:125;;;50241:12;50228:10;:25:::0;50268:10:::1;:24:::0;;;50179:125:::1;49974:337:::0;;:::o;32531:322::-;32625:7;32683;;32672;:18;;32650:110;;;;-1:-1:-1;;;32650:110:0;;6981:2:1;32650:110:0;;;6963:21:1;7020:2;7000:18;;;6993:30;7059:34;7039:18;;;7032:62;-1:-1:-1;;;7110:18:1;;;7103:40;7160:19;;32650:110:0;6779:406:1;32650:110:0;32771:19;32793:10;:8;:10::i;:::-;32771:32;-1:-1:-1;32821:24:0;:7;32771:32;32821:11;:24::i;:::-;32814:31;32531:322;-1:-1:-1;;;32531:322:0:o;33338:473::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33418:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33410:56;;;::::0;-1:-1:-1;;;33410:56:0;;7392:2:1;33410:56:0::1;::::0;::::1;7374:21:1::0;7431:2;7411:18;;;7404:30;7470:25;7450:18;;;7443:53;7513:18;;33410:56:0::1;7190:347:1::0;33410:56:0::1;33482:9;33477:327;33501:9;:16:::0;33497:20;::::1;33477:327;;;33559:7;-1:-1:-1::0;;;;;33543:23:0::1;:9;33553:1;33543:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33543:12:0::1;:23:::0;33539:254:::1;;33602:9;33612:16:::0;;:20:::1;::::0;33631:1:::1;::::0;33612:20:::1;:::i;:::-;33602:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;33587:9:::1;:12:::0;;-1:-1:-1;;;;;33602:31:0;;::::1;::::0;33597:1;;33587:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33587:46:0::1;-1:-1:-1::0;;;;;33587:46:0;;::::1;;::::0;;33652:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33691:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33691:28:0::1;::::0;;33738:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33738:15:0;;;;;-1:-1:-1;;;;;;33738:15:0::1;::::0;;;;;49974:337;;:::o;33539:254::-:1;33519:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33477:327;;30203:300:::0;7501:10;30318:4;30412:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30412:34:0;;;;;;;;;;30318:4;;30340:133;;30390:7;;30412:50;;30451:10;30412:38;:50::i;31142:683::-;7501:10;31194:14;31257:19;;;:11;:19;;;;;;;;31256:20;31234:114;;;;-1:-1:-1;;;31234:114:0;;8413:2:1;31234:114:0;;;8395:21:1;8452:2;8432:18;;;8425:30;8491:34;8471:18;;;8464:62;-1:-1:-1;;;8542:18:1;;;8535:42;8594:19;;31234:114:0;8211:408:1;31234:114:0;31391:12;31418:18;31451:15;31480:20;31492:7;31480:11;:20::i;:::-;31361:139;;;;;;;31512:15;31535:135;31561:7;31583:4;31602:10;31627:7;31649:10;:8;:10::i;:::-;31535:11;:135::i;:::-;-1:-1:-1;;;;;;;31701:15:0;;;;;;:7;:15;;;;;;31511:159;;-1:-1:-1;31701:28:0;;31511:159;31701:19;:28::i;:::-;-1:-1:-1;;;;;31683:15:0;;;;;;:7;:15;;;;;:46;31750:7;;:20;;31762:7;31750:11;:20::i;:::-;31740:7;:30;31794:10;;:23;;31809:7;31794:14;:23::i;:::-;31781:10;:36;-1:-1:-1;;;;;;31142:683:0:o;33819:111::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33888:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33888:34:0::1;33918:4;33888:34;::::0;;33819:111::o;31833:690::-;31951:7;31995;;31984;:18;;31976:62;;;;-1:-1:-1;;;31976:62:0;;8826:2:1;31976:62:0;;;8808:21:1;8865:2;8845:18;;;8838:30;8904:33;8884:18;;;8877:61;8955:18;;31976:62:0;8624:355:1;31976:62:0;32081:12;32108:18;32141:15;32170:20;32182:7;32170:11;:20::i;:::-;32051:139;;;;;;;32202:15;32219:23;32248:135;32274:7;32296:4;32315:10;32340:7;32362:10;:8;:10::i;32248:135::-;32201:182;;;;;32401:17;32396:120;;-1:-1:-1;32442:7:0;-1:-1:-1;32435:14:0;;-1:-1:-1;;;32435:14:0;32396:120;32489:15;-1:-1:-1;32482:22:0;;-1:-1:-1;;;;32482:22:0;32998:332;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33079:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33078:21;33070:61;;;::::0;-1:-1:-1;;;33070:61:0;;9186:2:1;33070:61:0::1;::::0;::::1;9168:21:1::0;9225:2;9205:18;;;9198:30;9264:29;9244:18;;;9237:57;9311:18;;33070:61:0::1;8984:351:1::0;33070:61:0::1;-1:-1:-1::0;;;;;33146:16:0;::::1;33165:1;33146:16:::0;;;:7:::1;:16;::::0;;;;;:20;33142:109:::1;;-1:-1:-1::0;;;;;33222:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33202:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33183:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33142:109:::1;-1:-1:-1::0;;;;;33261:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33261:27:0::1;33284:4;33261:27:::0;;::::1;::::0;;;33299:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33299:23:0::1;::::0;;::::1;::::0;;32998:332::o;28943:198::-;-1:-1:-1;;;;;29033:20:0;;29009:7;29033:20;;;:11;:20;;;;;;;;29029:49;;;-1:-1:-1;;;;;;29062:16:0;;;;;:7;:16;;;;;;;28943:198::o;29029:49::-;-1:-1:-1;;;;;29116:16:0;;;;;;:7;:16;;;;;;29096:37;;:19;:37::i;15299:148::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;15406:1:::1;15390:6:::0;;15369:40:::1;::::0;-1:-1:-1;;;;;15390:6:0;;::::1;::::0;15369:40:::1;::::0;15406:1;;15369:40:::1;15437:1;15420:19:::0;;-1:-1:-1;;;;;;15420:19:0::1;::::0;;15299:148::o;34179:114::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34248:29:0::1;34280:5;34248:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;34248:37:0::1;::::0;;34179:114::o;34564:251::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;34699:6:::1;:30:::0;;::::1;34779:28:::0;;::::1;34699:30;34779:28;-1:-1:-1::0;;34740:28:0;;::::1;::::0;::::1;-1:-1:-1::0;;34740:28:0;;;34699:30;;;::::1;34740:28:::0;;;;;;;::::1;34779;::::0;;;::::1;::::0;;34564:251::o;28654:87::-;28693:13;28726:7;28719:14;;;;;:::i;30511:400::-;30631:4;30653:228;7501:10;30703:7;30725:145;30782:15;30725:145;;;;;;;;;;;;;;;;;7501:10;30725:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30725:34:0;;;;;;;;;;;;:38;:145::i;29149:199::-;29254:4;29276:42;7501:10;29300:9;29311:6;29276:9;:42::i;32863:127::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;32952:17:::1;:30:::0;;-1:-1:-1;;;;;;32952:30:0::1;-1:-1:-1::0;;;;;32952:30:0;;;::::1;::::0;;;::::1;::::0;;32863:127::o;35635:172::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;35762:37:::1;35793:5;35762:26;35774:13;35762:7;;:11;;:26;;;;:::i;:::-;:30:::0;::::1;:37::i;:::-;35745:14;:54:::0;-1:-1:-1;35635:172:0:o;34823:512::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;35068:6:::1;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;35113:32:0;;;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;35156:32:0;;::::1;35068:34;35156:32:::0;;::::1;::::0;::::1;;::::0;;;35201:7:::1;:36:::0;;;;::::1;35248:34:::0;;;;;;;;;;::::1;::::0;;::::1;;35293::::0;;::::1;::::0;;;::::1;::::0;;::::1;;::::0;;34823:512::o;35815:171::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;35892:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;35892:32:0;;::::1;;::::0;;35940:38:::1;::::0;::::1;::::0;::::1;::::0;35916:8;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;35940:38:0::1;;;;;;;;35815:171:::0;:::o;35491:136::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;35583:36:::1;35613:5;35583:25;35595:12;35583:7;;:11;;:25;;;;:::i;:36::-;35568:12;:51:::0;-1:-1:-1;35491:136:0:o;33938:110::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34005:27:0::1;34035:5;34005:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;34005:35:0::1;::::0;;33938:110::o;35343:140::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;35434:29:::1;:41:::0;35343:140::o;15602:281::-;14869:6;;-1:-1:-1;;;;;14869:6:0;7501:10;14869:22;14861:67;;;;-1:-1:-1;;;14861:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15705:22:0;::::1;15683:110;;;::::0;-1:-1:-1;;;15683:110:0;;9542:2:1;15683:110:0::1;::::0;::::1;9524:21:1::0;9581:2;9561:18;;;9554:30;9620:34;9600:18;;;9593:62;-1:-1:-1;;;9671:18:1;;;9664:36;9717:19;;15683:110:0::1;9340:402:1::0;15683:110:0::1;15830:6;::::0;;15809:38:::1;::::0;-1:-1:-1;;;;;15809:38:0;;::::1;::::0;15830:6;::::1;::::0;15809:38:::1;::::0;::::1;15858:6;:17:::0;;-1:-1:-1;;;;;;15858:17:0::1;-1:-1:-1::0;;;;;15858:17:0;;;::::1;::::0;;;::::1;::::0;;15602:281::o;5145:132::-;5203:7;5230:39;5234:1;5237;5230:39;;;;;;;;;;;;;;;;;:3;:39::i;4650:252::-;4708:7;4734:1;4739;4734:6;4730:47;;-1:-1:-1;4764:1:0;4757:8;;4730:47;4789:9;4801:5;4805:1;4801;:5;:::i;:::-;4789:17;-1:-1:-1;4834:1:0;4825:5;4829:1;4789:17;4825:5;:::i;:::-;:10;4817:56;;;;-1:-1:-1;;;4817:56:0;;10344:2:1;4817:56:0;;;10326:21:1;10383:2;10363:18;;;10356:30;10422:34;10402:18;;;10395:62;-1:-1:-1;;;10473:18:1;;;10466:31;10514:19;;4817:56:0;10142:397:1;40306:371:0;-1:-1:-1;;;;;40433:19:0;;40425:68;;;;-1:-1:-1;;;40425:68:0;;10746:2:1;40425:68:0;;;10728:21:1;10785:2;10765:18;;;10758:30;10824:34;10804:18;;;10797:62;-1:-1:-1;;;10875:18:1;;;10868:34;10919:19;;40425:68:0;10544:400:1;40425:68:0;-1:-1:-1;;;;;40512:21:0;;40504:68;;;;-1:-1:-1;;;40504:68:0;;11151:2:1;40504:68:0;;;11133:21:1;11190:2;11170:18;;;11163:30;11229:34;11209:18;;;11202:62;-1:-1:-1;;;11280:18:1;;;11273:32;11322:19;;40504:68:0;10949:398:1;40504:68:0;-1:-1:-1;;;;;40585:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;40637:32;;2101:25:1;;;40637:32:0;;2074:18:1;40637:32:0;;;;;;;40306:371;;;:::o;40685:2343::-;-1:-1:-1;;;;;40807:18:0;;40799:68;;;;-1:-1:-1;;;40799:68:0;;11554:2:1;40799:68:0;;;11536:21:1;11593:2;11573:18;;;11566:30;11632:34;11612:18;;;11605:62;-1:-1:-1;;;11683:18:1;;;11676:35;11728:19;;40799:68:0;11352:401:1;40799:68:0;-1:-1:-1;;;;;40886:16:0;;40878:64;;;;-1:-1:-1;;;40878:64:0;;11960:2:1;40878:64:0;;;11942:21:1;11999:2;11979:18;;;11972:30;12038:34;12018:18;;;12011:62;-1:-1:-1;;;12089:18:1;;;12082:33;12132:19;;40878:64:0;11758:399:1;40878:64:0;40970:1;40961:6;:10;40953:64;;;;-1:-1:-1;;;40953:64:0;;12364:2:1;40953:64:0;;;12346:21:1;12403:2;12383:18;;;12376:30;12442:34;12422:18;;;12415:62;-1:-1:-1;;;12493:18:1;;;12486:39;12542:19;;40953:64:0;12162:405:1;40953:64:0;14695:7;14722:6;-1:-1:-1;;;;;41043:15:0;;;14722:6;;41043:15;;;;:32;;-1:-1:-1;14695:7:0;14722:6;-1:-1:-1;;;;;41062:13:0;;;14722:6;;41062:13;;41043:32;41038:88;;;41086:11;;;;41078:48;;;;-1:-1:-1;;;41078:48:0;;12774:2:1;41078:48:0;;;12756:21:1;12813:2;12793:18;;;12786:30;12852:26;12832:18;;;12825:54;12896:18;;41078:48:0;12572:348:1;41078:48:0;41461:28;41492:24;41510:4;41492:9;:24::i;:::-;41461:55;;41557:12;;41533:20;:36;41529:104;;-1:-1:-1;41609:12:0;;41529:104;41709:29;;41672:66;;;;;;;41767:53;;-1:-1:-1;41804:16:0;;;;;;;41803:17;41767:53;:91;;;;;41845:13;-1:-1:-1;;;;;41837:21:0;:4;-1:-1:-1;;;;;41837:21:0;;;41767:91;:129;;;;-1:-1:-1;41875:21:0;;;;;;;41767:129;41749:318;;;41946:29;;41923:52;;42019:36;42034:20;42019:14;:36::i;:::-;-1:-1:-1;;;;;42260:24:0;;42140:12;42260:24;;;:18;:24;;;;;;42155:4;;42260:24;;;:50;;-1:-1:-1;;;;;;42288:22:0;;;;;;:18;:22;;;;;;;;42260:50;42256:98;;;-1:-1:-1;42337:5:0;42256:98;42368:7;42364:536;;;-1:-1:-1;;;;;42397:26:0;;;;;;:20;:26;;;;;;;;42396:27;:56;;;;-1:-1:-1;;;;;;42428:24:0;;;;;;:20;:24;;;;;;;;42427:25;42396:56;42392:497;;;42513:12;;42503:6;:22;;42473:136;;;;-1:-1:-1;;;42473:136:0;;13127:2:1;42473:136:0;;;13109:21:1;13166:2;13146:18;;;13139:30;13205:34;13185:18;;;13178:62;-1:-1:-1;;;13256:18:1;;;13249:38;13304:19;;42473:136:0;12925:404:1;42473:136:0;42638:13;-1:-1:-1;;;;;42632:19:0;:2;-1:-1:-1;;;;;42632:19:0;;42628:228;;42736:14;;42719:13;42729:2;42719:9;:13::i;:::-;42710:22;;:6;:22;:::i;:::-;:40;;42676:160;;;;-1:-1:-1;;;42676:160:0;;13666:2:1;42676:160:0;;;13648:21:1;13705:2;13685:18;;;13678:30;13744:34;13724:18;;;13717:62;-1:-1:-1;;;13795:18:1;;;13788:32;13837:19;;42676:160:0;13464:398:1;42676:160:0;42979:41;42994:4;43000:2;43004:6;43012:7;42979:14;:41::i;:::-;40788:2240;;;40685:2343;;;:::o;4165:226::-;4285:7;4321:12;4313:6;;;;4305:29;;;;-1:-1:-1;;;4305:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4345:9:0;4357:5;4361:1;4357;:5;:::i;:::-;4345:17;4165:226;-1:-1:-1;;;;;4165:226:0:o;37515:164::-;37557:7;37578:15;37595;37614:19;:17;:19::i;:::-;37577:56;;-1:-1:-1;37577:56:0;-1:-1:-1;37651:20:0;37577:56;;37651:11;:20::i;:::-;37644:27;;;;37515:164;:::o;3262:181::-;3320:7;;3352:5;3356:1;3352;:5;:::i;:::-;3340:17;;3381:1;3376;:6;;3368:46;;;;-1:-1:-1;;;3368:46:0;;14069:2:1;3368:46:0;;;14051:21:1;14108:2;14088:18;;;14081:30;14147:29;14127:18;;;14120:57;14194:18;;3368:46:0;13867:351:1;36243:568:0;36344:7;36366;36388;36410;36445:12;36460:31;36483:7;36460:22;:31::i;:::-;36445:46;;36502:18;36523:30;36545:7;36523:21;:30::i;:::-;36502:51;;36564:15;36582:30;36604:7;36582:21;:30::i;:::-;36564:48;-1:-1:-1;36623:23:0;36649:33;36671:10;36649:17;:7;36661:4;36649:11;:17::i;:::-;:21;;:33::i;:::-;36623:59;-1:-1:-1;36711:28:0;36623:59;36731:7;36711:19;:28::i;:::-;36693:46;36777:4;;-1:-1:-1;36783:10:0;;-1:-1:-1;36783:10:0;-1:-1:-1;36243:568:0;;-1:-1:-1;;;36243:568:0:o;36819:688::-;37044:7;;;;37141:24;:7;37153:11;37141;:24::i;:::-;37123:42;-1:-1:-1;37176:12:0;37191:21;:4;37200:11;37191:8;:21::i;:::-;37176:36;-1:-1:-1;37223:18:0;37244:27;:10;37259:11;37244:14;:27::i;:::-;37223:48;-1:-1:-1;37282:15:0;37300:24;:7;37312:11;37300;:24::i;:::-;37282:42;-1:-1:-1;37335:23:0;37361:88;37282:42;37361:61;37411:10;37361:61;:7;37387:4;37361:25;:31::i;:88::-;37468:7;;;;-1:-1:-1;37494:4:0;;-1:-1:-1;36819:688:0;;-1:-1:-1;;;;;;;;;36819:688:0:o;3726:136::-;3784:7;3811:43;3815:1;3818;3811:43;;;;;;;;;;;;;;;;;:3;:43::i;5773:312::-;5893:7;5928:12;5921:5;5913:28;;;;-1:-1:-1;;;5913:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5952:9:0;5964:5;5968:1;5964;:5;:::i;43036:1195::-;27233:16;:23;;-1:-1:-1;;27233:23:0;;;;;43239:7:::1;:17:::0;43220:6:::1;:16:::0;27233:23;;43239:17;;;::::1;27233:23:::0;43239:17;;::::1;::::0;43220:16;;::::1;::::0;::::1;::::0;43181:36:::1;::::0;27233:23;43200:17;;;::::1;::::0;::::1;::::0;43181:16;;::::1;;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;43180:81;::::0;43260:1:::1;43180:81;:::i;:::-;43337:7;:17:::0;43318:6:::1;:16:::0;43158:103:::1;::::0;;::::1;::::0;-1:-1:-1;43272:32:0::1;::::0;43158:103;;43318:36:::1;::::0;43337:17:::1;::::0;;;::::1;::::0;::::1;::::0;43318:16;;::::1;;:36;:::i;:::-;43308:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;43307:63;;;;:::i;:::-;43272:98:::0;-1:-1:-1;43381:14:0::1;43398:33;43272:98:::0;43398:6;:33:::1;:::i;:::-;43381:50:::0;-1:-1:-1;43469:21:0::1;43503:24;43381:50:::0;43503:16:::1;:24::i;:::-;43540:20;43563:38;43587:14:::0;43563:21:::1;:38;:::i;:::-;43684:7;:17:::0;43665:6:::1;:16:::0;43540:61;;-1:-1:-1;43612:19:0::1;::::0;43665:36:::1;::::0;43684:17:::1;;::::0;;;::::1;::::0;::::1;::::0;43665:16;;;::::1;;:36;:::i;:::-;43650:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;43634:69;::::0;:12;:69:::1;:::i;:::-;43780:7;:17:::0;43761:6:::1;:16:::0;43612:91;;-1:-1:-1;43714:29:0::1;::::0;43761:36:::1;::::0;43780:17:::1;;::::0;;;::::1;::::0;::::1;::::0;43761:16;;;::::1;;:36;:::i;:::-;43746:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;43714:84:::0;-1:-1:-1;43815:25:0;;43811:160:::1;;43898:61;43911:24;43937:21;43898:12;:61::i;:::-;44078:7;:17:::0;44059:6:::1;:16:::0;44017:20:::1;::::0;44059:36:::1;::::0;44078:17:::1;::::0;;;;::::1;::::0;::::1;::::0;44059:16;;::::1;;:36;:::i;:::-;44040:56;;:15;:11:::0;44054:1:::1;44040:15;:::i;:::-;:56;;;;:::i;:::-;44017:79:::0;-1:-1:-1;44122:16:0;;44118:98:::1;;44163:17;::::0;44155:49:::1;::::0;-1:-1:-1;;;;;44163:17:0;;::::1;::::0;44155:49;::::1;;;::::0;44191:12;;44163:17:::1;44155:49:::0;44163:17;44155:49;44191:12;44163:17;44155:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44118:98;-1:-1:-1::0;;27279:16:0;:24;;-1:-1:-1;;27279:24:0;;;-1:-1:-1;;;;;;;43036:1195:0:o;45436:1022::-;45591:7;45587:230;;;45615:14;39575;:18;;-1:-1:-1;;39632:17:0;;;39532:132;45615:14;45658:13;-1:-1:-1;;;;;45648:23:0;:6;-1:-1:-1;;;;;45648:23:0;;45644:72;;39726:6;:17;39709:14;:34;;39726:17;;;;-1:-1:-1;;39754:32:0;;;;;;;39726:17;39770:16;;;;;39754:32;;-1:-1:-1;;39797:32:0;39813:16;;;;;;;;;39797:32;;;;;;;;;45692:8;45747:13;-1:-1:-1;;;;;45734:26:0;:9;-1:-1:-1;;;;;45734:26:0;;45730:76;;39908:7;:18;39891:14;:35;;39908:18;;;;-1:-1:-1;;39937:33:0;;;;;;;39908:18;39953:17;;;;;39937:33;;-1:-1:-1;;39981:33:0;39997:17;;;;;;;;;39981:33;;;;;;;;;45781:9;-1:-1:-1;;;;;45833:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;45857:22:0;;;;;;:11;:22;;;;;;;;45856:23;45833:46;45829:597;;;45896:48;45918:6;45926:9;45937:6;45896:21;:48::i;:::-;45829:597;;;-1:-1:-1;;;;;45967:19:0;;;;;;:11;:19;;;;;;;;45966:20;:46;;;;-1:-1:-1;;;;;;45990:22:0;;;;;;:11;:22;;;;;;;;45966:46;45962:464;;;46029:46;46049:6;46057:9;46068:6;46029:19;:46::i;45962:464::-;-1:-1:-1;;;;;46098:19:0;;;;;;:11;:19;;;;;;;;46097:20;:47;;;;-1:-1:-1;;;;;;46122:22:0;;;;;;:11;:22;;;;;;;;46121:23;46097:47;46093:333;;;46161:44;46179:6;46187:9;46198:6;46161:17;:44::i;46093:333::-;-1:-1:-1;;;;;46227:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;46250:22:0;;;;;;:11;:22;;;;;;;;46227:45;46223:203;;;46289:48;46311:6;46319:9;46330:6;46289:21;:48::i;46223:203::-;46370:44;46388:6;46396:9;46407:6;46370:17;:44::i;:::-;46436:14;39575;:18;;-1:-1:-1;;39632:17:0;;;39532:132;46436:14;45436:1022;;;;:::o;37687:605::-;37785:7;;37821;;37738;;;;;37839:338;37863:9;:16;37859:20;;37839:338;;;37947:7;37923;:21;37931:9;37941:1;37931:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37931:12:0;37923:21;;;;;;;;;;;;;:31;;:83;;;37999:7;37975;:21;37983:9;37993:1;37983:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37983:12:0;37975:21;;;;;;;;;;;;;:31;37923:83;37901:146;;;38030:7;;38039;;38022:25;;;;;;;37687:605;;:::o;37901:146::-;38072:34;38084:7;:21;38092:9;38102:1;38092:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38092:12:0;38084:21;;;;;;;;;;;;;38072:7;;:11;:34::i;:::-;38062:44;;38131:34;38143:7;:21;38151:9;38161:1;38151:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38151:12:0;38143:21;;;;;;;;;;;;;38131:7;;:11;:34::i;:::-;38121:44;-1:-1:-1;37881:3:0;;;;:::i;:::-;;;;37839:338;;;-1:-1:-1;38213:7:0;;38201;;:20;;:11;:20::i;:::-;38191:7;:30;38187:61;;;38231:7;;38240;;38223:25;;;;;;37687:605;;:::o;38187:61::-;38267:7;;38276;;-1:-1:-1;37687:605:0;-1:-1:-1;37687:605:0:o;39011:144::-;39121:14;;39082:7;;39109:38;;39141:5;;39109:27;;:7;;39121:14;;39109:11;:27::i;39163:174::-;39304:13;;39260:7;;39292:37;;39323:5;;39292:26;;:7;;39304:13;;;;;39292:11;:26::i;39345:174::-;39486:13;;39442:7;;39474:37;;39505:5;;39474:26;;:7;;39486:13;;;;;39474:11;:26::i;44239:589::-;44389:16;;;44403:1;44389:16;;;;;;;;44365:21;;44389:16;;;;;;;;;;-1:-1:-1;44389:16:0;44365:40;;44434:4;44416;44421:1;44416:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44416:23:0;;;-1:-1:-1;;;;;44416:23:0;;;;;44460:15;-1:-1:-1;;;;;44460:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44450:4;44455:1;44450:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44450:32:0;;;-1:-1:-1;;;;;44450:32:0;;;;;44495:62;44512:4;44527:15;44545:11;44495:8;:62::i;:::-;44596:224;;-1:-1:-1;;;44596:224:0;;-1:-1:-1;;;;;44596:15:0;:66;;;;:224;;44677:11;;44703:1;;44747:4;;44774;;44794:15;;44596:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44836:519;44984:62;45001:4;45016:15;45034:11;44984:8;:62::i;:::-;45089:258;;-1:-1:-1;;;45089:258:0;;45161:4;45089:258;;;16333:34:1;;;16383:18;;;16376:34;;;45207:1:0;16426:18:1;;;16419:34;;;16469:18;;;16462:34;16512:19;;;16505:44;45321:15:0;16565:19:1;;;16558:35;45089:15:0;-1:-1:-1;;;;;45089:31:0;;;;45128:9;;16267:19:1;;45089:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44836:519;;:::o;48161:863::-;48312:23;48350:12;48377:18;48410:15;48439:20;48451:7;48439:11;:20::i;:::-;48297:162;;;;;;;;48471:15;48488:23;48513:12;48529:135;48555:7;48577:4;48596:10;48621:7;48643:10;:8;:10::i;48529:135::-;-1:-1:-1;;;;;48695:15:0;;;;;;:7;:15;;;;;;48470:194;;-1:-1:-1;48470:194:0;;-1:-1:-1;48470:194:0;-1:-1:-1;48695:28:0;;48715:7;48695:19;:28::i;:::-;-1:-1:-1;;;;;48677:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48752:7;:15;;;;:28;;48772:7;48752:19;:28::i;:::-;-1:-1:-1;;;;;48734:15:0;;;;;;;:7;:15;;;;;;:46;;;;48812:18;;;;;;;:39;;48835:15;48812:22;:39::i;:::-;-1:-1:-1;;;;;48791:18:0;;;;;;:7;:18;;;;;:60;48862:26;48877:10;48862:14;:26::i;:::-;48899:23;48914:7;48899:14;:23::i;:::-;48933;48945:4;48951;48933:11;:23::i;:::-;48989:9;-1:-1:-1;;;;;48972:44:0;48981:6;-1:-1:-1;;;;;48972:44:0;;49000:15;48972:44;;;;2101:25:1;;2089:2;2074:18;;1955:177;48972:44:0;;;;;;;;48286:738;;;;;;;48161:863;;;:::o;47278:875::-;47427:23;47465:12;47492:18;47525:15;47554:20;47566:7;47554:11;:20::i;:::-;47412:162;;;;;;;;47586:15;47603:23;47628:12;47644:135;47670:7;47692:4;47711:10;47736:7;47758:10;:8;:10::i;47644:135::-;-1:-1:-1;;;;;47810:15:0;;;;;;:7;:15;;;;;;47585:194;;-1:-1:-1;47585:194:0;;-1:-1:-1;47585:194:0;-1:-1:-1;47810:28:0;;47585:194;47810:19;:28::i;:::-;-1:-1:-1;;;;;47792:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;47870:18;;;;;:7;:18;;;;;:39;;47893:15;47870:22;:39::i;:::-;-1:-1:-1;;;;;47849:18:0;;;;;;:7;:18;;;;;;;;:60;;;;47941:7;:18;;;;:39;;47964:15;47941:22;:39::i;46466:802::-;46613:23;46651:12;46678:18;46711:15;46740:20;46752:7;46740:11;:20::i;:::-;46598:162;;;;;;;;46772:15;46789:23;46814:12;46830:135;46856:7;46878:4;46897:10;46922:7;46944:10;:8;:10::i;46830:135::-;-1:-1:-1;;;;;46996:15:0;;;;;;:7;:15;;;;;;46771:194;;-1:-1:-1;46771:194:0;;-1:-1:-1;46771:194:0;-1:-1:-1;46996:28:0;;46771:194;46996:19;:28::i;49032:934::-;49183:23;49221:12;49248:18;49281:15;49310:20;49322:7;49310:11;:20::i;:::-;49168:162;;;;;;;;49342:15;49359:23;49384:12;49400:135;49426:7;49448:4;49467:10;49492:7;49514:10;:8;:10::i;49400:135::-;-1:-1:-1;;;;;49566:15:0;;;;;;:7;:15;;;;;;49341:194;;-1:-1:-1;49341:194:0;;-1:-1:-1;49341:194:0;-1:-1:-1;49566:28:0;;49586:7;49566:19;:28::i;:::-;-1:-1:-1;;;;;49548:15:0;;;;;;:7;:15;;;;;;;;:46;;;;49623:7;:15;;;;:28;;49643:7;49623:19;:28::i;38300:355::-;38363:19;38385:10;:8;:10::i;:::-;38363:32;-1:-1:-1;38406:18:0;38427:27;:10;38363:32;38427:14;:27::i;:::-;38506:4;38490:22;;;;:7;:22;;;;;;38406:48;;-1:-1:-1;38490:38:0;;38406:48;38490:26;:38::i;:::-;38481:4;38465:22;;;;:7;:22;;;;;;;;:63;;;;38543:11;:26;;;;;;38539:108;;;38625:4;38609:22;;;;:7;:22;;;;;;:38;;38636:10;38609:26;:38::i;:::-;38600:4;38584:22;;;;:7;:22;;;;;:63;38539:108;38352:303;;38300:355;:::o;36088:147::-;36166:7;;:17;;36178:4;36166:11;:17::i;:::-;36156:7;:27;36207:10;;:20;;36222:4;36207:14;:20::i;:::-;36194:10;:33;-1:-1:-1;;36088:147:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1467:156::-;1533:20;;1593:4;1582:16;;1572:27;;1562:55;;1613:1;1610;1603:12;1562:55;1467:156;;;:::o;1628:322::-;1699:6;1707;1715;1768:2;1756:9;1747:7;1743:23;1739:32;1736:52;;;1784:1;1781;1774:12;1736:52;1807:27;1824:9;1807:27;:::i;:::-;1797:37;;1853:36;1885:2;1874:9;1870:18;1853:36;:::i;:::-;1843:46;;1908:36;1940:2;1929:9;1925:18;1908:36;:::i;:::-;1898:46;;1628:322;;;;;:::o;2372:456::-;2449:6;2457;2465;2518:2;2506:9;2497:7;2493:23;2489:32;2486:52;;;2534:1;2531;2524:12;2486:52;2573:9;2560:23;2592:31;2617:5;2592:31;:::i;:::-;2642:5;-1:-1:-1;2699:2:1;2684:18;;2671:32;2712:33;2671:32;2712:33;:::i;:::-;2372:456;;2764:7;;-1:-1:-1;;;2818:2:1;2803:18;;;;2790:32;;2372:456::o;3178:160::-;3243:20;;3299:13;;3292:21;3282:32;;3272:60;;3328:1;3325;3318:12;3343:248;3408:6;3416;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3508:26;3524:9;3508:26;:::i;3596:180::-;3655:6;3708:2;3696:9;3687:7;3683:23;3679:32;3676:52;;;3724:1;3721;3714:12;3676:52;-1:-1:-1;3747:23:1;;3596:180;-1:-1:-1;3596:180:1:o;3970:248::-;4035:6;4043;4096:2;4084:9;4075:7;4071:23;4067:32;4064:52;;;4112:1;4109;4102:12;4064:52;4148:9;4135:23;4125:33;;4177:35;4208:2;4197:9;4193:18;4177:35;:::i;:::-;4167:45;;3970:248;;;;;:::o;4691:535::-;4783:6;4791;4799;4807;4815;4823;4876:3;4864:9;4855:7;4851:23;4847:33;4844:53;;;4893:1;4890;4883:12;4844:53;4916:27;4933:9;4916:27;:::i;:::-;4906:37;;4962:36;4994:2;4983:9;4979:18;4962:36;:::i;:::-;4952:46;;5017:36;5049:2;5038:9;5034:18;5017:36;:::i;:::-;5007:46;;5072:36;5104:2;5093:9;5089:18;5072:36;:::i;:::-;5062:46;;5127:37;5159:3;5148:9;5144:19;5127:37;:::i;:::-;5117:47;;5183:37;5215:3;5204:9;5200:19;5183:37;:::i;:::-;5173:47;;4691:535;;;;;;;;:::o;5231:180::-;5287:6;5340:2;5328:9;5319:7;5315:23;5311:32;5308:52;;;5356:1;5353;5346:12;5308:52;5379:26;5395:9;5379:26;:::i;5640:388::-;5708:6;5716;5769:2;5757:9;5748:7;5744:23;5740:32;5737:52;;;5785:1;5782;5775:12;5737:52;5824:9;5811:23;5843:31;5868:5;5843:31;:::i;:::-;5893:5;-1:-1:-1;5950:2:1;5935:18;;5922:32;5963:33;5922:32;5963:33;:::i;:::-;6015:7;6005:17;;;5640:388;;;;;:::o;6033:380::-;6112:1;6108:12;;;;6155;;;6176:61;;6230:4;6222:6;6218:17;6208:27;;6176:61;6283:2;6275:6;6272:14;6252:18;6249:38;6246:161;;6329:10;6324:3;6320:20;6317:1;6310:31;6364:4;6361:1;6354:15;6392:4;6389:1;6382:15;6246:161;;6033:380;;;:::o;6418:356::-;6620:2;6602:21;;;6639:18;;;6632:30;6698:34;6693:2;6678:18;;6671:62;6765:2;6750:18;;6418:356::o;7542:127::-;7603:10;7598:3;7594:20;7591:1;7584:31;7634:4;7631:1;7624:15;7658:4;7655:1;7648:15;7674:127;7735:10;7730:3;7726:20;7723:1;7716:31;7766:4;7763:1;7756:15;7790:4;7787:1;7780:15;7806:128;7873:9;;;7894:11;;;7891:37;;;7908:18;;:::i;7939:127::-;8000:10;7995:3;7991:20;7988:1;7981:31;8031:4;8028:1;8021:15;8055:4;8052:1;8045:15;8071:135;8110:3;8131:17;;;8128:43;;8151:18;;:::i;:::-;-1:-1:-1;8198:1:1;8187:13;;8071:135::o;9747:168::-;9787:7;9853:1;9849;9845:6;9841:14;9838:1;9835:21;9830:1;9823:9;9816:17;9812:45;9809:71;;;9860:18;;:::i;:::-;-1:-1:-1;9900:9:1;;9747:168::o;9920:217::-;9960:1;9986;9976:132;;10030:10;10025:3;10021:20;10018:1;10011:31;10065:4;10062:1;10055:15;10093:4;10090:1;10083:15;9976:132;-1:-1:-1;10122:9:1;;9920:217::o;13334:125::-;13399:9;;;13420:10;;;13417:36;;;13433:18;;:::i;14223:148::-;14311:4;14290:12;;;14304;;;14286:31;;14329:13;;14326:39;;;14345:18;;:::i;14376:238::-;14414:7;14454:4;14451:1;14447:12;14486:4;14483:1;14479:12;14546:3;14540:4;14536:14;14531:3;14528:23;14521:3;14514:11;14507:19;14503:49;14500:75;;;14555:18;;:::i;:::-;14595:13;;14376:238;-1:-1:-1;;;14376:238:1:o;14751:251::-;14821:6;14874:2;14862:9;14853:7;14849:23;14845:32;14842:52;;;14890:1;14887;14880:12;14842:52;14922:9;14916:16;14941:31;14966:5;14941:31;:::i;15007:980::-;15269:4;15317:3;15306:9;15302:19;15348:6;15337:9;15330:25;15374:2;15412:6;15407:2;15396:9;15392:18;15385:34;15455:3;15450:2;15439:9;15435:18;15428:31;15479:6;15514;15508:13;15545:6;15537;15530:22;15583:3;15572:9;15568:19;15561:26;;15622:2;15614:6;15610:15;15596:29;;15643:1;15653:195;15667:6;15664:1;15661:13;15653:195;;;15732:13;;-1:-1:-1;;;;;15728:39:1;15716:52;;15823:15;;;;15788:12;;;;15764:1;15682:9;15653:195;;;-1:-1:-1;;;;;;;15904:32:1;;;;15899:2;15884:18;;15877:60;-1:-1:-1;;;15968:3:1;15953:19;15946:35;15865:3;15007:980;-1:-1:-1;;;15007:980:1:o;16604:306::-;16692:6;16700;16708;16761:2;16749:9;16740:7;16736:23;16732:32;16729:52;;;16777:1;16774;16767:12;16729:52;16806:9;16800:16;16790:26;;16856:2;16845:9;16841:18;16835:25;16825:35;;16900:2;16889:9;16885:18;16879:25;16869:35;;16604:306;;;;;:::o

Swarm Source

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