ETH Price: $3,496.31 (+0.26%)
Gas: 2 Gwei

Token

Mr. T (MR)
 

Overview

Max Total Supply

1,000,000,000 MR

Holders

46

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
ded.eth
Balance
0.000645496151129459 MR

Value
$0.00
0x5cf00981051d1b2089af349ef9e074420ad7ae82
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:
MrT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : MrT.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;

import "./MrLiquidity.sol";
import "./interfaces/ISwapRouter.sol";
import "./interfaces/ISwapFactory.sol";
import "../node_modules/@openzeppelin/contracts/access/Ownable.sol";
import "../node_modules/@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract MrT is ERC20, Ownable  {

  mapping(string => mapping(address => bool)) public _taxList;
  uint32 public _taxPercision = 10000;
  uint16 public _tax = 300;
  bool public _taxActive;

  uint256 private _totalSupply;

  address public TAddress = 0x6967299e9F3d5312740Aa61dEe6E9ea658958e31;
  address public uniswapAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

  address public routerAddress = uniswapAddress;
  uint256 minTokensBeforeSwap = 0;

  address public lpAddress;

  MrLiquidity public mrLiquidity;

  /* Events */
  event RemoveFromTaxList(string list, address indexed wallet);
  event AddToTaxList(string list, address indexed wallet);
  event UpdateTaxPercentage(uint16 _newTaxAmount);
  event MinSwapTokensChanged(uint256 amount);
  event ToggleTax(bool _active);

  ISwapRouter public router = ISwapRouter(routerAddress);
  IERC20 public T = IERC20(TAddress);
  bool inSwap;

  event SwapUpdated(bool enabled);
  event Swap(uint256 swaped, uint256 recieved);

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

  constructor(address mrLiqidityAddress) ERC20('Mr. T', 'MR') {
    mrLiquidity = MrLiquidity(mrLiqidityAddress);
    _totalSupply = 1000000000 * (10**18);
    approveRouterSpending();

    _mint(msg.sender, _totalSupply);
    _taxActive = true;
  }

  function setLPAddress() public onlyOwner {
    if (lpAddress == address(0)) {
      lpAddress = ISwapFactory(router.factory()).getPair(TAddress, address(this));
      addToTaxList('from', lpAddress);
      addToTaxList('to', lpAddress);
    }
  }

  /**
  * @notice overrides ERC20 transferFrom function to introduce tax functionality
  * @param from address amount is coming from
  * @param to address amount is going to
  * @param amount amount being sent
  */
  function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
    address spender = _msgSender();
    _spendAllowance(from, spender, amount);
    return taxedTransfer(from, to, amount);
  }

  /**
  * @notice : overrides ERC20 transfer function to introduce tax functionality
  * @param to address amount is going to
  * @param amount amount being sent
  */
  function transfer(address to, uint256 amount) public virtual override returns (bool) {
    return taxedTransfer(_msgSender(), to, amount);
  }


  function taxedTransfer(address from, address to, uint256 amount) private returns (bool) {
    require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");
    if(!inSwap && _taxActive && (_taxList['from'][from] || _taxList['to'][to])) {
      uint256 tax = amount * _tax / _taxPercision;
      amount = amount - tax;
      _transfer(from, address(this), tax);

      // Swapping taxes for T fails on buys with the same LP pair address.
      // So we only swap the taxes for T on sells and when using other DEXs.
      if (lpAddress != from) _swap();
    }
    _transfer(from, to, amount);
    return true;
  }

  function _swap() internal lockTheSwap {
    if (minTokensBeforeSwap > balanceOf(address(this))) return;

    address[] memory sellPath = new address[](2);
    sellPath[0] = address(this);
    sellPath[1] = TAddress;

    uint256 tokensBefore = balanceOf(address(this));
    uint256 TBalanceBefore = T.balanceOf(address(this));

    _transfer(address(this), address(mrLiquidity), tokensBefore / 2);
    router.swapExactTokensForTokens(
      tokensBefore / 2,
      0,
      sellPath,
      address(mrLiquidity),
      block.timestamp
    );

    emit Swap(tokensBefore, T.balanceOf(address(this)) - TBalanceBefore);

    mrLiquidity.addLiquidity();
  }

  function approveRouterSpending() internal {
    _approve(address(this), address(router), type(uint256).max);
    T.approve(address(router), type(uint256).max);
  }

  /**
  * @notice : toggles tax on or off
  */
  function toggleTax() external onlyOwner {
    _taxActive = !_taxActive;
    emit ToggleTax(_taxActive);
  }

  /**
  * @notice : updates min tokens before swap
  * @param amount new min amount
  */
  function setMinTokensBeforeSwap(uint256 amount) external onlyOwner {
    minTokensBeforeSwap = amount;
    emit MinSwapTokensChanged(amount);
  }

  /**
  * @notice : updates address tax amount
  * @param newTax new tax amount
  */
  function setTax(uint16 newTax) external onlyOwner {
    require(newTax <= 8 * _taxPercision / 100, 'Tax can not be set to more than 8%');

    _tax = newTax;
    emit UpdateTaxPercentage(newTax);
  }

  /**
   * @notice : add address to tax taxList
   * @param wallet address to add to taxList
   */
  function addToTaxList(string memory list, address wallet) public onlyOwner {
    require(wallet != address(0), "Cant use 0 address");
    require(!_taxList[list][wallet], "Address already added");
    _taxList[list][wallet] = true;

    emit AddToTaxList(list, wallet);
  }

  /**
   * @notice : remoe address from a taxList
   * @param list indicates which taxList ('to' or 'from')
   * @param wallet address to remove from taxList
   */
  function removeFromTaxList(string memory list, address wallet) external onlyOwner {
    require(wallet != address(0), "Cant use 0 address");
    require(_taxList[list][wallet], "Address not added");
    _taxList[list][wallet] = false;

    emit RemoveFromTaxList(list, wallet);
  }
}

File 2 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

