ETH Price: $2,419.17 (+3.47%)

Token

Pepe's Sky Rocket Odyssey (PEPEr)
 

Overview

Max Total Supply

238,855 PEPEr

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
451.841278595233262991 PEPEr

Value
$0.00
0x85893cc28f86c3138e1e3f888b16466e8accafc6
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:
PEPEr

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : PEPEr.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.19;

/*        

Pepe's Sky Rocket Odyssey ($PEPEr)
https://www.peperocket.xyz/
https://t.me/PepesSkyRocketOdyssey
https://twitter.com/pepeskyrocket

*/

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

import "./interfaces/IUniswapV2Factory.sol";
import "./interfaces/IUniswapV2Router02.sol";

contract PEPEr is Context, IERC20, Ownable {
  using Address for address payable;
  using SafeMath for uint;

  mapping (address => uint) private _balances;
  mapping (address => mapping (address => uint)) private _allowances;

  mapping (address => bool) private _isExcludedFromFee;

  address private constant _deadAddress = address(0xdead);
  address payable private _marketingWallet;

  uint private _initialBuyTax = 1000; // 10%
  uint private _initialSellTax = 1000;
  uint private _finalBuyTax = 75; // 0.75%
  uint private _finalSellTax = 75;
  uint private _reduceBuyTaxAfter = 20;
  uint private _reduceSellTaxAfter = 20;
  uint private _preventSwapBefore = 20;

  uint8 private constant _decimals = 18;
  uint private constant _totalSupply = 238_855 * 10**_decimals;
  string private constant _name = unicode"Pepe's Sky Rocket Odyssey";
  string private constant _symbol = unicode"PEPEr";

  uint public _maxTxAmount = _totalSupply * 3 / 100;
  uint public _maxWalletSize = _totalSupply * 3 / 100;
  uint public _swapThreshold = _totalSupply * 1 / 1000;

  IUniswapV2Router02 private uniswapV2Router;
  address private uniswapV2Pair;

  bool private tradingOpen;
  uint public launchBlock;
  uint public lastLiquidityBurn;
  uint public constant liquidityBurnInterval = 24 hours;

  bool private inSwap = false;
  bool private swapEnabled = false;

  event MaxTxAmountUpdated(uint _maxTxAmount);

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

  constructor (
    address marketingWallet
  ) {
    _marketingWallet = payable(marketingWallet);
    _balances[_msgSender()] = _totalSupply;

    _isExcludedFromFee[_msgSender()] = true;
    _isExcludedFromFee[address(this)] = true;
    _isExcludedFromFee[_marketingWallet] = true;
    _isExcludedFromFee[_deadAddress] = true;

    emit Transfer(address(0), _msgSender(), _totalSupply);
  }

  function name() public pure returns (string memory) {
    return _name;
  }

  function symbol() public pure returns (string memory) {
    return _symbol;
  }

  function decimals() public pure returns (uint8) {
    return _decimals;
  }

  function totalSupply() public pure override returns (uint) {
    return _totalSupply;
  }

  function balanceOf(address account) public view override returns (uint) {
    return _balances[account];
  }

  function transfer(address recipient, uint amount) public override returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

  function allowance(address owner, address spender) public view override returns (uint) {
    return _allowances[owner][spender];
  }

  function approve(address spender, uint amount) public override returns (bool) {
    _approve(_msgSender(), spender, amount);
    return true;
  }

  function transferFrom(address sender, address recipient, uint amount) public override returns (bool) {
    _transfer(sender, recipient, amount);
    _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
    return true;
  }

  function _approve(address owner, address spender, uint amount) private {
    require(owner != address(0), "ERC20: approve from the zero address");
    require(spender != address(0), "ERC20: approve to the zero address");
    _allowances[owner][spender] = amount;
    emit Approval(owner, spender, amount);
  }

  function _transfer(address from, address to, uint amount) private {
    require(from != address(0), "ERC20: transfer from the zero address");
    require(to != address(0), "ERC20: transfer to the zero address");
    require(amount > 0, "Transfer amount must be greater than zero");

    uint taxAmount;

    if (!_isExcludedFromFee[from] && !_isExcludedFromFee[to]) {
      require (tradingOpen, "Trading is not enabled yet");

      if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to]) {
        require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
        require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize.");
      }

      taxAmount = amount.mul((block.number > launchBlock + _reduceBuyTaxAfter) ? _finalBuyTax : _initialBuyTax).div(10000);
      if (to == uniswapV2Pair && from != address(this)) {
        require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
        taxAmount = amount.mul((block.number > launchBlock + _reduceSellTaxAfter) ? _finalSellTax : _initialSellTax).div(10000);
      }

      uint contractTokenBalance = balanceOf(address(this));
      if (!inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _swapThreshold && block.number > launchBlock + _preventSwapBefore) {
        uint tokenAmount = min(amount, min(contractTokenBalance, _swapThreshold));
        if (tokenAmount > 0) {
          tokenAmount = tokenAmount.div(2);
          swapTokensForEth(tokenAmount);
          
          uint contractETHBalance = address(this).balance;
          if (contractETHBalance > 0) {
            addLiquidity(address(this).balance, tokenAmount);
          }
        }
      }
    }

    if (taxAmount > 0) {
      _balances[address(this)] = _balances[address(this)].add(taxAmount);
      emit Transfer(from, address(this), taxAmount);
    }

    _balances[from] = _balances[from].sub(amount);
    _balances[to] = _balances[to].add(amount.sub(taxAmount));

    emit Transfer(from, to, amount.sub(taxAmount));
  }

  function min(uint a, uint b) private pure returns (uint) {
    return (a > b) ? b : a;
  }

  function swapTokensForEth(uint tokenAmount) private lockTheSwap {
    if (tokenAmount == 0) return;
    if (!tradingOpen) return;

    tokenAmount = tokenAmount / 2;

    address[] memory path = new address[](2);
    path[0] = address(this);
    path[1] = uniswapV2Router.WETH();

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

    uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
      tokenAmount,
      0,
      path,
      address(this),
      block.timestamp
    );
  }

  function addLiquidity(uint ethAmount, uint tokenAmount) private lockTheSwap {
    if (ethAmount == 0 || tokenAmount == 0) return;
    if (!tradingOpen) return;

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

    uniswapV2Router.addLiquidityETH{value: ethAmount}(
      address(this),
      tokenAmount,
      0,
      0,
      address(this),
      block.timestamp
    );
  }

  function _burnLiquidity() private lockTheSwap {
    if (!tradingOpen) return;

    if (lastLiquidityBurn.add(liquidityBurnInterval) <= block.timestamp) {
      uint balance = IERC20(uniswapV2Pair).balanceOf(address(this));
      if (balance > 0) {
        balance = balance.div(20); // 5%

        uint tokenBalanceBefore = balanceOf(address(this));

        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), balance);
        uint ethAmount = uniswapV2Router.removeLiquidityETHSupportingFeeOnTransferTokens(
          address(this), 
          balance, 
          0, 
          0, 
          address(this), 
          block.timestamp
        );

        uint deltaBalance = balanceOf(address(this)).sub(tokenBalanceBefore);

        _balances[address(this)] = _balances[address(this)].sub(deltaBalance);
        _balances[_deadAddress] = _balances[_deadAddress].add(deltaBalance);
        emit Transfer(address(this), _deadAddress, deltaBalance);

        Address.sendValue(_marketingWallet, ethAmount);

        lastLiquidityBurn = block.timestamp;
      }
    }
  }

  function openTrading() external payable onlyOwner {
    require(!tradingOpen, "Trading is already open");
    require(balanceOf(_msgSender()) > 0, "No token balance");
    require(msg.value > 0, "No eth value");

    uint tokenAmount = balanceOf(_msgSender());

    uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    _approve(_msgSender(), address(this), tokenAmount);
    _approve(address(this), address(uniswapV2Router), tokenAmount);
    _transfer(_msgSender(), address(this), tokenAmount);

    uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
    uniswapV2Router.addLiquidityETH{value: msg.value}(
      address(this),
      tokenAmount,
      0,
      0,
      _msgSender(),
      block.timestamp
    );

    swapEnabled = true;
    tradingOpen = true;
    launchBlock = block.number;
    lastLiquidityBurn = block.timestamp;
  }

  function burnLiquidity() external {
    _burnLiquidity();
  }

  function distribute(address[] calldata recipients, uint[] calldata amounts) external onlyOwner {
    require(recipients.length == amounts.length, "Error in arrays!");
    for (uint256 i = 0; i < recipients.length; i++) {
      _transfer(_msgSender(), recipients[i], amounts[i] * 10 ** _decimals);
    }
  }

  function rescueETH() external {
    require(_msgSender() == _marketingWallet, "Not authorized");
    payable(_msgSender()).sendValue(address(this).balance);
  }
 
  function rescueTokens(address _token) external {
    require(_msgSender() == _marketingWallet, "Not authorized");
    require(_token != address(this), "Can not rescue own token!");
    IERC20(_token).transfer(_msgSender(), IERC20(_token).balanceOf(address(this)));
  }

  receive() external payable {}
}

