ETH Price: $3,134.68 (+2.36%)
Gas: 16 Gwei

Token

GhostFaceFloki (GFLOKI)
 

Overview

Max Total Supply

5,000,000,000 GFLOKI

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
77,029.834171827572954241 GFLOKI

Value
$0.00
0x77b0e77690a723b2594cf80cfdec987797d78499
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:
GhostFaceFloki

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-04
*/

//SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.6.12;

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);

    /**
    * @dev Returns the amount of tokens owned by `account`.
    */
    function balanceOf(address account) external view returns (uint256);

    /**
    * @dev Moves `amount` tokens from the caller's account to `recipient`.
    *
    * Returns a boolean value indicating whether the operation succeeded.
    *
    * Emits a {Transfer} event.
    */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
    * @dev Returns the remaining number of tokens that `spender` will be
    * allowed to spend on behalf of `owner` through {transferFrom}. This is
    * zero by default.
    *
    * This value changes when {approve} or {transferFrom} are called.
    */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
    * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
    *
    * Returns a boolean value indicating whether the operation succeeded.
    *
    * IMPORTANT: Beware that changing an allowance with this method brings the risk
    * that someone may use both the old and the new allowance by unfortunate
    * transaction ordering. One possible solution to mitigate this race
    * condition is to first reduce the spender's allowance to 0 and set the
    * desired value afterwards:
    * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    *
    * Emits an {Approval} event.
    */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
    * @dev Moves `amount` tokens from `sender` to `recipient` using the
    * allowance mechanism. `amount` is then deducted from the caller's
    * allowance.
    *
    * Returns a boolean value indicating whether the operation succeeded.
    *
    * Emits a {Transfer} event.
    */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
    * @dev Emitted when `value` tokens are moved from one account (`from`) to
    * another (`to`).
    *
    * Note that `value` may be zero.
    */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
    * @dev Emitted when the allowance of a `spender` for an `owner` is set by
    * a call to {approve}. `value` is the new allowance.
    */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {
    /**
    * @dev Returns the addition of two unsigned integers, reverting on
    * overflow.
    *
    * Counterpart to Solidity's `+` operator.
    *
    * Requirements:
    *
    * - Addition cannot overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
    * @dev Returns the subtraction of two unsigned integers, reverting on
    * overflow (when the result is negative).
    *
    * Counterpart to Solidity's `-` operator.
    *
    * Requirements:
    *
    * - Subtraction cannot overflow.
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
    * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
    * overflow (when the result is negative).
    *
    * Counterpart to Solidity's `-` operator.
    *
    * Requirements:
    *
    * - Subtraction cannot overflow.
    */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
    * @dev Returns the multiplication of two unsigned integers, reverting on
    * overflow.
    *
    * Counterpart to Solidity's `*` operator.
    *
    * Requirements:
    *
    * - Multiplication cannot overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
    * @dev Returns the integer division of two unsigned integers. Reverts on
    * division by zero. The result is rounded towards zero.
    *
    * Counterpart to Solidity's `/` operator. Note: this function uses a
    * `revert` opcode (which leaves remaining gas untouched) while Solidity
    * uses an invalid opcode to revert (consuming all remaining gas).
    *
    * Requirements:
    *
    * - The divisor cannot be zero.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
    * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
    * division by zero. The result is rounded towards zero.
    *
    * Counterpart to Solidity's `/` operator. Note: this function uses a
    * `revert` opcode (which leaves remaining gas untouched) while Solidity
    * uses an invalid opcode to revert (consuming all remaining gas).
    *
    * Requirements:
    *
    * - The divisor cannot be zero.
    */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
    * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
    * Reverts when dividing by zero.
    *
    * Counterpart to Solidity's `%` operator. This function uses a `revert`
    * opcode (which leaves remaining gas untouched) while Solidity uses an
    * invalid opcode to revert (consuming all remaining gas).
    *
    * Requirements:
    *
    * - The divisor cannot be zero.
    */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
    * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
    * Reverts with custom message when dividing by zero.
    *
    * Counterpart to Solidity's `%` operator. This function uses a `revert`
    * opcode (which leaves remaining gas untouched) while Solidity uses an
    * invalid opcode to revert (consuming all remaining gas).
    *
    * Requirements:
    *
    * - The divisor cannot be zero.
    */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

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

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

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

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

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

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

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

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

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

contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

    /**
    * @dev Initializes the contract setting the deployer as the initial owner.
    */
    constructor () internal {
        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, uint);

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

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

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

// Contract implementation
contract GhostFaceFloki 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; // excluded from reward
    address[] private _excluded;
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;

    uint256 private constant MAX = ~uint256(0);

    uint256 private _tTotal = 5000000 * 10**3 * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = 'GhostFaceFloki';
    string private _symbol = 'GFLOKI';
    uint8 private _decimals = 18;

    uint256 private _taxFee = 0;
    uint256 private _marketingFee = 5;
    uint256 private _liquidityFee = 5;

    uint256 private _previousTaxFee = _taxFee;
    uint256 private _previousMarketingFee = _marketingFee;
    uint256 private _previousLiquidityFee = _liquidityFee;

    address payable private _marketingWalletAddress = payable(0x90F3c87a824ece39E6953589bEeE7f9207f74e66);

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify = false;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public maxBuyAmount = 50000 * 10**3 * 10**18;

    uint256 private _maxTxAmount = _tTotal;
    // We will set a minimum amount of tokens to be swapped
    uint256 private _numTokensSellToAddToLiquidity = 2000 * 10**3 * 10**18;

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

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

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

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // UniswapV2 for Ethereum network
        // 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[_marketingWalletAddress] = true;

        // BLACKLIST
        _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
        _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));

        _isBlackListedBot[address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)] = true;
        _blackListedBots.push(address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345));

        _isBlackListedBot[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true;
        _blackListedBots.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b));

        _isBlackListedBot[address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)] = true;
        _blackListedBots.push(address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95));

        _isBlackListedBot[address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)] = true;
        _blackListedBots.push(address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964));

        _isBlackListedBot[address(0xDC81a3450817A58D00f45C86d0368290088db848)] = true;
        _blackListedBots.push(address(0xDC81a3450817A58D00f45C86d0368290088db848));

        _isBlackListedBot[address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)] = true;
        _blackListedBots.push(address(0x45fD07C63e5c316540F14b2002B085aEE78E3881));

        _isBlackListedBot[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true;
        _blackListedBots.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679));

        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 setExcludeFromFee(address account, bool excluded) external onlyOwner() {
        _isExcludedFromFee[account] = excluded;
    }

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

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

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

    function excludeFromReward(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

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

    function addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }

    function removeBotFromBlackList(address account) external onlyOwner() {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }

    function removeAllFee() private {
        if(_taxFee == 0 && _marketingFee == 0 && _liquidityFee == 0) return;

        _previousTaxFee = _taxFee;
        _previousMarketingFee = _marketingFee;
        _previousLiquidityFee = _liquidityFee;

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

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _marketingFee = _previousMarketingFee;
        _liquidityFee = _previousLiquidityFee;
    }

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

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

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

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isBlackListedBot[sender], "You have no power here!");
        require(!_isBlackListedBot[recipient], "You have no power here!");
        require(!_isBlackListedBot[tx.origin], "You have no power here!");

        if(sender != owner() && recipient != owner()) {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            // sorry about that, but sniper bots nowadays are buying multiple times, hope I have something more robust to prevent them to nuke the launch :-(
            require(balanceOf(recipient).add(amount) <= _maxTxAmount, "Already bought maxTxAmount, wait till check off");
        }
        
        if(sender == uniswapV2Pair && !_isExcludedFromFee[recipient]){
            require(amount <= maxBuyAmount, 'you are exceeding maxBuyAmount');
        }

        // 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 (!inSwapAndLiquify && swapAndLiquifyEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
            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[sender] || _isExcludedFromFee[recipient]){
            takeFee = false;
        }

        //transfer amount, it will take tax and charity fee
        _tokenTransfer(sender, recipient, amount, takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 toMarketing = contractTokenBalance.mul(_marketingFee).div(_marketingFee.add(_liquidityFee));
        uint256 toLiquify = contractTokenBalance.sub(toMarketing);

        // split the contract balance into halves
        uint256 half = toLiquify.div(2);
        uint256 otherHalf = toLiquify.sub(half);

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

        // swap tokens for ETH
        uint256 toSwapForEth = half.add(toMarketing);
        swapTokensForEth(toSwapForEth); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

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

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);

        sendETHToMarketing(fromSwap.sub(newBalance));
    }

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

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

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

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

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

    function sendETHToMarketing(uint256 amount) private {
        _marketingWalletAddress.transfer(amount);
    }

    // We are exposing these functions to be able to manual swap and send
    // in case the token is highly valued and 5M becomes too much
    function manualSwap() external onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() public onlyOwner() {
        uint256 contractETHBalance = address(this).balance;
        sendETHToMarketing(contractETHBalance);
    }

    function setSwapAndLiquifyEnabled(bool _swapAndLiquifyEnabled) external onlyOwner(){
        swapAndLiquifyEnabled = _swapAndLiquifyEnabled;
    }

    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
        if(!takeFee)
            removeAllFee();

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

        if(!takeFee)
            restoreAllFee();
    }

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

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketingLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketingLiquidity(tMarketingLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketingLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketingLiquidity(tMarketingLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketingLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketingLiquidity(tMarketingLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _takeMarketingLiquidity(uint256 tMarketingLiquidity) private {
        uint256 currentRate = _getRate();
        uint256 rMarketingLiquidity = tMarketingLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rMarketingLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tMarketingLiquidity);
    }

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

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

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tMarketingLiquidityFee) = _getTValues(tAmount, _taxFee, _marketingFee.add(_liquidityFee));
        uint256 currentRate = _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tMarketingLiquidityFee);
    }

    function _getTValues(uint256 tAmount, uint256 taxFee, uint256 marketingLiquidityFee) private pure returns (uint256, uint256, uint256) {
        uint256 tFee = tAmount.mul(taxFee).div(100);
        uint256 tMarketingLiquidityFee = tAmount.mul(marketingLiquidityFee).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(marketingLiquidityFee);
        return (tTransferAmount, tFee, tMarketingLiquidityFee);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee);
        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 _getTaxFee() private view returns(uint256) {
        return _taxFee;
    }

    function _getMaxTxAmount() private view returns(uint256) {
        return _maxTxAmount;
    }

    function _getETHBalance() public view returns(uint256 balance) {
        return address(this).balance;
    }

    function _setTaxFee(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }

    function _setMarketingFee(uint256 marketingFee) external onlyOwner() {
        _marketingFee = marketingFee;
    }

    function _setLiquidityFee(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }

    function _setNumTokensSellToAddToLiquidity(uint256 numTokensSellToAddToLiquidity) external onlyOwner() {
        _numTokensSellToAddToLiquidity = numTokensSellToAddToLiquidity;
    }

    function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        _maxTxAmount = maxTxAmount;
    }
    
    function setMaxBuyAndSellAmount(uint256 _maxBuyamount) external onlyOwner{
        maxBuyAmount = _maxBuyamount * 10**18;
    }

    function recoverTokens(uint256 tokenAmount) public virtual onlyOwner() {
        _approve(address(this), owner(), tokenAmount);
        _transfer(address(this), owner(), tokenAmount);
    }
}

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":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"_setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"_setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokensSellToAddToLiquidity","type":"uint256"}],"name":"_setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","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":"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":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyamount","type":"uint256"}],"name":"setMaxBuyAndSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapAndLiquifyEnabled","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"},{"stateMutability":"payable","type":"receive"}]

