ETH Price: $3,269.82 (-4.12%)
Gas: 9 Gwei

Token

Baby Falcon 9 (BF9)
 

Overview

Max Total Supply

999,999 BF9

Holders

148

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
roseypalms.eth
Balance
0.940011444 BF9

Value
$0.00
0x9a4a3290ec6fa126dc9058ce738a0fd72fc86212
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:
BabyFalcon9

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// TG: https://t.me/BabyFalcon9

// Website: www.BabyFalcon9.com

// Twitter: https://twitter.com/BabyFalcon9

// 4% tax, 2% to redistribution and 2% to auto-lp

//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 {
    /**
    * @dev Returns the amount of tokens in existence.
    */
    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 BabyFalcon9 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 = 999_999 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = 'Baby Falcon 9';
    string private _symbol = 'BF9';
    uint8 private _decimals = 9;

    uint256 private _taxFee = 2; // 2% reflection fee for every holder
    uint256 private _marketingFee = 0; // 0% marketing
    uint256 private _liquidityFee = 2; // 2% into liquidity

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

    address payable private _marketingWalletAddress = payable(0x8E3eE0EbF39BaD7a74278E2AE8F9b4Ef606AE361);

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify = false;
    bool public swapAndLiquifyEnabled = true;

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

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

        // 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() {
        require(taxFee >= 1 && taxFee <= 49, 'taxFee should be in 1 - 49');
        _taxFee = taxFee;
    }

    function _setMarketingFee(uint256 marketingFee) external onlyOwner() {
        require(marketingFee >= 1 && marketingFee <= 49, 'marketingFee should be in 1 - 11');
        _marketingFee = marketingFee;
    }

    function _setLiquidityFee(uint256 liquidityFee) external onlyOwner() {
        require(liquidityFee >= 1 && liquidityFee <= 49, 'liquidityFee should be in 1 - 11');
        _liquidityFee = liquidityFee;
    }

    function _setNumTokensSellToAddToLiquidity(uint256 numTokensSellToAddToLiquidity) external onlyOwner() {
        require(numTokensSellToAddToLiquidity >= 10**9 , 'numTokensSellToAddToLiquidity should be greater than total 1e9');
        _numTokensSellToAddToLiquidity = numTokensSellToAddToLiquidity;
    }

    function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        require(maxTxAmount >= 10**9 , 'maxTxAmount should be greater than total 1e9');
        _maxTxAmount = maxTxAmount;
    }

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