File 3 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 4 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 5 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        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);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 6 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 7 of 9 : ISwapRouter.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2;

interface ISwapRouter {
    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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        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 swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

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



    // TO SUPPORT AVALANCH NETWORK:
    function addLiquidityAVAX(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidityAVAX(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityAVAXWithPermit(
        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 swapExactAVAXForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactAVAX(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForAVAX(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapAVAXForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
}

File 8 of 9 : ISwapFactory.sol
pragma solidity >=0.6.2;

interface ISwapFactory {
  function getPair(address tokenA, address tokenB) external view returns (address pair);
  function createPair(address tokenA, address tokenB) external view returns (address pair);
}

File 9 of 9 : MrLiquidity.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;

import "./interfaces/ISwapRouter.sol";
import "../node_modules/@openzeppelin/contracts/access/Ownable.sol";
import "../node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol";

contract MrLiquidity is Ownable  {
  IERC20 public MR;

  ISwapRouter public router = ISwapRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
  address public TAddress = 0x6967299e9F3d5312740Aa61dEe6E9ea658958e31;
  address public burnAddress = 0xdEAD000000000000000042069420694206942069;

  IERC20 public T = IERC20(TAddress);

  function setMr(address _address) public onlyOwner {
    if (address(MR) == address(0)) {
      MR = IERC20(_address);
      approveRouterSpending();
    }
  }

  function addLiquidity() external {
    require(msg.sender == address(MR), "can only be called from MR");

    // add the liquidity
    router.addLiquidity(
      address(MR),
      TAddress,
      MR.balanceOf(address(this)),
      T.balanceOf(address(this)),
      0, // slippage is unavoidable
      0, // slippage is unavoidable
      burnAddress,
      block.timestamp
    );
  }

  function approveRouterSpending() internal {
    MR.approve(address(router), type(uint256).max);
    T.approve(address(router), type(uint256).max);
  }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"mrLiqidityAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"list","type":"string"},{"indexed":true,"internalType":"address","name":"wallet","type":"address"}],"name":"AddToTaxList","type":"event"},{"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":"amount","type":"uint256"}],"name":"MinSwapTokensChanged","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":"string","name":"list","type":"string"},{"indexed":true,"internalType":"address","name":"wallet","type":"address"}],"name":"RemoveFromTaxList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"swaped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"recieved","type":"uint256"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_active","type":"bool"}],"name":"ToggleTax","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_newTaxAmount","type":"uint16"}],"name":"UpdateTaxPercentage","type":"event"},{"inputs":[],"name":"T","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tax","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"address","name":"","type":"address"}],"name":"_taxList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxPercision","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"list","type":"string"},{"internalType":"address","name":"wallet","type":"address"}],"name":"addToTaxList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"lpAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mrLiquidity","outputs":[{"internalType":"contract MrLiquidity","name":"","type":"address"}],"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":"string","name":"list","type":"string"},{"internalType":"address","name":"wallet","type":"address"}],"name":"removeFromTaxList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract ISwapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"routerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setLPAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newTax","type":"uint16"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052612710600760006101000a81548163ffffffff021916908363ffffffff16021790555061012c600760046101000a81548161ffff021916908361ffff160217905550736967299e9f3d5312740aa61dee6e9ea658958e31600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c55600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200022b57600080fd5b50604051620043f8380380620043f883398181016040528101906200025191906200095c565b6040518060400160405280600581526020017f4d722e20540000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d520000000000000000000000000000000000000000000000000000000000008152508160039081620002ce919062000c08565b508060049081620002e0919062000c08565b50505062000303620002f76200039d60201b60201c565b620003a560201b60201c565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506b033b2e3c9fd0803ce8000000600881905550620003676200046b60201b60201c565b6200037b33600854620005aa60201b60201c565b6001600760066101000a81548160ff0219169083151502179055505062000fe7565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004c030600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200071760201b60201c565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200056192919062000d11565b6020604051808303816000875af115801562000581573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005a7919062000d7b565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200061c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006139062000e0e565b60405180910390fd5b6200063060008383620008e860201b60201c565b806002600082825462000644919062000e5f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006f7919062000e9a565b60405180910390a36200071360008383620008ed60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000789576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007809062000f2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f29062000fc5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620008db919062000e9a565b60405180910390a3505050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200092482620008f7565b9050919050565b620009368162000917565b81146200094257600080fd5b50565b60008151905062000956816200092b565b92915050565b600060208284031215620009755762000974620008f2565b5b6000620009858482850162000945565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a1057607f821691505b60208210810362000a265762000a25620009c8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a51565b62000a9c868362000a51565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ae962000ae362000add8462000ab4565b62000abe565b62000ab4565b9050919050565b6000819050919050565b62000b058362000ac8565b62000b1d62000b148262000af0565b84845462000a5e565b825550505050565b600090565b62000b3462000b25565b62000b4181848462000afa565b505050565b5b8181101562000b695762000b5d60008262000b2a565b60018101905062000b47565b5050565b601f82111562000bb85762000b828162000a2c565b62000b8d8462000a41565b8101602085101562000b9d578190505b62000bb562000bac8562000a41565b83018262000b46565b50505b505050565b600082821c905092915050565b600062000bdd6000198460080262000bbd565b1980831691505092915050565b600062000bf8838362000bca565b9150826002028217905092915050565b62000c13826200098e565b67ffffffffffffffff81111562000c2f5762000c2e62000999565b5b62000c3b8254620009f7565b62000c4882828562000b6d565b600060209050601f83116001811462000c80576000841562000c6b578287015190505b62000c77858262000bea565b86555062000ce7565b601f19841662000c908662000a2c565b60005b8281101562000cba5784890151825560018201915060208501945060208101905062000c93565b8683101562000cda578489015162000cd6601f89168262000bca565b8355505b6001600288020188555050505b505050505050565b62000cfa8162000917565b82525050565b62000d0b8162000ab4565b82525050565b600060408201905062000d28600083018562000cef565b62000d37602083018462000d00565b9392505050565b60008115159050919050565b62000d558162000d3e565b811462000d6157600080fd5b50565b60008151905062000d758162000d4a565b92915050565b60006020828403121562000d945762000d93620008f2565b5b600062000da48482850162000d64565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000df6601f8362000dad565b915062000e038262000dbe565b602082019050919050565b6000602082019050818103600083015262000e298162000de7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e6c8262000ab4565b915062000e798362000ab4565b925082820190508082111562000e945762000e9362000e30565b5b92915050565b600060208201905062000eb1600083018462000d00565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000f1560248362000dad565b915062000f228262000eb7565b604082019050919050565b6000602082019050818103600083015262000f488162000f06565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000fad60228362000dad565b915062000fba8262000f4f565b604082019050919050565b6000602082019050818103600083015262000fe08162000f9e565b9050919050565b6134018062000ff76000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a9059cbb116100a2578063edacd48511610071578063edacd48514610562578063f2fde38b1461057e578063f887ea401461059a578063fb369eb0146105b8576101e5565b8063a9059cbb146104b4578063bcac0cb6146104e4578063dd62ed3e14610514578063e751d50814610544576101e5565b806395d89b41116100de57806395d89b411461042a5780639b4dc8cc14610448578063a457c2d714610466578063a608b0d214610496576101e5565b806370a08231146103c8578063715018a6146103f85780638b45d93a146104025780638da5cb5b1461040c576101e5565b80632bc80f3a116101875780633950935111610156578063395093511461034257806348a46473146103725780634be317781461038e57806350f67deb146103ac576101e5565b80632bc80f3a146102cc578063313ce567146102ea578063319f5f6a146103085780633268cc5614610324576101e5565b806310bf6029116101c357806310bf60291461025657806318160ddd1461026057806323b872dd1461027e57806323e4ce89146102ae576101e5565b806306fdde03146101ea578063095ea7b3146102085780630e2feb0514610238575b600080fd5b6101f26105d6565b6040516101ff9190612094565b60405180910390f35b610222600480360381019061021d919061215e565b610668565b60405161022f91906121b9565b60405180910390f35b61024061068b565b60405161024d91906121e3565b60405180910390f35b61025e6106b1565b005b61026861072b565b604051610275919061220d565b60405180910390f35b61029860048036038101906102939190612228565b610735565b6040516102a591906121b9565b60405180910390f35b6102b6610762565b6040516102c391906122da565b60405180910390f35b6102d4610788565b6040516102e19190612316565b60405180910390f35b6102f26107ae565b6040516102ff919061234d565b60405180910390f35b610322600480360381019061031d91906123a2565b6107b7565b005b61032c61088d565b60405161033991906121e3565b60405180910390f35b61035c6004803603810190610357919061215e565b6108b3565b60405161036991906121b9565b60405180910390f35b61038c600480360381019061038791906123cf565b6108ea565b005b610396610933565b6040516103a3919061241b565b60405180910390f35b6103c660048036038101906103c1919061256b565b610949565b005b6103e260048036038101906103dd91906125c7565b610b2e565b6040516103ef919061220d565b60405180910390f35b610400610b76565b005b61040a610b8a565b005b610414610e1b565b60405161042191906121e3565b60405180910390f35b610432610e45565b60405161043f9190612094565b60405180910390f35b610450610ed7565b60405161045d91906121e3565b60405180910390f35b610480600480360381019061047b919061215e565b610efd565b60405161048d91906121b9565b60405180910390f35b61049e610f74565b6040516104ab91906121e3565b60405180910390f35b6104ce60048036038101906104c9919061215e565b610f9a565b6040516104db91906121b9565b60405180910390f35b6104fe60048036038101906104f9919061256b565b610fb6565b60405161050b91906121b9565b60405180910390f35b61052e600480360381019061052991906125f4565b610ffb565b60405161053b919061220d565b60405180910390f35b61054c611082565b6040516105599190612643565b60405180910390f35b61057c6004803603810190610577919061256b565b611096565b005b610598600480360381019061059391906125c7565b61127c565b005b6105a26112ff565b6040516105af919061267f565b60405180910390f35b6105c0611325565b6040516105cd91906121b9565b60405180910390f35b6060600380546105e5906126c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610611906126c9565b801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b600080610673611338565b9050610680818585611340565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106b9611509565b600760069054906101000a900460ff1615600760066101000a81548160ff0219169083151502179055507fdda4866fd658821eea607c5d6addd0c4a0cc347eb4cea313399e516e66019864600760069054906101000a900460ff1660405161072191906121b9565b60405180910390a1565b6000600254905090565b600080610740611338565b905061074d858285611587565b610758858585611613565b9150509392505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b6107bf611509565b6064600760009054906101000a900463ffffffff1660086107e09190612729565b6107ea9190612795565b63ffffffff168161ffff161115610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90612838565b60405180910390fd5b80600760046101000a81548161ffff021916908361ffff1602179055507f841eb6f9e47fcd1f7e123dd994ffaf8c0df0f8c44c22def597a74290b3692158816040516108829190612643565b60405180910390a150565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806108be611338565b90506108df8185856108d08589610ffb565b6108da9190612858565b611340565b600191505092915050565b6108f2611509565b80600c819055507f07461dc7cdbf14b24c3153066d3d462daab523bf66e88d6f97904a0626dee10981604051610928919061220d565b60405180910390a150565b600760009054906101000a900463ffffffff1681565b610951611509565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b7906128d8565b60405180910390fd5b6006826040516109d09190612934565b908152602001604051809103902060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90612997565b60405180910390fd5b6000600683604051610a7a9190612934565b908152602001604051809103902060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167ff8f544dbbad3351106f00a6eb0ef2055651d89439f13e96196dd5df68fac26eb83604051610b229190612094565b60405180910390a25050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b7e611509565b610b886000611841565b565b610b92611509565b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610e1957600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7991906129cc565b73ffffffffffffffffffffffffffffffffffffffff1663e6a43905600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306040518363ffffffff1660e01b8152600401610cd59291906129f9565b602060405180830381865afa158015610cf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1691906129cc565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610db76040518060400160405280600481526020017f66726f6d00000000000000000000000000000000000000000000000000000000815250600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611096565b610e186040518060400160405280600281526020017f746f000000000000000000000000000000000000000000000000000000000000815250600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611096565b5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e54906126c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610e80906126c9565b8015610ecd5780601f10610ea257610100808354040283529160200191610ecd565b820191906000526020600020905b815481529060010190602001808311610eb057829003601f168201915b5050505050905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f08611338565b90506000610f168286610ffb565b905083811015610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290612a94565b60405180910390fd5b610f688286868403611340565b60019250505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610fae610fa7611338565b8484611613565b905092915050565b6006828051602081018201805184825260208301602085012081835280955050505050506020528060005260406000206000915091509054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600760049054906101000a900461ffff1681565b61109e611509565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361110d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611104906128d8565b60405180910390fd5b60068260405161111d9190612934565b908152602001604051809103902060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90612b00565b60405180910390fd5b60016006836040516111c89190612934565b908152602001604051809103902060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f3310169e0ed334b82f4a63526e385873f509b240826dd6f784566e307092b6f7836040516112709190612094565b60405180910390a25050565b611284611509565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90612b92565b60405180910390fd5b6112fc81611841565b50565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760069054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690612c24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590612cb6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114fc919061220d565b60405180910390a3505050565b611511611338565b73ffffffffffffffffffffffffffffffffffffffff1661152f610e1b565b73ffffffffffffffffffffffffffffffffffffffff1614611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90612d22565b60405180910390fd5b565b60006115938484610ffb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461160d57818110156115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690612d8e565b60405180910390fd5b61160c8484848403611340565b5b50505050565b60008161161f85610b2e565b1015611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790612e20565b60405180910390fd5b601060149054906101000a900460ff161580156116895750600760069054906101000a900460ff165b80156117665750600660405161169e90612e8c565b908152602001604051809103902060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806117655750600660405161170b90612eed565b908152602001604051809103902060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b1561182b576000600760009054906101000a900463ffffffff1663ffffffff16600760049054906101000a900461ffff1661ffff16846117a69190612f02565b6117b09190612f44565b905080836117be9190612f75565b92506117cb853083611907565b8473ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461182957611828611b7d565b5b505b611836848484611907565b600190509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d9061301b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc906130ad565b60405180910390fd5b6119f0838383611ffa565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90612e20565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b64919061220d565b60405180910390a3611b77848484611fff565b50505050565b6001601060146101000a81548160ff021916908315150217905550611ba130610b2e565b600c5411611fdd576000600267ffffffffffffffff811115611bc657611bc5612440565b5b604051908082528060200260200182016040528015611bf45781602001602082028036833780820191505090505b5090503081600081518110611c0c57611c0b6130cd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110611c7d57611c7c6130cd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000611cc230610b2e565b90506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611d2191906121e3565b602060405180830381865afa158015611d3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d629190613111565b9050611d9d30600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600285611d989190612f44565b611907565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338ed1739600284611de89190612f44565b600086600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611e2f959493929190613237565b6000604051808303816000875af1158015611e4e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611e779190613359565b507f015fc8ee969fd902d9ebd12a31c54446400a2b512a405366fe14defd6081d2208282601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611ef691906121e3565b602060405180830381865afa158015611f13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f379190613111565b611f419190612f75565b604051611f4f9291906133a2565b60405180910390a1600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8078d946040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611fc157600080fd5b505af1158015611fd5573d6000803e3d6000fd5b505050505050505b6000601060146101000a81548160ff021916908315150217905550565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561203e578082015181840152602081019050612023565b60008484015250505050565b6000601f19601f8301169050919050565b600061206682612004565b612070818561200f565b9350612080818560208601612020565b6120898161204a565b840191505092915050565b600060208201905081810360008301526120ae818461205b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120f5826120ca565b9050919050565b612105816120ea565b811461211057600080fd5b50565b600081359050612122816120fc565b92915050565b6000819050919050565b61213b81612128565b811461214657600080fd5b50565b60008135905061215881612132565b92915050565b60008060408385031215612175576121746120c0565b5b600061218385828601612113565b925050602061219485828601612149565b9150509250929050565b60008115159050919050565b6121b38161219e565b82525050565b60006020820190506121ce60008301846121aa565b92915050565b6121dd816120ea565b82525050565b60006020820190506121f860008301846121d4565b92915050565b61220781612128565b82525050565b600060208201905061222260008301846121fe565b92915050565b600080600060608486031215612241576122406120c0565b5b600061224f86828701612113565b935050602061226086828701612113565b925050604061227186828701612149565b9150509250925092565b6000819050919050565b60006122a061229b612296846120ca565b61227b565b6120ca565b9050919050565b60006122b282612285565b9050919050565b60006122c4826122a7565b9050919050565b6122d4816122b9565b82525050565b60006020820190506122ef60008301846122cb565b92915050565b6000612300826122a7565b9050919050565b612310816122f5565b82525050565b600060208201905061232b6000830184612307565b92915050565b600060ff82169050919050565b61234781612331565b82525050565b6000602082019050612362600083018461233e565b92915050565b600061ffff82169050919050565b61237f81612368565b811461238a57600080fd5b50565b60008135905061239c81612376565b92915050565b6000602082840312156123b8576123b76120c0565b5b60006123c68482850161238d565b91505092915050565b6000602082840312156123e5576123e46120c0565b5b60006123f384828501612149565b91505092915050565b600063ffffffff82169050919050565b612415816123fc565b82525050565b6000602082019050612430600083018461240c565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124788261204a565b810181811067ffffffffffffffff8211171561249757612496612440565b5b80604052505050565b60006124aa6120b6565b90506124b6828261246f565b919050565b600067ffffffffffffffff8211156124d6576124d5612440565b5b6124df8261204a565b9050602081019050919050565b82818337600083830152505050565b600061250e612509846124bb565b6124a0565b90508281526020810184848401111561252a5761252961243b565b5b6125358482856124ec565b509392505050565b600082601f83011261255257612551612436565b5b81356125628482602086016124fb565b91505092915050565b60008060408385031215612582576125816120c0565b5b600083013567ffffffffffffffff8111156125a05761259f6120c5565b5b6125ac8582860161253d565b92505060206125bd85828601612113565b9150509250929050565b6000602082840312156125dd576125dc6120c0565b5b60006125eb84828501612113565b91505092915050565b6000806040838503121561260b5761260a6120c0565b5b600061261985828601612113565b925050602061262a85828601612113565b9150509250929050565b61263d81612368565b82525050565b60006020820190506126586000830184612634565b92915050565b6000612669826122a7565b9050919050565b6126798161265e565b82525050565b60006020820190506126946000830184612670565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126e157607f821691505b6020821081036126f4576126f361269a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612734826123fc565b915061273f836123fc565b925082820261274d816123fc565b915080821461275f5761275e6126fa565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006127a0826123fc565b91506127ab836123fc565b9250826127bb576127ba612766565b5b828204905092915050565b7f5461782063616e206e6f742062652073657420746f206d6f7265207468616e2060008201527f3825000000000000000000000000000000000000000000000000000000000000602082015250565b600061282260228361200f565b915061282d826127c6565b604082019050919050565b6000602082019050818103600083015261285181612815565b9050919050565b600061286382612128565b915061286e83612128565b9250828201905080821115612886576128856126fa565b5b92915050565b7f43616e7420757365203020616464726573730000000000000000000000000000600082015250565b60006128c260128361200f565b91506128cd8261288c565b602082019050919050565b600060208201905081810360008301526128f1816128b5565b9050919050565b600081905092915050565b600061290e82612004565b61291881856128f8565b9350612928818560208601612020565b80840191505092915050565b60006129408284612903565b915081905092915050565b7f41646472657373206e6f74206164646564000000000000000000000000000000600082015250565b600061298160118361200f565b915061298c8261294b565b602082019050919050565b600060208201905081810360008301526129b081612974565b9050919050565b6000815190506129c6816120fc565b92915050565b6000602082840312156129e2576129e16120c0565b5b60006129f0848285016129b7565b91505092915050565b6000604082019050612a0e60008301856121d4565b612a1b60208301846121d4565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a7e60258361200f565b9150612a8982612a22565b604082019050919050565b60006020820190508181036000830152612aad81612a71565b9050919050565b7f4164647265737320616c72656164792061646465640000000000000000000000600082015250565b6000612aea60158361200f565b9150612af582612ab4565b602082019050919050565b60006020820190508181036000830152612b1981612add565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b7c60268361200f565b9150612b8782612b20565b604082019050919050565b60006020820190508181036000830152612bab81612b6f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c0e60248361200f565b9150612c1982612bb2565b604082019050919050565b60006020820190508181036000830152612c3d81612c01565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ca060228361200f565b9150612cab82612c44565b604082019050919050565b60006020820190508181036000830152612ccf81612c93565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d0c60208361200f565b9150612d1782612cd6565b602082019050919050565b60006020820190508181036000830152612d3b81612cff565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d78601d8361200f565b9150612d8382612d42565b602082019050919050565b60006020820190508181036000830152612da781612d6b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612e0a60268361200f565b9150612e1582612dae565b604082019050919050565b60006020820190508181036000830152612e3981612dfd565b9050919050565b7f66726f6d00000000000000000000000000000000000000000000000000000000600082015250565b6000612e766004836128f8565b9150612e8182612e40565b600482019050919050565b6000612e9782612e69565b9150819050919050565b7f746f000000000000000000000000000000000000000000000000000000000000600082015250565b6000612ed76002836128f8565b9150612ee282612ea1565b600282019050919050565b6000612ef882612eca565b9150819050919050565b6000612f0d82612128565b9150612f1883612128565b9250828202612f2681612128565b91508282048414831517612f3d57612f3c6126fa565b5b5092915050565b6000612f4f82612128565b9150612f5a83612128565b925082612f6a57612f69612766565b5b828204905092915050565b6000612f8082612128565b9150612f8b83612128565b9250828203905081811115612fa357612fa26126fa565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061300560258361200f565b915061301082612fa9565b604082019050919050565b6000602082019050818103600083015261303481612ff8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061309760238361200f565b91506130a28261303b565b604082019050919050565b600060208201905081810360008301526130c68161308a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061310b81612132565b92915050565b600060208284031215613127576131266120c0565b5b6000613135848285016130fc565b91505092915050565b6000819050919050565b600061316361315e6131598461313e565b61227b565b612128565b9050919050565b61317381613148565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131ae816120ea565b82525050565b60006131c083836131a5565b60208301905092915050565b6000602082019050919050565b60006131e482613179565b6131ee8185613184565b93506131f983613195565b8060005b8381101561322a57815161321188826131b4565b975061321c836131cc565b9250506001810190506131fd565b5085935050505092915050565b600060a08201905061324c60008301886121fe565b613259602083018761316a565b818103604083015261326b81866131d9565b905061327a60608301856121d4565b61328760808301846121fe565b9695505050505050565b600067ffffffffffffffff8211156132ac576132ab612440565b5b602082029050602081019050919050565b600080fd5b60006132d56132d084613291565b6124a0565b905080838252602082019050602084028301858111156132f8576132f76132bd565b5b835b81811015613321578061330d88826130fc565b8452602084019350506020810190506132fa565b5050509392505050565b600082601f8301126133405761333f612436565b5b81516133508482602086016132c2565b91505092915050565b60006020828403121561336f5761336e6120c0565b5b600082015167ffffffffffffffff81111561338d5761338c6120c5565b5b6133998482850161332b565b91505092915050565b60006040820190506133b760008301856121fe565b6133c460208301846121fe565b939250505056fea2646970667358221220052c3801dd0485b0833765a14388d1b3a4a6a183d497efd1a734b22c74b7611864736f6c63430008110033000000000000000000000000fe90f99a1fd731a29b785cb080596c916ebf3bca

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a9059cbb116100a2578063edacd48511610071578063edacd48514610562578063f2fde38b1461057e578063f887ea401461059a578063fb369eb0146105b8576101e5565b8063a9059cbb146104b4578063bcac0cb6146104e4578063dd62ed3e14610514578063e751d50814610544576101e5565b806395d89b41116100de57806395d89b411461042a5780639b4dc8cc14610448578063a457c2d714610466578063a608b0d214610496576101e5565b806370a08231146103c8578063715018a6146103f85780638b45d93a146104025780638da5cb5b1461040c576101e5565b80632bc80f3a116101875780633950935111610156578063395093511461034257806348a46473146103725780634be317781461038e57806350f67deb146103ac576101e5565b80632bc80f3a146102cc578063313ce567146102ea578063319f5f6a146103085780633268cc5614610324576101e5565b806310bf6029116101c357806310bf60291461025657806318160ddd1461026057806323b872dd1461027e57806323e4ce89146102ae576101e5565b806306fdde03146101ea578063095ea7b3146102085780630e2feb0514610238575b600080fd5b6101f26105d6565b6040516101ff9190612094565b60405180910390f35b610222600480360381019061021d919061215e565b610668565b60405161022f91906121b9565b60405180910390f35b61024061068b565b60405161024d91906121e3565b60405180910390f35b61025e6106b1565b005b61026861072b565b604051610275919061220d565b60405180910390f35b61029860048036038101906102939190612228565b610735565b6040516102a591906121b9565b60405180910390f35b6102b6610762565b6040516102c391906122da565b60405180910390f35b6102d4610788565b6040516102e19190612316565b60405180910390f35b6102f26107ae565b6040516102ff919061234d565b60405180910390f35b610322600480360381019061031d91906123a2565b6107b7565b005b61032c61088d565b60405161033991906121e3565b60405180910390f35b61035c6004803603810190610357919061215e565b6108b3565b60405161036991906121b9565b60405180910390f35b61038c600480360381019061038791906123cf565b6108ea565b005b610396610933565b6040516103a3919061241b565b60405180910390f35b6103c660048036038101906103c1919061256b565b610949565b005b6103e260048036038101906103dd91906125c7565b610b2e565b6040516103ef919061220d565b60405180910390f35b610400610b76565b005b61040a610b8a565b005b610414610e1b565b60405161042191906121e3565b60405180910390f35b610432610e45565b60405161043f9190612094565b60405180910390f35b610450610ed7565b60405161045d91906121e3565b60405180910390f35b610480600480360381019061047b919061215e565b610efd565b60405161048d91906121b9565b60405180910390f35b61049e610f74565b6040516104ab91906121e3565b60405180910390f35b6104ce60048036038101906104c9919061215e565b610f9a565b6040516104db91906121b9565b60405180910390f35b6104fe60048036038101906104f9919061256b565b610fb6565b60405161050b91906121b9565b60405180910390f35b61052e600480360381019061052991906125f4565b610ffb565b60405161053b919061220d565b60405180910390f35b61054c611082565b6040516105599190612643565b60405180910390f35b61057c6004803603810190610577919061256b565b611096565b005b610598600480360381019061059391906125c7565b61127c565b005b6105a26112ff565b6040516105af919061267f565b60405180910390f35b6105c0611325565b6040516105cd91906121b9565b60405180910390f35b6060600380546105e5906126c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610611906126c9565b801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b600080610673611338565b9050610680818585611340565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106b9611509565b600760069054906101000a900460ff1615600760066101000a81548160ff0219169083151502179055507fdda4866fd658821eea607c5d6addd0c4a0cc347eb4cea313399e516e66019864600760069054906101000a900460ff1660405161072191906121b9565b60405180910390a1565b6000600254905090565b600080610740611338565b905061074d858285611587565b610758858585611613565b9150509392505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b6107bf611509565b6064600760009054906101000a900463ffffffff1660086107e09190612729565b6107ea9190612795565b63ffffffff168161ffff161115610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90612838565b60405180910390fd5b80600760046101000a81548161ffff021916908361ffff1602179055507f841eb6f9e47fcd1f7e123dd994ffaf8c0df0f8c44c22def597a74290b3692158816040516108829190612643565b60405180910390a150565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806108be611338565b90506108df8185856108d08589610ffb565b6108da9190612858565b611340565b600191505092915050565b6108f2611509565b80600c819055507f07461dc7cdbf14b24c3153066d3d462daab523bf66e88d6f97904a0626dee10981604051610928919061220d565b60405180910390a150565b600760009054906101000a900463ffffffff1681565b610951611509565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b7906128d8565b60405180910390fd5b6006826040516109d09190612934565b908152602001604051809103902060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90612997565b60405180910390fd5b6000600683604051610a7a9190612934565b908152602001604051809103902060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167ff8f544dbbad3351106f00a6eb0ef2055651d89439f13e96196dd5df68fac26eb83604051610b229190612094565b60405180910390a25050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b7e611509565b610b886000611841565b565b610b92611509565b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610e1957600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7991906129cc565b73ffffffffffffffffffffffffffffffffffffffff1663e6a43905600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306040518363ffffffff1660e01b8152600401610cd59291906129f9565b602060405180830381865afa158015610cf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1691906129cc565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610db76040518060400160405280600481526020017f66726f6d00000000000000000000000000000000000000000000000000000000815250600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611096565b610e186040518060400160405280600281526020017f746f000000000000000000000000000000000000000000000000000000000000815250600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611096565b5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e54906126c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610e80906126c9565b8015610ecd5780601f10610ea257610100808354040283529160200191610ecd565b820191906000526020600020905b815481529060010190602001808311610eb057829003601f168201915b5050505050905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f08611338565b90506000610f168286610ffb565b905083811015610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290612a94565b60405180910390fd5b610f688286868403611340565b60019250505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610fae610fa7611338565b8484611613565b905092915050565b6006828051602081018201805184825260208301602085012081835280955050505050506020528060005260406000206000915091509054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600760049054906101000a900461ffff1681565b61109e611509565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361110d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611104906128d8565b60405180910390fd5b60068260405161111d9190612934565b908152602001604051809103902060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90612b00565b60405180910390fd5b60016006836040516111c89190612934565b908152602001604051809103902060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f3310169e0ed334b82f4a63526e385873f509b240826dd6f784566e307092b6f7836040516112709190612094565b60405180910390a25050565b611284611509565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90612b92565b60405180910390fd5b6112fc81611841565b50565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760069054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690612c24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590612cb6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114fc919061220d565b60405180910390a3505050565b611511611338565b73ffffffffffffffffffffffffffffffffffffffff1661152f610e1b565b73ffffffffffffffffffffffffffffffffffffffff1614611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90612d22565b60405180910390fd5b565b60006115938484610ffb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461160d57818110156115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690612d8e565b60405180910390fd5b61160c8484848403611340565b5b50505050565b60008161161f85610b2e565b1015611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790612e20565b60405180910390fd5b601060149054906101000a900460ff161580156116895750600760069054906101000a900460ff165b80156117665750600660405161169e90612e8c565b908152602001604051809103902060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806117655750600660405161170b90612eed565b908152602001604051809103902060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b1561182b576000600760009054906101000a900463ffffffff1663ffffffff16600760049054906101000a900461ffff1661ffff16846117a69190612f02565b6117b09190612f44565b905080836117be9190612f75565b92506117cb853083611907565b8473ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461182957611828611b7d565b5b505b611836848484611907565b600190509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d9061301b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc906130ad565b60405180910390fd5b6119f0838383611ffa565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90612e20565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b64919061220d565b60405180910390a3611b77848484611fff565b50505050565b6001601060146101000a81548160ff021916908315150217905550611ba130610b2e565b600c5411611fdd576000600267ffffffffffffffff811115611bc657611bc5612440565b5b604051908082528060200260200182016040528015611bf45781602001602082028036833780820191505090505b5090503081600081518110611c0c57611c0b6130cd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110611c7d57611c7c6130cd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000611cc230610b2e565b90506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611d2191906121e3565b602060405180830381865afa158015611d3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d629190613111565b9050611d9d30600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600285611d989190612f44565b611907565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338ed1739600284611de89190612f44565b600086600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611e2f959493929190613237565b6000604051808303816000875af1158015611e4e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611e779190613359565b507f015fc8ee969fd902d9ebd12a31c54446400a2b512a405366fe14defd6081d2208282601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611ef691906121e3565b602060405180830381865afa158015611f13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f379190613111565b611f419190612f75565b604051611f4f9291906133a2565b60405180910390a1600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8078d946040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611fc157600080fd5b505af1158015611fd5573d6000803e3d6000fd5b505050505050505b6000601060146101000a81548160ff021916908315150217905550565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561203e578082015181840152602081019050612023565b60008484015250505050565b6000601f19601f8301169050919050565b600061206682612004565b612070818561200f565b9350612080818560208601612020565b6120898161204a565b840191505092915050565b600060208201905081810360008301526120ae818461205b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120f5826120ca565b9050919050565b612105816120ea565b811461211057600080fd5b50565b600081359050612122816120fc565b92915050565b6000819050919050565b61213b81612128565b811461214657600080fd5b50565b60008135905061215881612132565b92915050565b60008060408385031215612175576121746120c0565b5b600061218385828601612113565b925050602061219485828601612149565b9150509250929050565b60008115159050919050565b6121b38161219e565b82525050565b60006020820190506121ce60008301846121aa565b92915050565b6121dd816120ea565b82525050565b60006020820190506121f860008301846121d4565b92915050565b61220781612128565b82525050565b600060208201905061222260008301846121fe565b92915050565b600080600060608486031215612241576122406120c0565b5b600061224f86828701612113565b935050602061226086828701612113565b925050604061227186828701612149565b9150509250925092565b6000819050919050565b60006122a061229b612296846120ca565b61227b565b6120ca565b9050919050565b60006122b282612285565b9050919050565b60006122c4826122a7565b9050919050565b6122d4816122b9565b82525050565b60006020820190506122ef60008301846122cb565b92915050565b6000612300826122a7565b9050919050565b612310816122f5565b82525050565b600060208201905061232b6000830184612307565b92915050565b600060ff82169050919050565b61234781612331565b82525050565b6000602082019050612362600083018461233e565b92915050565b600061ffff82169050919050565b61237f81612368565b811461238a57600080fd5b50565b60008135905061239c81612376565b92915050565b6000602082840312156123b8576123b76120c0565b5b60006123c68482850161238d565b91505092915050565b6000602082840312156123e5576123e46120c0565b5b60006123f384828501612149565b91505092915050565b600063ffffffff82169050919050565b612415816123fc565b82525050565b6000602082019050612430600083018461240c565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124788261204a565b810181811067ffffffffffffffff8211171561249757612496612440565b5b80604052505050565b60006124aa6120b6565b90506124b6828261246f565b919050565b600067ffffffffffffffff8211156124d6576124d5612440565b5b6124df8261204a565b9050602081019050919050565b82818337600083830152505050565b600061250e612509846124bb565b6124a0565b90508281526020810184848401111561252a5761252961243b565b5b6125358482856124ec565b509392505050565b600082601f83011261255257612551612436565b5b81356125628482602086016124fb565b91505092915050565b60008060408385031215612582576125816120c0565b5b600083013567ffffffffffffffff8111156125a05761259f6120c5565b5b6125ac8582860161253d565b92505060206125bd85828601612113565b9150509250929050565b6000602082840312156125dd576125dc6120c0565b5b60006125eb84828501612113565b91505092915050565b6000806040838503121561260b5761260a6120c0565b5b600061261985828601612113565b925050602061262a85828601612113565b9150509250929050565b61263d81612368565b82525050565b60006020820190506126586000830184612634565b92915050565b6000612669826122a7565b9050919050565b6126798161265e565b82525050565b60006020820190506126946000830184612670565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126e157607f821691505b6020821081036126f4576126f361269a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612734826123fc565b915061273f836123fc565b925082820261274d816123fc565b915080821461275f5761275e6126fa565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006127a0826123fc565b91506127ab836123fc565b9250826127bb576127ba612766565b5b828204905092915050565b7f5461782063616e206e6f742062652073657420746f206d6f7265207468616e2060008201527f3825000000000000000000000000000000000000000000000000000000000000602082015250565b600061282260228361200f565b915061282d826127c6565b604082019050919050565b6000602082019050818103600083015261285181612815565b9050919050565b600061286382612128565b915061286e83612128565b9250828201905080821115612886576128856126fa565b5b92915050565b7f43616e7420757365203020616464726573730000000000000000000000000000600082015250565b60006128c260128361200f565b91506128cd8261288c565b602082019050919050565b600060208201905081810360008301526128f1816128b5565b9050919050565b600081905092915050565b600061290e82612004565b61291881856128f8565b9350612928818560208601612020565b80840191505092915050565b60006129408284612903565b915081905092915050565b7f41646472657373206e6f74206164646564000000000000000000000000000000600082015250565b600061298160118361200f565b915061298c8261294b565b602082019050919050565b600060208201905081810360008301526129b081612974565b9050919050565b6000815190506129c6816120fc565b92915050565b6000602082840312156129e2576129e16120c0565b5b60006129f0848285016129b7565b91505092915050565b6000604082019050612a0e60008301856121d4565b612a1b60208301846121d4565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a7e60258361200f565b9150612a8982612a22565b604082019050919050565b60006020820190508181036000830152612aad81612a71565b9050919050565b7f4164647265737320616c72656164792061646465640000000000000000000000600082015250565b6000612aea60158361200f565b9150612af582612ab4565b602082019050919050565b60006020820190508181036000830152612b1981612add565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b7c60268361200f565b9150612b8782612b20565b604082019050919050565b60006020820190508181036000830152612bab81612b6f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c0e60248361200f565b9150612c1982612bb2565b604082019050919050565b60006020820190508181036000830152612c3d81612c01565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ca060228361200f565b9150612cab82612c44565b604082019050919050565b60006020820190508181036000830152612ccf81612c93565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d0c60208361200f565b9150612d1782612cd6565b602082019050919050565b60006020820190508181036000830152612d3b81612cff565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d78601d8361200f565b9150612d8382612d42565b602082019050919050565b60006020820190508181036000830152612da781612d6b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612e0a60268361200f565b9150612e1582612dae565b604082019050919050565b60006020820190508181036000830152612e3981612dfd565b9050919050565b7f66726f6d00000000000000000000000000000000000000000000000000000000600082015250565b6000612e766004836128f8565b9150612e8182612e40565b600482019050919050565b6000612e9782612e69565b9150819050919050565b7f746f000000000000000000000000000000000000000000000000000000000000600082015250565b6000612ed76002836128f8565b9150612ee282612ea1565b600282019050919050565b6000612ef882612eca565b9150819050919050565b6000612f0d82612128565b9150612f1883612128565b9250828202612f2681612128565b91508282048414831517612f3d57612f3c6126fa565b5b5092915050565b6000612f4f82612128565b9150612f5a83612128565b925082612f6a57612f69612766565b5b828204905092915050565b6000612f8082612128565b9150612f8b83612128565b9250828203905081811115612fa357612fa26126fa565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061300560258361200f565b915061301082612fa9565b604082019050919050565b6000602082019050818103600083015261303481612ff8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061309760238361200f565b91506130a28261303b565b604082019050919050565b600060208201905081810360008301526130c68161308a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061310b81612132565b92915050565b600060208284031215613127576131266120c0565b5b6000613135848285016130fc565b91505092915050565b6000819050919050565b600061316361315e6131598461313e565b61227b565b612128565b9050919050565b61317381613148565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131ae816120ea565b82525050565b60006131c083836131a5565b60208301905092915050565b6000602082019050919050565b60006131e482613179565b6131ee8185613184565b93506131f983613195565b8060005b8381101561322a57815161321188826131b4565b975061321c836131cc565b9250506001810190506131fd565b5085935050505092915050565b600060a08201905061324c60008301886121fe565b613259602083018761316a565b818103604083015261326b81866131d9565b905061327a60608301856121d4565b61328760808301846121fe565b9695505050505050565b600067ffffffffffffffff8211156132ac576132ab612440565b5b602082029050602081019050919050565b600080fd5b60006132d56132d084613291565b6124a0565b905080838252602082019050602084028301858111156132f8576132f76132bd565b5b835b81811015613321578061330d88826130fc565b8452602084019350506020810190506132fa565b5050509392505050565b600082601f8301126133405761333f612436565b5b81516133508482602086016132c2565b91505092915050565b60006020828403121561336f5761336e6120c0565b5b600082015167ffffffffffffffff81111561338d5761338c6120c5565b5b6133998482850161332b565b91505092915050565b60006040820190506133b760008301856121fe565b6133c460208301846121fe565b939250505056fea2646970667358221220052c3801dd0485b0833765a14388d1b3a4a6a183d497efd1a734b22c74b7611864736f6c63430008110033

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

000000000000000000000000fe90f99a1fd731a29b785cb080596c916ebf3bca

-----Decoded View---------------
Arg [0] : mrLiqidityAddress (address): 0xFE90F99a1Fd731a29b785Cb080596c916EbF3BcA

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000fe90f99a1fd731a29b785cb080596c916ebf3bca


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.