6b1027e72f1f12813088000000600b556b01d290004395eb7bbfffffff19600c55610100604052600e60c08190526d47686f737446616365466c6f6b6960901b60e090815262000051919081620006ba565b506040805180820190915260068082526547464c4f4b4960d01b60209092019182526200008191600f91620006ba565b506010805460ff1916601290811790915560006011819055600591829055601382905560145560158190556016556017805461ffff60a01b196001600160a01b03199091167390f3c87a824ece39e6953589beee7f9207f74e661716600160a81b1790556a295be96e64066972000000601855600b546019556a01a784379d99db42000000601a553480156200011657600080fd5b50600062000123620006a7565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c54600360006200017e620006a7565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001f557600080fd5b505afa1580156200020a573d6000803e3d6000fd5b505050506040513d60208110156200022157600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200027257600080fd5b505afa15801562000287573d6000803e3d6000fd5b505050506040513d60208110156200029e57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002f157600080fd5b505af115801562000306573d6000803e3d6000fd5b505050506040513d60208110156200031d57600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200034a620006ab565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600684528281208054861660019081179091556017549092168152918220805485168217905560099092527f1f039d7054c60544da001ada2885c2098966bf59108af37aa0047e53180c227d8054841683179055600a805480840182557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a890810180546001600160a01b031990811673e031b36b53e53a292a20c5f08fd1658cddf74fce179091557ff4b93d2837107f43e5b3215c8cfd55bc8f0ec1fef4e888737a6685e72730fd0e80548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557f404b5b762e8059f6055e90a7bf5e88e1e2f628911a8da7857df40bf26352e21280548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557fd06f72f8dd06466bcc52a7fc6bddce65222c1efb674ce288f26d72607f32c02680548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557fb180cbdf50fc8306102fae658ae8eddf6673addd522d5a575c2b6924f832977480548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557fd74310044b3dfbf8c3bb19b279a8662cf43f021fe4e68d5726f62fc6b584af7980548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557f72b3a1de74eb1a0841083ea090998865c5194ff1fc7be394ec133e28cacbdd9d8054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557f82951a08c86bbc382122443ed556bc8073b7e0bdf3bbfb811f503389aad35bfc805490961685179095558154938401825591520180549091167327f9adb26d532a41d97e00206114e429ad58c67917905562000653620006a7565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a35062000756565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006fd57805160ff19168380011785556200072d565b828001600101855582156200072d579182015b828111156200072d57825182559160200191906001019062000710565b506200073b9291506200073f565b5090565b5b808211156200073b576000815560010162000740565b60805160601c60a05160601c613275620007a36000398061124852806120145280612120525080610af0528061242652806124de52806125055280612b5b5280612b8252506132756000f3fe6080604052600436106102bf5760003560e01c806352390c021161016e578063a457c2d7116100cb578063c49b9a801161007f578063f2fde38b11610064578063f2fde38b14610970578063f4293890146109a3578063f815a842146109b8576102c6565b8063c49b9a8014610909578063dd62ed3e14610935576102c6565b8063a9059cbb116100b0578063a9059cbb1461086b578063af9549e0146108a4578063bcd6d446146108df576102c6565b8063a457c2d714610808578063a52fe9bb14610841576102c6565b80637ded4d6a1161012257806388f820201161010757806388f82020146107ab5780638da5cb5b146107de57806395d89b41146107f3576102c6565b80637ded4d6a1461076357806388e765ff14610796576102c6565b80635880b873116101535780635880b873146106f157806370a082311461071b578063715018a61461074e576102c6565b806352390c021461068b5780635342acb4146106be576102c6565b806330599fc51161021c5780634303443d116101d057806349bd5a5e116101b557806349bd5a5e1461064c5780634a74bb021461066157806351bc3c8514610676576102c6565b80634303443d146105e75780634549b0391461061a576102c6565b80633685d419116102015780633685d4191461055157806339509351146105845780633bd5d173146105bd576102c6565b806330599fc5146104fc578063313ce56714610526576102c6565b806318160ddd116102735780631decaadc116102585780631decaadc1461046557806323b872dd1461048f5780632d838119146104d2576102c6565b806318160ddd146104265780631bbae6e01461043b576102c6565b806313114a9d116102a457806313114a9d146103a2578063154cb200146103c95780631694505e146103f5576102c6565b806306fdde03146102cb578063095ea7b314610355576102c6565b366102c657005b600080fd5b3480156102d757600080fd5b506102e06109cd565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561031a578181015183820152602001610302565b50505050905090810190601f1680156103475780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036157600080fd5b5061038e6004803603604081101561037857600080fd5b506001600160a01b038135169060200135610a63565b604080519115158252519081900360200190f35b3480156103ae57600080fd5b506103b7610a81565b60408051918252519081900360200190f35b3480156103d557600080fd5b506103f3600480360360208110156103ec57600080fd5b5035610a87565b005b34801561040157600080fd5b5061040a610aee565b604080516001600160a01b039092168252519081900360200190f35b34801561043257600080fd5b506103b7610b12565b34801561044757600080fd5b506103f36004803603602081101561045e57600080fd5b5035610b18565b34801561047157600080fd5b506103f36004803603602081101561048857600080fd5b5035610b75565b34801561049b57600080fd5b5061038e600480360360608110156104b257600080fd5b506001600160a01b03813581169160208101359091169060400135610bd2565b3480156104de57600080fd5b506103b7600480360360208110156104f557600080fd5b5035610c59565b34801561050857600080fd5b506103f36004803603602081101561051f57600080fd5b5035610cbb565b34801561053257600080fd5b5061053b610d3a565b6040805160ff9092168252519081900360200190f35b34801561055d57600080fd5b506103f36004803603602081101561057457600080fd5b50356001600160a01b0316610d43565b34801561059057600080fd5b5061038e600480360360408110156105a757600080fd5b506001600160a01b038135169060200135610f04565b3480156105c957600080fd5b506103f3600480360360208110156105e057600080fd5b5035610f52565b3480156105f357600080fd5b506103f36004803603602081101561060a57600080fd5b50356001600160a01b031661102c565b34801561062657600080fd5b506103b76004803603604081101561063d57600080fd5b508035906020013515156111b4565b34801561065857600080fd5b5061040a611246565b34801561066d57600080fd5b5061038e61126a565b34801561068257600080fd5b506103f361127a565b34801561069757600080fd5b506103f3600480360360208110156106ae57600080fd5b50356001600160a01b03166112e8565b3480156106ca57600080fd5b5061038e600480360360208110156106e157600080fd5b50356001600160a01b03166114ca565b3480156106fd57600080fd5b506103f36004803603602081101561071457600080fd5b50356114e8565b34801561072757600080fd5b506103b76004803603602081101561073e57600080fd5b50356001600160a01b0316611545565b34801561075a57600080fd5b506103f36115a7565b34801561076f57600080fd5b506103f36004803603602081101561078657600080fd5b50356001600160a01b0316611649565b3480156107a257600080fd5b506103b76117d6565b3480156107b757600080fd5b5061038e600480360360208110156107ce57600080fd5b50356001600160a01b03166117dc565b3480156107ea57600080fd5b5061040a6117fa565b3480156107ff57600080fd5b506102e0611809565b34801561081457600080fd5b5061038e6004803603604081101561082b57600080fd5b506001600160a01b03813516906020013561186a565b34801561084d57600080fd5b506103f36004803603602081101561086457600080fd5b50356118d2565b34801561087757600080fd5b5061038e6004803603604081101561088e57600080fd5b506001600160a01b03813516906020013561192f565b3480156108b057600080fd5b506103f3600480360360408110156108c757600080fd5b506001600160a01b0381351690602001351515611943565b3480156108eb57600080fd5b506103f36004803603602081101561090257600080fd5b50356119c6565b34801561091557600080fd5b506103f36004803603602081101561092c57600080fd5b50351515611a23565b34801561094157600080fd5b506103b76004803603604081101561095857600080fd5b506001600160a01b0381358116916020013516611ab4565b34801561097c57600080fd5b506103f36004803603602081101561099357600080fd5b50356001600160a01b0316611adf565b3480156109af57600080fd5b506103f3611bd7565b3480156109c457600080fd5b506103b7611c39565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a595780601f10610a2e57610100808354040283529160200191610a59565b820191906000526020600020905b815481529060010190602001808311610a3c57829003601f168201915b5050505050905090565b6000610a77610a70611c3d565b8484611c41565b5060015b92915050565b600d5490565b610a8f611c3d565b6000546001600160a01b03908116911614610adf576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b670de0b6b3a764000002601855565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b610b20611c3d565b6000546001600160a01b03908116911614610b70576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b601955565b610b7d611c3d565b6000546001600160a01b03908116911614610bcd576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b601a55565b6000610bdf848484611d2d565b610c4f84610beb611c3d565b610c4a856040518060600160405280602881526020016130ef602891396001600160a01b038a16600090815260056020526040812090610c29611c3d565b6001600160a01b0316815260208101919091526040016000205491906121c7565b611c41565b5060019392505050565b6000600c54821115610c9c5760405162461bcd60e51b815260040180806020018281038252602a815260200180613005602a913960400191505060405180910390fd5b6000610ca661225e565b9050610cb28382612281565b9150505b919050565b610cc3611c3d565b6000546001600160a01b03908116911614610d13576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b610d2530610d1f6117fa565b83611c41565b610d3730610d316117fa565b83611d2d565b50565b60105460ff1690565b610d4b611c3d565b6000546001600160a01b03908116911614610d9b576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610e08576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610f0057816001600160a01b031660088281548110610e2c57fe5b6000918252602090912001546001600160a01b03161415610ef857600880546000198101908110610e5957fe5b600091825260209091200154600880546001600160a01b039092169183908110610e7f57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610ed157fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610f00565b600101610e0b565b5050565b6000610a77610f11611c3d565b84610c4a8560056000610f22611c3d565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122ca565b6000610f5c611c3d565b6001600160a01b03811660009081526007602052604090205490915060ff1615610fb75760405162461bcd60e51b815260040180806020018281038252602c8152602001806131ef602c913960400191505060405180910390fd5b6000610fc283612324565b505050506001600160a01b038416600090815260036020526040902054919250610fee91905082612394565b6001600160a01b038316600090815260036020526040902055600c546110149082612394565b600c55600d5461102490846122ca565b600d55505050565b611034611c3d565b6000546001600160a01b03908116911614611084576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156110e05760405162461bcd60e51b81526004018080602001828103825260248152602001806131606024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff161561114e576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b5483111561120d576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161122c57600061121d84612324565b50939550610a7b945050505050565b600061123784612324565b50929550610a7b945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601754600160a81b900460ff1681565b611282611c3d565b6000546001600160a01b039081169116146112d2576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b60006112dd30611545565b9050610d37816123d6565b6112f0611c3d565b6000546001600160a01b03908116911614611340576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561139c5760405162461bcd60e51b81526004018080602001828103825260228152602001806131cd6022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff161561140a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611464576001600160a01b03811660009081526003602052604090205461144a90610c59565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b6114f0611c3d565b6000546001600160a01b03908116911614611540576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b601155565b6001600160a01b03811660009081526007602052604081205460ff161561158557506001600160a01b038116600090815260046020526040902054610cb6565b6001600160a01b038216600090815260036020526040902054610a7b90610c59565b6115af611c3d565b6000546001600160a01b039081169116146115ff576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b611651611c3d565b6000546001600160a01b039081169116146116a1576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff1661170e576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610f0057816001600160a01b0316600a828154811061173257fe5b6000918252602090912001546001600160a01b031614156117ce57600a8054600019810190811061175f57fe5b600091825260209091200154600a80546001600160a01b03909216918390811061178557fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610ed157fe5b600101611711565b60185481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a595780601f10610a2e57610100808354040283529160200191610a59565b6000610a77611877611c3d565b84610c4a8560405180606001604052806025815260200161321b60259139600560006118a1611c3d565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906121c7565b6118da611c3d565b6000546001600160a01b0390811691161461192a576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b601255565b6000610a7761193c611c3d565b8484611d2d565b61194b611c3d565b6000546001600160a01b0390811691161461199b576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6119ce611c3d565b6000546001600160a01b03908116911614611a1e576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b601355565b611a2b611c3d565b6000546001600160a01b03908116911614611a7b576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b60178054911515600160a81b027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611ae7611c3d565b6000546001600160a01b03908116911614611b37576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b6001600160a01b038116611b7c5760405162461bcd60e51b815260040180806020018281038252602681526020018061302f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611bdf611c3d565b6000546001600160a01b03908116911614611c2f576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b47610d37816125e5565b4790565b3390565b6001600160a01b038316611c865760405162461bcd60e51b81526004018080602001828103825260248152602001806131a96024913960400191505060405180910390fd5b6001600160a01b038216611ccb5760405162461bcd60e51b81526004018080602001828103825260228152602001806130556022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611d725760405162461bcd60e51b81526004018080602001828103825260258152602001806131846025913960400191505060405180910390fd5b6001600160a01b038216611db75760405162461bcd60e51b8152600401808060200182810382526023815260200180612fe26023913960400191505060405180910390fd5b60008111611df65760405162461bcd60e51b81526004018080602001828103825260298152602001806131376029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611e64576040805162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20706f776572206865726521000000000000000000604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff1615611ed2576040805162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20706f776572206865726521000000000000000000604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615611f37576040805162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20706f776572206865726521000000000000000000604482015290519081900360640190fd5b611f3f6117fa565b6001600160a01b0316836001600160a01b031614158015611f795750611f636117fa565b6001600160a01b0316826001600160a01b031614155b1561201257601954811115611fbf5760405162461bcd60e51b81526004018080602001828103825260288152602001806130a66028913960400191505060405180910390fd5b601954611fd582611fcf85611545565b906122ca565b11156120125760405162461bcd60e51b815260040180806020018281038252602f815260200180613077602f913960400191505060405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561206c57506001600160a01b03821660009081526006602052604090205460ff16155b156120c8576018548111156120c8576040805162461bcd60e51b815260206004820152601e60248201527f796f752061726520657863656564696e67206d6178427579416d6f756e740000604482015290519081900360640190fd5b60006120d330611545565b905060195481106120e357506019545b601a546017549082101590600160a01b900460ff1615801561210e5750601754600160a81b900460ff165b80156121175750805b801561215557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b1561216857601a5491506121688261261f565b6001600160a01b03851660009081526006602052604090205460019060ff16806121aa57506001600160a01b03851660009081526006602052604090205460ff165b156121b3575060005b6121bf86868684612735565b505050505050565b600081848411156122565760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561221b578181015183820152602001612203565b50505050905090810190601f1680156122485780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061226b6128a9565b909250905061227a8282612281565b9250505090565b60006122c383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a0c565b9392505050565b6000828201838110156122c3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006123558a6011546123506013546012546122ca90919063ffffffff16565b612a71565b925092509250600061236561225e565b905060008060006123778e8786612ac0565b919e509c509a509598509396509194505050505091939550919395565b60006122c383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121c7565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061240457fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561247d57600080fd5b505afa158015612491573d6000803e3d6000fd5b505050506040513d60208110156124a757600080fd5b50518151829060019081106124b857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612503307f000000000000000000000000000000000000000000000000000000000000000084611c41565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156125a8578181015183820152602001612590565b505050509050019650505050505050600060405180830381600087803b1580156125d157600080fd5b505af11580156121bf573d6000803e3d6000fd5b6017546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610f00573d6000803e3d6000fd5b6017805460ff60a01b1916600160a01b17905560135460125460009161265c91612648916122ca565b601254612656908590612afc565b90612281565b9050600061266a8383612394565b90506000612679826002612281565b905060006126878383612394565b905047600061269684876122ca565b90506126a1816123d6565b60006126ad4784612394565b905060006126bf836126568489612afc565b90506126cb8582612b55565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a161271d6127188383612394565b6125e5565b50506017805460ff60a01b1916905550505050505050565b8061274257612742612c53565b6001600160a01b03841660009081526007602052604090205460ff16801561278357506001600160a01b03831660009081526007602052604090205460ff16155b1561279857612793848484612c9c565b612896565b6001600160a01b03841660009081526007602052604090205460ff161580156127d957506001600160a01b03831660009081526007602052604090205460ff165b156127e957612793848484612dc0565b6001600160a01b03841660009081526007602052604090205460ff1615801561282b57506001600160a01b03831660009081526007602052604090205460ff16155b1561283b57612793848484612e69565b6001600160a01b03841660009081526007602052604090205460ff16801561287b57506001600160a01b03831660009081526007602052604090205460ff165b1561288b57612793848484612ead565b612896848484612e69565b806128a3576128a3612f20565b50505050565b600c54600b546000918291825b6008548110156129da578260036000600884815481106128d257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612937575081600460006008848154811061291057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561294e57600c54600b5494509450505050612a08565b61298e600360006008848154811061296257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612394565b92506129d060046000600884815481106129a457fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612394565b91506001016128b6565b50600b54600c546129ea91612281565b821015612a0257600c54600b54935093505050612a08565b90925090505b9091565b60008183612a5b5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561221b578181015183820152602001612203565b506000838581612a6757fe5b0495945050505050565b6000808080612a8560646126568989612afc565b90506000612a9860646126568a89612afc565b90506000612ab087612aaa8b86612394565b90612394565b9992985090965090945050505050565b6000808080612acf8786612afc565b90506000612add8787612afc565b90506000612aeb8383612394565b929992985090965090945050505050565b600082612b0b57506000610a7b565b82820282848281612b1857fe5b04146122c35760405162461bcd60e51b81526004018080602001828103825260218152602001806130ce6021913960400191505060405180910390fd5b612b80307f000000000000000000000000000000000000000000000000000000000000000084611c41565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080612bbd6117fa565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612c2857600080fd5b505af1158015612c3c573d6000803e3d6000fd5b50505050506040513d60608110156128a357600080fd5b601154158015612c635750601254155b8015612c6f5750601354155b15612c7957612c9a565b60118054601455601280546015556013805460165560009283905590829055555b565b600080600080600080612cae87612324565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ce09088612394565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612d0f9087612394565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612d3e90866122ca565b6001600160a01b038916600090815260036020526040902055612d6081612f34565b612d6a8483612fbd565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612dd287612324565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612e049087612394565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612e3a90846122ca565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612d3e90866122ca565b600080600080600080612e7b87612324565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612d0f9087612394565b600080600080600080612ebf87612324565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ef19088612394565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612e049087612394565b601454601155601554601255601654601355565b6000612f3e61225e565b90506000612f4c8383612afc565b30600090815260036020526040902054909150612f6990826122ca565b3060009081526003602090815260408083209390935560079052205460ff1615612fb85730600090815260046020526040902054612fa790846122ca565b306000908152600460205260409020555b505050565b600c54612fca9083612394565b600c55600d54612fda90826122ca565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416c726561647920626f75676874206d61785478416d6f756e742c20776169742074696c6c20636865636b206f66665472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220651200eb1efc04e05465aad7654e7e6ce7e127a94bfdefe0b57954183785947964736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102bf5760003560e01c806352390c021161016e578063a457c2d7116100cb578063c49b9a801161007f578063f2fde38b11610064578063f2fde38b14610970578063f4293890146109a3578063f815a842146109b8576102c6565b8063c49b9a8014610909578063dd62ed3e14610935576102c6565b8063a9059cbb116100b0578063a9059cbb1461086b578063af9549e0146108a4578063bcd6d446146108df576102c6565b8063a457c2d714610808578063a52fe9bb14610841576102c6565b80637ded4d6a1161012257806388f820201161010757806388f82020146107ab5780638da5cb5b146107de57806395d89b41146107f3576102c6565b80637ded4d6a1461076357806388e765ff14610796576102c6565b80635880b873116101535780635880b873146106f157806370a082311461071b578063715018a61461074e576102c6565b806352390c021461068b5780635342acb4146106be576102c6565b806330599fc51161021c5780634303443d116101d057806349bd5a5e116101b557806349bd5a5e1461064c5780634a74bb021461066157806351bc3c8514610676576102c6565b80634303443d146105e75780634549b0391461061a576102c6565b80633685d419116102015780633685d4191461055157806339509351146105845780633bd5d173146105bd576102c6565b806330599fc5146104fc578063313ce56714610526576102c6565b806318160ddd116102735780631decaadc116102585780631decaadc1461046557806323b872dd1461048f5780632d838119146104d2576102c6565b806318160ddd146104265780631bbae6e01461043b576102c6565b806313114a9d116102a457806313114a9d146103a2578063154cb200146103c95780631694505e146103f5576102c6565b806306fdde03146102cb578063095ea7b314610355576102c6565b366102c657005b600080fd5b3480156102d757600080fd5b506102e06109cd565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561031a578181015183820152602001610302565b50505050905090810190601f1680156103475780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036157600080fd5b5061038e6004803603604081101561037857600080fd5b506001600160a01b038135169060200135610a63565b604080519115158252519081900360200190f35b3480156103ae57600080fd5b506103b7610a81565b60408051918252519081900360200190f35b3480156103d557600080fd5b506103f3600480360360208110156103ec57600080fd5b5035610a87565b005b34801561040157600080fd5b5061040a610aee565b604080516001600160a01b039092168252519081900360200190f35b34801561043257600080fd5b506103b7610b12565b34801561044757600080fd5b506103f36004803603602081101561045e57600080fd5b5035610b18565b34801561047157600080fd5b506103f36004803603602081101561048857600080fd5b5035610b75565b34801561049b57600080fd5b5061038e600480360360608110156104b257600080fd5b506001600160a01b03813581169160208101359091169060400135610bd2565b3480156104de57600080fd5b506103b7600480360360208110156104f557600080fd5b5035610c59565b34801561050857600080fd5b506103f36004803603602081101561051f57600080fd5b5035610cbb565b34801561053257600080fd5b5061053b610d3a565b6040805160ff9092168252519081900360200190f35b34801561055d57600080fd5b506103f36004803603602081101561057457600080fd5b50356001600160a01b0316610d43565b34801561059057600080fd5b5061038e600480360360408110156105a757600080fd5b506001600160a01b038135169060200135610f04565b3480156105c957600080fd5b506103f3600480360360208110156105e057600080fd5b5035610f52565b3480156105f357600080fd5b506103f36004803603602081101561060a57600080fd5b50356001600160a01b031661102c565b34801561062657600080fd5b506103b76004803603604081101561063d57600080fd5b508035906020013515156111b4565b34801561065857600080fd5b5061040a611246565b34801561066d57600080fd5b5061038e61126a565b34801561068257600080fd5b506103f361127a565b34801561069757600080fd5b506103f3600480360360208110156106ae57600080fd5b50356001600160a01b03166112e8565b3480156106ca57600080fd5b5061038e600480360360208110156106e157600080fd5b50356001600160a01b03166114ca565b3480156106fd57600080fd5b506103f36004803603602081101561071457600080fd5b50356114e8565b34801561072757600080fd5b506103b76004803603602081101561073e57600080fd5b50356001600160a01b0316611545565b34801561075a57600080fd5b506103f36115a7565b34801561076f57600080fd5b506103f36004803603602081101561078657600080fd5b50356001600160a01b0316611649565b3480156107a257600080fd5b506103b76117d6565b3480156107b757600080fd5b5061038e600480360360208110156107ce57600080fd5b50356001600160a01b03166117dc565b3480156107ea57600080fd5b5061040a6117fa565b3480156107ff57600080fd5b506102e0611809565b34801561081457600080fd5b5061038e6004803603604081101561082b57600080fd5b506001600160a01b03813516906020013561186a565b34801561084d57600080fd5b506103f36004803603602081101561086457600080fd5b50356118d2565b34801561087757600080fd5b5061038e6004803603604081101561088e57600080fd5b506001600160a01b03813516906020013561192f565b3480156108b057600080fd5b506103f3600480360360408110156108c757600080fd5b506001600160a01b0381351690602001351515611943565b3480156108eb57600080fd5b506103f36004803603602081101561090257600080fd5b50356119c6565b34801561091557600080fd5b506103f36004803603602081101561092c57600080fd5b50351515611a23565b34801561094157600080fd5b506103b76004803603604081101561095857600080fd5b506001600160a01b0381358116916020013516611ab4565b34801561097c57600080fd5b506103f36004803603602081101561099357600080fd5b50356001600160a01b0316611adf565b3480156109af57600080fd5b506103f3611bd7565b3480156109c457600080fd5b506103b7611c39565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a595780601f10610a2e57610100808354040283529160200191610a59565b820191906000526020600020905b815481529060010190602001808311610a3c57829003601f168201915b5050505050905090565b6000610a77610a70611c3d565b8484611c41565b5060015b92915050565b600d5490565b610a8f611c3d565b6000546001600160a01b03908116911614610adf576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b670de0b6b3a764000002601855565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b610b20611c3d565b6000546001600160a01b03908116911614610b70576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b601955565b610b7d611c3d565b6000546001600160a01b03908116911614610bcd576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b601a55565b6000610bdf848484611d2d565b610c4f84610beb611c3d565b610c4a856040518060600160405280602881526020016130ef602891396001600160a01b038a16600090815260056020526040812090610c29611c3d565b6001600160a01b0316815260208101919091526040016000205491906121c7565b611c41565b5060019392505050565b6000600c54821115610c9c5760405162461bcd60e51b815260040180806020018281038252602a815260200180613005602a913960400191505060405180910390fd5b6000610ca661225e565b9050610cb28382612281565b9150505b919050565b610cc3611c3d565b6000546001600160a01b03908116911614610d13576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b610d2530610d1f6117fa565b83611c41565b610d3730610d316117fa565b83611d2d565b50565b60105460ff1690565b610d4b611c3d565b6000546001600160a01b03908116911614610d9b576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610e08576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610f0057816001600160a01b031660088281548110610e2c57fe5b6000918252602090912001546001600160a01b03161415610ef857600880546000198101908110610e5957fe5b600091825260209091200154600880546001600160a01b039092169183908110610e7f57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610ed157fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610f00565b600101610e0b565b5050565b6000610a77610f11611c3d565b84610c4a8560056000610f22611c3d565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122ca565b6000610f5c611c3d565b6001600160a01b03811660009081526007602052604090205490915060ff1615610fb75760405162461bcd60e51b815260040180806020018281038252602c8152602001806131ef602c913960400191505060405180910390fd5b6000610fc283612324565b505050506001600160a01b038416600090815260036020526040902054919250610fee91905082612394565b6001600160a01b038316600090815260036020526040902055600c546110149082612394565b600c55600d5461102490846122ca565b600d55505050565b611034611c3d565b6000546001600160a01b03908116911614611084576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156110e05760405162461bcd60e51b81526004018080602001828103825260248152602001806131606024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff161561114e576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b5483111561120d576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161122c57600061121d84612324565b50939550610a7b945050505050565b600061123784612324565b50929550610a7b945050505050565b7f00000000000000000000000002ef1ab60bad42c8bc6d97ac579197715b5a3a0081565b601754600160a81b900460ff1681565b611282611c3d565b6000546001600160a01b039081169116146112d2576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b60006112dd30611545565b9050610d37816123d6565b6112f0611c3d565b6000546001600160a01b03908116911614611340576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561139c5760405162461bcd60e51b81526004018080602001828103825260228152602001806131cd6022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff161561140a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611464576001600160a01b03811660009081526003602052604090205461144a90610c59565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b6114f0611c3d565b6000546001600160a01b03908116911614611540576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b601155565b6001600160a01b03811660009081526007602052604081205460ff161561158557506001600160a01b038116600090815260046020526040902054610cb6565b6001600160a01b038216600090815260036020526040902054610a7b90610c59565b6115af611c3d565b6000546001600160a01b039081169116146115ff576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b611651611c3d565b6000546001600160a01b039081169116146116a1576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff1661170e576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610f0057816001600160a01b0316600a828154811061173257fe5b6000918252602090912001546001600160a01b031614156117ce57600a8054600019810190811061175f57fe5b600091825260209091200154600a80546001600160a01b03909216918390811061178557fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610ed157fe5b600101611711565b60185481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a595780601f10610a2e57610100808354040283529160200191610a59565b6000610a77611877611c3d565b84610c4a8560405180606001604052806025815260200161321b60259139600560006118a1611c3d565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906121c7565b6118da611c3d565b6000546001600160a01b0390811691161461192a576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b601255565b6000610a7761193c611c3d565b8484611d2d565b61194b611c3d565b6000546001600160a01b0390811691161461199b576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6119ce611c3d565b6000546001600160a01b03908116911614611a1e576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b601355565b611a2b611c3d565b6000546001600160a01b03908116911614611a7b576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b60178054911515600160a81b027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611ae7611c3d565b6000546001600160a01b03908116911614611b37576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b6001600160a01b038116611b7c5760405162461bcd60e51b815260040180806020018281038252602681526020018061302f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611bdf611c3d565b6000546001600160a01b03908116911614611c2f576040805162461bcd60e51b81526020600482018190526024820152600080516020613117833981519152604482015290519081900360640190fd5b47610d37816125e5565b4790565b3390565b6001600160a01b038316611c865760405162461bcd60e51b81526004018080602001828103825260248152602001806131a96024913960400191505060405180910390fd5b6001600160a01b038216611ccb5760405162461bcd60e51b81526004018080602001828103825260228152602001806130556022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611d725760405162461bcd60e51b81526004018080602001828103825260258152602001806131846025913960400191505060405180910390fd5b6001600160a01b038216611db75760405162461bcd60e51b8152600401808060200182810382526023815260200180612fe26023913960400191505060405180910390fd5b60008111611df65760405162461bcd60e51b81526004018080602001828103825260298152602001806131376029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611e64576040805162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20706f776572206865726521000000000000000000604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff1615611ed2576040805162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20706f776572206865726521000000000000000000604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615611f37576040805162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20706f776572206865726521000000000000000000604482015290519081900360640190fd5b611f3f6117fa565b6001600160a01b0316836001600160a01b031614158015611f795750611f636117fa565b6001600160a01b0316826001600160a01b031614155b1561201257601954811115611fbf5760405162461bcd60e51b81526004018080602001828103825260288152602001806130a66028913960400191505060405180910390fd5b601954611fd582611fcf85611545565b906122ca565b11156120125760405162461bcd60e51b815260040180806020018281038252602f815260200180613077602f913960400191505060405180910390fd5b7f00000000000000000000000002ef1ab60bad42c8bc6d97ac579197715b5a3a006001600160a01b0316836001600160a01b031614801561206c57506001600160a01b03821660009081526006602052604090205460ff16155b156120c8576018548111156120c8576040805162461bcd60e51b815260206004820152601e60248201527f796f752061726520657863656564696e67206d6178427579416d6f756e740000604482015290519081900360640190fd5b60006120d330611545565b905060195481106120e357506019545b601a546017549082101590600160a01b900460ff1615801561210e5750601754600160a81b900460ff165b80156121175750805b801561215557507f00000000000000000000000002ef1ab60bad42c8bc6d97ac579197715b5a3a006001600160a01b0316856001600160a01b031614155b1561216857601a5491506121688261261f565b6001600160a01b03851660009081526006602052604090205460019060ff16806121aa57506001600160a01b03851660009081526006602052604090205460ff165b156121b3575060005b6121bf86868684612735565b505050505050565b600081848411156122565760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561221b578181015183820152602001612203565b50505050905090810190601f1680156122485780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061226b6128a9565b909250905061227a8282612281565b9250505090565b60006122c383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a0c565b9392505050565b6000828201838110156122c3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006123558a6011546123506013546012546122ca90919063ffffffff16565b612a71565b925092509250600061236561225e565b905060008060006123778e8786612ac0565b919e509c509a509598509396509194505050505091939550919395565b60006122c383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121c7565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061240457fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561247d57600080fd5b505afa158015612491573d6000803e3d6000fd5b505050506040513d60208110156124a757600080fd5b50518151829060019081106124b857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612503307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c41565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156125a8578181015183820152602001612590565b505050509050019650505050505050600060405180830381600087803b1580156125d157600080fd5b505af11580156121bf573d6000803e3d6000fd5b6017546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610f00573d6000803e3d6000fd5b6017805460ff60a01b1916600160a01b17905560135460125460009161265c91612648916122ca565b601254612656908590612afc565b90612281565b9050600061266a8383612394565b90506000612679826002612281565b905060006126878383612394565b905047600061269684876122ca565b90506126a1816123d6565b60006126ad4784612394565b905060006126bf836126568489612afc565b90506126cb8582612b55565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a161271d6127188383612394565b6125e5565b50506017805460ff60a01b1916905550505050505050565b8061274257612742612c53565b6001600160a01b03841660009081526007602052604090205460ff16801561278357506001600160a01b03831660009081526007602052604090205460ff16155b1561279857612793848484612c9c565b612896565b6001600160a01b03841660009081526007602052604090205460ff161580156127d957506001600160a01b03831660009081526007602052604090205460ff165b156127e957612793848484612dc0565b6001600160a01b03841660009081526007602052604090205460ff1615801561282b57506001600160a01b03831660009081526007602052604090205460ff16155b1561283b57612793848484612e69565b6001600160a01b03841660009081526007602052604090205460ff16801561287b57506001600160a01b03831660009081526007602052604090205460ff165b1561288b57612793848484612ead565b612896848484612e69565b806128a3576128a3612f20565b50505050565b600c54600b546000918291825b6008548110156129da578260036000600884815481106128d257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612937575081600460006008848154811061291057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561294e57600c54600b5494509450505050612a08565b61298e600360006008848154811061296257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612394565b92506129d060046000600884815481106129a457fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612394565b91506001016128b6565b50600b54600c546129ea91612281565b821015612a0257600c54600b54935093505050612a08565b90925090505b9091565b60008183612a5b5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561221b578181015183820152602001612203565b506000838581612a6757fe5b0495945050505050565b6000808080612a8560646126568989612afc565b90506000612a9860646126568a89612afc565b90506000612ab087612aaa8b86612394565b90612394565b9992985090965090945050505050565b6000808080612acf8786612afc565b90506000612add8787612afc565b90506000612aeb8383612394565b929992985090965090945050505050565b600082612b0b57506000610a7b565b82820282848281612b1857fe5b04146122c35760405162461bcd60e51b81526004018080602001828103825260218152602001806130ce6021913960400191505060405180910390fd5b612b80307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c41565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080612bbd6117fa565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612c2857600080fd5b505af1158015612c3c573d6000803e3d6000fd5b50505050506040513d60608110156128a357600080fd5b601154158015612c635750601254155b8015612c6f5750601354155b15612c7957612c9a565b60118054601455601280546015556013805460165560009283905590829055555b565b600080600080600080612cae87612324565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ce09088612394565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612d0f9087612394565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612d3e90866122ca565b6001600160a01b038916600090815260036020526040902055612d6081612f34565b612d6a8483612fbd565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612dd287612324565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612e049087612394565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612e3a90846122ca565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612d3e90866122ca565b600080600080600080612e7b87612324565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612d0f9087612394565b600080600080600080612ebf87612324565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ef19088612394565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612e049087612394565b601454601155601554601255601654601355565b6000612f3e61225e565b90506000612f4c8383612afc565b30600090815260036020526040902054909150612f6990826122ca565b3060009081526003602090815260408083209390935560079052205460ff1615612fb85730600090815260046020526040902054612fa790846122ca565b306000908152600460205260409020555b505050565b600c54612fca9083612394565b600c55600d54612fda90826122ca565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416c726561647920626f75676874206d61785478416d6f756e742c20776169742074696c6c20636865636b206f66665472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220651200eb1efc04e05465aad7654e7e6ce7e127a94bfdefe0b57954183785947964736f6c634300060c0033