File 2 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 3 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 4 of 8 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 5 of 8 : 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 6 of 8 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

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

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 7 of 8 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 8 of 8 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IUniswapV2Router02 {
    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 removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"marketingWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"burnLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"distribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastLiquidityBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityBurnInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526103e86005556103e8600655604b600755604b60085560146009556014600a556014600b55606460036012600a6200003d9190620006b9565b6203a5076200004d91906200070a565b6200005991906200070a565b62000065919062000784565b600c55606460036012600a6200007c9190620006b9565b6203a5076200008c91906200070a565b6200009891906200070a565b620000a4919062000784565b600d556103e860016012600a620000bc9190620006b9565b6203a507620000cc91906200070a565b620000d891906200070a565b620000e4919062000784565b600e556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055503480156200012a57600080fd5b50604051620043da380380620043da833981810160405281019062000150919062000826565b62000170620001646200045360201b60201c565b6200045b60201b60201c565b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506012600a620001c19190620006b9565b6203a507620001d191906200070a565b60016000620001e56200045360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160036000620002396200045360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160036000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016003600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003c66200045360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6012600a620004259190620006b9565b6203a5076200043591906200070a565b60405162000444919062000869565b60405180910390a35062000886565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620005ad578086048111156200058557620005846200051f565b5b6001851615620005955780820291505b8081029050620005a5856200054e565b945062000565565b94509492505050565b600082620005c857600190506200069b565b81620005d857600090506200069b565b8160018114620005f15760028114620005fc5762000632565b60019150506200069b565b60ff8411156200061157620006106200051f565b5b8360020a9150848211156200062b576200062a6200051f565b5b506200069b565b5060208310610133831016604e8410600b84101617156200066c5782820a9050838111156200066657620006656200051f565b5b6200069b565b6200067b84848460016200055b565b925090508184048111156200069557620006946200051f565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006c682620006a2565b9150620006d383620006ac565b9250620007027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005b6565b905092915050565b60006200071782620006a2565b91506200072483620006a2565b92508282026200073481620006a2565b915082820484148315176200074e576200074d6200051f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200079182620006a2565b91506200079e83620006a2565b925082620007b157620007b062000755565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007ee82620007c1565b9050919050565b6200080081620007e1565b81146200080c57600080fd5b50565b6000815190506200082081620007f5565b92915050565b6000602082840312156200083f576200083e620007bc565b5b60006200084f848285016200080f565b91505092915050565b6200086381620006a2565b82525050565b600060208201905062000880600083018462000858565b92915050565b613b4480620008966000396000f3fe6080604052600436106101435760003560e01c80637d1db4a5116100b6578063a9059cbb1161006f578063a9059cbb14610434578063c9567bf914610471578063d00efb2f1461047b578063da942cbf146104a6578063dd62ed3e146104bd578063f2fde38b146104fa5761014a565b80637d1db4a5146103325780638da5cb5b1461035d5780638f9a55c01461038857806395d89b41146103b3578063993457ca146103de5780639d2a3542146104095761014a565b806320800a001161010857806320800a001461023657806323b872dd1461024d5780632929abe61461028a578063313ce567146102b357806370a08231146102de578063715018a61461031b5761014a565b8062ae3bf81461014f57806306fdde0314610178578063095ea7b3146101a35780630e5a9231146101e057806318160ddd1461020b5761014a565b3661014a57005b600080fd5b34801561015b57600080fd5b506101766004803603810190610171919061277c565b610523565b005b34801561018457600080fd5b5061018d61072a565b60405161019a9190612839565b60405180910390f35b3480156101af57600080fd5b506101ca60048036038101906101c59190612891565b610767565b6040516101d791906128ec565b60405180910390f35b3480156101ec57600080fd5b506101f5610785565b6040516102029190612916565b60405180910390f35b34801561021757600080fd5b5061022061078b565b60405161022d9190612916565b60405180910390f35b34801561024257600080fd5b5061024b6107ae565b005b34801561025957600080fd5b50610274600480360381019061026f9190612931565b610877565b60405161028191906128ec565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612a3f565b610950565b005b3480156102bf57600080fd5b506102c8610a32565b6040516102d59190612adc565b60405180910390f35b3480156102ea57600080fd5b506103056004803603810190610300919061277c565b610a3b565b6040516103129190612916565b60405180910390f35b34801561032757600080fd5b50610330610a84565b005b34801561033e57600080fd5b50610347610a98565b6040516103549190612916565b60405180910390f35b34801561036957600080fd5b50610372610a9e565b60405161037f9190612b06565b60405180910390f35b34801561039457600080fd5b5061039d610ac7565b6040516103aa9190612916565b60405180910390f35b3480156103bf57600080fd5b506103c8610acd565b6040516103d59190612839565b60405180910390f35b3480156103ea57600080fd5b506103f3610b0a565b6040516104009190612916565b60405180910390f35b34801561041557600080fd5b5061041e610b11565b60405161042b9190612916565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190612891565b610b17565b60405161046891906128ec565b60405180910390f35b610479610b35565b005b34801561048757600080fd5b50610490610fb5565b60405161049d9190612916565b60405180910390f35b3480156104b257600080fd5b506104bb610fbb565b005b3480156104c957600080fd5b506104e460048036038101906104df9190612b21565b610fc5565b6040516104f19190612916565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061277c565b61104c565b005b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166105646110cf565b73ffffffffffffffffffffffffffffffffffffffff16146105ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b190612bad565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061f90612c19565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61064c6110cf565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016106859190612b06565b602060405180830381865afa1580156106a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c69190612c4e565b6040518363ffffffff1660e01b81526004016106e3929190612c7b565b6020604051808303816000875af1158015610702573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107269190612cd0565b5050565b60606040518060400160405280601981526020017f50657065277320536b7920526f636b6574204f64797373657900000000000000815250905090565b600061077b6107746110cf565b84846110d7565b6001905092915050565b600e5481565b60006012600a61079b9190612e5f565b6203a5076107a99190612eaa565b905090565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166107ef6110cf565b73ffffffffffffffffffffffffffffffffffffffff1614610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90612bad565b60405180910390fd5b610875476108516110cf565b73ffffffffffffffffffffffffffffffffffffffff166112a090919063ffffffff16565b565b6000610884848484611394565b610945846108906110cf565b61094085604051806060016040528060288152602001613ae760289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108f66110cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c939092919063ffffffff16565b6110d7565b600190509392505050565b610958611ce8565b8181905084849050146109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790612f38565b60405180910390fd5b60005b84849050811015610a2b57610a186109b96110cf565b8686848181106109cc576109cb612f58565b5b90506020020160208101906109e1919061277c565b6012600a6109ef9190612e5f565b868686818110610a0257610a01612f58565b5b90506020020135610a139190612eaa565b611394565b8080610a2390612f87565b9150506109a3565b5050505050565b60006012905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a8c611ce8565b610a966000611d66565b565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606040518060400160405280600581526020017f5045504572000000000000000000000000000000000000000000000000000000815250905090565b6201518081565b60125481565b6000610b2b610b246110cf565b8484611394565b6001905092915050565b610b3d611ce8565b601060149054906101000a900460ff1615610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b849061301b565b60405180910390fd5b6000610b9f610b9a6110cf565b610a3b565b11610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613087565b60405180910390fd5b60003411610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c19906130f3565b60405180910390fd5b6000610c34610c2f6110cf565b610a3b565b9050737a250d5630b4cf539739df2c5dacb4c659f2488d600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c9d610c966110cf565b30836110d7565b610cca30600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836110d7565b610cdc610cd56110cf565b3083611394565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6d9190613128565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610df6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1a9190613128565b6040518363ffffffff1660e01b8152600401610e37929190613155565b6020604051808303816000875af1158015610e56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7a9190613128565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719343084600080610f066110cf565b426040518863ffffffff1660e01b8152600401610f28969594939291906131c3565b60606040518083038185885af1158015610f46573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f6b9190613224565b5050506001601360016101000a81548160ff0219169083151502179055506001601060146101000a81548160ff021916908315150217905550436011819055504260128190555050565b60115481565b610fc3611e2a565b565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611054611ce8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba906132e9565b60405180910390fd5b6110cc81611d66565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d9061337b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac9061340d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112939190612916565b60405180910390a3505050565b804710156112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90613479565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611309906134ca565b60006040518083038185875af1925050503d8060008114611346576040519150601f19603f3d011682016040523d82523d6000602084013e61134b565b606091505b505090508061138f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138690613551565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906135e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146990613675565b60405180910390fd5b600081116114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90613707565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561155b5750600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119d657601060149054906101000a900460ff166115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a690613773565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561165a5750600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156116b05750600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561175357600c548211156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f1906137df565b60405180910390fd5b600d548261170785610a3b565b61171191906137ff565b1115611752576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117499061387f565b60405180910390fd5b5b61179b61271061178d60095460115461176c91906137ff565b431161177a5760055461177e565b6007545b856122bf90919063ffffffff16565b6122d590919063ffffffff16565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561182657503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156118bb57600c54821115611870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611867906137df565b60405180910390fd5b6118b86127106118aa600a5460115461188991906137ff565b43116118975760065461189b565b6008545b856122bf90919063ffffffff16565b6122d590919063ffffffff16565b90505b60006118c630610a3b565b9050601360009054906101000a900460ff161580156119325750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b801561194a5750601360019054906101000a900460ff165b80156119575750600e5481115b80156119715750600b5460115461196e91906137ff565b43115b156119d457600061198d8461198884600e546122eb565b6122eb565b905060008111156119d2576119ac6002826122d590919063ffffffff16565b90506119b781612304565b600047905060008111156119d0576119cf47836125ab565b5b505b505b505b6000811115611ada57611a3181600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126e890919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ad19190612916565b60405180910390a35b611b2c82600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126fe90919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bd3611b8582846126fe90919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126e890919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611c7884866126fe90919063ffffffff16565b604051611c859190612916565b60405180910390a350505050565b6000838311158290611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd29190612839565b60405180910390fd5b5082840390509392505050565b611cf06110cf565b73ffffffffffffffffffffffffffffffffffffffff16611d0e610a9e565b73ffffffffffffffffffffffffffffffffffffffff1614611d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5b906138eb565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601360006101000a81548160ff021916908315150217905550601060149054906101000a900460ff16156122a25742611e73620151806012546126e890919063ffffffff16565b116122a1576000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611ed59190612b06565b602060405180830381865afa158015611ef2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f169190612c4e565b9050600081111561229f57611f356014826122d590919063ffffffff16565b90506000611f4230610a3b565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401611fc3929190612c7b565b6020604051808303816000875af1158015611fe2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120069190612cd0565b506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663af2979eb308560008030426040518763ffffffff1660e01b815260040161206f969594939291906131c3565b6020604051808303816000875af115801561208e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b29190612c4e565b905060006120d1836120c330610a3b565b6126fe90919063ffffffff16565b905061212581600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126fe90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121bc816001600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126e890919063ffffffff16565b6001600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061dead73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516122609190612916565b60405180910390a3612294600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836112a0565b426012819055505050505b505b5b6000601360006101000a81548160ff021916908315150217905550565b600081836122cd9190612eaa565b905092915050565b600081836122e3919061393a565b905092915050565b60008183116122fa57826122fc565b815b905092915050565b6001601360006101000a81548160ff021916908315150217905550600081031561258d57601060149054906101000a900460ff161561258d5760028161234a919061393a565b90506000600267ffffffffffffffff8111156123695761236861396b565b5b6040519080825280602002602001820160405280156123975781602001602082028036833780820191505090505b50905030816000815181106123af576123ae612f58565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612456573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247a9190613128565b8160018151811061248e5761248d612f58565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506124f530600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846110d7565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612559959493929190613a58565b600060405180830381600087803b15801561257357600080fd5b505af1158015612587573d6000803e3d6000fd5b50505050505b6000601360006101000a81548160ff02191690831515021790555050565b6001601360006101000a81548160ff02191690831515021790555060008214806125d55750600081145b6126c957601060149054906101000a900460ff16156126c95761261b30600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836110d7565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71983308460008030426040518863ffffffff1660e01b8152600401612682969594939291906131c3565b60606040518083038185885af11580156126a0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126c59190613224565b5050505b6000601360006101000a81548160ff0219169083151502179055505050565b600081836126f691906137ff565b905092915050565b6000818361270c9190613ab2565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127498261271e565b9050919050565b6127598161273e565b811461276457600080fd5b50565b60008135905061277681612750565b92915050565b60006020828403121561279257612791612714565b5b60006127a084828501612767565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127e35780820151818401526020810190506127c8565b60008484015250505050565b6000601f19601f8301169050919050565b600061280b826127a9565b61281581856127b4565b93506128258185602086016127c5565b61282e816127ef565b840191505092915050565b600060208201905081810360008301526128538184612800565b905092915050565b6000819050919050565b61286e8161285b565b811461287957600080fd5b50565b60008135905061288b81612865565b92915050565b600080604083850312156128a8576128a7612714565b5b60006128b685828601612767565b92505060206128c78582860161287c565b9150509250929050565b60008115159050919050565b6128e6816128d1565b82525050565b600060208201905061290160008301846128dd565b92915050565b6129108161285b565b82525050565b600060208201905061292b6000830184612907565b92915050565b60008060006060848603121561294a57612949612714565b5b600061295886828701612767565b935050602061296986828701612767565b925050604061297a8682870161287c565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126129a9576129a8612984565b5b8235905067ffffffffffffffff8111156129c6576129c5612989565b5b6020830191508360208202830111156129e2576129e161298e565b5b9250929050565b60008083601f8401126129ff576129fe612984565b5b8235905067ffffffffffffffff811115612a1c57612a1b612989565b5b602083019150836020820283011115612a3857612a3761298e565b5b9250929050565b60008060008060408587031215612a5957612a58612714565b5b600085013567ffffffffffffffff811115612a7757612a76612719565b5b612a8387828801612993565b9450945050602085013567ffffffffffffffff811115612aa657612aa5612719565b5b612ab2878288016129e9565b925092505092959194509250565b600060ff82169050919050565b612ad681612ac0565b82525050565b6000602082019050612af16000830184612acd565b92915050565b612b008161273e565b82525050565b6000602082019050612b1b6000830184612af7565b92915050565b60008060408385031215612b3857612b37612714565b5b6000612b4685828601612767565b9250506020612b5785828601612767565b9150509250929050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000612b97600e836127b4565b9150612ba282612b61565b602082019050919050565b60006020820190508181036000830152612bc681612b8a565b9050919050565b7f43616e206e6f7420726573637565206f776e20746f6b656e2100000000000000600082015250565b6000612c036019836127b4565b9150612c0e82612bcd565b602082019050919050565b60006020820190508181036000830152612c3281612bf6565b9050919050565b600081519050612c4881612865565b92915050565b600060208284031215612c6457612c63612714565b5b6000612c7284828501612c39565b91505092915050565b6000604082019050612c906000830185612af7565b612c9d6020830184612907565b9392505050565b612cad816128d1565b8114612cb857600080fd5b50565b600081519050612cca81612ca4565b92915050565b600060208284031215612ce657612ce5612714565b5b6000612cf484828501612cbb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115612d8357808604811115612d5f57612d5e612cfd565b5b6001851615612d6e5780820291505b8081029050612d7c85612d2c565b9450612d43565b94509492505050565b600082612d9c5760019050612e58565b81612daa5760009050612e58565b8160018114612dc05760028114612dca57612df9565b6001915050612e58565b60ff841115612ddc57612ddb612cfd565b5b8360020a915084821115612df357612df2612cfd565b5b50612e58565b5060208310610133831016604e8410600b8410161715612e2e5782820a905083811115612e2957612e28612cfd565b5b612e58565b612e3b8484846001612d39565b92509050818404811115612e5257612e51612cfd565b5b81810290505b9392505050565b6000612e6a8261285b565b9150612e7583612ac0565b9250612ea27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612d8c565b905092915050565b6000612eb58261285b565b9150612ec08361285b565b9250828202612ece8161285b565b91508282048414831517612ee557612ee4612cfd565b5b5092915050565b7f4572726f7220696e206172726179732100000000000000000000000000000000600082015250565b6000612f226010836127b4565b9150612f2d82612eec565b602082019050919050565b60006020820190508181036000830152612f5181612f15565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612f928261285b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612fc457612fc3612cfd565b5b600182019050919050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b60006130056017836127b4565b915061301082612fcf565b602082019050919050565b6000602082019050818103600083015261303481612ff8565b9050919050565b7f4e6f20746f6b656e2062616c616e636500000000000000000000000000000000600082015250565b60006130716010836127b4565b915061307c8261303b565b602082019050919050565b600060208201905081810360008301526130a081613064565b9050919050565b7f4e6f206574682076616c75650000000000000000000000000000000000000000600082015250565b60006130dd600c836127b4565b91506130e8826130a7565b602082019050919050565b6000602082019050818103600083015261310c816130d0565b9050919050565b60008151905061312281612750565b92915050565b60006020828403121561313e5761313d612714565b5b600061314c84828501613113565b91505092915050565b600060408201905061316a6000830185612af7565b6131776020830184612af7565b9392505050565b6000819050919050565b6000819050919050565b60006131ad6131a86131a38461317e565b613188565b61285b565b9050919050565b6131bd81613192565b82525050565b600060c0820190506131d86000830189612af7565b6131e56020830188612907565b6131f260408301876131b4565b6131ff60608301866131b4565b61320c6080830185612af7565b61321960a0830184612907565b979650505050505050565b60008060006060848603121561323d5761323c612714565b5b600061324b86828701612c39565b935050602061325c86828701612c39565b925050604061326d86828701612c39565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132d36026836127b4565b91506132de82613277565b604082019050919050565b60006020820190508181036000830152613302816132c6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006133656024836127b4565b915061337082613309565b604082019050919050565b6000602082019050818103600083015261339481613358565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006133f76022836127b4565b91506134028261339b565b604082019050919050565b60006020820190508181036000830152613426816133ea565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613463601d836127b4565b915061346e8261342d565b602082019050919050565b6000602082019050818103600083015261349281613456565b9050919050565b600081905092915050565b50565b60006134b4600083613499565b91506134bf826134a4565b600082019050919050565b60006134d5826134a7565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061353b603a836127b4565b9150613546826134df565b604082019050919050565b6000602082019050818103600083015261356a8161352e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006135cd6025836127b4565b91506135d882613571565b604082019050919050565b600060208201905081810360008301526135fc816135c0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061365f6023836127b4565b915061366a82613603565b604082019050919050565b6000602082019050818103600083015261368e81613652565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006136f16029836127b4565b91506136fc82613695565b604082019050919050565b60006020820190508181036000830152613720816136e4565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574000000000000600082015250565b600061375d601a836127b4565b915061376882613727565b602082019050919050565b6000602082019050818103600083015261378c81613750565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e00000000000000600082015250565b60006137c96019836127b4565b91506137d482613793565b602082019050919050565b600060208201905081810360008301526137f8816137bc565b9050919050565b600061380a8261285b565b91506138158361285b565b925082820190508082111561382d5761382c612cfd565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e000000000000600082015250565b6000613869601a836127b4565b915061387482613833565b602082019050919050565b600060208201905081810360008301526138988161385c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138d56020836127b4565b91506138e08261389f565b602082019050919050565b60006020820190508181036000830152613904816138c8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139458261285b565b91506139508361285b565b9250826139605761395f61390b565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139cf8161273e565b82525050565b60006139e183836139c6565b60208301905092915050565b6000602082019050919050565b6000613a058261399a565b613a0f81856139a5565b9350613a1a836139b6565b8060005b83811015613a4b578151613a3288826139d5565b9750613a3d836139ed565b925050600181019050613a1e565b5085935050505092915050565b600060a082019050613a6d6000830188612907565b613a7a60208301876131b4565b8181036040830152613a8c81866139fa565b9050613a9b6060830185612af7565b613aa86080830184612907565b9695505050505050565b6000613abd8261285b565b9150613ac88361285b565b9250828203905081811115613ae057613adf612cfd565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122052b265867b8fea134e7422757fd4470d4e81ccb1d463b26f4f4071048318db0e64736f6c63430008130033000000000000000000000000f4852aa27feed1fb2c7d9b49a83bfe9a517daeed

Deployed Bytecode

0x6080604052600436106101435760003560e01c80637d1db4a5116100b6578063a9059cbb1161006f578063a9059cbb14610434578063c9567bf914610471578063d00efb2f1461047b578063da942cbf146104a6578063dd62ed3e146104bd578063f2fde38b146104fa5761014a565b80637d1db4a5146103325780638da5cb5b1461035d5780638f9a55c01461038857806395d89b41146103b3578063993457ca146103de5780639d2a3542146104095761014a565b806320800a001161010857806320800a001461023657806323b872dd1461024d5780632929abe61461028a578063313ce567146102b357806370a08231146102de578063715018a61461031b5761014a565b8062ae3bf81461014f57806306fdde0314610178578063095ea7b3146101a35780630e5a9231146101e057806318160ddd1461020b5761014a565b3661014a57005b600080fd5b34801561015b57600080fd5b506101766004803603810190610171919061277c565b610523565b005b34801561018457600080fd5b5061018d61072a565b60405161019a9190612839565b60405180910390f35b3480156101af57600080fd5b506101ca60048036038101906101c59190612891565b610767565b6040516101d791906128ec565b60405180910390f35b3480156101ec57600080fd5b506101f5610785565b6040516102029190612916565b60405180910390f35b34801561021757600080fd5b5061022061078b565b60405161022d9190612916565b60405180910390f35b34801561024257600080fd5b5061024b6107ae565b005b34801561025957600080fd5b50610274600480360381019061026f9190612931565b610877565b60405161028191906128ec565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612a3f565b610950565b005b3480156102bf57600080fd5b506102c8610a32565b6040516102d59190612adc565b60405180910390f35b3480156102ea57600080fd5b506103056004803603810190610300919061277c565b610a3b565b6040516103129190612916565b60405180910390f35b34801561032757600080fd5b50610330610a84565b005b34801561033e57600080fd5b50610347610a98565b6040516103549190612916565b60405180910390f35b34801561036957600080fd5b50610372610a9e565b60405161037f9190612b06565b60405180910390f35b34801561039457600080fd5b5061039d610ac7565b6040516103aa9190612916565b60405180910390f35b3480156103bf57600080fd5b506103c8610acd565b6040516103d59190612839565b60405180910390f35b3480156103ea57600080fd5b506103f3610b0a565b6040516104009190612916565b60405180910390f35b34801561041557600080fd5b5061041e610b11565b60405161042b9190612916565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190612891565b610b17565b60405161046891906128ec565b60405180910390f35b610479610b35565b005b34801561048757600080fd5b50610490610fb5565b60405161049d9190612916565b60405180910390f35b3480156104b257600080fd5b506104bb610fbb565b005b3480156104c957600080fd5b506104e460048036038101906104df9190612b21565b610fc5565b6040516104f19190612916565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061277c565b61104c565b005b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166105646110cf565b73ffffffffffffffffffffffffffffffffffffffff16146105ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b190612bad565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061f90612c19565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61064c6110cf565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016106859190612b06565b602060405180830381865afa1580156106a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c69190612c4e565b6040518363ffffffff1660e01b81526004016106e3929190612c7b565b6020604051808303816000875af1158015610702573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107269190612cd0565b5050565b60606040518060400160405280601981526020017f50657065277320536b7920526f636b6574204f64797373657900000000000000815250905090565b600061077b6107746110cf565b84846110d7565b6001905092915050565b600e5481565b60006012600a61079b9190612e5f565b6203a5076107a99190612eaa565b905090565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166107ef6110cf565b73ffffffffffffffffffffffffffffffffffffffff1614610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90612bad565b60405180910390fd5b610875476108516110cf565b73ffffffffffffffffffffffffffffffffffffffff166112a090919063ffffffff16565b565b6000610884848484611394565b610945846108906110cf565b61094085604051806060016040528060288152602001613ae760289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108f66110cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c939092919063ffffffff16565b6110d7565b600190509392505050565b610958611ce8565b8181905084849050146109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790612f38565b60405180910390fd5b60005b84849050811015610a2b57610a186109b96110cf565b8686848181106109cc576109cb612f58565b5b90506020020160208101906109e1919061277c565b6012600a6109ef9190612e5f565b868686818110610a0257610a01612f58565b5b90506020020135610a139190612eaa565b611394565b8080610a2390612f87565b9150506109a3565b5050505050565b60006012905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a8c611ce8565b610a966000611d66565b565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606040518060400160405280600581526020017f5045504572000000000000000000000000000000000000000000000000000000815250905090565b6201518081565b60125481565b6000610b2b610b246110cf565b8484611394565b6001905092915050565b610b3d611ce8565b601060149054906101000a900460ff1615610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b849061301b565b60405180910390fd5b6000610b9f610b9a6110cf565b610a3b565b11610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613087565b60405180910390fd5b60003411610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c19906130f3565b60405180910390fd5b6000610c34610c2f6110cf565b610a3b565b9050737a250d5630b4cf539739df2c5dacb4c659f2488d600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c9d610c966110cf565b30836110d7565b610cca30600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836110d7565b610cdc610cd56110cf565b3083611394565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6d9190613128565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610df6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1a9190613128565b6040518363ffffffff1660e01b8152600401610e37929190613155565b6020604051808303816000875af1158015610e56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7a9190613128565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719343084600080610f066110cf565b426040518863ffffffff1660e01b8152600401610f28969594939291906131c3565b60606040518083038185885af1158015610f46573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f6b9190613224565b5050506001601360016101000a81548160ff0219169083151502179055506001601060146101000a81548160ff021916908315150217905550436011819055504260128190555050565b60115481565b610fc3611e2a565b565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611054611ce8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba906132e9565b60405180910390fd5b6110cc81611d66565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d9061337b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac9061340d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112939190612916565b60405180910390a3505050565b804710156112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90613479565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611309906134ca565b60006040518083038185875af1925050503d8060008114611346576040519150601f19603f3d011682016040523d82523d6000602084013e61134b565b606091505b505090508061138f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138690613551565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906135e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146990613675565b60405180910390fd5b600081116114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90613707565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561155b5750600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119d657601060149054906101000a900460ff166115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a690613773565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561165a5750600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156116b05750600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561175357600c548211156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f1906137df565b60405180910390fd5b600d548261170785610a3b565b61171191906137ff565b1115611752576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117499061387f565b60405180910390fd5b5b61179b61271061178d60095460115461176c91906137ff565b431161177a5760055461177e565b6007545b856122bf90919063ffffffff16565b6122d590919063ffffffff16565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561182657503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156118bb57600c54821115611870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611867906137df565b60405180910390fd5b6118b86127106118aa600a5460115461188991906137ff565b43116118975760065461189b565b6008545b856122bf90919063ffffffff16565b6122d590919063ffffffff16565b90505b60006118c630610a3b565b9050601360009054906101000a900460ff161580156119325750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b801561194a5750601360019054906101000a900460ff165b80156119575750600e5481115b80156119715750600b5460115461196e91906137ff565b43115b156119d457600061198d8461198884600e546122eb565b6122eb565b905060008111156119d2576119ac6002826122d590919063ffffffff16565b90506119b781612304565b600047905060008111156119d0576119cf47836125ab565b5b505b505b505b6000811115611ada57611a3181600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126e890919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ad19190612916565b60405180910390a35b611b2c82600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126fe90919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bd3611b8582846126fe90919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126e890919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611c7884866126fe90919063ffffffff16565b604051611c859190612916565b60405180910390a350505050565b6000838311158290611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd29190612839565b60405180910390fd5b5082840390509392505050565b611cf06110cf565b73ffffffffffffffffffffffffffffffffffffffff16611d0e610a9e565b73ffffffffffffffffffffffffffffffffffffffff1614611d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5b906138eb565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601360006101000a81548160ff021916908315150217905550601060149054906101000a900460ff16156122a25742611e73620151806012546126e890919063ffffffff16565b116122a1576000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611ed59190612b06565b602060405180830381865afa158015611ef2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f169190612c4e565b9050600081111561229f57611f356014826122d590919063ffffffff16565b90506000611f4230610a3b565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401611fc3929190612c7b565b6020604051808303816000875af1158015611fe2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120069190612cd0565b506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663af2979eb308560008030426040518763ffffffff1660e01b815260040161206f969594939291906131c3565b6020604051808303816000875af115801561208e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b29190612c4e565b905060006120d1836120c330610a3b565b6126fe90919063ffffffff16565b905061212581600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126fe90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121bc816001600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126e890919063ffffffff16565b6001600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061dead73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516122609190612916565b60405180910390a3612294600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836112a0565b426012819055505050505b505b5b6000601360006101000a81548160ff021916908315150217905550565b600081836122cd9190612eaa565b905092915050565b600081836122e3919061393a565b905092915050565b60008183116122fa57826122fc565b815b905092915050565b6001601360006101000a81548160ff021916908315150217905550600081031561258d57601060149054906101000a900460ff161561258d5760028161234a919061393a565b90506000600267ffffffffffffffff8111156123695761236861396b565b5b6040519080825280602002602001820160405280156123975781602001602082028036833780820191505090505b50905030816000815181106123af576123ae612f58565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612456573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247a9190613128565b8160018151811061248e5761248d612f58565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506124f530600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846110d7565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612559959493929190613a58565b600060405180830381600087803b15801561257357600080fd5b505af1158015612587573d6000803e3d6000fd5b50505050505b6000601360006101000a81548160ff02191690831515021790555050565b6001601360006101000a81548160ff02191690831515021790555060008214806125d55750600081145b6126c957601060149054906101000a900460ff16156126c95761261b30600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836110d7565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71983308460008030426040518863ffffffff1660e01b8152600401612682969594939291906131c3565b60606040518083038185885af11580156126a0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126c59190613224565b5050505b6000601360006101000a81548160ff0219169083151502179055505050565b600081836126f691906137ff565b905092915050565b6000818361270c9190613ab2565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127498261271e565b9050919050565b6127598161273e565b811461276457600080fd5b50565b60008135905061277681612750565b92915050565b60006020828403121561279257612791612714565b5b60006127a084828501612767565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127e35780820151818401526020810190506127c8565b60008484015250505050565b6000601f19601f8301169050919050565b600061280b826127a9565b61281581856127b4565b93506128258185602086016127c5565b61282e816127ef565b840191505092915050565b600060208201905081810360008301526128538184612800565b905092915050565b6000819050919050565b61286e8161285b565b811461287957600080fd5b50565b60008135905061288b81612865565b92915050565b600080604083850312156128a8576128a7612714565b5b60006128b685828601612767565b92505060206128c78582860161287c565b9150509250929050565b60008115159050919050565b6128e6816128d1565b82525050565b600060208201905061290160008301846128dd565b92915050565b6129108161285b565b82525050565b600060208201905061292b6000830184612907565b92915050565b60008060006060848603121561294a57612949612714565b5b600061295886828701612767565b935050602061296986828701612767565b925050604061297a8682870161287c565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126129a9576129a8612984565b5b8235905067ffffffffffffffff8111156129c6576129c5612989565b5b6020830191508360208202830111156129e2576129e161298e565b5b9250929050565b60008083601f8401126129ff576129fe612984565b5b8235905067ffffffffffffffff811115612a1c57612a1b612989565b5b602083019150836020820283011115612a3857612a3761298e565b5b9250929050565b60008060008060408587031215612a5957612a58612714565b5b600085013567ffffffffffffffff811115612a7757612a76612719565b5b612a8387828801612993565b9450945050602085013567ffffffffffffffff811115612aa657612aa5612719565b5b612ab2878288016129e9565b925092505092959194509250565b600060ff82169050919050565b612ad681612ac0565b82525050565b6000602082019050612af16000830184612acd565b92915050565b612b008161273e565b82525050565b6000602082019050612b1b6000830184612af7565b92915050565b60008060408385031215612b3857612b37612714565b5b6000612b4685828601612767565b9250506020612b5785828601612767565b9150509250929050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000612b97600e836127b4565b9150612ba282612b61565b602082019050919050565b60006020820190508181036000830152612bc681612b8a565b9050919050565b7f43616e206e6f7420726573637565206f776e20746f6b656e2100000000000000600082015250565b6000612c036019836127b4565b9150612c0e82612bcd565b602082019050919050565b60006020820190508181036000830152612c3281612bf6565b9050919050565b600081519050612c4881612865565b92915050565b600060208284031215612c6457612c63612714565b5b6000612c7284828501612c39565b91505092915050565b6000604082019050612c906000830185612af7565b612c9d6020830184612907565b9392505050565b612cad816128d1565b8114612cb857600080fd5b50565b600081519050612cca81612ca4565b92915050565b600060208284031215612ce657612ce5612714565b5b6000612cf484828501612cbb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115612d8357808604811115612d5f57612d5e612cfd565b5b6001851615612d6e5780820291505b8081029050612d7c85612d2c565b9450612d43565b94509492505050565b600082612d9c5760019050612e58565b81612daa5760009050612e58565b8160018114612dc05760028114612dca57612df9565b6001915050612e58565b60ff841115612ddc57612ddb612cfd565b5b8360020a915084821115612df357612df2612cfd565b5b50612e58565b5060208310610133831016604e8410600b8410161715612e2e5782820a905083811115612e2957612e28612cfd565b5b612e58565b612e3b8484846001612d39565b92509050818404811115612e5257612e51612cfd565b5b81810290505b9392505050565b6000612e6a8261285b565b9150612e7583612ac0565b9250612ea27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612d8c565b905092915050565b6000612eb58261285b565b9150612ec08361285b565b9250828202612ece8161285b565b91508282048414831517612ee557612ee4612cfd565b5b5092915050565b7f4572726f7220696e206172726179732100000000000000000000000000000000600082015250565b6000612f226010836127b4565b9150612f2d82612eec565b602082019050919050565b60006020820190508181036000830152612f5181612f15565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612f928261285b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612fc457612fc3612cfd565b5b600182019050919050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b60006130056017836127b4565b915061301082612fcf565b602082019050919050565b6000602082019050818103600083015261303481612ff8565b9050919050565b7f4e6f20746f6b656e2062616c616e636500000000000000000000000000000000600082015250565b60006130716010836127b4565b915061307c8261303b565b602082019050919050565b600060208201905081810360008301526130a081613064565b9050919050565b7f4e6f206574682076616c75650000000000000000000000000000000000000000600082015250565b60006130dd600c836127b4565b91506130e8826130a7565b602082019050919050565b6000602082019050818103600083015261310c816130d0565b9050919050565b60008151905061312281612750565b92915050565b60006020828403121561313e5761313d612714565b5b600061314c84828501613113565b91505092915050565b600060408201905061316a6000830185612af7565b6131776020830184612af7565b9392505050565b6000819050919050565b6000819050919050565b60006131ad6131a86131a38461317e565b613188565b61285b565b9050919050565b6131bd81613192565b82525050565b600060c0820190506131d86000830189612af7565b6131e56020830188612907565b6131f260408301876131b4565b6131ff60608301866131b4565b61320c6080830185612af7565b61321960a0830184612907565b979650505050505050565b60008060006060848603121561323d5761323c612714565b5b600061324b86828701612c39565b935050602061325c86828701612c39565b925050604061326d86828701612c39565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132d36026836127b4565b91506132de82613277565b604082019050919050565b60006020820190508181036000830152613302816132c6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006133656024836127b4565b915061337082613309565b604082019050919050565b6000602082019050818103600083015261339481613358565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006133f76022836127b4565b91506134028261339b565b604082019050919050565b60006020820190508181036000830152613426816133ea565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613463601d836127b4565b915061346e8261342d565b602082019050919050565b6000602082019050818103600083015261349281613456565b9050919050565b600081905092915050565b50565b60006134b4600083613499565b91506134bf826134a4565b600082019050919050565b60006134d5826134a7565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061353b603a836127b4565b9150613546826134df565b604082019050919050565b6000602082019050818103600083015261356a8161352e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006135cd6025836127b4565b91506135d882613571565b604082019050919050565b600060208201905081810360008301526135fc816135c0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061365f6023836127b4565b915061366a82613603565b604082019050919050565b6000602082019050818103600083015261368e81613652565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006136f16029836127b4565b91506136fc82613695565b604082019050919050565b60006020820190508181036000830152613720816136e4565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574000000000000600082015250565b600061375d601a836127b4565b915061376882613727565b602082019050919050565b6000602082019050818103600083015261378c81613750565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e00000000000000600082015250565b60006137c96019836127b4565b91506137d482613793565b602082019050919050565b600060208201905081810360008301526137f8816137bc565b9050919050565b600061380a8261285b565b91506138158361285b565b925082820190508082111561382d5761382c612cfd565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e000000000000600082015250565b6000613869601a836127b4565b915061387482613833565b602082019050919050565b600060208201905081810360008301526138988161385c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138d56020836127b4565b91506138e08261389f565b602082019050919050565b60006020820190508181036000830152613904816138c8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139458261285b565b91506139508361285b565b9250826139605761395f61390b565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139cf8161273e565b82525050565b60006139e183836139c6565b60208301905092915050565b6000602082019050919050565b6000613a058261399a565b613a0f81856139a5565b9350613a1a836139b6565b8060005b83811015613a4b578151613a3288826139d5565b9750613a3d836139ed565b925050600181019050613a1e565b5085935050505092915050565b600060a082019050613a6d6000830188612907565b613a7a60208301876131b4565b8181036040830152613a8c81866139fa565b9050613a9b6060830185612af7565b613aa86080830184612907565b9695505050505050565b6000613abd8261285b565b9150613ac88361285b565b9250828203905081811115613ae057613adf612cfd565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122052b265867b8fea134e7422757fd4470d4e81ccb1d463b26f4f4071048318db0e64736f6c63430008130033

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

000000000000000000000000f4852aa27feed1fb2c7d9b49a83bfe9a517daeed

-----Decoded View---------------
Arg [0] : marketingWallet (address): 0xF4852Aa27feeD1FB2C7D9b49a83bfE9a517dAEEd

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


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.