66038d7e692bb600600b556602684d866025ff19600c55610100604052600d60c08190526c426162792046616c636f6e203960981b60e09081526200004891600e919062000697565b506040805180820190915260038082526242463960e81b60209092019182526200007591600f9162000697565b506010805460ff191660091790556002601181905560006012819055601382905560148290556015556016556017805461ffff60a01b196001600160a01b0319909116738e3ee0ebf39bad7a74278e2ae8f9b4ef606ae3611716600160a81b179055600b5460185564e8990a4600601955348015620000f357600080fd5b5060006200010062000684565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c54600360006200015b62000684565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001d257600080fd5b505afa158015620001e7573d6000803e3d6000fd5b505050506040513d6020811015620001fe57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200024f57600080fd5b505afa15801562000264573d6000803e3d6000fd5b505050506040513d60208110156200027b57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002ce57600080fd5b505af1158015620002e3573d6000803e3d6000fd5b505050506040513d6020811015620002fa57600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200032762000688565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600684528281208054861660019081179091556017549092168152918220805485168217905560099092527f1f039d7054c60544da001ada2885c2098966bf59108af37aa0047e53180c227d8054841683179055600a805480840182557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a890810180546001600160a01b031990811673e031b36b53e53a292a20c5f08fd1658cddf74fce179091557ff4b93d2837107f43e5b3215c8cfd55bc8f0ec1fef4e888737a6685e72730fd0e80548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557f404b5b762e8059f6055e90a7bf5e88e1e2f628911a8da7857df40bf26352e21280548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557fd06f72f8dd06466bcc52a7fc6bddce65222c1efb674ce288f26d72607f32c02680548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557fb180cbdf50fc8306102fae658ae8eddf6673addd522d5a575c2b6924f832977480548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557fd74310044b3dfbf8c3bb19b279a8662cf43f021fe4e68d5726f62fc6b584af7980548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557f72b3a1de74eb1a0841083ea090998865c5194ff1fc7be394ec133e28cacbdd9d8054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557f82951a08c86bbc382122443ed556bc8073b7e0bdf3bbfb811f503389aad35bfc805490961685179095558154938401825591520180549091167327f9adb26d532a41d97e00206114e429ad58c6791790556200063062000684565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a35062000733565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006da57805160ff19168380011785556200070a565b828001600101855582156200070a579182015b828111156200070a578251825591602001919060010190620006ed565b50620007189291506200071c565b5090565b5b808211156200071857600081556001016200071d565b60805160601c60a05160601c6132696200077b6000398061119252806120aa5250806109b452806123b05280612468528061248f5280612ae55280612b0c52506132696000f3fe6080604052600436106102295760003560e01c806352390c0211610123578063a457c2d7116100ab578063c49b9a801161006f578063c49b9a8014610834578063dd62ed3e14610860578063f2fde38b1461089b578063f4293890146108ce578063f815a842146108e357610230565b8063a457c2d714610733578063a52fe9bb1461076c578063a9059cbb14610796578063af9549e0146107cf578063bcd6d4461461080a57610230565b8063715018a6116100f2578063715018a61461068e5780637ded4d6a146106a357806388f82020146106d65780638da5cb5b1461070957806395d89b411461071e57610230565b806352390c02146105cb5780635342acb4146105fe5780635880b8731461063157806370a082311461065b57610230565b806330599fc5116101b15780634303443d116101755780634303443d146105275780634549b0391461055a57806349bd5a5e1461058c5780634a74bb02146105a157806351bc3c85146105b657610230565b806330599fc51461043c578063313ce567146104665780633685d4191461049157806339509351146104c45780633bd5d173146104fd57610230565b806318160ddd116101f857806318160ddd146103645780631bbae6e0146103795780631decaadc146103a557806323b872dd146103cf5780632d8381191461041257610230565b806306fdde0314610235578063095ea7b3146102bf57806313114a9d1461030c5780631694505e1461033357610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102cb57600080fd5b506102f8600480360360408110156102e257600080fd5b506001600160a01b03813516906020013561098e565b604080519115158252519081900360200190f35b34801561031857600080fd5b506103216109ac565b60408051918252519081900360200190f35b34801561033f57600080fd5b506103486109b2565b604080516001600160a01b039092168252519081900360200190f35b34801561037057600080fd5b506103216109d6565b34801561038557600080fd5b506103a36004803603602081101561039c57600080fd5b50356109dc565b005b3480156103b157600080fd5b506103a3600480360360208110156103c857600080fd5b5035610a7c565b3480156103db57600080fd5b506102f8600480360360608110156103f257600080fd5b506001600160a01b03813581169160208101359091169060400135610b1c565b34801561041e57600080fd5b506103216004803603602081101561043557600080fd5b5035610ba3565b34801561044857600080fd5b506103a36004803603602081101561045f57600080fd5b5035610c05565b34801561047257600080fd5b5061047b610c84565b6040805160ff9092168252519081900360200190f35b34801561049d57600080fd5b506103a3600480360360208110156104b457600080fd5b50356001600160a01b0316610c8d565b3480156104d057600080fd5b506102f8600480360360408110156104e757600080fd5b506001600160a01b038135169060200135610e4e565b34801561050957600080fd5b506103a36004803603602081101561052057600080fd5b5035610e9c565b34801561053357600080fd5b506103a36004803603602081101561054a57600080fd5b50356001600160a01b0316610f76565b34801561056657600080fd5b506103216004803603604081101561057d57600080fd5b508035906020013515156110fe565b34801561059857600080fd5b50610348611190565b3480156105ad57600080fd5b506102f86111b4565b3480156105c257600080fd5b506103a36111c4565b3480156105d757600080fd5b506103a3600480360360208110156105ee57600080fd5b50356001600160a01b0316611232565b34801561060a57600080fd5b506102f86004803603602081101561062157600080fd5b50356001600160a01b0316611414565b34801561063d57600080fd5b506103a36004803603602081101561065457600080fd5b5035611432565b34801561066757600080fd5b506103216004803603602081101561067e57600080fd5b50356001600160a01b03166114f2565b34801561069a57600080fd5b506103a3611554565b3480156106af57600080fd5b506103a3600480360360208110156106c657600080fd5b50356001600160a01b03166115f6565b3480156106e257600080fd5b506102f8600480360360208110156106f957600080fd5b50356001600160a01b0316611783565b34801561071557600080fd5b506103486117a1565b34801561072a57600080fd5b5061024a6117b0565b34801561073f57600080fd5b506102f86004803603604081101561075657600080fd5b506001600160a01b038135169060200135611811565b34801561077857600080fd5b506103a36004803603602081101561078f57600080fd5b5035611879565b3480156107a257600080fd5b506102f8600480360360408110156107b957600080fd5b506001600160a01b038135169060200135611939565b3480156107db57600080fd5b506103a3600480360360408110156107f257600080fd5b506001600160a01b038135169060200135151561194d565b34801561081657600080fd5b506103a36004803603602081101561082d57600080fd5b50356119d0565b34801561084057600080fd5b506103a36004803603602081101561085757600080fd5b50351515611a90565b34801561086c57600080fd5b506103216004803603604081101561088357600080fd5b506001600160a01b0381358116916020013516611b06565b3480156108a757600080fd5b506103a3600480360360208110156108be57600080fd5b50356001600160a01b0316611b31565b3480156108da57600080fd5b506103a3611c29565b3480156108ef57600080fd5b50610321611c8b565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109845780601f1061095957610100808354040283529160200191610984565b820191906000526020600020905b81548152906001019060200180831161096757829003601f168201915b5050505050905090565b60006109a261099b611c8f565b8484611c93565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b6109e4611c8f565b6000546001600160a01b03908116911614610a34576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b633b9aca00811015610a775760405162461bcd60e51b815260040180806020018281038252602c815260200180613058602c913960400191505060405180910390fd5b601855565b610a84611c8f565b6000546001600160a01b03908116911614610ad4576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b633b9aca00811015610b175760405162461bcd60e51b815260040180806020018281038252603e815260200180613183603e913960400191505060405180910390fd5b601955565b6000610b29848484611d7f565b610b9984610b35611c8f565b610b94856040518060600160405280602881526020016130a5602891396001600160a01b038a16600090815260056020526040812090610b73611c8f565b6001600160a01b031681526020810191909152604001600020549190612151565b611c93565b5060019392505050565b6000600c54821115610be65760405162461bcd60e51b815260040180806020018281038252602a815260200180612f8f602a913960400191505060405180910390fd5b6000610bf06121e8565b9050610bfc838261220b565b9150505b919050565b610c0d611c8f565b6000546001600160a01b03908116911614610c5d576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b610c6f30610c696117a1565b83611c93565b610c8130610c7b6117a1565b83611d7f565b50565b60105460ff1690565b610c95611c8f565b6000546001600160a01b03908116911614610ce5576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610d52576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610e4a57816001600160a01b031660088281548110610d7657fe5b6000918252602090912001546001600160a01b03161415610e4257600880546000198101908110610da357fe5b600091825260209091200154600880546001600160a01b039092169183908110610dc957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610e1b57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e4a565b600101610d55565b5050565b60006109a2610e5b611c8f565b84610b948560056000610e6c611c8f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612254565b6000610ea6611c8f565b6001600160a01b03811660009081526007602052604090205490915060ff1615610f015760405162461bcd60e51b815260040180806020018281038252602c8152602001806131e3602c913960400191505060405180910390fd5b6000610f0c836122ae565b505050506001600160a01b038416600090815260036020526040902054919250610f389190508261231e565b6001600160a01b038316600090815260036020526040902055600c54610f5e908261231e565b600c55600d54610f6e9084612254565b600d55505050565b610f7e611c8f565b6000546001600160a01b03908116911614610fce576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561102a5760405162461bcd60e51b81526004018080602001828103825260248152602001806131166024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615611098576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b54831115611157576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81611176576000611167846122ae565b509395506109a6945050505050565b6000611181846122ae565b509295506109a6945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601754600160a81b900460ff1681565b6111cc611c8f565b6000546001600160a01b0390811691161461121c576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b6000611227306114f2565b9050610c8181612360565b61123a611c8f565b6000546001600160a01b0390811691161461128a576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156112e65760405162461bcd60e51b81526004018080602001828103825260228152602001806131c16022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615611354576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156113ae576001600160a01b03811660009081526003602052604090205461139490610ba3565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b61143a611c8f565b6000546001600160a01b0390811691161461148a576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b6001811015801561149c575060318111155b6114ed576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203439000000000000604482015290519081900360640190fd5b601155565b6001600160a01b03811660009081526007602052604081205460ff161561153257506001600160a01b038116600090815260046020526040902054610c00565b6001600160a01b0382166000908152600360205260409020546109a690610ba3565b61155c611c8f565b6000546001600160a01b039081169116146115ac576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6115fe611c8f565b6000546001600160a01b0390811691161461164e576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff166116bb576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610e4a57816001600160a01b0316600a82815481106116df57fe5b6000918252602090912001546001600160a01b0316141561177b57600a8054600019810190811061170c57fe5b600091825260209091200154600a80546001600160a01b03909216918390811061173257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610e1b57fe5b6001016116be565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109845780601f1061095957610100808354040283529160200191610984565b60006109a261181e611c8f565b84610b948560405180606001604052806025815260200161320f6025913960056000611848611c8f565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612151565b611881611c8f565b6000546001600160a01b039081169116146118d1576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b600181101580156118e3575060318111155b611934576040805162461bcd60e51b815260206004820181905260248201527f6d61726b6574696e674665652073686f756c6420626520696e2031202d203131604482015290519081900360640190fd5b601255565b60006109a2611946611c8f565b8484611d7f565b611955611c8f565b6000546001600160a01b039081169116146119a5576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6119d8611c8f565b6000546001600160a01b03908116911614611a28576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b60018110158015611a3a575060318111155b611a8b576040805162461bcd60e51b815260206004820181905260248201527f6c69717569646974794665652073686f756c6420626520696e2031202d203131604482015290519081900360640190fd5b601355565b611a98611c8f565b6000546001600160a01b03908116911614611ae8576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b60178054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611b39611c8f565b6000546001600160a01b03908116911614611b89576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b6001600160a01b038116611bce5760405162461bcd60e51b8152600401808060200182810382526026815260200180612fb96026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611c31611c8f565b6000546001600160a01b03908116911614611c81576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b47610c818161256f565b4790565b3390565b6001600160a01b038316611cd85760405162461bcd60e51b815260040180806020018281038252602481526020018061315f6024913960400191505060405180910390fd5b6001600160a01b038216611d1d5760405162461bcd60e51b8152600401808060200182810382526022815260200180612fdf6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611dc45760405162461bcd60e51b815260040180806020018281038252602581526020018061313a6025913960400191505060405180910390fd5b6001600160a01b038216611e095760405162461bcd60e51b8152600401808060200182810382526023815260200180612f6c6023913960400191505060405180910390fd5b60008111611e485760405162461bcd60e51b81526004018080602001828103825260298152602001806130ed6029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611eb0576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff1615611f18576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615611f77576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b611f7f6117a1565b6001600160a01b0316836001600160a01b031614158015611fb95750611fa36117a1565b6001600160a01b0316826001600160a01b031614155b1561205257601854811115611fff5760405162461bcd60e51b81526004018080602001828103825260288152602001806130306028913960400191505060405180910390fd5b6018546120158261200f856114f2565b90612254565b11156120525760405162461bcd60e51b815260040180806020018281038252602f815260200180613001602f913960400191505060405180910390fd5b600061205d306114f2565b9050601854811061206d57506018545b6019546017549082101590600160a01b900460ff161580156120985750601754600160a81b900460ff165b80156120a15750805b80156120df57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b156120f25760195491506120f2826125a9565b6001600160a01b03851660009081526006602052604090205460019060ff168061213457506001600160a01b03851660009081526006602052604090205460ff165b1561213d575060005b612149868686846126bf565b505050505050565b600081848411156121e05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121a557818101518382015260200161218d565b50505050905090810190601f1680156121d25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006121f5612833565b9092509050612204828261220b565b9250505090565b600061224d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612996565b9392505050565b60008282018381101561224d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006122df8a6011546122da60135460125461225490919063ffffffff16565b6129fb565b92509250925060006122ef6121e8565b905060008060006123018e8786612a4a565b919e509c509a509598509396509194505050505091939550919395565b600061224d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612151565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061238e57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561240757600080fd5b505afa15801561241b573d6000803e3d6000fd5b505050506040513d602081101561243157600080fd5b505181518290600190811061244257fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061248d307f000000000000000000000000000000000000000000000000000000000000000084611c93565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561253257818101518382015260200161251a565b505050509050019650505050505050600060405180830381600087803b15801561255b57600080fd5b505af1158015612149573d6000803e3d6000fd5b6017546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610e4a573d6000803e3d6000fd5b6017805460ff60a01b1916600160a01b1790556013546012546000916125e6916125d291612254565b6012546125e0908590612a86565b9061220b565b905060006125f4838361231e565b9050600061260382600261220b565b90506000612611838361231e565b90504760006126208487612254565b905061262b81612360565b6000612637478461231e565b90506000612649836125e08489612a86565b90506126558582612adf565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a16126a76126a2838361231e565b61256f565b50506017805460ff60a01b1916905550505050505050565b806126cc576126cc612bdd565b6001600160a01b03841660009081526007602052604090205460ff16801561270d57506001600160a01b03831660009081526007602052604090205460ff16155b156127225761271d848484612c26565b612820565b6001600160a01b03841660009081526007602052604090205460ff1615801561276357506001600160a01b03831660009081526007602052604090205460ff165b156127735761271d848484612d4a565b6001600160a01b03841660009081526007602052604090205460ff161580156127b557506001600160a01b03831660009081526007602052604090205460ff16155b156127c55761271d848484612df3565b6001600160a01b03841660009081526007602052604090205460ff16801561280557506001600160a01b03831660009081526007602052604090205460ff165b156128155761271d848484612e37565b612820848484612df3565b8061282d5761282d612eaa565b50505050565b600c54600b546000918291825b6008548110156129645782600360006008848154811061285c57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806128c1575081600460006008848154811061289a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128d857600c54600b5494509450505050612992565b61291860036000600884815481106128ec57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061231e565b925061295a600460006008848154811061292e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061231e565b9150600101612840565b50600b54600c546129749161220b565b82101561298c57600c54600b54935093505050612992565b90925090505b9091565b600081836129e55760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121a557818101518382015260200161218d565b5060008385816129f157fe5b0495945050505050565b6000808080612a0f60646125e08989612a86565b90506000612a2260646125e08a89612a86565b90506000612a3a87612a348b8661231e565b9061231e565b9992985090965090945050505050565b6000808080612a598786612a86565b90506000612a678787612a86565b90506000612a75838361231e565b929992985090965090945050505050565b600082612a95575060006109a6565b82820282848281612aa257fe5b041461224d5760405162461bcd60e51b81526004018080602001828103825260218152602001806130846021913960400191505060405180910390fd5b612b0a307f000000000000000000000000000000000000000000000000000000000000000084611c93565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080612b476117a1565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612bb257600080fd5b505af1158015612bc6573d6000803e3d6000fd5b50505050506040513d606081101561282d57600080fd5b601154158015612bed5750601254155b8015612bf95750601354155b15612c0357612c24565b60118054601455601280546015556013805460165560009283905590829055555b565b600080600080600080612c38876122ae565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612c6a908861231e565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612c99908761231e565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612cc89086612254565b6001600160a01b038916600090815260036020526040902055612cea81612ebe565b612cf48483612f47565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612d5c876122ae565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612d8e908761231e565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612dc49084612254565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612cc89086612254565b600080600080600080612e05876122ae565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612c99908761231e565b600080600080600080612e49876122ae565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612e7b908861231e565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612d8e908761231e565b601454601155601554601255601654601355565b6000612ec86121e8565b90506000612ed68383612a86565b30600090815260036020526040902054909150612ef39082612254565b3060009081526003602090815260408083209390935560079052205460ff1615612f425730600090815260046020526040902054612f319084612254565b306000908152600460205260409020555b505050565b600c54612f54908361231e565b600c55600d54612f649082612254565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416c726561647920626f75676874206d61785478416d6f756e742c20776169742074696c6c20636865636b206f66665472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e6d61785478416d6f756e742073686f756c642062652067726561746572207468616e20746f74616c20316539536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736e756d546f6b656e7353656c6c546f416464546f4c69717569646974792073686f756c642062652067726561746572207468616e20746f74616c2031653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205bb7dab7cf64a3982c07def5767abfe15017d48a79294886d9140a9009d830f964736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102295760003560e01c806352390c0211610123578063a457c2d7116100ab578063c49b9a801161006f578063c49b9a8014610834578063dd62ed3e14610860578063f2fde38b1461089b578063f4293890146108ce578063f815a842146108e357610230565b8063a457c2d714610733578063a52fe9bb1461076c578063a9059cbb14610796578063af9549e0146107cf578063bcd6d4461461080a57610230565b8063715018a6116100f2578063715018a61461068e5780637ded4d6a146106a357806388f82020146106d65780638da5cb5b1461070957806395d89b411461071e57610230565b806352390c02146105cb5780635342acb4146105fe5780635880b8731461063157806370a082311461065b57610230565b806330599fc5116101b15780634303443d116101755780634303443d146105275780634549b0391461055a57806349bd5a5e1461058c5780634a74bb02146105a157806351bc3c85146105b657610230565b806330599fc51461043c578063313ce567146104665780633685d4191461049157806339509351146104c45780633bd5d173146104fd57610230565b806318160ddd116101f857806318160ddd146103645780631bbae6e0146103795780631decaadc146103a557806323b872dd146103cf5780632d8381191461041257610230565b806306fdde0314610235578063095ea7b3146102bf57806313114a9d1461030c5780631694505e1461033357610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102cb57600080fd5b506102f8600480360360408110156102e257600080fd5b506001600160a01b03813516906020013561098e565b604080519115158252519081900360200190f35b34801561031857600080fd5b506103216109ac565b60408051918252519081900360200190f35b34801561033f57600080fd5b506103486109b2565b604080516001600160a01b039092168252519081900360200190f35b34801561037057600080fd5b506103216109d6565b34801561038557600080fd5b506103a36004803603602081101561039c57600080fd5b50356109dc565b005b3480156103b157600080fd5b506103a3600480360360208110156103c857600080fd5b5035610a7c565b3480156103db57600080fd5b506102f8600480360360608110156103f257600080fd5b506001600160a01b03813581169160208101359091169060400135610b1c565b34801561041e57600080fd5b506103216004803603602081101561043557600080fd5b5035610ba3565b34801561044857600080fd5b506103a36004803603602081101561045f57600080fd5b5035610c05565b34801561047257600080fd5b5061047b610c84565b6040805160ff9092168252519081900360200190f35b34801561049d57600080fd5b506103a3600480360360208110156104b457600080fd5b50356001600160a01b0316610c8d565b3480156104d057600080fd5b506102f8600480360360408110156104e757600080fd5b506001600160a01b038135169060200135610e4e565b34801561050957600080fd5b506103a36004803603602081101561052057600080fd5b5035610e9c565b34801561053357600080fd5b506103a36004803603602081101561054a57600080fd5b50356001600160a01b0316610f76565b34801561056657600080fd5b506103216004803603604081101561057d57600080fd5b508035906020013515156110fe565b34801561059857600080fd5b50610348611190565b3480156105ad57600080fd5b506102f86111b4565b3480156105c257600080fd5b506103a36111c4565b3480156105d757600080fd5b506103a3600480360360208110156105ee57600080fd5b50356001600160a01b0316611232565b34801561060a57600080fd5b506102f86004803603602081101561062157600080fd5b50356001600160a01b0316611414565b34801561063d57600080fd5b506103a36004803603602081101561065457600080fd5b5035611432565b34801561066757600080fd5b506103216004803603602081101561067e57600080fd5b50356001600160a01b03166114f2565b34801561069a57600080fd5b506103a3611554565b3480156106af57600080fd5b506103a3600480360360208110156106c657600080fd5b50356001600160a01b03166115f6565b3480156106e257600080fd5b506102f8600480360360208110156106f957600080fd5b50356001600160a01b0316611783565b34801561071557600080fd5b506103486117a1565b34801561072a57600080fd5b5061024a6117b0565b34801561073f57600080fd5b506102f86004803603604081101561075657600080fd5b506001600160a01b038135169060200135611811565b34801561077857600080fd5b506103a36004803603602081101561078f57600080fd5b5035611879565b3480156107a257600080fd5b506102f8600480360360408110156107b957600080fd5b506001600160a01b038135169060200135611939565b3480156107db57600080fd5b506103a3600480360360408110156107f257600080fd5b506001600160a01b038135169060200135151561194d565b34801561081657600080fd5b506103a36004803603602081101561082d57600080fd5b50356119d0565b34801561084057600080fd5b506103a36004803603602081101561085757600080fd5b50351515611a90565b34801561086c57600080fd5b506103216004803603604081101561088357600080fd5b506001600160a01b0381358116916020013516611b06565b3480156108a757600080fd5b506103a3600480360360208110156108be57600080fd5b50356001600160a01b0316611b31565b3480156108da57600080fd5b506103a3611c29565b3480156108ef57600080fd5b50610321611c8b565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109845780601f1061095957610100808354040283529160200191610984565b820191906000526020600020905b81548152906001019060200180831161096757829003601f168201915b5050505050905090565b60006109a261099b611c8f565b8484611c93565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b6109e4611c8f565b6000546001600160a01b03908116911614610a34576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b633b9aca00811015610a775760405162461bcd60e51b815260040180806020018281038252602c815260200180613058602c913960400191505060405180910390fd5b601855565b610a84611c8f565b6000546001600160a01b03908116911614610ad4576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b633b9aca00811015610b175760405162461bcd60e51b815260040180806020018281038252603e815260200180613183603e913960400191505060405180910390fd5b601955565b6000610b29848484611d7f565b610b9984610b35611c8f565b610b94856040518060600160405280602881526020016130a5602891396001600160a01b038a16600090815260056020526040812090610b73611c8f565b6001600160a01b031681526020810191909152604001600020549190612151565b611c93565b5060019392505050565b6000600c54821115610be65760405162461bcd60e51b815260040180806020018281038252602a815260200180612f8f602a913960400191505060405180910390fd5b6000610bf06121e8565b9050610bfc838261220b565b9150505b919050565b610c0d611c8f565b6000546001600160a01b03908116911614610c5d576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b610c6f30610c696117a1565b83611c93565b610c8130610c7b6117a1565b83611d7f565b50565b60105460ff1690565b610c95611c8f565b6000546001600160a01b03908116911614610ce5576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610d52576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610e4a57816001600160a01b031660088281548110610d7657fe5b6000918252602090912001546001600160a01b03161415610e4257600880546000198101908110610da357fe5b600091825260209091200154600880546001600160a01b039092169183908110610dc957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610e1b57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e4a565b600101610d55565b5050565b60006109a2610e5b611c8f565b84610b948560056000610e6c611c8f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612254565b6000610ea6611c8f565b6001600160a01b03811660009081526007602052604090205490915060ff1615610f015760405162461bcd60e51b815260040180806020018281038252602c8152602001806131e3602c913960400191505060405180910390fd5b6000610f0c836122ae565b505050506001600160a01b038416600090815260036020526040902054919250610f389190508261231e565b6001600160a01b038316600090815260036020526040902055600c54610f5e908261231e565b600c55600d54610f6e9084612254565b600d55505050565b610f7e611c8f565b6000546001600160a01b03908116911614610fce576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561102a5760405162461bcd60e51b81526004018080602001828103825260248152602001806131166024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615611098576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b54831115611157576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81611176576000611167846122ae565b509395506109a6945050505050565b6000611181846122ae565b509295506109a6945050505050565b7f0000000000000000000000008aeb97b0bffd62cbc01431794dee69a4ee57892281565b601754600160a81b900460ff1681565b6111cc611c8f565b6000546001600160a01b0390811691161461121c576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b6000611227306114f2565b9050610c8181612360565b61123a611c8f565b6000546001600160a01b0390811691161461128a576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156112e65760405162461bcd60e51b81526004018080602001828103825260228152602001806131c16022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615611354576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156113ae576001600160a01b03811660009081526003602052604090205461139490610ba3565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b61143a611c8f565b6000546001600160a01b0390811691161461148a576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b6001811015801561149c575060318111155b6114ed576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203439000000000000604482015290519081900360640190fd5b601155565b6001600160a01b03811660009081526007602052604081205460ff161561153257506001600160a01b038116600090815260046020526040902054610c00565b6001600160a01b0382166000908152600360205260409020546109a690610ba3565b61155c611c8f565b6000546001600160a01b039081169116146115ac576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6115fe611c8f565b6000546001600160a01b0390811691161461164e576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff166116bb576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610e4a57816001600160a01b0316600a82815481106116df57fe5b6000918252602090912001546001600160a01b0316141561177b57600a8054600019810190811061170c57fe5b600091825260209091200154600a80546001600160a01b03909216918390811061173257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610e1b57fe5b6001016116be565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109845780601f1061095957610100808354040283529160200191610984565b60006109a261181e611c8f565b84610b948560405180606001604052806025815260200161320f6025913960056000611848611c8f565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612151565b611881611c8f565b6000546001600160a01b039081169116146118d1576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b600181101580156118e3575060318111155b611934576040805162461bcd60e51b815260206004820181905260248201527f6d61726b6574696e674665652073686f756c6420626520696e2031202d203131604482015290519081900360640190fd5b601255565b60006109a2611946611c8f565b8484611d7f565b611955611c8f565b6000546001600160a01b039081169116146119a5576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6119d8611c8f565b6000546001600160a01b03908116911614611a28576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b60018110158015611a3a575060318111155b611a8b576040805162461bcd60e51b815260206004820181905260248201527f6c69717569646974794665652073686f756c6420626520696e2031202d203131604482015290519081900360640190fd5b601355565b611a98611c8f565b6000546001600160a01b03908116911614611ae8576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b60178054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611b39611c8f565b6000546001600160a01b03908116911614611b89576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b6001600160a01b038116611bce5760405162461bcd60e51b8152600401808060200182810382526026815260200180612fb96026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611c31611c8f565b6000546001600160a01b03908116911614611c81576040805162461bcd60e51b815260206004820181905260248201526000805160206130cd833981519152604482015290519081900360640190fd5b47610c818161256f565b4790565b3390565b6001600160a01b038316611cd85760405162461bcd60e51b815260040180806020018281038252602481526020018061315f6024913960400191505060405180910390fd5b6001600160a01b038216611d1d5760405162461bcd60e51b8152600401808060200182810382526022815260200180612fdf6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611dc45760405162461bcd60e51b815260040180806020018281038252602581526020018061313a6025913960400191505060405180910390fd5b6001600160a01b038216611e095760405162461bcd60e51b8152600401808060200182810382526023815260200180612f6c6023913960400191505060405180910390fd5b60008111611e485760405162461bcd60e51b81526004018080602001828103825260298152602001806130ed6029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611eb0576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff1615611f18576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615611f77576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b611f7f6117a1565b6001600160a01b0316836001600160a01b031614158015611fb95750611fa36117a1565b6001600160a01b0316826001600160a01b031614155b1561205257601854811115611fff5760405162461bcd60e51b81526004018080602001828103825260288152602001806130306028913960400191505060405180910390fd5b6018546120158261200f856114f2565b90612254565b11156120525760405162461bcd60e51b815260040180806020018281038252602f815260200180613001602f913960400191505060405180910390fd5b600061205d306114f2565b9050601854811061206d57506018545b6019546017549082101590600160a01b900460ff161580156120985750601754600160a81b900460ff165b80156120a15750805b80156120df57507f0000000000000000000000008aeb97b0bffd62cbc01431794dee69a4ee5789226001600160a01b0316856001600160a01b031614155b156120f25760195491506120f2826125a9565b6001600160a01b03851660009081526006602052604090205460019060ff168061213457506001600160a01b03851660009081526006602052604090205460ff165b1561213d575060005b612149868686846126bf565b505050505050565b600081848411156121e05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121a557818101518382015260200161218d565b50505050905090810190601f1680156121d25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006121f5612833565b9092509050612204828261220b565b9250505090565b600061224d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612996565b9392505050565b60008282018381101561224d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006122df8a6011546122da60135460125461225490919063ffffffff16565b6129fb565b92509250925060006122ef6121e8565b905060008060006123018e8786612a4a565b919e509c509a509598509396509194505050505091939550919395565b600061224d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612151565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061238e57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561240757600080fd5b505afa15801561241b573d6000803e3d6000fd5b505050506040513d602081101561243157600080fd5b505181518290600190811061244257fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061248d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c93565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561253257818101518382015260200161251a565b505050509050019650505050505050600060405180830381600087803b15801561255b57600080fd5b505af1158015612149573d6000803e3d6000fd5b6017546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610e4a573d6000803e3d6000fd5b6017805460ff60a01b1916600160a01b1790556013546012546000916125e6916125d291612254565b6012546125e0908590612a86565b9061220b565b905060006125f4838361231e565b9050600061260382600261220b565b90506000612611838361231e565b90504760006126208487612254565b905061262b81612360565b6000612637478461231e565b90506000612649836125e08489612a86565b90506126558582612adf565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a16126a76126a2838361231e565b61256f565b50506017805460ff60a01b1916905550505050505050565b806126cc576126cc612bdd565b6001600160a01b03841660009081526007602052604090205460ff16801561270d57506001600160a01b03831660009081526007602052604090205460ff16155b156127225761271d848484612c26565b612820565b6001600160a01b03841660009081526007602052604090205460ff1615801561276357506001600160a01b03831660009081526007602052604090205460ff165b156127735761271d848484612d4a565b6001600160a01b03841660009081526007602052604090205460ff161580156127b557506001600160a01b03831660009081526007602052604090205460ff16155b156127c55761271d848484612df3565b6001600160a01b03841660009081526007602052604090205460ff16801561280557506001600160a01b03831660009081526007602052604090205460ff165b156128155761271d848484612e37565b612820848484612df3565b8061282d5761282d612eaa565b50505050565b600c54600b546000918291825b6008548110156129645782600360006008848154811061285c57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806128c1575081600460006008848154811061289a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128d857600c54600b5494509450505050612992565b61291860036000600884815481106128ec57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061231e565b925061295a600460006008848154811061292e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061231e565b9150600101612840565b50600b54600c546129749161220b565b82101561298c57600c54600b54935093505050612992565b90925090505b9091565b600081836129e55760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121a557818101518382015260200161218d565b5060008385816129f157fe5b0495945050505050565b6000808080612a0f60646125e08989612a86565b90506000612a2260646125e08a89612a86565b90506000612a3a87612a348b8661231e565b9061231e565b9992985090965090945050505050565b6000808080612a598786612a86565b90506000612a678787612a86565b90506000612a75838361231e565b929992985090965090945050505050565b600082612a95575060006109a6565b82820282848281612aa257fe5b041461224d5760405162461bcd60e51b81526004018080602001828103825260218152602001806130846021913960400191505060405180910390fd5b612b0a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c93565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080612b476117a1565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612bb257600080fd5b505af1158015612bc6573d6000803e3d6000fd5b50505050506040513d606081101561282d57600080fd5b601154158015612bed5750601254155b8015612bf95750601354155b15612c0357612c24565b60118054601455601280546015556013805460165560009283905590829055555b565b600080600080600080612c38876122ae565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612c6a908861231e565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612c99908761231e565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612cc89086612254565b6001600160a01b038916600090815260036020526040902055612cea81612ebe565b612cf48483612f47565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612d5c876122ae565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612d8e908761231e565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612dc49084612254565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612cc89086612254565b600080600080600080612e05876122ae565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612c99908761231e565b600080600080600080612e49876122ae565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612e7b908861231e565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612d8e908761231e565b601454601155601554601255601654601355565b6000612ec86121e8565b90506000612ed68383612a86565b30600090815260036020526040902054909150612ef39082612254565b3060009081526003602090815260408083209390935560079052205460ff1615612f425730600090815260046020526040902054612f319084612254565b306000908152600460205260409020555b505050565b600c54612f54908361231e565b600c55600d54612f649082612254565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416c726561647920626f75676874206d61785478416d6f756e742c20776169742074696c6c20636865636b206f66665472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e6d61785478416d6f756e742073686f756c642062652067726561746572207468616e20746f74616c20316539536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736e756d546f6b656e7353656c6c546f416464546f4c69717569646974792073686f756c642062652067726561746572207468616e20746f74616c2031653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205bb7dab7cf64a3982c07def5767abfe15017d48a79294886d9140a9009d830f964736f6c634300060c0033