Deployed Bytecode Sourcemap

23355:23363:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27673:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28585:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28585:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29851:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;46386:129;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46386:129:0;;:::i;:::-;;24651:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;24651:51:0;;;;;;;;;;;;;;27950:95;;;;;;;;;;;;;:::i;46262:112::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46262:112:0;;:::i;46070:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46070:184:0;;:::i;28754:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28754:313:0;;;;;;;;;;;;;;;;;:::i;30775:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30775:253:0;;:::i;46523:192::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46523:192:0;;:::i;27859:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31490:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31490:479:0;-1:-1:-1;;;;;31490:479:0;;:::i;29075:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29075:218:0;;;;;;;;:::i;29946:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29946:377:0;;:::i;31977:352::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31977:352:0;-1:-1:-1;;;;;31977:352:0;;:::i;30331:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30331:436:0;;;;;;;;;:::i;24709:38::-;;;;;;;;;;;;;:::i;24792:40::-;;;;;;;;;;;;;:::i;38976:156::-;;;;;;;;;;;;;:::i;31036:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31036:446:0;-1:-1:-1;;;;;31036:446:0;;:::i;33366:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33366:123:0;-1:-1:-1;;;;;33366:123:0;;:::i;45722:92::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45722:92:0;;:::i;28053:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28053:198:0;-1:-1:-1;;;;;28053:198:0;;:::i;14847:148::-;;;;;;;;;;;;;:::i;32337:500::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32337:500:0;-1:-1:-1;;;;;32337:500:0;;:::i;24845:52::-;;;;;;;;;;;;;:::i;29578:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29578:120:0;-1:-1:-1;;;;;29578:120:0;;:::i;14213:79::-;;;;;;;;;;;;;:::i;27764:87::-;;;;;;;;;;;;;:::i;29301:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29301:269:0;;;;;;;;:::i;45822:116::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45822:116:0;;:::i;28259:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28259:167:0;;;;;;;;:::i;29706:137::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29706:137:0;;;;;;;;;;:::i;45946:116::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45946:116:0;;:::i;39307:148::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39307:148:0;;;;:::i;28434:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28434:143:0;;;;;;;;;;:::i;15147:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15147:244:0;-1:-1:-1;;;;;15147:244:0;;:::i;39140:159::-;;;;;;;;;;;;;:::i;45604:110::-;;;;;;;;;;;;;:::i;27673:83::-;27743:5;27736:12;;;;;;;;-1:-1:-1;;27736:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27710:13;;27736:12;;27743:5;;27736:12;;27743:5;27736:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27673:83;:::o;28585:161::-;28660:4;28677:39;28686:12;:10;:12::i;:::-;28700:7;28709:6;28677:8;:39::i;:::-;-1:-1:-1;28734:4:0;28585:161;;;;;:::o;29851:87::-;29920:10;;29851:87;:::o;46386:129::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;46501:6:::1;46485:22;46470:12;:37:::0;46386:129::o;24651:51::-;;;:::o;27950:95::-;28030:7;;27950:95;:::o;46262:112::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;46340:12:::1;:26:::0;46262:112::o;46070:184::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;46184:30:::1;:62:::0;46070:184::o;28754:313::-;28852:4;28869:36;28879:6;28887:9;28898:6;28869:9;:36::i;:::-;28916:121;28925:6;28933:12;:10;:12::i;:::-;28947:89;28985:6;28947:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28947:19:0;;;;;;:11;:19;;;;;;28967:12;:10;:12::i;:::-;-1:-1:-1;;;;;28947:33:0;;;;;;;;;;;;-1:-1:-1;28947:33:0;;;:89;:37;:89::i;:::-;28916:8;:121::i;:::-;-1:-1:-1;29055:4:0;28754:313;;;;;:::o;30775:253::-;30841:7;30880;;30869;:18;;30861:73;;;;-1:-1:-1;;;30861:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30945:19;30968:10;:8;:10::i;:::-;30945:33;-1:-1:-1;30996:24:0;:7;30945:33;30996:11;:24::i;:::-;30989:31;;;30775:253;;;;:::o;46523:192::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;46605:45:::1;46622:4;46629:7;:5;:7::i;:::-;46638:11;46605:8;:45::i;:::-;46661:46;46679:4;46686:7;:5;:7::i;:::-;46695:11;46661:9;:46::i;:::-;46523:192:::0;:::o;27859:83::-;27925:9;;;;27859:83;:::o;31490:479::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31572:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31564:60;;;::::0;;-1:-1:-1;;;31564:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31640:9;31635:327;31659:9;:16:::0;31655:20;::::1;31635:327;;;31717:7;-1:-1:-1::0;;;;;31701:23:0::1;:9;31711:1;31701:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;31701:12:0::1;:23;31697:254;;;31760:9;31770:16:::0;;-1:-1:-1;;31770:20:0;;;31760:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;31745:9:::1;:12:::0;;-1:-1:-1;;;;;31760:31:0;;::::1;::::0;31755:1;;31745:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;31745:46:0::1;-1:-1:-1::0;;;;;31745:46:0;;::::1;;::::0;;31810:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;31849:11:::1;:20:::0;;;;:28;;-1:-1:-1;;31849:28:0::1;::::0;;31896:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;31896:15:0;;;;;-1:-1:-1;;;;;;31896:15:0::1;::::0;;;;;31930:5:::1;;31697:254;31677:3;;31635:327;;;;31490:479:::0;:::o;29075:218::-;29163:4;29180:83;29189:12;:10;:12::i;:::-;29203:7;29212:50;29251:10;29212:11;:25;29224:12;:10;:12::i;:::-;-1:-1:-1;;;;;29212:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29212:25:0;;;:34;;;;;;;;;;;:38;:50::i;29946:377::-;29998:14;30015:12;:10;:12::i;:::-;-1:-1:-1;;;;;30047:19:0;;;;;;:11;:19;;;;;;29998:29;;-1:-1:-1;30047:19:0;;30046:20;30038:77;;;;-1:-1:-1;;;30038:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30127:15;30151:19;30162:7;30151:10;:19::i;:::-;-1:-1:-1;;;;;;;;;30199:15:0;;;;;;:7;:15;;;;;;30126:44;;-1:-1:-1;30199:28:0;;:15;-1:-1:-1;30126:44:0;30199:19;:28::i;:::-;-1:-1:-1;;;;;30181:15:0;;;;;;:7;:15;;;;;:46;30248:7;;:20;;30260:7;30248:11;:20::i;:::-;30238:7;:30;30292:10;;:23;;30307:7;30292:14;:23::i;:::-;30279:10;:36;-1:-1:-1;;;29946:377:0:o;31977:352::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;32072:42:::1;-1:-1:-1::0;;;;;32061:53:0;::::1;;;32053:102;;;;-1:-1:-1::0;;;32053:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32175:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32174:27;32166:70;;;::::0;;-1:-1:-1;;;32166:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32247:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;32247:33:0::1;32276:4;32247:33:::0;;::::1;::::0;;;32291:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32291:30:0::1;::::0;;::::1;::::0;;31977:352::o;30331:436::-;30421:7;30460;;30449;:18;;30441:62;;;;;-1:-1:-1;;;30441:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30519:17;30514:246;;30554:15;30578:19;30589:7;30578:10;:19::i;:::-;-1:-1:-1;30553:44:0;;-1:-1:-1;30612:14:0;;-1:-1:-1;;;;;30612:14:0;30514:246;30661:23;30692:19;30703:7;30692:10;:19::i;:::-;-1:-1:-1;30659:52:0;;-1:-1:-1;30726:22:0;;-1:-1:-1;;;;;30726:22:0;24709:38;;;:::o;24792:40::-;;;-1:-1:-1;;;24792:40:0;;;;;:::o;38976:156::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;39030:23:::1;39056:24;39074:4;39056:9;:24::i;:::-;39030:50;;39091:33;39108:15;39091:16;:33::i;31036:446::-:0;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;31131:42:::1;-1:-1:-1::0;;;;;31120:53:0;::::1;;;31112:100;;;;-1:-1:-1::0;;;31112:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;31232:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31231:21;31223:61;;;::::0;;-1:-1:-1;;;31223:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31298:16:0;::::1;31317:1;31298:16:::0;;;:7:::1;:16;::::0;;;;;:20;31295:108:::1;;-1:-1:-1::0;;;;;31374:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;31354:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;31335:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;31295:108:::1;-1:-1:-1::0;;;;;31413:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;31413:27:0::1;31436:4;31413:27:::0;;::::1;::::0;;;31451:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31451:23:0::1;::::0;;::::1;::::0;;31036:446::o;33366:123::-;-1:-1:-1;;;;;33454:27:0;33430:4;33454:27;;;:18;:27;;;;;;;;;33366:123::o;45722:92::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;45790:7:::1;:16:::0;45722:92::o;28053:198::-;-1:-1:-1;;;;;28143:20:0;;28119:7;28143:20;;;:11;:20;;;;;;;;28139:49;;;-1:-1:-1;;;;;;28172:16:0;;;;;;:7;:16;;;;;;28165:23;;28139:49;-1:-1:-1;;;;;28226:16:0;;;;;;:7;:16;;;;;;28206:37;;:19;:37::i;14847:148::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;14954:1:::1;14938:6:::0;;14917:40:::1;::::0;-1:-1:-1;;;;;14938:6:0;;::::1;::::0;14917:40:::1;::::0;14954:1;;14917:40:::1;14985:1;14968:19:::0;;-1:-1:-1;;;;;;14968:19:0::1;::::0;;14847:148::o;32337:500::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32426:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32418:65;;;::::0;;-1:-1:-1;;;32418:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32499:9;32494:336;32518:16;:23:::0;32514:27;::::1;32494:336;;;32590:7;-1:-1:-1::0;;;;;32567:30:0::1;:16;32584:1;32567:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32567:19:0::1;:30;32563:256;;;32640:16;32657:23:::0;;-1:-1:-1;;32657:27:0;;;32640:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32618:16:::1;:19:::0;;-1:-1:-1;;;;;32640:45:0;;::::1;::::0;32635:1;;32618:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;32618:67:0::1;-1:-1:-1::0;;;;;32618:67:0;;::::1;;::::0;;32704:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;32704:34:0::1;::::0;;32757:16:::1;:22:::0;;;::::1;;;32563:256;32543:3;;32494:336;;24845:52:::0;;;;:::o;29578:120::-;-1:-1:-1;;;;;29670:20:0;29646:4;29670:20;;;:11;:20;;;;;;;;;29578:120::o;14213:79::-;14251:7;14278:6;-1:-1:-1;;;;;14278:6:0;14213:79;:::o;27764:87::-;27836:7;27829:14;;;;;;;;-1:-1:-1;;27829:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27803:13;;27829:14;;27836:7;;27829:14;;27836:7;27829:14;;;;;;;;;;;;;;;;;;;;;;;;29301:269;29394:4;29411:129;29420:12;:10;:12::i;:::-;29434:7;29443:96;29482:15;29443:96;;;;;;;;;;;;;;;;;:11;:25;29455:12;:10;:12::i;:::-;-1:-1:-1;;;;;29443:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29443:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;45822:116::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;45902:13:::1;:28:::0;45822:116::o;28259:167::-;28337:4;28354:42;28364:12;:10;:12::i;:::-;28378:9;28389:6;28354:9;:42::i;29706:137::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29797:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;29797:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29706:137::o;45946:116::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;46026:13:::1;:28:::0;45946:116::o;39307:148::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;39401:21:::1;:46:::0;;;::::1;;-1:-1:-1::0;;;39401:46:0::1;::::0;;;::::1;::::0;;;::::1;::::0;;39307:148::o;28434:143::-;-1:-1:-1;;;;;28542:18:0;;;28515:7;28542:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28434:143::o;15147:244::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15236:22:0;::::1;15228:73;;;;-1:-1:-1::0;;;15228:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15338:6;::::0;;15317:38:::1;::::0;-1:-1:-1;;;;;15317:38:0;;::::1;::::0;15338:6;::::1;::::0;15317:38:::1;::::0;::::1;15366:6;:17:::0;;-1:-1:-1;;;;;;15366:17:0::1;-1:-1:-1::0;;;;;15366:17:0;;;::::1;::::0;;;::::1;::::0;;15147:244::o;39140:159::-;14433:12;:10;:12::i;:::-;14423:6;;-1:-1:-1;;;;;14423:6:0;;;:22;;;14415:67;;;;;-1:-1:-1;;;14415:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14415:67:0;;;;;;;;;;;;;;;39221:21:::1;39253:38;39221:21:::0;39253:18:::1;:38::i;45604:110::-:0;45685:21;45604:110;:::o;106:106::-;194:10;106:106;:::o;33497:337::-;-1:-1:-1;;;;;33590:19:0;;33582:68;;;;-1:-1:-1;;;33582:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33669:21:0;;33661:68;;;;-1:-1:-1;;;33661:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33742:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33794:32;;;;;;;;;;;;;;;;;33497:337;;;:::o;33842:2418::-;-1:-1:-1;;;;;33939:20:0;;33931:70;;;;-1:-1:-1;;;33931:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34020:23:0;;34012:71;;;;-1:-1:-1;;;34012:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34111:1;34102:6;:10;34094:64;;;;-1:-1:-1;;;34094:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34178:25:0;;;;;;:17;:25;;;;;;;;34177:26;34169:62;;;;;-1:-1:-1;;;34169:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34251:28:0;;;;;;:17;:28;;;;;;;;34250:29;34242:65;;;;;-1:-1:-1;;;34242:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34345:9;34327:28;;;;:17;:28;;;;;;;;34326:29;34318:65;;;;;-1:-1:-1;;;34318:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34409:7;:5;:7::i;:::-;-1:-1:-1;;;;;34399:17:0;:6;-1:-1:-1;;;;;34399:17:0;;;:41;;;;;34433:7;:5;:7::i;:::-;-1:-1:-1;;;;;34420:20:0;:9;-1:-1:-1;;;;;34420:20:0;;;34399:41;34396:430;;;34475:12;;34465:6;:22;;34457:75;;;;-1:-1:-1;;;34457:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34750:12;;34714:32;34739:6;34714:20;34724:9;34714;:20::i;:::-;:24;;:32::i;:::-;:48;;34706:108;;;;-1:-1:-1;;;34706:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34859:13;-1:-1:-1;;;;;34849:23:0;:6;-1:-1:-1;;;;;34849:23:0;;:57;;;;-1:-1:-1;;;;;;34877:29:0;;;;;;:18;:29;;;;;;;;34876:30;34849:57;34846:153;;;34940:12;;34930:6;:22;;34922:65;;;;;-1:-1:-1;;;34922:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35293:28;35324:24;35342:4;35324:9;:24::i;:::-;35293:55;;35388:12;;35364:20;:36;35361:112;;-1:-1:-1;35449:12:0;;35361:112;35536:30;;35582:16;;35512:54;;;;;-1:-1:-1;;;35582:16:0;;;;35581:17;:42;;;;-1:-1:-1;35602:21:0;;-1:-1:-1;;;35602:21:0;;;;35581:42;:65;;;;;35627:19;35581:65;:92;;;;;35660:13;-1:-1:-1;;;;;35650:23:0;:6;-1:-1:-1;;;;;35650:23:0;;;35581:92;35577:258;;;35713:30;;35690:53;;35787:36;35802:20;35787:14;:36::i;:::-;-1:-1:-1;;;;;36027:26:0;;35908:12;36027:26;;;:18;:26;;;;;;35923:4;;36027:26;;;:59;;-1:-1:-1;;;;;;36057:29:0;;;;;;:18;:29;;;;;;;;36027:59;36024:105;;;-1:-1:-1;36112:5:0;36024:105;36202:50;36217:6;36225:9;36236:6;36244:7;36202:14;:50::i;:::-;33842:2418;;;;;;:::o;4121:192::-;4207:7;4243:12;4235:6;;;;4227:29;;;;-1:-1:-1;;;4227:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4279:5:0;;;4121:192::o;44674:163::-;44715:7;44736:15;44753;44772:19;:17;:19::i;:::-;44735:56;;-1:-1:-1;44735:56:0;-1:-1:-1;44809:20:0;44735:56;;44809:11;:20::i;:::-;44802:27;;;;44674:163;:::o;5499:132::-;5557:7;5584:39;5588:1;5591;5584:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5577:46;5499:132;-1:-1:-1;;;5499:132:0:o;3236:181::-;3294:7;3326:5;;;3350:6;;;;3342:46;;;;;-1:-1:-1;;;3342:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;43369:518;43428:7;43437;43446;43455;43464;43473;43494:23;43519:12;43533:30;43567:63;43579:7;43588;;43597:32;43615:13;;43597;;:17;;:32;;;;:::i;:::-;43567:11;:63::i;:::-;43493:137;;;;;;43641:19;43663:10;:8;:10::i;:::-;43641:32;;43685:15;43702:23;43727:12;43743:39;43755:7;43764:4;43770:11;43743;:39::i;:::-;43684:98;;-1:-1:-1;43684:98:0;-1:-1:-1;43684:98:0;-1:-1:-1;43833:15:0;;-1:-1:-1;43850:4:0;;-1:-1:-1;43856:22:0;;-1:-1:-1;;;;;43369:518:0;;;;;;;:::o;3691:136::-;3749:7;3776:43;3780:1;3783;3776:43;;;;;;;;;;;;;;;;;:3;:43::i;37597:589::-;37747:16;;;37761:1;37747:16;;;37723:21;37747:16;;;;;37723:21;37747:16;;;;;;;;;;-1:-1:-1;37747:16:0;37723:40;;37792:4;37774;37779:1;37774:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;37774:23:0;;;-1:-1:-1;;;;;37774:23:0;;;;;37818:15;-1:-1:-1;;;;;37818:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37818:22:0;37808:7;;:4;;37813:1;;37808:7;;;;;;;;;;;:32;-1:-1:-1;;;;;37808:32:0;;;-1:-1:-1;;;;;37808:32:0;;;;;37853:62;37870:4;37885:15;37903:11;37853:8;:62::i;:::-;37954:15;-1:-1:-1;;;;;37954:66:0;;38035:11;38061:1;38105:4;38132;38152:15;37954:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37954:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38715:111;38778:23;;:40;;-1:-1:-1;;;;;38778:23:0;;;;:40;;;;;38811:6;;38778:23;:40;:23;:40;38811:6;38778:23;:40;;;;;;;;;;;;;;;;;;;36268:1321;25381:16;:23;;-1:-1:-1;;;;25381:23:0;-1:-1:-1;;;25381:23:0;;;36437:13:::1;::::0;36419::::1;::::0;25381:23;;36375:77:::1;::::0;36419:32:::1;::::0;:17:::1;:32::i;:::-;36400:13;::::0;36375:39:::1;::::0;:20;;:24:::1;:39::i;:::-;:43:::0;::::1;:77::i;:::-;36353:99:::0;-1:-1:-1;36463:17:0::1;36483:37;:20:::0;36353:99;36483:24:::1;:37::i;:::-;36463:57:::0;-1:-1:-1;36584:12:0::1;36599:16;36463:57:::0;36613:1:::1;36599:13;:16::i;:::-;36584:31:::0;-1:-1:-1;36626:17:0::1;36646:19;:9:::0;36584:31;36646:13:::1;:19::i;:::-;36626:39:::0;-1:-1:-1;36968:21:0::1;36943:22;37057:21;:4:::0;37066:11;37057:8:::1;:21::i;:::-;37034:44;;37089:30;37106:12;37089:16;:30::i;:::-;37250:16;37269:41;:21;37295:14:::0;37269:25:::1;:41::i;:::-;37250:60:::0;-1:-1:-1;37321:18:0::1;37342:36;37365:12:::0;37342:18:::1;37250:60:::0;37355:4;37342:12:::1;:18::i;:36::-;37321:57;;37428:35;37441:9;37452:10;37428:12;:35::i;:::-;37481:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;37537:44;37556:24;:8:::0;37569:10;37556:12:::1;:24::i;:::-;37537:18;:44::i;:::-;-1:-1:-1::0;;25427:16:0;:24;;-1:-1:-1;;;;25427:24:0;;;-1:-1:-1;;;;;;;36268:1321:0:o;39463:819::-;39575:7;39571:40;;39597:14;:12;:14::i;:::-;-1:-1:-1;;;;;39628:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;39652:22:0;;;;;;:11;:22;;;;;;;;39651:23;39628:46;39624:597;;;39691:48;39713:6;39721:9;39732:6;39691:21;:48::i;:::-;39624:597;;;-1:-1:-1;;;;;39762:19:0;;;;;;:11;:19;;;;;;;;39761:20;:46;;;;-1:-1:-1;;;;;;39785:22:0;;;;;;:11;:22;;;;;;;;39761:46;39757:464;;;39824:46;39844:6;39852:9;39863:6;39824:19;:46::i;39757:464::-;-1:-1:-1;;;;;39893:19:0;;;;;;:11;:19;;;;;;;;39892:20;:47;;;;-1:-1:-1;;;;;;39917:22:0;;;;;;:11;:22;;;;;;;;39916:23;39892:47;39888:333;;;39956:44;39974:6;39982:9;39993:6;39956:17;:44::i;39888:333::-;-1:-1:-1;;;;;40022:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;40045:22:0;;;;;;:11;:22;;;;;;;;40022:45;40018:203;;;40084:48;40106:6;40114:9;40125:6;40084:21;:48::i;40018:203::-;40165:44;40183:6;40191:9;40202:6;40165:17;:44::i;:::-;40237:7;40233:41;;40259:15;:13;:15::i;:::-;39463:819;;;;:::o;44845:555::-;44942:7;;44978;;44895;;;;;44996:289;45020:9;:16;45016:20;;44996:289;;;45086:7;45062;:21;45070:9;45080:1;45070:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45070:12:0;45062:21;;;;;;;;;;;;;:31;;:66;;;45121:7;45097;:21;45105:9;45115:1;45105:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45105:12:0;45097:21;;;;;;;;;;;;;:31;45062:66;45058:97;;;45138:7;;45147;;45130:25;;;;;;;;;45058:97;45180:34;45192:7;:21;45200:9;45210:1;45200:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45200:12:0;45192:21;;;;;;;;;;;;;45180:7;;:11;:34::i;:::-;45170:44;;45239:34;45251:7;:21;45259:9;45269:1;45259:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45259:12:0;45251:21;;;;;;;;;;;;;45239:7;;:11;:34::i;:::-;45229:44;-1:-1:-1;45038:3:0;;44996:289;;;-1:-1:-1;45321:7:0;;45309;;:20;;:11;:20::i;:::-;45299:7;:30;45295:61;;;45339:7;;45348;;45331:25;;;;;;;;45295:61;45375:7;;-1:-1:-1;45384:7:0;-1:-1:-1;44845:555:0;;;:::o;6116:278::-;6202:7;6237:12;6230:5;6222:28;;;;-1:-1:-1;;;6222:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6261:9;6277:1;6273;:5;;;;;;;6116:278;-1:-1:-1;;;;;6116:278:0:o;43895:429::-;44002:7;;;;44055:28;44079:3;44055:19;:7;44067:6;44055:11;:19::i;:28::-;44040:43;-1:-1:-1;44094:30:0;44127:43;44166:3;44127:34;:7;44139:21;44127:11;:34::i;:43::-;44094:76;-1:-1:-1;44181:23:0;44207:44;44229:21;44207:17;:7;44219:4;44207:11;:17::i;:::-;:21;;:44::i;:::-;44181:70;44287:4;;-1:-1:-1;44293:22:0;;-1:-1:-1;43895:429:0;;-1:-1:-1;;;;;43895:429:0:o;44332:334::-;44427:7;;;;44483:24;:7;44495:11;44483;:24::i;:::-;44465:42;-1:-1:-1;44518:12:0;44533:21;:4;44542:11;44533:8;:21::i;:::-;44518:36;-1:-1:-1;44565:23:0;44591:17;:7;44518:36;44591:11;:17::i;:::-;44627:7;;;;-1:-1:-1;44653:4:0;;-1:-1:-1;44332:334:0;;-1:-1:-1;;;;;44332:334:0:o;4563:471::-;4621:7;4866:6;4862:47;;-1:-1:-1;4896:1:0;4889:8;;4862:47;4933:5;;;4937:1;4933;:5;:1;4957:5;;;;;:10;4949:56;;;;-1:-1:-1;;;4949:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38194:513;38342:62;38359:4;38374:15;38392:11;38342:8;:62::i;:::-;38447:15;-1:-1:-1;;;;;38447:31:0;;38486:9;38519:4;38539:11;38565:1;38608;38651:7;:5;:7::i;:::-;38673:15;38447:252;;;;;;;;;;;;;-1:-1:-1;;;;;38447:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38447:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32845:332;32891:7;;:12;:34;;;;-1:-1:-1;32907:13:0;;:18;32891:34;:56;;;;-1:-1:-1;32929:13:0;;:18;32891:56;32888:68;;;32949:7;;32888:68;32986:7;;;32968:15;:25;33028:13;;;33004:21;:37;33076:13;;;33052:21;:37;-1:-1:-1;33102:11:0;;;;33124:17;;;;33152;32845:332;:::o;41437:590::-;41540:15;41557:23;41582:12;41596:23;41621:12;41635:27;41666:19;41677:7;41666:10;:19::i;:::-;-1:-1:-1;;;;;41714:15:0;;;;;;:7;:15;;;;;;41539:146;;-1:-1:-1;41539:146:0;;-1:-1:-1;41539:146:0;;-1:-1:-1;41539:146:0;-1:-1:-1;41539:146:0;-1:-1:-1;41539:146:0;-1:-1:-1;41714:28:0;;41734:7;41714:19;:28::i;:::-;-1:-1:-1;;;;;41696:15:0;;;;;;:7;:15;;;;;;;;:46;;;;41771:7;:15;;;;:28;;41791:7;41771:19;:28::i;:::-;-1:-1:-1;;;;;41753:15:0;;;;;;;:7;:15;;;;;;:46;;;;41831:18;;;;;;;:39;;41854:15;41831:22;:39::i;:::-;-1:-1:-1;;;;;41810:18:0;;;;;;:7;:18;;;;;:60;41881:44;41905:19;41881:23;:44::i;:::-;41936:23;41948:4;41954;41936:11;:23::i;:::-;41992:9;-1:-1:-1;;;;;41975:44:0;41984:6;-1:-1:-1;;;;;41975:44:0;;42003:15;41975:44;;;;;;;;;;;;;;;;;;41437:590;;;;;;;;;:::o;40827:602::-;40928:15;40945:23;40970:12;40984:23;41009:12;41023:27;41054:19;41065:7;41054:10;:19::i;:::-;-1:-1:-1;;;;;41102:15:0;;;;;;:7;:15;;;;;;40927:146;;-1:-1:-1;40927:146:0;;-1:-1:-1;40927:146:0;;-1:-1:-1;40927:146:0;-1:-1:-1;40927:146:0;-1:-1:-1;40927:146:0;-1:-1:-1;41102:28:0;;40927:146;41102:19;:28::i;:::-;-1:-1:-1;;;;;41084:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;41162:18;;;;;:7;:18;;;;;:39;;41185:15;41162:22;:39::i;:::-;-1:-1:-1;;;;;41141:18:0;;;;;;:7;:18;;;;;;;;:60;;;;41233:7;:18;;;;:39;;41256:15;41233:22;:39::i;40290:529::-;40389:15;40406:23;40431:12;40445:23;40470:12;40484:27;40515:19;40526:7;40515:10;:19::i;:::-;-1:-1:-1;;;;;40563:15:0;;;;;;:7;:15;;;;;;40388:146;;-1:-1:-1;40388:146:0;;-1:-1:-1;40388:146:0;;-1:-1:-1;40388:146:0;-1:-1:-1;40388:146:0;-1:-1:-1;40388:146:0;-1:-1:-1;40563:28:0;;40388:146;40563:19;:28::i;42035:661::-;42138:15;42155:23;42180:12;42194:23;42219:12;42233:27;42264:19;42275:7;42264:10;:19::i;:::-;-1:-1:-1;;;;;42312:15:0;;;;;;:7;:15;;;;;;42137:146;;-1:-1:-1;42137:146:0;;-1:-1:-1;42137:146:0;;-1:-1:-1;42137:146:0;-1:-1:-1;42137:146:0;-1:-1:-1;42137:146:0;-1:-1:-1;42312:28:0;;42332:7;42312:19;:28::i;:::-;-1:-1:-1;;;;;42294:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42369:7;:15;;;;:28;;42389:7;42369:19;:28::i;33185:173::-;33239:15;;33229:7;:25;33281:21;;33265:13;:37;33329:21;;33313:13;:37;33185:173::o;42704:408::-;42785:19;42807:10;:8;:10::i;:::-;42785:32;-1:-1:-1;42828:27:0;42858:36;:19;42785:32;42858:23;:36::i;:::-;42946:4;42930:22;;;;:7;:22;;;;;;42828:66;;-1:-1:-1;42930:47:0;;42828:66;42930:26;:47::i;:::-;42921:4;42905:22;;;;:7;:22;;;;;;;;:72;;;;42991:11;:26;;;;;;42988:116;;;43073:4;43057:22;;;;:7;:22;;;;;;:47;;43084:19;43057:26;:47::i;:::-;43048:4;43032:22;;;;:7;:22;;;;;:72;42988:116;42704:408;;;:::o;43120:147::-;43198:7;;:17;;43210:4;43198:11;:17::i;:::-;43188:7;:27;43239:10;;:20;;43254:4;43239:14;:20::i;:::-;43226:10;:33;-1:-1:-1;;43120:147:0:o

Swarm Source

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