ETH Price: $2,584.65 (-2.75%)

Token

Olympian Inu (OPI)
 

Overview

Max Total Supply

100,000,000 OPI

Holders

77

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
15,865.301540516365431995 OPI

Value
$0.00
0xa7066f84f050bc6ec3f8c4f0152658dd93940497
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:
OpiInu

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 20 runs

Other Settings:
default evmVersion
File 1 of 1 : OpiInu.sol
pragma solidity ^0.8.0;


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}


pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
  /**
   * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
  function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
  unchecked {
    uint256 c = a + b;
    if (c < a) return (false, 0);
    return (true, c);
  }
  }

  /**
   * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
  function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
  unchecked {
    if (b > a) return (false, 0);
    return (true, a - b);
  }
  }

  /**
   * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
  function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
  unchecked {
    // 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 (true, 0);
    uint256 c = a * b;
    if (c / a != b) return (false, 0);
    return (true, c);
  }
  }

  /**
   * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
  function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
  unchecked {
    if (b == 0) return (false, 0);
    return (true, a / b);
  }
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
  function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
  unchecked {
    if (b == 0) return (false, 0);
    return (true, a % b);
  }
  }

  /**
   * @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) {
    return a + b;
  }

  /**
   * @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 a - b;
  }

  /**
   * @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) {
    return a * b;
  }

  /**
   * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    return a / b;
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
  function sub(
    uint256 a,
    uint256 b,
    string memory errorMessage
  ) internal pure returns (uint256) {
  unchecked {
    require(b <= a, errorMessage);
    return a - b;
  }
  }

  /**
   * @dev Returns the integer division of two unsigned integers, reverting 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) {
  unchecked {
    require(b > 0, errorMessage);
    return a / b;
  }
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
  unchecked {
    require(b > 0, errorMessage);
    return a % b;
  }
  }
}

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
  function _msgSender() internal view virtual returns (address) {
    return msg.sender;
  }

  function _msgData() internal view virtual returns (bytes calldata) {
    return msg.data;
  }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
  address private _owner;

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

  /**
   * @dev Initializes the contract setting the deployer as the initial owner.
     */
  constructor() {
    _setOwner(_msgSender());
  }

  /**
   * @dev Returns the address of the current owner.
     */
  function owner() public view virtual 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 {
    _setOwner(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");
    _setOwner(newOwner);
  }

  function _setOwner(address newOwner) private {
    address oldOwner = _owner;
    _owner = newOwner;
    emit OwnershipTransferred(oldOwner, newOwner);
  }
}


pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
  /**
   * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
  function isContract(address account) internal view returns (bool) {
    // This method relies on extcodesize, which returns 0 for contracts in
    // construction, since the code is only stored at the end of the
    // constructor execution.

    uint256 size;
    assembly {
      size := extcodesize(account)
    }
    return size > 0;
  }

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

    (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");
    require(isContract(target), "Address: call to non-contract");

    (bool success, bytes memory returndata) = target.call{value: value}(data);
    return _verifyCallResult(success, returndata, errorMessage);
  }

  /**
   * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
  function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
    return functionStaticCall(target, data, "Address: low-level static call failed");
  }

  /**
   * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
  function functionStaticCall(
    address target,
    bytes memory data,
    string memory errorMessage
  ) internal view returns (bytes memory) {
    require(isContract(target), "Address: static call to non-contract");

    (bool success, bytes memory returndata) = target.staticcall(data);
    return _verifyCallResult(success, returndata, errorMessage);
  }

  /**
   * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
  function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
    return functionDelegateCall(target, data, "Address: low-level delegate call failed");
  }

  /**
   * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
  function functionDelegateCall(
    address target,
    bytes memory data,
    string memory errorMessage
  ) internal returns (bytes memory) {
    require(isContract(target), "Address: delegate call to non-contract");

    (bool success, bytes memory returndata) = target.delegatecall(data);
    return _verifyCallResult(success, returndata, errorMessage);
  }

  function _verifyCallResult(
    bool success,
    bytes memory returndata,
    string memory errorMessage
  ) private pure returns (bytes memory) {
    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

        assembly {
          let returndata_size := mload(returndata)
          revert(add(32, returndata), returndata_size)
        }
      } else {
        revert(errorMessage);
      }
    }
  }
}

pragma solidity >=0.5.0;

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

pragma solidity >=0.5.0;

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

pragma solidity >=0.6.2;

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 OpiInu is Context, IERC20, Ownable {
  using SafeMath for uint256;
  using Address for address;

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

  mapping(address => bool) private _isExcludedFromFee;

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

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

  string private _name = 'Olympian Inu';
  string private _symbol = 'OPI';
  uint8 private _decimals = 18;

  uint256 private _taxFee = 7;
  uint256 private _teamFee = 3;
  uint public liquidityFee = 1;
  uint256 private _previousTaxFee = _taxFee;
  uint256 private _previousTeamFee = _teamFee;

  address payable public teamWallet;
  address payable public taxWallet;
  uint public initialTXLimit = 30001*1e18;

  mapping(address=> uint ) addressTransferStamps;
  uint public initialTXLimitActiveTime = 5 minutes;
  uint public botProtectionDuration = 15 minutes ;
  uint public maxUserBalance = 1000001 * 1e18;
  uint public transferLimit = 1 minutes;
  uint public immutable  contractInitTime;
  mapping(address=> bool ) botBlacklist;


  IUniswapV2Router02 public immutable uniswapV2Router;
  address public immutable uniswapV2Pair;
  mapping(address => bool) private _isUniswapPair;

  bool inSwap = false;
  bool public swapEnabled = true;

  uint8 _sellTaxMultiplier = 1;

  uint256 private _maxTxAmount = 1000001 *1e18;
  // We will set a minimum amount of tokens to be swaped => 5M
  uint256 private _numOfTokensToExchangeForTeam = 1000 * 1e18;






  event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
  event SwapEnabledUpdated(bool enabled);

  modifier lockTheLiqudiitySwap() {
    inSwap = true;
    _;
    inSwap = false;
  }

  event ProvidedLiqudiity(uint amountTokens,uint amountEth, uint timestamp);
  event SendEthToTeam(uint teamWallet,uint taxWallet, uint timestamp);
  constructor(
    address payable teamWallet_,
    address payable taxWallet_
  ) {
    teamWallet = teamWallet_;
    taxWallet = taxWallet_;
    _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;

    contractInitTime = block.timestamp;

    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 isExcluded(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, false);
    _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, false);
      return rAmount;
    } else {
      (, uint256 rTransferAmount, , , , ) = _getValues(tAmount, false);
      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 excludeAccount(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 includeAccount(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 removeAllFee() private {
    if (_taxFee == 0 && _teamFee == 0) return;

    _previousTaxFee = _taxFee;
    _previousTeamFee = _teamFee;

    _taxFee = 0;
    _teamFee = 0;
  }

  function restoreAllFee() private {
    _taxFee = _previousTaxFee;
    _teamFee = _previousTeamFee;
  }

  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(!botBlacklist[sender]);
    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');


    if (sender != owner() && recipient != owner()){
      require(
        amount <= _maxTxAmount,
        'Transfer amount exceeds the maxTxAmount.'
      );
    }



    if (sender != owner() && recipient != owner()){
      uint userBalance__ = 0;
      if(sender == uniswapV2Pair)
        userBalance__= balanceOf(recipient);
      require(userBalance__+amount<= maxUserBalance);
      if(recipient ==  uniswapV2Pair || _isUniswapPair[recipient] || sender == uniswapV2Pair ||_isUniswapPair[sender]){

        if(contractInitTime + botProtectionDuration>= block.timestamp ){
          if(contractInitTime+initialTXLimitActiveTime>= block.timestamp){
            require(initialTXLimit>= amount);
          }

          if(recipient == uniswapV2Pair ||sender == uniswapV2Pair){
            uint lastTransaction = addressTransferStamps[tx.origin];
            require(block.timestamp >= lastTransaction+transferLimit );
            addressTransferStamps[tx.origin] = block.timestamp;
          }
        }
      }
    }


    uint256 contractTokenBalance = balanceOf(address(this));

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

    bool overMinTokenBalance = contractTokenBalance >=
    _numOfTokensToExchangeForTeam;
    if (
      !inSwap &&
    swapEnabled && overMinTokenBalance
     && !inSwapAndLiquify &&
    (recipient == uniswapV2Pair || _isUniswapPair[recipient])
    ) {
      // We need to swap the current tokens to ETH and send to the team wallet



      swapAndLiquify(contractTokenBalance);
      contractTokenBalance = balanceOf(address(this));
      swapTokensForEth(contractTokenBalance);

      uint256 contractETHBalance = address(this).balance;
      if (contractETHBalance > 0) {

        sendETHToTeam(address(this).balance);
      }
    }

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

    // take fee only on swaps
    if (
      (sender == uniswapV2Pair ||
      recipient == uniswapV2Pair ||
      _isUniswapPair[recipient] ||
      _isUniswapPair[sender]) &&
      !(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient])
    ) {
      takeFee = true;
    }

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

  function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
    // 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 sendETHToTeam(uint256 amount) private {


    uint taxAmount = amount.div(100).mul(_taxFee);
    uint teamAmount = amount.div(100).mul(_teamFee);

    emit SendEthToTeam(teamAmount,taxAmount, block.timestamp);
    teamWallet.call{ value: teamAmount }('');
    taxWallet.call{ value: taxAmount }('');

  }
  function swapAndLiquify(uint256 contractTokenBalance) private lockTheLiqudiitySwap {
    // split the contract balance into halves
    uint256 liquidityAmt = contractTokenBalance.div(100).mul(liquidityFee);
    uint half = liquidityAmt.div(2);
    uint256 otherHalf = contractTokenBalance.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
    swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

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

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

    emit ProvidedLiqudiity(half, newBalance, 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
    );
  }


  // 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() external onlyOwner {
    uint256 contractETHBalance = address(this).balance;
    sendETHToTeam(contractETHBalance);
  }

  function setSwapEnabled(bool enabled) external onlyOwner {
    swapEnabled = enabled;
  }

  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]) {
      _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 tTeam
    ) = _getValues(tAmount, _isSelling(recipient));
    _rOwned[sender] = _rOwned[sender].sub(rAmount);
    _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
    _takeTeam(tTeam);
    _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 tTeam
    ) = _getValues(tAmount, _isSelling(recipient));
    _rOwned[sender] = _rOwned[sender].sub(rAmount);
    _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
    _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
    _takeTeam(tTeam);
    _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 tTeam
    ) = _getValues(tAmount, _isSelling(recipient));
    _tOwned[sender] = _tOwned[sender].sub(tAmount);
    _rOwned[sender] = _rOwned[sender].sub(rAmount);
    _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
    _takeTeam(tTeam);
    _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 tTeam
    ) = _getValues(tAmount, _isSelling(recipient));
    _tOwned[sender] = _tOwned[sender].sub(tAmount);
    _rOwned[sender] = _rOwned[sender].sub(rAmount);
    _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
    _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
    _takeTeam(tTeam);
    _reflectFee(rFee, tFee);
    emit Transfer(sender, recipient, tTransferAmount);
  }

  function _takeTeam(uint256 tTeam) private {
    uint256 currentRate = _getRate();
    uint256 rTeam = tTeam.mul(currentRate);
    _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
    if (_isExcluded[address(this)])
      _tOwned[address(this)] = _tOwned[address(this)].add(tTeam);
  }

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

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

  function _getValues(uint256 tAmount, bool isSelling)
  private
  view
  returns (
    uint256,
    uint256,
    uint256,
    uint256,
    uint256,
    uint256
  )
  {
    (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(
      tAmount,
      _taxFee,
      _teamFee,
      isSelling
    );
    uint256 currentRate = _getRate();
    (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
      tAmount,
      tFee,
      tTeam,
      currentRate
    );
    return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam);
  }

  function _getTValues(
    uint256 tAmount,
    uint256 taxFee,
    uint256 teamFee,
    bool isSelling
  )
  private
  view
  returns (
    uint256,
    uint256,
    uint256
  )
  {
    uint256 finalTax = isSelling ? taxFee.mul(_sellTaxMultiplier) : 1;
    uint256 finalTeam = isSelling ? teamFee.mul(_sellTaxMultiplier) : 0;

    uint256 tFee = tAmount.mul(finalTax).div(100);
    uint256 tTeam = tAmount.mul(finalTeam).div(100);
    uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam);
    return (tTransferAmount, tFee, tTeam);
  }

  function _getRValues(
    uint256 tAmount,
    uint256 tFee,
    uint256 tTeam,
    uint256 currentRate
  )
  private
  pure
  returns (
    uint256,
    uint256,
    uint256
  )
  {
    uint256 rAmount = tAmount.mul(currentRate);
    uint256 rFee = tFee.mul(currentRate);
    uint256 rTeam = tTeam.mul(currentRate);
    uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam);
    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 _isSelling(address recipient) private view returns (bool) {
    return recipient == uniswapV2Pair || _isUniswapPair[recipient];
  }

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

  function _setTaxFee(uint256 taxFee) external onlyOwner {
    require(taxFee <= 7, 'taxFee should be in 0 - 2');
    _taxFee = taxFee;
  }

  function _setTeamFee(uint256 teamFee) external onlyOwner {
    require(teamFee <= 3, 'teamFee should be in 0 - 7');
    _teamFee = teamFee;
  }



  function _setTeamWallet(address payable _teamWallet) external onlyOwner {
    teamWallet = _teamWallet;
  }

  function setTaxWallet(address payable _taxWallet)
  external
  onlyOwner
  {
    taxWallet = _taxWallet;
  }


  function addBotBlacklist(address botAddress) external onlyOwner {
    botBlacklist[botAddress] = true;
  }
  function removeBotFromBlackList(address botAddress ) external onlyOwner {
    botBlacklist[botAddress] = false;
  }



  function isUniswapPair(address _pair) external view returns (bool) {
    if (_pair == uniswapV2Pair) return true;
    return _isUniswapPair[_pair];
  }

  function addUniswapPair(address _pair) external onlyOwner {
    _isUniswapPair[_pair] = true;
  }

  function removeUniswapPair(address _pair) external onlyOwner {
    _isUniswapPair[_pair] = false;
  }

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

}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 20
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"teamWallet_","type":"address"},{"internalType":"address payable","name":"taxWallet_","type":"address"}],"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":"amountTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountEth","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"ProvidedLiqudiity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"teamWallet","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"taxWallet","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"SendEthToTeam","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","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":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"_setTeamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_teamWallet","type":"address"}],"name":"_setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"botAddress","type":"address"}],"name":"addBotBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"addUniswapPair","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":"botProtectionDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractInitTime","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":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":[],"name":"initialTXLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialTXLimitActiveTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_pair","type":"address"}],"name":"isUniswapPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxUserBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"botAddress","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"removeUniswapPair","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":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_taxWallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":[],"name":"transferLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

60e06040526a52b7d2dcc80cd2e400000060078190556200002390600019620005de565b62000031906000196200057b565b60085560408051808201909152600c8082526b4f6c796d7069616e20496e7560a01b60209092019182526200006991600a916200046f565b50604080518082019091526003808252624f504960e81b60209092019182526200009691600b916200046f565b50600c805460ff191660121790556007600d8190556003600e8190556001600f5560109190915560115569065a5b8313e3be24000060145561012c60165561038460175569d3c229af83a1486400006018819055603c601955601c80546201010062ffffff19909116179055601d55683635c9adc5dea00000601e553480156200011f57600080fd5b50604051620035803803806200358083398101604081905262000142916200053c565b6200014d336200041f565b601280546001600160a01b038085166001600160a01b0319928316179092556013805492841692909116919091179055600854600160006200018c3390565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020357600080fd5b505afa15801562000218573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023e919062000515565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028757600080fd5b505afa1580156200029c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c2919062000515565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200030b57600080fd5b505af115801562000320573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000346919062000515565b6001600160601b0319606091821b811660c0529082901b1660a0526001600460006200037a6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600490925290208054909116600117905542608052620003c63390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040516200040e91815260200190565b60405180910390a35050506200061a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200047d90620005a1565b90600052602060002090601f016020900481019282620004a15760008555620004ec565b82601f10620004bc57805160ff1916838001178555620004ec565b82800160010185558215620004ec579182015b82811115620004ec578251825591602001919060010190620004cf565b50620004fa929150620004fe565b5090565b5b80821115620004fa5760008155600101620004ff565b6000602082840312156200052857600080fd5b8151620005358162000601565b9392505050565b600080604083850312156200055057600080fd5b82516200055d8162000601565b6020840151909250620005708162000601565b809150509250929050565b6000828210156200059c57634e487b7160e01b600052601160045260246000fd5b500390565b600181811c90821680620005b657607f821691505b60208210811415620005d857634e487b7160e01b600052602260045260246000fd5b50919050565b600082620005fc57634e487b7160e01b600052601260045260246000fd5b500690565b6001600160a01b03811681146200061757600080fd5b50565b60805160a05160601c60c05160601c612eb9620006c76000396000818161044a01528181610e7d01528181611889015281816118e70152818161194501528181611a1a01528181611a5501528181611b2b01528181611bb901528181611bf401526129350152600081816102cf01528181611e0901528181611ed101528181611f0d01528181612563015261258a015260008181610542015281816119a701526119db0152612eb96000f3fe6080604052600436106102375760003560e01c8063715018a61161012a578063715018a6146105a35780637ded4d6a146105b85780638da5cb5b146105d857806395d89b41146105ed57806398118cb4146106025780639cece12e14610618578063a457c2d714610638578063a6931ed714610658578063a7f404e214610678578063a9059cbb14610698578063af9549e0146106b8578063b80ec98d146106d8578063be7934af146106f8578063cba0e9961461070e578063dd62ed3e14610747578063e01af92c1461078d578063e5d8c889146107ad578063ea414b28146107c3578063f2cc0c18146107e3578063f2fde38b14610803578063f429389014610823578063f815a84214610838578063f84354f11461084b578063f94325171461086b57600080fd5b806306fdde0314610243578063095ea7b31461026e57806313114a9d1461029e5780631694505e146102bd57806318160ddd1461030957806323b872dd1461031e578063286671621461033e5780632d7c36d2146103605780632d838119146103765780632dc0562d14610396578063313ce567146103b657806339509351146103d85780633bd5d173146103f85780634549b0391461041857806349bd5a5e1461043857806351bc3c851461046c57806351ea605f146104815780635342acb4146104975780635880b873146104d057806359204720146104f057806359927044146105105780635fdb33a2146105305780636ddd17131461056457806370a082311461058357600080fd5b3661023e57005b600080fd5b34801561024f57600080fd5b50610258610881565b6040516102659190612be9565b60405180910390f35b34801561027a57600080fd5b5061028e610289366004612b38565b610913565b6040519015158152602001610265565b3480156102aa57600080fd5b506009545b604051908152602001610265565b3480156102c957600080fd5b506102f17f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610265565b34801561031557600080fd5b506007546102af565b34801561032a57600080fd5b5061028e610339366004612ac2565b61092a565b34801561034a57600080fd5b5061035e610359366004612b7f565b610993565b005b34801561036c57600080fd5b506102af60145481565b34801561038257600080fd5b506102af610391366004612b7f565b610a1e565b3480156103a257600080fd5b506013546102f1906001600160a01b031681565b3480156103c257600080fd5b50600c5460405160ff9091168152602001610265565b3480156103e457600080fd5b5061028e6103f3366004612b38565b610aa2565b34801561040457600080fd5b5061035e610413366004612b7f565b610ad8565b34801561042457600080fd5b506102af610433366004612b98565b610bc4565b34801561044457600080fd5b506102f17f000000000000000000000000000000000000000000000000000000000000000081565b34801561047857600080fd5b5061035e610c55565b34801561048d57600080fd5b506102af60175481565b3480156104a357600080fd5b5061028e6104b2366004612a4f565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156104dc57600080fd5b5061035e6104eb366004612b7f565b610c9d565b3480156104fc57600080fd5b5061035e61050b366004612a4f565b610d1e565b34801561051c57600080fd5b506012546102f1906001600160a01b031681565b34801561053c57600080fd5b506102af7f000000000000000000000000000000000000000000000000000000000000000081565b34801561057057600080fd5b50601c5461028e90610100900460ff1681565b34801561058f57600080fd5b506102af61059e366004612a4f565b610d71565b3480156105af57600080fd5b5061035e610dd0565b3480156105c457600080fd5b5061035e6105d3366004612a4f565b610e0b565b3480156105e457600080fd5b506102f1610e5b565b3480156105f957600080fd5b50610258610e6a565b34801561060e57600080fd5b506102af600f5481565b34801561062457600080fd5b5061028e610633366004612a4f565b610e79565b34801561064457600080fd5b5061028e610653366004612b38565b610edc565b34801561066457600080fd5b5061035e610673366004612a4f565b610f2b565b34801561068457600080fd5b5061035e610693366004612a4f565b610f7b565b3480156106a457600080fd5b5061028e6106b3366004612b38565b610fce565b3480156106c457600080fd5b5061035e6106d3366004612b03565b610fdb565b3480156106e457600080fd5b5061035e6106f3366004612a4f565b611035565b34801561070457600080fd5b506102af60165481565b34801561071a57600080fd5b5061028e610729366004612a4f565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561075357600080fd5b506102af610762366004612a89565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561079957600080fd5b5061035e6107a8366004612b64565b611086565b3480156107b957600080fd5b506102af60185481565b3480156107cf57600080fd5b5061035e6107de366004612a4f565b6110cf565b3480156107ef57600080fd5b5061035e6107fe366004612a4f565b611120565b34801561080f57600080fd5b5061035e61081e366004612a4f565b6112c0565b34801561082f57600080fd5b5061035e61135d565b34801561084457600080fd5b50476102af565b34801561085757600080fd5b5061035e610866366004612a4f565b611396565b34801561087757600080fd5b506102af60195481565b6060600a805461089090612d89565b80601f01602080910402602001604051908101604052809291908181526020018280546108bc90612d89565b80156109095780601f106108de57610100808354040283529160200191610909565b820191906000526020600020905b8154815290600101906020018083116108ec57829003601f168201915b5050505050905090565b6000610920338484611522565b5060015b92915050565b6000610937848484611646565b610989843361098485604051806060016040528060288152602001612e37602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611cd3565b611522565b5060019392505050565b3361099c610e5b565b6001600160a01b0316146109cb5760405162461bcd60e51b81526004016109c290612c73565b60405180910390fd5b6003811115610a195760405162461bcd60e51b815260206004820152601a6024820152797465616d4665652073686f756c6420626520696e2030202d203760301b60448201526064016109c2565b600e55565b6000600854821115610a855760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016109c2565b6000610a8f611cff565b9050610a9b8382611d22565b9392505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916109209185906109849086611d2e565b3360008181526005602052604090205460ff1615610b4d5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016109c2565b6000610b5a836000611d3a565b505050506001600160a01b038416600090815260016020526040902054919250610b8691905082611d99565b6001600160a01b038316600090815260016020526040902055600854610bac9082611d99565b600855600954610bbc9084611d2e565b600955505050565b6000600754831115610c185760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016109c2565b81610c39576000610c2a846000611d3a565b50939550610924945050505050565b6000610c46846000611d3a565b50929550610924945050505050565b33610c5e610e5b565b6001600160a01b031614610c845760405162461bcd60e51b81526004016109c290612c73565b6000610c8f30610d71565b9050610c9a81611da5565b50565b33610ca6610e5b565b6001600160a01b031614610ccc5760405162461bcd60e51b81526004016109c290612c73565b6007811115610d195760405162461bcd60e51b81526020600482015260196024820152783a30bc2332b29039b437bab6321031329034b710181016901960391b60448201526064016109c2565b600d55565b33610d27610e5b565b6001600160a01b031614610d4d5760405162461bcd60e51b81526004016109c290612c73565b6001600160a01b03166000908152601a60205260409020805460ff19166001179055565b6001600160a01b03811660009081526005602052604081205460ff1615610dae57506001600160a01b031660009081526002602052604090205490565b6001600160a01b03821660009081526001602052604090205461092490610a1e565b33610dd9610e5b565b6001600160a01b031614610dff5760405162461bcd60e51b81526004016109c290612c73565b610e096000611f8b565b565b33610e14610e5b565b6001600160a01b031614610e3a5760405162461bcd60e51b81526004016109c290612c73565b6001600160a01b03166000908152601a60205260409020805460ff19169055565b6000546001600160a01b031690565b6060600b805461089090612d89565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610ebd57506001919050565b506001600160a01b03166000908152601b602052604090205460ff1690565b6000610920338461098485604051806060016040528060258152602001612e5f602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611cd3565b33610f34610e5b565b6001600160a01b031614610f5a5760405162461bcd60e51b81526004016109c290612c73565b6001600160a01b03166000908152601b60205260409020805460ff19169055565b33610f84610e5b565b6001600160a01b031614610faa5760405162461bcd60e51b81526004016109c290612c73565b6001600160a01b03166000908152601b60205260409020805460ff19166001179055565b6000610920338484611646565b33610fe4610e5b565b6001600160a01b03161461100a5760405162461bcd60e51b81526004016109c290612c73565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b3361103e610e5b565b6001600160a01b0316146110645760405162461bcd60e51b81526004016109c290612c73565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b3361108f610e5b565b6001600160a01b0316146110b55760405162461bcd60e51b81526004016109c290612c73565b601c80549115156101000261ff0019909216919091179055565b336110d8610e5b565b6001600160a01b0316146110fe5760405162461bcd60e51b81526004016109c290612c73565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b33611129610e5b565b6001600160a01b03161461114f5760405162461bcd60e51b81526004016109c290612c73565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156111c75760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b60648201526084016109c2565b6001600160a01b03811660009081526005602052604090205460ff16156112005760405162461bcd60e51b81526004016109c290612c3e565b6001600160a01b0381166000908152600160205260409020541561125a576001600160a01b03811660009081526001602052604090205461124090610a1e565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b336112c9610e5b565b6001600160a01b0316146112ef5760405162461bcd60e51b81526004016109c290612c73565b6001600160a01b0381166113545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c2565b610c9a81611f8b565b33611366610e5b565b6001600160a01b03161461138c5760405162461bcd60e51b81526004016109c290612c73565b47610c9a81611fdb565b3361139f610e5b565b6001600160a01b0316146113c55760405162461bcd60e51b81526004016109c290612c73565b6001600160a01b03811660009081526005602052604090205460ff166113fd5760405162461bcd60e51b81526004016109c290612c3e565b60005b60065481101561151e57816001600160a01b03166006828154811061142757611427612e0b565b6000918252602090912001546001600160a01b0316141561150c576006805461145290600190612d72565b8154811061146257611462612e0b565b600091825260209091200154600680546001600160a01b03909216918390811061148e5761148e612e0b565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff1916905560068054806114e6576114e6612df5565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061151681612dc4565b915050611400565b5050565b6001600160a01b0383166115845760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109c2565b6001600160a01b0382166115e55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109c2565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166000908152601a602052604090205460ff161561166c57600080fd5b6001600160a01b0383166116d05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109c2565b6001600160a01b0382166117325760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109c2565b600081116117945760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016109c2565b61179c610e5b565b6001600160a01b0316836001600160a01b0316141580156117d657506117c0610e5b565b6001600160a01b0316826001600160a01b031614155b1561183e57601d5481111561183e5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016109c2565b611846610e5b565b6001600160a01b0316836001600160a01b031614158015611880575061186a610e5b565b6001600160a01b0316826001600160a01b031614155b15611acd5760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614156118cd576118ca83610d71565b90505b6018546118da8383612d19565b11156118e557600080fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148061193d57506001600160a01b0383166000908152601b602052604090205460ff165b8061197957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b8061199c57506001600160a01b0384166000908152601b602052604090205460ff165b15611acb57426017547f00000000000000000000000000000000000000000000000000000000000000006119d09190612d19565b10611acb57426016547f0000000000000000000000000000000000000000000000000000000000000000611a049190612d19565b10611a1857816014541015611a1857600080fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480611a8957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b15611acb5732600090815260156020526040902054601954611aab9082612d19565b421015611ab757600080fd5b503260009081526015602052604090204290555b505b6000611ad830610d71565b9050601d548110611ae85750601d545b601e54601c54908210159060ff16158015611b0a5750601c54610100900460ff165b8015611b135750805b8015611b225750601f5460ff16155b8015611b8157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161480611b8157506001600160a01b0384166000908152601b602052604090205460ff165b15611bb557611b8f826120f9565b611b9830610d71565b9150611ba382611da5565b478015611bb357611bb347611fdb565b505b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161480611c2857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316145b80611c4b57506001600160a01b0385166000908152601b602052604090205460ff165b80611c6e57506001600160a01b0386166000908152601b602052604090205460ff165b8015611cb657506001600160a01b03861660009081526004602052604090205460ff1680611cb457506001600160a01b03851660009081526004602052604090205460ff165b155b15611cbf575060015b611ccb868686846121ad565b505050505050565b60008184841115611cf75760405162461bcd60e51b81526004016109c29190612be9565b505050900390565b6000806000611d0c6122d8565b9092509050611d1b8282611d22565b9250505090565b6000610a9b8284612d31565b6000610a9b8284612d19565b6000806000806000806000806000611d588b600d54600e548d61245a565b9250925092506000611d68611cff565b90506000806000611d7b8f878787612501565b919e509c509a50959850939650919450505050509295509295509295565b6000610a9b8284612d72565b601f805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611de757611de7612e0b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e6057600080fd5b505afa158015611e74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e989190612a6c565b81600181518110611eab57611eab612e0b565b60200260200101906001600160a01b031690816001600160a01b031681525050611ef6307f000000000000000000000000000000000000000000000000000000000000000084611522565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f4b908590600090869030904290600401612ca8565b600060405180830381600087803b158015611f6557600080fd5b505af1158015611f79573d6000803e3d6000fd5b5050601f805460ff1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600d54600090611ff690611ff0846064611d22565b90612551565b90506000612014600e54611ff0606486611d2290919063ffffffff16565b6040805182815260208101859052428183015290519192507ff8c8548ff82687c8e2c937a347039b8dcf1a80232e14c18c3a57dae6e6fa7cbc919081900360600190a16012546040516001600160a01b03909116908290600081818185875af1925050503d80600081146120a4576040519150601f19603f3d011682016040523d82523d6000602084013e6120a9565b606091505b50506013546040516001600160a01b0390911691508390600081818185875af1925050503d8060008114611ccb576040519150601f19603f3d011682016040523d82523d6000602084013e611ccb565b601c805460ff19166001179055600f5460009061211b90611ff0846064611d22565b9050600061212a826002611d22565b905060006121388483611d99565b90504761214483611da5565b60006121504783611d99565b905061215c838261255d565b6040805185815260208101839052428183015290517fee304e1a870487b392f1953d71812564f7bf989bdd37889e31ad07940bf953409181900360600190a15050601c805460ff1916905550505050565b806121ba576121ba612668565b6001600160a01b03841660009081526005602052604090205460ff1680156121fb57506001600160a01b03831660009081526005602052604090205460ff16155b156122105761220b848484612696565b6122bc565b6001600160a01b03841660009081526005602052604090205460ff1615801561225157506001600160a01b03831660009081526005602052604090205460ff165b156122615761220b8484846127c5565b6001600160a01b03841660009081526005602052604090205460ff1680156122a157506001600160a01b03831660009081526005602052604090205460ff165b156122b15761220b848484612872565b6122bc8484846128e9565b806122d2576122d2601054600d55601154600e55565b50505050565b6008546007546000918291825b60065481101561242a5782600160006006848154811061230757612307612e0b565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612372575081600260006006848154811061234b5761234b612e0b565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561238857600854600754945094505050509091565b6123ce60016000600684815481106123a2576123a2612e0b565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611d99565b925061241660026000600684815481106123ea576123ea612e0b565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611d99565b91508061242281612dc4565b9150506122e5565b5060075460085461243a91611d22565b821015612451576008546007549350935050509091565b90939092509050565b6000806000808461246c576001612483565b601c5461248390889062010000900460ff16612551565b90506000856124935760006124aa565b601c546124aa90889062010000900460ff16612551565b905060006124c360646124bd8c86612551565b90611d22565b905060006124d660646124bd8d86612551565b905060006124ee826124e88e86611d99565b90611d99565b9c929b5090995090975050505050505050565b60008080806125108886612551565b9050600061251e8887612551565b9050600061252c8888612551565b9050600061253e826124e88686611d99565b939b939a50919850919650505050505050565b6000610a9b8284612d53565b612588307f000000000000000000000000000000000000000000000000000000000000000084611522565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806125c5610e5b565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561262857600080fd5b505af115801561263c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126619190612bbb565b5050505050565b600d541580156126785750600e54155b1561267f57565b600d8054601055600e805460115560009182905555565b6000806000806000806126b1876126ac8a612931565b611d3a565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506126e39088611d99565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546127129087611d99565b6001600160a01b03808b1660009081526001602052604080822093909355908a16815220546127419086611d2e565b6001600160a01b0389166000908152600160205260409020556127638161298d565b61276d8483612a16565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516127b291815260200190565b60405180910390a3505050505050505050565b6000806000806000806127db876126ac8a612931565b6001600160a01b038f16600090815260016020526040902054959b5093995091975095509350915061280d9087611d99565b6001600160a01b03808b16600090815260016020908152604080832094909455918b168152600290915220546128439084611d2e565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546127419086611d2e565b600080600080600080612888876126ac8a612931565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506128ba9088611d99565b6001600160a01b038a1660009081526002602090815260408083209390935560019052205461280d9087611d99565b6000806000806000806128ff876126ac8a612931565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506127129087611d99565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614806109245750506001600160a01b03166000908152601b602052604090205460ff1690565b6000612997611cff565b905060006129a58383612551565b306000908152600160205260409020549091506129c29082611d2e565b3060009081526001602090815260408083209390935560059052205460ff1615612a115730600090815260026020526040902054612a009084611d2e565b306000908152600260205260409020555b505050565b600854612a239083611d99565b600855600954612a339082611d2e565b6009555050565b80358015158114612a4a57600080fd5b919050565b600060208284031215612a6157600080fd5b8135610a9b81612e21565b600060208284031215612a7e57600080fd5b8151610a9b81612e21565b60008060408385031215612a9c57600080fd5b8235612aa781612e21565b91506020830135612ab781612e21565b809150509250929050565b600080600060608486031215612ad757600080fd5b8335612ae281612e21565b92506020840135612af281612e21565b929592945050506040919091013590565b60008060408385031215612b1657600080fd5b8235612b2181612e21565b9150612b2f60208401612a3a565b90509250929050565b60008060408385031215612b4b57600080fd5b8235612b5681612e21565b946020939093013593505050565b600060208284031215612b7657600080fd5b610a9b82612a3a565b600060208284031215612b9157600080fd5b5035919050565b60008060408385031215612bab57600080fd5b82359150612b2f60208401612a3a565b600080600060608486031215612bd057600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612c1657858101830151858201604001528201612bfa565b81811115612c28576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252601b908201527a1058d8dbdd5b9d081a5cc8185b1c9958591e48195e18db1d591959602a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612cf85784516001600160a01b031683529383019391830191600101612cd3565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612d2c57612d2c612ddf565b500190565b600082612d4e57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612d6d57612d6d612ddf565b500290565b600082821015612d8457612d84612ddf565b500390565b600181811c90821680612d9d57607f821691505b60208210811415612dbe57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dd857612dd8612ddf565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610c9a57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122023b5af5c430e31069de1b49ce668a0a1256d49d797ebd112c42b6b7cd8c4c5e064736f6c63430008070033000000000000000000000000e9b47c34eaed75c11dcc5511e272594fba050e3a000000000000000000000000790fa97a8a21d574bcfcb626dd34eaec4984c3e9

Deployed Bytecode

0x6080604052600436106102375760003560e01c8063715018a61161012a578063715018a6146105a35780637ded4d6a146105b85780638da5cb5b146105d857806395d89b41146105ed57806398118cb4146106025780639cece12e14610618578063a457c2d714610638578063a6931ed714610658578063a7f404e214610678578063a9059cbb14610698578063af9549e0146106b8578063b80ec98d146106d8578063be7934af146106f8578063cba0e9961461070e578063dd62ed3e14610747578063e01af92c1461078d578063e5d8c889146107ad578063ea414b28146107c3578063f2cc0c18146107e3578063f2fde38b14610803578063f429389014610823578063f815a84214610838578063f84354f11461084b578063f94325171461086b57600080fd5b806306fdde0314610243578063095ea7b31461026e57806313114a9d1461029e5780631694505e146102bd57806318160ddd1461030957806323b872dd1461031e578063286671621461033e5780632d7c36d2146103605780632d838119146103765780632dc0562d14610396578063313ce567146103b657806339509351146103d85780633bd5d173146103f85780634549b0391461041857806349bd5a5e1461043857806351bc3c851461046c57806351ea605f146104815780635342acb4146104975780635880b873146104d057806359204720146104f057806359927044146105105780635fdb33a2146105305780636ddd17131461056457806370a082311461058357600080fd5b3661023e57005b600080fd5b34801561024f57600080fd5b50610258610881565b6040516102659190612be9565b60405180910390f35b34801561027a57600080fd5b5061028e610289366004612b38565b610913565b6040519015158152602001610265565b3480156102aa57600080fd5b506009545b604051908152602001610265565b3480156102c957600080fd5b506102f17f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610265565b34801561031557600080fd5b506007546102af565b34801561032a57600080fd5b5061028e610339366004612ac2565b61092a565b34801561034a57600080fd5b5061035e610359366004612b7f565b610993565b005b34801561036c57600080fd5b506102af60145481565b34801561038257600080fd5b506102af610391366004612b7f565b610a1e565b3480156103a257600080fd5b506013546102f1906001600160a01b031681565b3480156103c257600080fd5b50600c5460405160ff9091168152602001610265565b3480156103e457600080fd5b5061028e6103f3366004612b38565b610aa2565b34801561040457600080fd5b5061035e610413366004612b7f565b610ad8565b34801561042457600080fd5b506102af610433366004612b98565b610bc4565b34801561044457600080fd5b506102f17f000000000000000000000000c4a3b7ff958e838d0c04c5b2dfd6ed7af46da26481565b34801561047857600080fd5b5061035e610c55565b34801561048d57600080fd5b506102af60175481565b3480156104a357600080fd5b5061028e6104b2366004612a4f565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156104dc57600080fd5b5061035e6104eb366004612b7f565b610c9d565b3480156104fc57600080fd5b5061035e61050b366004612a4f565b610d1e565b34801561051c57600080fd5b506012546102f1906001600160a01b031681565b34801561053c57600080fd5b506102af7f000000000000000000000000000000000000000000000000000000006379357781565b34801561057057600080fd5b50601c5461028e90610100900460ff1681565b34801561058f57600080fd5b506102af61059e366004612a4f565b610d71565b3480156105af57600080fd5b5061035e610dd0565b3480156105c457600080fd5b5061035e6105d3366004612a4f565b610e0b565b3480156105e457600080fd5b506102f1610e5b565b3480156105f957600080fd5b50610258610e6a565b34801561060e57600080fd5b506102af600f5481565b34801561062457600080fd5b5061028e610633366004612a4f565b610e79565b34801561064457600080fd5b5061028e610653366004612b38565b610edc565b34801561066457600080fd5b5061035e610673366004612a4f565b610f2b565b34801561068457600080fd5b5061035e610693366004612a4f565b610f7b565b3480156106a457600080fd5b5061028e6106b3366004612b38565b610fce565b3480156106c457600080fd5b5061035e6106d3366004612b03565b610fdb565b3480156106e457600080fd5b5061035e6106f3366004612a4f565b611035565b34801561070457600080fd5b506102af60165481565b34801561071a57600080fd5b5061028e610729366004612a4f565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561075357600080fd5b506102af610762366004612a89565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561079957600080fd5b5061035e6107a8366004612b64565b611086565b3480156107b957600080fd5b506102af60185481565b3480156107cf57600080fd5b5061035e6107de366004612a4f565b6110cf565b3480156107ef57600080fd5b5061035e6107fe366004612a4f565b611120565b34801561080f57600080fd5b5061035e61081e366004612a4f565b6112c0565b34801561082f57600080fd5b5061035e61135d565b34801561084457600080fd5b50476102af565b34801561085757600080fd5b5061035e610866366004612a4f565b611396565b34801561087757600080fd5b506102af60195481565b6060600a805461089090612d89565b80601f01602080910402602001604051908101604052809291908181526020018280546108bc90612d89565b80156109095780601f106108de57610100808354040283529160200191610909565b820191906000526020600020905b8154815290600101906020018083116108ec57829003601f168201915b5050505050905090565b6000610920338484611522565b5060015b92915050565b6000610937848484611646565b610989843361098485604051806060016040528060288152602001612e37602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611cd3565b611522565b5060019392505050565b3361099c610e5b565b6001600160a01b0316146109cb5760405162461bcd60e51b81526004016109c290612c73565b60405180910390fd5b6003811115610a195760405162461bcd60e51b815260206004820152601a6024820152797465616d4665652073686f756c6420626520696e2030202d203760301b60448201526064016109c2565b600e55565b6000600854821115610a855760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016109c2565b6000610a8f611cff565b9050610a9b8382611d22565b9392505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916109209185906109849086611d2e565b3360008181526005602052604090205460ff1615610b4d5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016109c2565b6000610b5a836000611d3a565b505050506001600160a01b038416600090815260016020526040902054919250610b8691905082611d99565b6001600160a01b038316600090815260016020526040902055600854610bac9082611d99565b600855600954610bbc9084611d2e565b600955505050565b6000600754831115610c185760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016109c2565b81610c39576000610c2a846000611d3a565b50939550610924945050505050565b6000610c46846000611d3a565b50929550610924945050505050565b33610c5e610e5b565b6001600160a01b031614610c845760405162461bcd60e51b81526004016109c290612c73565b6000610c8f30610d71565b9050610c9a81611da5565b50565b33610ca6610e5b565b6001600160a01b031614610ccc5760405162461bcd60e51b81526004016109c290612c73565b6007811115610d195760405162461bcd60e51b81526020600482015260196024820152783a30bc2332b29039b437bab6321031329034b710181016901960391b60448201526064016109c2565b600d55565b33610d27610e5b565b6001600160a01b031614610d4d5760405162461bcd60e51b81526004016109c290612c73565b6001600160a01b03166000908152601a60205260409020805460ff19166001179055565b6001600160a01b03811660009081526005602052604081205460ff1615610dae57506001600160a01b031660009081526002602052604090205490565b6001600160a01b03821660009081526001602052604090205461092490610a1e565b33610dd9610e5b565b6001600160a01b031614610dff5760405162461bcd60e51b81526004016109c290612c73565b610e096000611f8b565b565b33610e14610e5b565b6001600160a01b031614610e3a5760405162461bcd60e51b81526004016109c290612c73565b6001600160a01b03166000908152601a60205260409020805460ff19169055565b6000546001600160a01b031690565b6060600b805461089090612d89565b60007f000000000000000000000000c4a3b7ff958e838d0c04c5b2dfd6ed7af46da2646001600160a01b0316826001600160a01b03161415610ebd57506001919050565b506001600160a01b03166000908152601b602052604090205460ff1690565b6000610920338461098485604051806060016040528060258152602001612e5f602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611cd3565b33610f34610e5b565b6001600160a01b031614610f5a5760405162461bcd60e51b81526004016109c290612c73565b6001600160a01b03166000908152601b60205260409020805460ff19169055565b33610f84610e5b565b6001600160a01b031614610faa5760405162461bcd60e51b81526004016109c290612c73565b6001600160a01b03166000908152601b60205260409020805460ff19166001179055565b6000610920338484611646565b33610fe4610e5b565b6001600160a01b03161461100a5760405162461bcd60e51b81526004016109c290612c73565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b3361103e610e5b565b6001600160a01b0316146110645760405162461bcd60e51b81526004016109c290612c73565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b3361108f610e5b565b6001600160a01b0316146110b55760405162461bcd60e51b81526004016109c290612c73565b601c80549115156101000261ff0019909216919091179055565b336110d8610e5b565b6001600160a01b0316146110fe5760405162461bcd60e51b81526004016109c290612c73565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b33611129610e5b565b6001600160a01b03161461114f5760405162461bcd60e51b81526004016109c290612c73565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156111c75760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b60648201526084016109c2565b6001600160a01b03811660009081526005602052604090205460ff16156112005760405162461bcd60e51b81526004016109c290612c3e565b6001600160a01b0381166000908152600160205260409020541561125a576001600160a01b03811660009081526001602052604090205461124090610a1e565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b336112c9610e5b565b6001600160a01b0316146112ef5760405162461bcd60e51b81526004016109c290612c73565b6001600160a01b0381166113545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c2565b610c9a81611f8b565b33611366610e5b565b6001600160a01b03161461138c5760405162461bcd60e51b81526004016109c290612c73565b47610c9a81611fdb565b3361139f610e5b565b6001600160a01b0316146113c55760405162461bcd60e51b81526004016109c290612c73565b6001600160a01b03811660009081526005602052604090205460ff166113fd5760405162461bcd60e51b81526004016109c290612c3e565b60005b60065481101561151e57816001600160a01b03166006828154811061142757611427612e0b565b6000918252602090912001546001600160a01b0316141561150c576006805461145290600190612d72565b8154811061146257611462612e0b565b600091825260209091200154600680546001600160a01b03909216918390811061148e5761148e612e0b565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff1916905560068054806114e6576114e6612df5565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061151681612dc4565b915050611400565b5050565b6001600160a01b0383166115845760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109c2565b6001600160a01b0382166115e55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109c2565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166000908152601a602052604090205460ff161561166c57600080fd5b6001600160a01b0383166116d05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109c2565b6001600160a01b0382166117325760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109c2565b600081116117945760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016109c2565b61179c610e5b565b6001600160a01b0316836001600160a01b0316141580156117d657506117c0610e5b565b6001600160a01b0316826001600160a01b031614155b1561183e57601d5481111561183e5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016109c2565b611846610e5b565b6001600160a01b0316836001600160a01b031614158015611880575061186a610e5b565b6001600160a01b0316826001600160a01b031614155b15611acd5760007f000000000000000000000000c4a3b7ff958e838d0c04c5b2dfd6ed7af46da2646001600160a01b0316846001600160a01b031614156118cd576118ca83610d71565b90505b6018546118da8383612d19565b11156118e557600080fd5b7f000000000000000000000000c4a3b7ff958e838d0c04c5b2dfd6ed7af46da2646001600160a01b0316836001600160a01b0316148061193d57506001600160a01b0383166000908152601b602052604090205460ff165b8061197957507f000000000000000000000000c4a3b7ff958e838d0c04c5b2dfd6ed7af46da2646001600160a01b0316846001600160a01b0316145b8061199c57506001600160a01b0384166000908152601b602052604090205460ff165b15611acb57426017547f00000000000000000000000000000000000000000000000000000000637935776119d09190612d19565b10611acb57426016547f0000000000000000000000000000000000000000000000000000000063793577611a049190612d19565b10611a1857816014541015611a1857600080fd5b7f000000000000000000000000c4a3b7ff958e838d0c04c5b2dfd6ed7af46da2646001600160a01b0316836001600160a01b03161480611a8957507f000000000000000000000000c4a3b7ff958e838d0c04c5b2dfd6ed7af46da2646001600160a01b0316846001600160a01b0316145b15611acb5732600090815260156020526040902054601954611aab9082612d19565b421015611ab757600080fd5b503260009081526015602052604090204290555b505b6000611ad830610d71565b9050601d548110611ae85750601d545b601e54601c54908210159060ff16158015611b0a5750601c54610100900460ff165b8015611b135750805b8015611b225750601f5460ff16155b8015611b8157507f000000000000000000000000c4a3b7ff958e838d0c04c5b2dfd6ed7af46da2646001600160a01b0316846001600160a01b03161480611b8157506001600160a01b0384166000908152601b602052604090205460ff165b15611bb557611b8f826120f9565b611b9830610d71565b9150611ba382611da5565b478015611bb357611bb347611fdb565b505b60007f000000000000000000000000c4a3b7ff958e838d0c04c5b2dfd6ed7af46da2646001600160a01b0316866001600160a01b03161480611c2857507f000000000000000000000000c4a3b7ff958e838d0c04c5b2dfd6ed7af46da2646001600160a01b0316856001600160a01b0316145b80611c4b57506001600160a01b0385166000908152601b602052604090205460ff165b80611c6e57506001600160a01b0386166000908152601b602052604090205460ff165b8015611cb657506001600160a01b03861660009081526004602052604090205460ff1680611cb457506001600160a01b03851660009081526004602052604090205460ff165b155b15611cbf575060015b611ccb868686846121ad565b505050505050565b60008184841115611cf75760405162461bcd60e51b81526004016109c29190612be9565b505050900390565b6000806000611d0c6122d8565b9092509050611d1b8282611d22565b9250505090565b6000610a9b8284612d31565b6000610a9b8284612d19565b6000806000806000806000806000611d588b600d54600e548d61245a565b9250925092506000611d68611cff565b90506000806000611d7b8f878787612501565b919e509c509a50959850939650919450505050509295509295509295565b6000610a9b8284612d72565b601f805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611de757611de7612e0b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e6057600080fd5b505afa158015611e74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e989190612a6c565b81600181518110611eab57611eab612e0b565b60200260200101906001600160a01b031690816001600160a01b031681525050611ef6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611522565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f4b908590600090869030904290600401612ca8565b600060405180830381600087803b158015611f6557600080fd5b505af1158015611f79573d6000803e3d6000fd5b5050601f805460ff1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600d54600090611ff690611ff0846064611d22565b90612551565b90506000612014600e54611ff0606486611d2290919063ffffffff16565b6040805182815260208101859052428183015290519192507ff8c8548ff82687c8e2c937a347039b8dcf1a80232e14c18c3a57dae6e6fa7cbc919081900360600190a16012546040516001600160a01b03909116908290600081818185875af1925050503d80600081146120a4576040519150601f19603f3d011682016040523d82523d6000602084013e6120a9565b606091505b50506013546040516001600160a01b0390911691508390600081818185875af1925050503d8060008114611ccb576040519150601f19603f3d011682016040523d82523d6000602084013e611ccb565b601c805460ff19166001179055600f5460009061211b90611ff0846064611d22565b9050600061212a826002611d22565b905060006121388483611d99565b90504761214483611da5565b60006121504783611d99565b905061215c838261255d565b6040805185815260208101839052428183015290517fee304e1a870487b392f1953d71812564f7bf989bdd37889e31ad07940bf953409181900360600190a15050601c805460ff1916905550505050565b806121ba576121ba612668565b6001600160a01b03841660009081526005602052604090205460ff1680156121fb57506001600160a01b03831660009081526005602052604090205460ff16155b156122105761220b848484612696565b6122bc565b6001600160a01b03841660009081526005602052604090205460ff1615801561225157506001600160a01b03831660009081526005602052604090205460ff165b156122615761220b8484846127c5565b6001600160a01b03841660009081526005602052604090205460ff1680156122a157506001600160a01b03831660009081526005602052604090205460ff165b156122b15761220b848484612872565b6122bc8484846128e9565b806122d2576122d2601054600d55601154600e55565b50505050565b6008546007546000918291825b60065481101561242a5782600160006006848154811061230757612307612e0b565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612372575081600260006006848154811061234b5761234b612e0b565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561238857600854600754945094505050509091565b6123ce60016000600684815481106123a2576123a2612e0b565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611d99565b925061241660026000600684815481106123ea576123ea612e0b565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611d99565b91508061242281612dc4565b9150506122e5565b5060075460085461243a91611d22565b821015612451576008546007549350935050509091565b90939092509050565b6000806000808461246c576001612483565b601c5461248390889062010000900460ff16612551565b90506000856124935760006124aa565b601c546124aa90889062010000900460ff16612551565b905060006124c360646124bd8c86612551565b90611d22565b905060006124d660646124bd8d86612551565b905060006124ee826124e88e86611d99565b90611d99565b9c929b5090995090975050505050505050565b60008080806125108886612551565b9050600061251e8887612551565b9050600061252c8888612551565b9050600061253e826124e88686611d99565b939b939a50919850919650505050505050565b6000610a9b8284612d53565b612588307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611522565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806125c5610e5b565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561262857600080fd5b505af115801561263c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126619190612bbb565b5050505050565b600d541580156126785750600e54155b1561267f57565b600d8054601055600e805460115560009182905555565b6000806000806000806126b1876126ac8a612931565b611d3a565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506126e39088611d99565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546127129087611d99565b6001600160a01b03808b1660009081526001602052604080822093909355908a16815220546127419086611d2e565b6001600160a01b0389166000908152600160205260409020556127638161298d565b61276d8483612a16565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516127b291815260200190565b60405180910390a3505050505050505050565b6000806000806000806127db876126ac8a612931565b6001600160a01b038f16600090815260016020526040902054959b5093995091975095509350915061280d9087611d99565b6001600160a01b03808b16600090815260016020908152604080832094909455918b168152600290915220546128439084611d2e565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546127419086611d2e565b600080600080600080612888876126ac8a612931565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506128ba9088611d99565b6001600160a01b038a1660009081526002602090815260408083209390935560019052205461280d9087611d99565b6000806000806000806128ff876126ac8a612931565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506127129087611d99565b60007f000000000000000000000000c4a3b7ff958e838d0c04c5b2dfd6ed7af46da2646001600160a01b0316826001600160a01b031614806109245750506001600160a01b03166000908152601b602052604090205460ff1690565b6000612997611cff565b905060006129a58383612551565b306000908152600160205260409020549091506129c29082611d2e565b3060009081526001602090815260408083209390935560059052205460ff1615612a115730600090815260026020526040902054612a009084611d2e565b306000908152600260205260409020555b505050565b600854612a239083611d99565b600855600954612a339082611d2e565b6009555050565b80358015158114612a4a57600080fd5b919050565b600060208284031215612a6157600080fd5b8135610a9b81612e21565b600060208284031215612a7e57600080fd5b8151610a9b81612e21565b60008060408385031215612a9c57600080fd5b8235612aa781612e21565b91506020830135612ab781612e21565b809150509250929050565b600080600060608486031215612ad757600080fd5b8335612ae281612e21565b92506020840135612af281612e21565b929592945050506040919091013590565b60008060408385031215612b1657600080fd5b8235612b2181612e21565b9150612b2f60208401612a3a565b90509250929050565b60008060408385031215612b4b57600080fd5b8235612b5681612e21565b946020939093013593505050565b600060208284031215612b7657600080fd5b610a9b82612a3a565b600060208284031215612b9157600080fd5b5035919050565b60008060408385031215612bab57600080fd5b82359150612b2f60208401612a3a565b600080600060608486031215612bd057600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612c1657858101830151858201604001528201612bfa565b81811115612c28576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252601b908201527a1058d8dbdd5b9d081a5cc8185b1c9958591e48195e18db1d591959602a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612cf85784516001600160a01b031683529383019391830191600101612cd3565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612d2c57612d2c612ddf565b500190565b600082612d4e57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612d6d57612d6d612ddf565b500290565b600082821015612d8457612d84612ddf565b500390565b600181811c90821680612d9d57607f821691505b60208210811415612dbe57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dd857612dd8612ddf565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610c9a57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122023b5af5c430e31069de1b49ce668a0a1256d49d797ebd112c42b6b7cd8c4c5e064736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000e9b47c34eaed75c11dcc5511e272594fba050e3a000000000000000000000000790fa97a8a21d574bcfcb626dd34eaec4984c3e9

-----Decoded View---------------
Arg [0] : teamWallet_ (address): 0xe9b47c34EAED75C11DCc5511E272594fba050e3a
Arg [1] : taxWallet_ (address): 0x790fa97A8A21d574BCFcb626dD34EaeC4984c3E9

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000e9b47c34eaed75c11dcc5511e272594fba050e3a
Arg [1] : 000000000000000000000000790fa97a8a21d574bcfcb626dd34eaec4984c3e9


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.