Deployed Bytecode Sourcemap

25319:23513:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29620:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30532:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30532:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;31798:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26673:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;26673:51:0;;;;;;;;;;;;;;29897:95;;;;;;;;;;;;;:::i;48428:201::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48428:201:0;;:::i;:::-;;48111:309;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48111:309:0;;:::i;30701:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30701:313:0;;;;;;;;;;;;;;;;;:::i;32722:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32722:253:0;;:::i;48637:192::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48637:192:0;;:::i;29806:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33437:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33437:479:0;-1:-1:-1;;;;;33437:479:0;;:::i;31022:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31022:218:0;;;;;;;;:::i;31893:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31893:377:0;;:::i;33924:352::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33924:352:0;-1:-1:-1;;;;;33924:352:0;;:::i;32278:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32278:436:0;;;;;;;;;:::i;26731:38::-;;;;;;;;;;;;;:::i;26814:40::-;;;;;;;;;;;;;:::i;40750:156::-;;;;;;;;;;;;;:::i;32983:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32983:446:0;-1:-1:-1;;;;;32983:446:0;;:::i;35313:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35313:123:0;-1:-1:-1;;;;;35313:123:0;;:::i;47496:169::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47496:169:0;;:::i;30000:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30000:198:0;-1:-1:-1;;;;;30000:198:0;;:::i;16811:148::-;;;;;;;;;;;;;:::i;34284:500::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34284:500:0;-1:-1:-1;;;;;34284:500:0;;:::i;31525:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31525:120:0;-1:-1:-1;;;;;31525:120:0;;:::i;16177:79::-;;;;;;;;;;;;;:::i;29711:87::-;;;;;;;;;;;;;:::i;31248:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31248:269:0;;;;;;;;:::i;47673:211::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47673:211:0;;:::i;30206:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30206:167:0;;;;;;;;:::i;31653:137::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31653:137:0;;;;;;;;;;:::i;47892:211::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47892:211:0;;:::i;41081:148::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41081:148:0;;;;:::i;30381:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30381:143:0;;;;;;;;;;:::i;17111:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17111:244:0;-1:-1:-1;;;;;17111:244:0;;:::i;40914:159::-;;;;;;;;;;;;;:::i;47378:110::-;;;;;;;;;;;;;:::i;29620:83::-;29690:5;29683:12;;;;;;;;-1:-1:-1;;29683:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29657:13;;29683:12;;29690:5;;29683:12;;29690:5;29683:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29620:83;:::o;30532:161::-;30607:4;30624:39;30633:12;:10;:12::i;:::-;30647:7;30656:6;30624:8;:39::i;:::-;-1:-1:-1;30681:4:0;30532:161;;;;;:::o;31798:87::-;31867:10;;31798:87;:::o;26673:51::-;;;:::o;29897:95::-;29977:7;;29897:95;:::o;48428:201::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;48529:5:::1;48514:11;:20;;48506:78;;;;-1:-1:-1::0;;;48506:78:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48595:12;:26:::0;48428:201::o;48111:309::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;48266:5:::1;48233:29;:38;;48225:114;;;;-1:-1:-1::0;;;48225:114:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48350:30;:62:::0;48111:309::o;30701:313::-;30799:4;30816:36;30826:6;30834:9;30845:6;30816:9;:36::i;:::-;30863:121;30872:6;30880:12;:10;:12::i;:::-;30894:89;30932:6;30894:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30894:19:0;;;;;;:11;:19;;;;;;30914:12;:10;:12::i;:::-;-1:-1:-1;;;;;30894:33:0;;;;;;;;;;;;-1:-1:-1;30894:33:0;;;:89;:37;:89::i;:::-;30863:8;:121::i;:::-;-1:-1:-1;31002:4:0;30701:313;;;;;:::o;32722:253::-;32788:7;32827;;32816;:18;;32808:73;;;;-1:-1:-1;;;32808:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32892:19;32915:10;:8;:10::i;:::-;32892:33;-1:-1:-1;32943:24:0;:7;32892:33;32943:11;:24::i;:::-;32936:31;;;32722:253;;;;:::o;48637:192::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;48719:45:::1;48736:4;48743:7;:5;:7::i;:::-;48752:11;48719:8;:45::i;:::-;48775:46;48793:4;48800:7;:5;:7::i;:::-;48809:11;48775:9;:46::i;:::-;48637:192:::0;:::o;29806:83::-;29872:9;;;;29806:83;:::o;33437:479::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33519:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33511:60;;;::::0;;-1:-1:-1;;;33511:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33587:9;33582:327;33606:9;:16:::0;33602:20;::::1;33582:327;;;33664:7;-1:-1:-1::0;;;;;33648:23:0::1;:9;33658:1;33648:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33648:12:0::1;:23;33644:254;;;33707:9;33717:16:::0;;-1:-1:-1;;33717:20:0;;;33707:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33692:9:::1;:12:::0;;-1:-1:-1;;;;;33707:31:0;;::::1;::::0;33702:1;;33692:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33692:46:0::1;-1:-1:-1::0;;;;;33692:46:0;;::::1;;::::0;;33757:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33796:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33796:28:0::1;::::0;;33843:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33843:15:0;;;;;-1:-1:-1;;;;;;33843:15:0::1;::::0;;;;;33877:5:::1;;33644:254;33624:3;;33582:327;;;;33437:479:::0;:::o;31022:218::-;31110:4;31127:83;31136:12;:10;:12::i;:::-;31150:7;31159:50;31198:10;31159:11;:25;31171:12;:10;:12::i;:::-;-1:-1:-1;;;;;31159:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31159:25:0;;;:34;;;;;;;;;;;:38;:50::i;31893:377::-;31945:14;31962:12;:10;:12::i;:::-;-1:-1:-1;;;;;31994:19:0;;;;;;:11;:19;;;;;;31945:29;;-1:-1:-1;31994:19:0;;31993:20;31985:77;;;;-1:-1:-1;;;31985:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32074:15;32098:19;32109:7;32098:10;:19::i;:::-;-1:-1:-1;;;;;;;;;32146:15:0;;;;;;:7;:15;;;;;;32073:44;;-1:-1:-1;32146:28:0;;:15;-1:-1:-1;32073:44:0;32146:19;:28::i;:::-;-1:-1:-1;;;;;32128:15:0;;;;;;:7;:15;;;;;:46;32195:7;;:20;;32207:7;32195:11;:20::i;:::-;32185:7;:30;32239:10;;:23;;32254:7;32239:14;:23::i;:::-;32226:10;:36;-1:-1:-1;;;31893:377:0:o;33924:352::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;34019:42:::1;-1:-1:-1::0;;;;;34008:53:0;::::1;;;34000:102;;;;-1:-1:-1::0;;;34000:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;34122:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;34121:27;34113:70;;;::::0;;-1:-1:-1;;;34113:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;34194:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;34194:33:0::1;34223:4;34194:33:::0;;::::1;::::0;;;34238:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;34238:30:0::1;::::0;;::::1;::::0;;33924:352::o;32278:436::-;32368:7;32407;;32396;:18;;32388:62;;;;;-1:-1:-1;;;32388:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32466:17;32461:246;;32501:15;32525:19;32536:7;32525:10;:19::i;:::-;-1:-1:-1;32500:44:0;;-1:-1:-1;32559:14:0;;-1:-1:-1;;;;;32559:14:0;32461:246;32608:23;32639:19;32650:7;32639:10;:19::i;:::-;-1:-1:-1;32606:52:0;;-1:-1:-1;32673:22:0;;-1:-1:-1;;;;;32673:22:0;26731:38;;;:::o;26814:40::-;;;-1:-1:-1;;;26814:40:0;;;;;:::o;40750:156::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;40804:23:::1;40830:24;40848:4;40830:9;:24::i;:::-;40804:50;;40865:33;40882:15;40865:16;:33::i;32983:446::-:0;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;33078:42:::1;-1:-1:-1::0;;;;;33067:53:0;::::1;;;33059:100;;;;-1:-1:-1::0;;;33059:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;33179:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33178:21;33170:61;;;::::0;;-1:-1:-1;;;33170:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33245:16:0;::::1;33264:1;33245:16:::0;;;:7:::1;:16;::::0;;;;;:20;33242:108:::1;;-1:-1:-1::0;;;;;33321:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33301:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33282:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33242:108:::1;-1:-1:-1::0;;;;;33360:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33360:27:0::1;33383:4;33360:27:::0;;::::1;::::0;;;33398:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33398:23:0::1;::::0;;::::1;::::0;;32983:446::o;35313:123::-;-1:-1:-1;;;;;35401:27:0;35377:4;35401:27;;;:18;:27;;;;;;;;;35313:123::o;47496:169::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;47582:1:::1;47572:6;:11;;:27;;;;;47597:2;47587:6;:12;;47572:27;47564:66;;;::::0;;-1:-1:-1;;;47564:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47641:7;:16:::0;47496:169::o;30000:198::-;-1:-1:-1;;;;;30090:20:0;;30066:7;30090:20;;;:11;:20;;;;;;;;30086:49;;;-1:-1:-1;;;;;;30119:16:0;;;;;;:7;:16;;;;;;30112:23;;30086:49;-1:-1:-1;;;;;30173:16:0;;;;;;:7;:16;;;;;;30153:37;;:19;:37::i;16811:148::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;16918:1:::1;16902:6:::0;;16881:40:::1;::::0;-1:-1:-1;;;;;16902:6:0;;::::1;::::0;16881:40:::1;::::0;16918:1;;16881:40:::1;16949:1;16932:19:::0;;-1:-1:-1;;;;;;16932:19:0::1;::::0;;16811:148::o;34284:500::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34373:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;34365:65;;;::::0;;-1:-1:-1;;;34365:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;34446:9;34441:336;34465:16;:23:::0;34461:27;::::1;34441:336;;;34537:7;-1:-1:-1::0;;;;;34514:30:0::1;:16;34531:1;34514:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;34514:19:0::1;:30;34510:256;;;34587:16;34604:23:::0;;-1:-1:-1;;34604:27:0;;;34587:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;34565:16:::1;:19:::0;;-1:-1:-1;;;;;34587:45:0;;::::1;::::0;34582:1;;34565:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;34565:67:0::1;-1:-1:-1::0;;;;;34565:67:0;;::::1;;::::0;;34651:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;34651:34:0::1;::::0;;34704:16:::1;:22:::0;;;::::1;;;34510:256;34490:3;;34441:336;;31525:120:::0;-1:-1:-1;;;;;31617:20:0;31593:4;31617:20;;;:11;:20;;;;;;;;;31525:120::o;16177:79::-;16215:7;16242:6;-1:-1:-1;;;;;16242:6:0;16177:79;:::o;29711:87::-;29783:7;29776:14;;;;;;;;-1:-1:-1;;29776:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29750:13;;29776:14;;29783:7;;29776:14;;29783:7;29776:14;;;;;;;;;;;;;;;;;;;;;;;;31248:269;31341:4;31358:129;31367:12;:10;:12::i;:::-;31381:7;31390:96;31429:15;31390:96;;;;;;;;;;;;;;;;;:11;:25;31402:12;:10;:12::i;:::-;-1:-1:-1;;;;;31390:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31390:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;47673:211::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;47777:1:::1;47761:12;:17;;:39;;;;;47798:2;47782:12;:18;;47761:39;47753:84;;;::::0;;-1:-1:-1;;;47753:84:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47848:13;:28:::0;47673:211::o;30206:167::-;30284:4;30301:42;30311:12;:10;:12::i;:::-;30325:9;30336:6;30301:9;:42::i;31653:137::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31744:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;31744:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31653:137::o;47892:211::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;47996:1:::1;47980:12;:17;;:39;;;;;48017:2;48001:12;:18;;47980:39;47972:84;;;::::0;;-1:-1:-1;;;47972:84:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48067:13;:28:::0;47892:211::o;41081:148::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;41175:21:::1;:46:::0;;;::::1;;-1:-1:-1::0;;;41175:46:0::1;-1:-1:-1::0;;;;41175:46:0;;::::1;::::0;;;::::1;::::0;;41081:148::o;30381:143::-;-1:-1:-1;;;;;30489:18:0;;;30462:7;30489:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30381:143::o;17111:244::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17200:22:0;::::1;17192:73;;;;-1:-1:-1::0;;;17192:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17302:6;::::0;;17281:38:::1;::::0;-1:-1:-1;;;;;17281:38:0;;::::1;::::0;17302:6;::::1;::::0;17281:38:::1;::::0;::::1;17330:6;:17:::0;;-1:-1:-1;;;;;;17330:17:0::1;-1:-1:-1::0;;;;;17330:17:0;;;::::1;::::0;;;::::1;::::0;;17111:244::o;40914:159::-;16397:12;:10;:12::i;:::-;16387:6;;-1:-1:-1;;;;;16387:6:0;;;:22;;;16379:67;;;;;-1:-1:-1;;;16379:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16379:67:0;;;;;;;;;;;;;;;40995:21:::1;41027:38;40995:21:::0;41027:18:::1;:38::i;47378:110::-:0;47459:21;47378:110;:::o;1998:106::-;2086:10;1998:106;:::o;35444:337::-;-1:-1:-1;;;;;35537:19:0;;35529:68;;;;-1:-1:-1;;;35529:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35616:21:0;;35608:68;;;;-1:-1:-1;;;35608:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35689:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35741:32;;;;;;;;;;;;;;;;;35444:337;;;:::o;35789:2245::-;-1:-1:-1;;;;;35886:20:0;;35878:70;;;;-1:-1:-1;;;35878:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35967:23:0;;35959:71;;;;-1:-1:-1;;;35959:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36058:1;36049:6;:10;36041:64;;;;-1:-1:-1;;;36041:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36125:25:0;;;;;;:17;:25;;;;;;;;36124:26;36116:62;;;;;-1:-1:-1;;;36116:62:0;;;;;;;;;;;;-1:-1:-1;;;36116:62:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36198:28:0;;;;;;:17;:28;;;;;;;;36197:29;36189:65;;;;;-1:-1:-1;;;36189:65:0;;;;;;;;;;;;-1:-1:-1;;;36189:65:0;;;;;;;;;;;;;;;36292:9;36274:28;;;;:17;:28;;;;;;;;36273:29;36265:65;;;;;-1:-1:-1;;;36265:65:0;;;;;;;;;;;;-1:-1:-1;;;36265:65:0;;;;;;;;;;;;;;;36356:7;:5;:7::i;:::-;-1:-1:-1;;;;;36346:17:0;:6;-1:-1:-1;;;;;36346:17:0;;;:41;;;;;36380:7;:5;:7::i;:::-;-1:-1:-1;;;;;36367:20:0;:9;-1:-1:-1;;;;;36367:20:0;;;36346:41;36343:430;;;36422:12;;36412:6;:22;;36404:75;;;;-1:-1:-1;;;36404:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36697:12;;36661:32;36686:6;36661:20;36671:9;36661;:20::i;:::-;:24;;:32::i;:::-;:48;;36653:108;;;;-1:-1:-1;;;36653:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37067:28;37098:24;37116:4;37098:9;:24::i;:::-;37067:55;;37162:12;;37138:20;:36;37135:112;;-1:-1:-1;37223:12:0;;37135:112;37310:30;;37356:16;;37286:54;;;;;-1:-1:-1;;;37356:16:0;;;;37355:17;:42;;;;-1:-1:-1;37376:21:0;;-1:-1:-1;;;37376:21:0;;;;37355:42;:65;;;;;37401:19;37355:65;:92;;;;;37434:13;-1:-1:-1;;;;;37424:23:0;:6;-1:-1:-1;;;;;37424:23:0;;;37355:92;37351:258;;;37487:30;;37464:53;;37561:36;37576:20;37561:14;:36::i;:::-;-1:-1:-1;;;;;37801:26:0;;37682:12;37801:26;;;:18;:26;;;;;;37697:4;;37801:26;;;:59;;-1:-1:-1;;;;;;37831:29:0;;;;;;:18;:29;;;;;;;;37801:59;37798:105;;;-1:-1:-1;37886:5:0;37798:105;37976:50;37991:6;37999:9;38010:6;38018:7;37976:14;:50::i;:::-;35789:2245;;;;;;:::o;6085:192::-;6171:7;6207:12;6199:6;;;;6191:29;;;;-1:-1:-1;;;6191:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6243:5:0;;;6085:192::o;46448:163::-;46489:7;46510:15;46527;46546:19;:17;:19::i;:::-;46509:56;;-1:-1:-1;46509:56:0;-1:-1:-1;46583:20:0;46509:56;;46583:11;:20::i;:::-;46576:27;;;;46448:163;:::o;7463:132::-;7521:7;7548:39;7552:1;7555;7548:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7541:46;7463:132;-1:-1:-1;;;7463:132:0:o;5200:181::-;5258:7;5290:5;;;5314:6;;;;5306:46;;;;;-1:-1:-1;;;5306:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;45143:518;45202:7;45211;45220;45229;45238;45247;45268:23;45293:12;45307:30;45341:63;45353:7;45362;;45371:32;45389:13;;45371;;:17;;:32;;;;:::i;:::-;45341:11;:63::i;:::-;45267:137;;;;;;45415:19;45437:10;:8;:10::i;:::-;45415:32;;45459:15;45476:23;45501:12;45517:39;45529:7;45538:4;45544:11;45517;:39::i;:::-;45458:98;;-1:-1:-1;45458:98:0;-1:-1:-1;45458:98:0;-1:-1:-1;45607:15:0;;-1:-1:-1;45624:4:0;;-1:-1:-1;45630:22:0;;-1:-1:-1;;;;;45143:518:0;;;;;;;:::o;5655:136::-;5713:7;5740:43;5744:1;5747;5740:43;;;;;;;;;;;;;;;;;:3;:43::i;39371:589::-;39521:16;;;39535:1;39521:16;;;39497:21;39521:16;;;;;39497:21;39521:16;;;;;;;;;;-1:-1:-1;39521:16:0;39497:40;;39566:4;39548;39553:1;39548:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;39548:23:0;;;-1:-1:-1;;;;;39548:23:0;;;;;39592:15;-1:-1:-1;;;;;39592:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39592:22:0;39582:7;;:4;;39587:1;;39582:7;;;;;;;;;;;:32;-1:-1:-1;;;;;39582:32:0;;;-1:-1:-1;;;;;39582:32:0;;;;;39627:62;39644:4;39659:15;39677:11;39627:8;:62::i;:::-;39728:15;-1:-1:-1;;;;;39728:66:0;;39809:11;39835:1;39879:4;39906;39926:15;39728:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39728:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40489:111;40552:23;;:40;;-1:-1:-1;;;;;40552:23:0;;;;:40;;;;;40585:6;;40552:23;:40;:23;:40;40585:6;40552:23;:40;;;;;;;;;;;;;;;;;;;38042:1321;27328:16;:23;;-1:-1:-1;;;;27328:23:0;-1:-1:-1;;;27328:23:0;;;38211:13:::1;::::0;38193::::1;::::0;27328:23;;38149:77:::1;::::0;38193:32:::1;::::0;:17:::1;:32::i;:::-;38174:13;::::0;38149:39:::1;::::0;:20;;:24:::1;:39::i;:::-;:43:::0;::::1;:77::i;:::-;38127:99:::0;-1:-1:-1;38237:17:0::1;38257:37;:20:::0;38127:99;38257:24:::1;:37::i;:::-;38237:57:::0;-1:-1:-1;38358:12:0::1;38373:16;38237:57:::0;38387:1:::1;38373:13;:16::i;:::-;38358:31:::0;-1:-1:-1;38400:17:0::1;38420:19;:9:::0;38358:31;38420:13:::1;:19::i;:::-;38400:39:::0;-1:-1:-1;38742:21:0::1;38717:22;38831:21;:4:::0;38840:11;38831:8:::1;:21::i;:::-;38808:44;;38863:30;38880:12;38863:16;:30::i;:::-;39024:16;39043:41;:21;39069:14:::0;39043:25:::1;:41::i;:::-;39024:60:::0;-1:-1:-1;39095:18:0::1;39116:36;39139:12:::0;39116:18:::1;39024:60:::0;39129:4;39116:12:::1;:18::i;:36::-;39095:57;;39202:35;39215:9;39226:10;39202:12;:35::i;:::-;39255:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;39311:44;39330:24;:8:::0;39343:10;39330:12:::1;:24::i;:::-;39311:18;:44::i;:::-;-1:-1:-1::0;;27374:16:0;:24;;-1:-1:-1;;;;27374:24:0;;;-1:-1:-1;;;;;;;38042:1321:0:o;41237:819::-;41349:7;41345:40;;41371:14;:12;:14::i;:::-;-1:-1:-1;;;;;41402:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;41426:22:0;;;;;;:11;:22;;;;;;;;41425:23;41402:46;41398:597;;;41465:48;41487:6;41495:9;41506:6;41465:21;:48::i;:::-;41398:597;;;-1:-1:-1;;;;;41536:19:0;;;;;;:11;:19;;;;;;;;41535:20;:46;;;;-1:-1:-1;;;;;;41559:22:0;;;;;;:11;:22;;;;;;;;41535:46;41531:464;;;41598:46;41618:6;41626:9;41637:6;41598:19;:46::i;41531:464::-;-1:-1:-1;;;;;41667:19:0;;;;;;:11;:19;;;;;;;;41666:20;:47;;;;-1:-1:-1;;;;;;41691:22:0;;;;;;:11;:22;;;;;;;;41690:23;41666:47;41662:333;;;41730:44;41748:6;41756:9;41767:6;41730:17;:44::i;41662:333::-;-1:-1:-1;;;;;41796:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;41819:22:0;;;;;;:11;:22;;;;;;;;41796:45;41792:203;;;41858:48;41880:6;41888:9;41899:6;41858:21;:48::i;41792:203::-;41939:44;41957:6;41965:9;41976:6;41939:17;:44::i;:::-;42011:7;42007:41;;42033:15;:13;:15::i;:::-;41237:819;;;;:::o;46619:555::-;46716:7;;46752;;46669;;;;;46770:289;46794:9;:16;46790:20;;46770:289;;;46860:7;46836;:21;46844:9;46854:1;46844:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46844:12:0;46836:21;;;;;;;;;;;;;:31;;:66;;;46895:7;46871;:21;46879:9;46889:1;46879:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46879:12:0;46871:21;;;;;;;;;;;;;:31;46836:66;46832:97;;;46912:7;;46921;;46904:25;;;;;;;;;46832:97;46954:34;46966:7;:21;46974:9;46984:1;46974:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46974:12:0;46966:21;;;;;;;;;;;;;46954:7;;:11;:34::i;:::-;46944:44;;47013:34;47025:7;:21;47033:9;47043:1;47033:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47033:12:0;47025:21;;;;;;;;;;;;;47013:7;;:11;:34::i;:::-;47003:44;-1:-1:-1;46812:3:0;;46770:289;;;-1:-1:-1;47095:7:0;;47083;;:20;;:11;:20::i;:::-;47073:7;:30;47069:61;;;47113:7;;47122;;47105:25;;;;;;;;47069:61;47149:7;;-1:-1:-1;47158:7:0;-1:-1:-1;46619:555:0;;;:::o;8080:278::-;8166:7;8201:12;8194:5;8186:28;;;;-1:-1:-1;;;8186:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8225:9;8241:1;8237;:5;;;;;;;8080:278;-1:-1:-1;;;;;8080:278:0:o;45669:429::-;45776:7;;;;45829:28;45853:3;45829:19;:7;45841:6;45829:11;:19::i;:28::-;45814:43;-1:-1:-1;45868:30:0;45901:43;45940:3;45901:34;:7;45913:21;45901:11;:34::i;:43::-;45868:76;-1:-1:-1;45955:23:0;45981:44;46003:21;45981:17;:7;45993:4;45981:11;:17::i;:::-;:21;;:44::i;:::-;45955:70;46061:4;;-1:-1:-1;46067:22:0;;-1:-1:-1;45669:429:0;;-1:-1:-1;;;;;45669:429:0:o;46106:334::-;46201:7;;;;46257:24;:7;46269:11;46257;:24::i;:::-;46239:42;-1:-1:-1;46292:12:0;46307:21;:4;46316:11;46307:8;:21::i;:::-;46292:36;-1:-1:-1;46339:23:0;46365:17;:7;46292:36;46365:11;:17::i;:::-;46401:7;;;;-1:-1:-1;46427:4:0;;-1:-1:-1;46106:334:0;;-1:-1:-1;;;;;46106:334:0:o;6527:471::-;6585:7;6830:6;6826:47;;-1:-1:-1;6860:1:0;6853:8;;6826:47;6897:5;;;6901:1;6897;:5;:1;6921:5;;;;;:10;6913:56;;;;-1:-1:-1;;;6913:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39968:513;40116:62;40133:4;40148:15;40166:11;40116:8;:62::i;:::-;40221:15;-1:-1:-1;;;;;40221:31:0;;40260:9;40293:4;40313:11;40339:1;40382;40425:7;:5;:7::i;:::-;40447:15;40221:252;;;;;;;;;;;;;-1:-1:-1;;;;;40221:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40221:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34792:332;34838:7;;:12;:34;;;;-1:-1:-1;34854:13:0;;:18;34838:34;:56;;;;-1:-1:-1;34876:13:0;;:18;34838:56;34835:68;;;34896:7;;34835:68;34933:7;;;34915:15;:25;34975:13;;;34951:21;:37;35023:13;;;34999:21;:37;-1:-1:-1;35049:11:0;;;;35071:17;;;;35099;34792:332;:::o;43211:590::-;43314:15;43331:23;43356:12;43370:23;43395:12;43409:27;43440:19;43451:7;43440:10;:19::i;:::-;-1:-1:-1;;;;;43488:15:0;;;;;;:7;:15;;;;;;43313:146;;-1:-1:-1;43313:146:0;;-1:-1:-1;43313:146:0;;-1:-1:-1;43313:146:0;-1:-1:-1;43313:146:0;-1:-1:-1;43313:146:0;-1:-1:-1;43488:28:0;;43508:7;43488:19;:28::i;:::-;-1:-1:-1;;;;;43470:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43545:7;:15;;;;:28;;43565:7;43545:19;:28::i;:::-;-1:-1:-1;;;;;43527:15:0;;;;;;;:7;:15;;;;;;:46;;;;43605:18;;;;;;;:39;;43628:15;43605:22;:39::i;:::-;-1:-1:-1;;;;;43584:18:0;;;;;;:7;:18;;;;;:60;43655:44;43679:19;43655:23;:44::i;:::-;43710:23;43722:4;43728;43710:11;:23::i;:::-;43766:9;-1:-1:-1;;;;;43749:44:0;43758:6;-1:-1:-1;;;;;43749:44:0;;43777:15;43749:44;;;;;;;;;;;;;;;;;;43211:590;;;;;;;;;:::o;42601:602::-;42702:15;42719:23;42744:12;42758:23;42783:12;42797:27;42828:19;42839:7;42828:10;:19::i;:::-;-1:-1:-1;;;;;42876:15:0;;;;;;:7;:15;;;;;;42701:146;;-1:-1:-1;42701:146:0;;-1:-1:-1;42701:146:0;;-1:-1:-1;42701:146:0;-1:-1:-1;42701:146:0;-1:-1:-1;42701:146:0;-1:-1:-1;42876:28:0;;42701:146;42876:19;:28::i;:::-;-1:-1:-1;;;;;42858:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;42936:18;;;;;:7;:18;;;;;:39;;42959:15;42936:22;:39::i;:::-;-1:-1:-1;;;;;42915:18:0;;;;;;:7;:18;;;;;;;;:60;;;;43007:7;:18;;;;:39;;43030:15;43007:22;:39::i;42064:529::-;42163:15;42180:23;42205:12;42219:23;42244:12;42258:27;42289:19;42300:7;42289:10;:19::i;:::-;-1:-1:-1;;;;;42337:15:0;;;;;;:7;:15;;;;;;42162:146;;-1:-1:-1;42162:146:0;;-1:-1:-1;42162:146:0;;-1:-1:-1;42162:146:0;-1:-1:-1;42162:146:0;-1:-1:-1;42162:146:0;-1:-1:-1;42337:28:0;;42162:146;42337:19;:28::i;43809:661::-;43912:15;43929:23;43954:12;43968:23;43993:12;44007:27;44038:19;44049:7;44038:10;:19::i;:::-;-1:-1:-1;;;;;44086:15:0;;;;;;:7;:15;;;;;;43911:146;;-1:-1:-1;43911:146:0;;-1:-1:-1;43911:146:0;;-1:-1:-1;43911:146:0;-1:-1:-1;43911:146:0;-1:-1:-1;43911:146:0;-1:-1:-1;44086:28:0;;44106:7;44086:19;:28::i;:::-;-1:-1:-1;;;;;44068:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44143:7;:15;;;;:28;;44163:7;44143:19;:28::i;35132:173::-;35186:15;;35176:7;:25;35228:21;;35212:13;:37;35276:21;;35260:13;:37;35132:173::o;44478:408::-;44559:19;44581:10;:8;:10::i;:::-;44559:32;-1:-1:-1;44602:27:0;44632:36;:19;44559:32;44632:23;:36::i;:::-;44720:4;44704:22;;;;:7;:22;;;;;;44602:66;;-1:-1:-1;44704:47:0;;44602:66;44704:26;:47::i;:::-;44695:4;44679:22;;;;:7;:22;;;;;;;;:72;;;;44765:11;:26;;;;;;44762:116;;;44847:4;44831:22;;;;:7;:22;;;;;;:47;;44858:19;44831:26;:47::i;:::-;44822:4;44806:22;;;;:7;:22;;;;;:72;44762:116;44478:408;;;:::o;44894:147::-;44972:7;;:17;;44984:4;44972:11;:17::i;:::-;44962:7;:27;45013:10;;:20;;45028:4;45013:14;:20::i;:::-;45000:10;:33;-1:-1:-1;;44894:147:0:o

Swarm Source

ipfs://5bb7dab7cf64a3982c07def5767abfe15017d48a79294886d9140a9009d830f9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.