ETH Price: $3,417.94 (+1.07%)
Gas: 3 Gwei

Token

Fetch Inu (FINU)
 

Overview

Max Total Supply

10,000,000,000,000 FINU

Holders

318

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000283801228 FINU

Value
$0.00
0x38c8db67047146f9b0e6e185aa57eaeb67c6f1ad
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:
FetchInu

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : FetchInu.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./DividendPayingToken.sol";
import "./SafeMath.sol";
import "./IterableMapping.sol";
import "./Ownable.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router.sol";
import "./IUniswapV2Factory.sol";
import "./ITracker.sol";

contract FetchInu is ERC20, Ownable {
    using SafeMath for uint256;
    uint256 public constant BASE = 10**18;
    uint256 public constant MAX_BUY_TX_AMOUNT = 50_000_000_000 * BASE;
    uint256 public constant REWARDS_FEE = 6;
    uint256 public constant DEV_FEE = 6;
    uint256 public constant TOTAL_FEES = REWARDS_FEE + DEV_FEE;
    uint256 public buyLimitTimestamp; // buy limit for the first 5 minutes
    uint256 public gasForProcessing = 150_000; // processing auto-claiming dividends
    uint256 public liquidateTokensAtAmount = 1_000_000_000 * BASE; // minimum held in token contract to process fees

    ITracker public dividendTracker;
    IUniswapV2Router02 public uniswapV2Router;

    address public uniswapV2Pair;
    address public constant DEAD_ADDRESS = 0x000000000000000000000000000000000000dEaD;
    address public devAddress;

    bool private liquidating;
    bool public tradingEnabled; // whether the token can already be traded
    bool public isAutoProcessing;
    
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;

    // addresses that can make transfers before presale is over
    mapping (address => bool) public canTransferBeforeTradingIsEnabled;

    // store addresses that a automatic market maker pairs
    mapping (address => bool) public automatedMarketMakerPairs;

    // store addresses that are blacklisted
    mapping (address => bool) public isBlacklisted;

    // store buy cooldown timestamp
    mapping (address => uint256) public buyCooldown;

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event DevWalletUpdated(address indexed newDevWallet, address indexed oldDevWallet);

    event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event ExcludeFromFees(address indexed account, bool exclude);

    event UpdateDividendTracker(address indexed newAddress, address indexed oldAddress);

    event ProcessedDividendTracker(
        uint256 iterations,
        uint256 claims,
        uint256 lastProcessedIndex,
        bool indexed automatic,
        uint256 gas,
        address indexed processor
    );

    constructor(address _devAddress) ERC20("Fetch Inu","FINU") {
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(_devAddress, true);
        excludeFromFees(address(this), true);
        // update the dev address
        devAddress = _devAddress;
        // enable owner wallet to send tokens before presales are over.
        canTransferBeforeTradingIsEnabled[owner()] = true;
        _mint(owner(), 10_000_000_000_000 * BASE);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        //  Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
    }

    receive() external payable {}

    // view functions
    function getLastProcessedIndex() external view returns(uint256) {
        return dividendTracker.getLastProcessedIndex();
    }

    function getNumberOfDividendTokenHolders() external view returns(uint256) {
        return dividendTracker.getNumberOfTokenHolders();
    }

    function getClaimWait() external view returns(uint256) {
        return dividendTracker.claimWait();
    }

    function getTotalDividendsDistributed() external view returns (uint256) {
        return dividendTracker.totalDividendsDistributed();
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function isExcludedFromDividends(address account) public view returns(bool) {
        return dividendTracker.isExcludedFromDividends(account);
    }

    function withdrawableDividendOf(address account) external view returns(uint256) {
        return dividendTracker.withdrawableDividendOf(account);
    }

    function hasDividends(address account) external view returns (bool) {
        (,int256 index, , , , , ,) = dividendTracker.getAccount(account);
        return (index > -1);
    }

    function getAccountDividendsInfo(address account)
    external view returns (
        address,
        int256,
        int256,
        uint256,
        uint256,
        uint256,
        uint256,
        uint256) {
        return dividendTracker.getAccount(account);
    }

    function getAccountDividendsInfoAtIndex(uint256 index)
    external view returns (
        address,
        int256,
        int256,
        uint256,
        uint256,
        uint256,
        uint256,
        uint256) {
        return dividendTracker.getAccountAtIndex(index);
    }

    // state functions
    // // owner restricted
    function activate() public onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        buyLimitTimestamp = (block.timestamp).add(300);
    }

    function addTransferBeforeTrading(address account) external onlyOwner {
        require(account != address(0),"Sets the zero address");
        canTransferBeforeTradingIsEnabled[account] = true;
    }

    function blackList(address _user) external onlyOwner {
        require(!isBlacklisted[_user], "user already blacklisted");
        isBlacklisted[_user] = true;
    }

    function excludeDividendsPairOnce() external onlyOwner {
        require(!automatedMarketMakerPairs[uniswapV2Pair], "uniswap pair has been set!");
        _setAutomatedMarketMakerPair(uniswapV2Pair, true);
    }
    
    function removeFromBlacklist(address _user) external onlyOwner {
        require(isBlacklisted[_user], "user already whitelisted");
        isBlacklisted[_user] = false;
    }

    function excludeFromFees(address account, bool exclude) public onlyOwner {
        require(_isExcludedFromFees[account] != exclude, "Already has been assigned!");
        _isExcludedFromFees[account] = exclude;
        emit ExcludeFromFees(account, exclude);
    }

    function excludeFromDividends(address account, bool exclude) public onlyOwner {
        dividendTracker.excludeFromDividends(account, exclude);
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "JoeTrader pair is irremovable!");
        _setAutomatedMarketMakerPair(pair, value);
    }

    function updateDividendTracker(address newAddress) public onlyOwner {
        require(newAddress != address(dividendTracker), "Tracker already has been set!");
        ITracker newDividendTracker = ITracker(payable(newAddress));
        require(newDividendTracker.owner() == address(this), "Tracker must be owned by token");
        newDividendTracker.excludeFromDividends(address(newDividendTracker),true);
        newDividendTracker.excludeFromDividends(address(this),true);
        newDividendTracker.excludeFromDividends(owner(),true);
        newDividendTracker.excludeFromDividends(DEAD_ADDRESS,true);
        newDividendTracker.excludeFromDividends(address(devAddress),true);
        emit UpdateDividendTracker(newAddress, address(dividendTracker));
        dividendTracker = newDividendTracker;
    }

    function updateGasForProcessing(uint256 newValue) external onlyOwner {
        require(newValue != gasForProcessing, "Value has been assigned!");
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }

    function updateClaimWait(uint256 claimWait) external onlyOwner {
        dividendTracker.updateClaimWait(claimWait);
    }

    function updateDevWallet(address newDevWallet) external onlyOwner {
        require(newDevWallet != devAddress, "Dev wallet has been assigned!");
        excludeFromFees(newDevWallet, true);
        emit DevWalletUpdated(newDevWallet, devAddress);
        devAddress = newDevWallet;
    }

    function updateAmountToLiquidateAt(uint256 liquidateAmount) external onlyOwner {
        require((liquidateAmount >= 1_000_000_000 * BASE) &&
                (10_000_000_000 * BASE >= liquidateAmount) ,"should be 100M <= value <= 1B");
        require(liquidateAmount != liquidateTokensAtAmount,"value already assigned!");
        liquidateTokensAtAmount = liquidateAmount;
    }
    // // public access
    function processDividendTracker(uint256 gas) external {
        (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) = dividendTracker.process(gas);
        emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, false, gas, tx.origin);
    }

    function claim() external {
        dividendTracker.processAccount(payable(msg.sender));
    }

    function switchAutoProcessing(bool enabled) external onlyOwner {
        require(enabled != isAutoProcessing,"already has been set!");
        isAutoProcessing = enabled;
    }

    // private
    function sendEth(address account, uint256 amount) private {
        (bool success, ) = account.call{value: amount}("");
    }
    function swapAndSend(uint256 tokens) private {
        swapTokensForETH(tokens);
        uint256 dividends = address(this).balance;
        uint256 devTokens = dividends.mul(DEV_FEE).div(TOTAL_FEES);
        sendEth(devAddress, devTokens);
        uint256 rewardTokens = address(this).balance;
        sendEth(address(dividendTracker), rewardTokens);
    }

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

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

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

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "AMM pair has been assigned!");
        automatedMarketMakerPairs[pair] = value;
        if(value) dividendTracker.excludeFromDividends(pair, value);
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        // blacklisting check
        require(!isBlacklisted[from] && !isBlacklisted[to] ,"from or to is blacklisted");
        
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        bool tradingIsEnabled = tradingEnabled;
        bool areMeet = !liquidating && tradingIsEnabled;
        bool hasContracts = isContract(from) || isContract(to);
        // only whitelisted addresses can make transfers before the public presale is over.
        if (!tradingIsEnabled) {
            //turn transfer on to allow for whitelist form/mutlisend presale
                require(canTransferBeforeTradingIsEnabled[from], "Trading is not enabled");
        }
        
        if(hasContracts){
            if(areMeet){
            
                if (automatedMarketMakerPairs[from] && // buys only by detecting transfer from automated market maker pair
                    to != address(uniswapV2Router) && //router -> pair is removing liquidity which shouldn't have max
                    !_isExcludedFromFees[to] //no max for those excluded from fees)
                    ) {
                    if(buyLimitTimestamp >= block.timestamp) require(amount <= MAX_BUY_TX_AMOUNT, "exceeds MAX_BUY_TX_AMOUNT");
                    require(buyCooldown[to] <= block.timestamp, "under cooldown period");
                    buyCooldown[to] = (block.timestamp).add(30);
                }

                uint256 contractTokenBalance = balanceOf(address(this));

                bool canSwap = contractTokenBalance >= liquidateTokensAtAmount;

                if (canSwap &&
                    !automatedMarketMakerPairs[from]
                ) {
                    liquidating = true;

                    swapAndSend(contractTokenBalance);

                    liquidating = false;
                }
            }

            bool takeFee = tradingIsEnabled && !liquidating;

            // if any account belongs to _isExcludedFromFee account then remove the fee
            if (_isExcludedFromFees[from] || 
                _isExcludedFromFees[to] ||
                (automatedMarketMakerPairs[from] && // third condition is for liquidity removing
                 to == address(uniswapV2Router))
                ){
                    takeFee = false;
            }

            if (takeFee) {
                uint256 fees = amount.mul(TOTAL_FEES).div(100);
                amount = amount.sub(fees);

                super._transfer(from, address(this), fees);
            }
        }
        super._transfer(from, to, amount);

        uint256 fromBalance = balanceOf(from);
        uint256 toBalance = balanceOf(to);
    
        dividendTracker.setBalance(payable(from), fromBalance);
        dividendTracker.setBalance(payable(to), toBalance);
        
        if (!liquidating && isAutoProcessing && hasContracts) {
            uint256 gas = gasForProcessing;

            try dividendTracker.process(gas) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) {
                emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gas, tx.origin);
            } catch {}
        }
    }
}

File 2 of 17 : DividendPayingToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./SafeMathUint.sol";
import "./SafeMathInt.sol";
import "./IDividendPayingToken.sol";
import "./IDividendPayingTokenOptional.sol";

/// @title Dividend-Paying Token
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev A mintable ERC20 token that allows anyone to pay and distribute ether
///  to token holders as dividends and allows token holders to withdraw their dividends.
///  Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code
contract DividendPayingToken is ERC20, IDividendPayingToken, IDividendPayingTokenOptional,Ownable {
  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
  // For more discussion about choosing the value of `magnitude`,
  //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
  uint256 constant internal magnitude = 2**128;
  uint256 internal magnifiedDividendPerShare;
  uint256 internal lastAmount;
  uint256 public totalDividendsDistributed;
  // About dividendCorrection:
  // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
  // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
  //   `dividendOf(_user)` should not be changed,
  //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
  // To keep the `dividendOf(_user)` unchanged, we add a correction term:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
  //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
  //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
  // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
  mapping(address => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  

  constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol){
  }

  /// @dev Distributes dividends whenever ether is paid to this contract.
  receive() external payable {
    distributeDividends();
  }

  /// @notice Distributes ether to token holders as dividends.
  /// @dev It reverts if the total supply of tokens is 0.
  /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0.
  /// About undistributed ether:
  ///   In each distribution, there is a small amount of ether not distributed,
  ///     the magnified amount of which is
  ///     `(msg.value * magnitude) % totalSupply()`.
  ///   With a well-chosen `magnitude`, the amount of undistributed ether
  ///     (de-magnified) in a distribution can be less than 1 wei.
  ///   We can actually keep track of the undistributed ether in a distribution
  ///     and try to distribute it in the next distribution,
  ///     but keeping track of such data on-chain costs much more than
  ///     the saved ether, so we don't do that.
  function distributeDividends() public override payable {
    require(totalSupply() > 0,"dividened totalsupply error");
    if (msg.value > 0) {
       uint256 _magnifiedShare = magnifiedDividendPerShare.add(
        (msg.value).mul(magnitude) / totalSupply());
      magnifiedDividendPerShare = _magnifiedShare;
      emit DividendsDistributed(msg.sender, msg.value);
      uint256 _totalDistributed = totalDividendsDistributed.add(msg.value);
      totalDividendsDistributed = _totalDistributed;
    }
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function withdrawDividend() public virtual override {
    _withdrawDividendOfUser(payable(msg.sender));
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function _withdrawDividendOfUser(address payable user) internal returns (uint256) {
    uint256 _withdrawableDividend = withdrawableDividendOf(user);
    if (_withdrawableDividend > 0) {
      uint256 _withdrawnAmount = withdrawnDividends[user].add(_withdrawableDividend);
      (bool success,) = user.call{value: _withdrawableDividend, gas:3000}("");
      if(!success) {
        return 0;
      }
      withdrawnDividends[user] = _withdrawnAmount;
      return _withdrawableDividend;
    }
    return 0;
  }
  
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) public view override returns(uint256) {
    uint256 _dividend = withdrawableDividendOf(_owner);
    return _dividend;
  }

  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) public view override returns(uint256) {
    uint256 _withdrawable = accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
    return _withdrawable;
  }

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) public view override returns(uint256) {
    uint256 _withdrawn = withdrawnDividends[_owner];
    return _withdrawn;
  }

  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) public view override returns(uint256) {
    uint256 _accumulative = magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe()
      .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
    return _accumulative;
  }

  /// @dev Internal function that transfer tokens from one address to another.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  function _transfer(address,address,uint256) internal virtual override {
    require(false,"transfer inallowed");
  }


  /// @dev Internal function that mints tokens to an account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account that will receive the created tokens.
  /// @param value The amount that will be created.
  function _mint(address account, uint256 value) internal override {
    super._mint(account, value);
    int256 _correction = magnifiedDividendCorrections[account]
      .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
    magnifiedDividendCorrections[account] = _correction;
  }

  /// @dev Internal function that burns an amount of the token of a given account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account whose tokens will be burnt.
  /// @param value The amount that will be burnt.
  function _burn(address account, uint256 value) internal override {
    super._burn(account, value);
    int256 _correction = magnifiedDividendCorrections[account]
      .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
    magnifiedDividendCorrections[account] = _correction;
  }

  function burn(uint256) external virtual override{
    require(false,"burning unallowed");  
  }

  /// @dev Internal function that adjusts an address dividends shares according to the new token balance. 
  /// @param account The account whose tokens will be proccessed .
  /// @param newBalance The new address balance.
  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = balanceOf(account);
    if(newBalance > currentBalance) {
      uint256 mintAmount = newBalance.sub(currentBalance);
      _mint(account, mintAmount);
    } else if(newBalance < currentBalance) {
      uint256 burnAmount = currentBalance.sub(newBalance);
      _burn(account, burnAmount);
    }
  }
}

File 3 of 17 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

File 4 of 17 : IterableMapping.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

library IterableMapping {
    // Iterable mapping from address to uint;
    struct Map {
        address[] keys;
        mapping(address => uint) values;
        mapping(address => uint) indexOf;
        mapping(address => bool) inserted;
    }

    function get(Map storage map, address key) public view returns (uint) {
        return map.values[key];
    }

    function getIndexOfKey(Map storage map, address key) public view returns (int) {
        if(!map.inserted[key]) {
            return -1;
        }
        return int(map.indexOf[key]);
    }

    function getKeyAtIndex(Map storage map, uint index) public view returns (address) {
        return map.keys[index];
    }



    function size(Map storage map) public view returns (uint) {
        return map.keys.length;
    }

    function set(Map storage map, address key, uint val) public {
        if (map.inserted[key]) {
            map.values[key] = val;
        } else {
            map.inserted[key] = true;
            map.values[key] = val;
            map.indexOf[key] = map.keys.length;
            map.keys.push(key);
        }
    }

    function remove(Map storage map, address key) public {
        if (!map.inserted[key]) {
            return;
        }

        delete map.inserted[key];
        delete map.values[key];

        uint index = map.indexOf[key];
        uint lastIndex = map.keys.length - 1;
        address lastKey = map.keys[lastIndex];

        map.indexOf[lastKey] = index;
        delete map.indexOf[key];

        map.keys[index] = lastKey;
        map.keys.pop();
    }
}

File 5 of 17 : Ownable.sol
pragma solidity ^0.8.0;

// SPDX-License-Identifier: MIT License

import "./Context.sol";

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 6 of 17 : IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

File 7 of 17 : IUniswapV2Router.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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



// pragma solidity >=0.6.2;

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

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

File 8 of 17 : 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 9 of 17 : ITracker.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
interface ITracker{
    // view functions
    function claimWait() external view returns(uint256);
    function owner() external view returns (address);
    function isExcludedFromDividends(address account) external view returns(bool);
    function totalDividendsDistributed() external view returns(uint256);
    function withdrawableDividendOf(address account) external view returns(uint256);
    function getLastProcessedIndex() external view returns(uint256);
    function getNumberOfTokenHolders() external view returns(uint256);
    function getAccount(address _account)
        external view returns (
            address account,
            int256 index,
            int256 iterationsUntilProcessed,
            uint256 withdrawableDividends,
            uint256 totalDividends,
            uint256 lastClaimTime,
            uint256 nextClaimTime,
            uint256 secondsUntilAutoClaimAvailable);
    function getAccountAtIndex(uint256 _index)
        external view returns (
            address account,
            int256 index,
            int256 iterationsUntilProcessed,
            uint256 withdrawableDividends,
            uint256 totalDividends,
            uint256 lastClaimTime,
            uint256 nextClaimTime,
            uint256 secondsUntilAutoClaimAvailable);
    // state functions
    function excludeFromDividends(address account, bool exclude) external;
    function updateClaimWait(uint256 newClaimWait) external;
    function setBalance(address payable account, uint256 newBalance) external;
    function process(uint256 gas) external returns (uint256, uint256, uint256);
    function processAccount(address payable account) external;
}

File 10 of 17 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";
import "./SafeMath.sol";

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

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

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

File 11 of 17 : SafeMathUint.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0,"Negative number is not allowed");
    return b;
  }
}

File 12 of 17 : SafeMathInt.sol
// SPDX-License-Identifier: MIT

/*
MIT License

Copyright (c) 2018 requestnetwork
Copyright (c) 2018 Fragments, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

pragma solidity ^0.8.0;

/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256),"multplitiy error");
        require((b == 0) || (c / b == a),"multiplity error mul");
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256,"SafeMath error div");

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a),"SafeMath error sub");
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a),"SafeMath error add");
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256,"SafeMath error abs");
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0,"SafeMath toUint error");
        return uint256(a);
    }
}

File 13 of 17 : IDividendPayingToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
interface IDividendPayingToken {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) external view returns(uint256);

  /// @notice Distributes ether to token holders as dividends.
  /// @dev SHOULD distribute the paid ether to token holders as dividends.
  ///  SHOULD NOT directly transfer ether to token holders in this function.
  ///  MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0.
  function distributeDividends() external payable;

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
  ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
  function withdrawDividend() external;

  /// @dev This event MUST emit when ether is distributed to token holders.
  /// @param from The address which sends ether to this contract.
  /// @param weiAmount The amount of distributed ether in wei.
  event DividendsDistributed(
    address indexed from,
    uint256 weiAmount
  );

  /// @dev This event MUST emit when an address withdraws their dividend.
  /// @param to The address which withdraws ether from this contract.
  /// @param weiAmount The amount of withdrawn ether in wei.
  event DividendWithdrawn(
    address indexed to,
    uint256 weiAmount
  );
}

File 14 of 17 : IDividendPayingTokenOptional.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


/// @title Dividend-Paying Token Optional Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev OPTIONAL functions for a dividend-paying token contract.
interface IDividendPayingTokenOptional {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) external view returns(uint256);
}

File 15 of 17 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

File 16 of 17 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

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

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

File 17 of 17 : Context.sol
// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_devAddress","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":true,"internalType":"address","name":"newDevWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldDevWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"exclude","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BUY_TX_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARDS_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_FEES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addTransferBeforeTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"blackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"buyCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLimitTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"canTransferBeforeTradingIsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract ITracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"excludeDividendsPairOnce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"hasDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isAutoProcessing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidateTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"switchAutoProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidateAmount","type":"uint256"}],"name":"updateAmountToLiquidateAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052620249f060075562000023670de0b6b3a7640000633b9aca006200079b565b6008553480156200003357600080fd5b5060405162003eec38038062003eec83398101604081905262000056916200064f565b6040805180820182526009815268466574636820496e7560b81b60208083019182528351808501909452600484526346494e5560e01b908401528151919291620000a391600391620005a9565b508051620000b9906004906020840190620005a9565b5050506000620000ce6200038c60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001326200012a62000390565b60016200039f565b6200013f8160016200039f565b6200014c3060016200039f565b600c80546001600160a01b0319166001600160a01b0383161790556001600e60006200017762000390565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620001cd620001ad62000390565b620001c7670de0b6b3a76400006509184e72a0006200079b565b62000486565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022257600080fd5b505afa15801562000237573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025d91906200064f565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002a657600080fd5b505afa158015620002bb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e191906200064f565b6040518363ffffffff1660e01b81526004016200030092919062000678565b602060405180830381600087803b1580156200031b57600080fd5b505af115801562000330573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035691906200064f565b600a80546001600160a01b039485166001600160a01b031991821617909155600b80549290941691161790915550620008109050565b3390565b6005546001600160a01b031690565b620003a96200038c565b6005546001600160a01b03908116911614620003e25760405162461bcd60e51b8152600401620003d9906200070b565b60405180910390fd5b6001600160a01b0382166000908152600d602052604090205460ff1615158115151415620004245760405162461bcd60e51b8152600401620003d990620006d4565b6001600160a01b0382166000818152600d602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7906200047a90849062000692565b60405180910390a25050565b6001600160a01b038216620004af5760405162461bcd60e51b8152600401620003d99062000740565b620004bd6000838362000569565b620004d9816002546200056e60201b62001e9e1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200050c91839062001e9e6200056e821b17901c565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200055d90859062000777565b60405180910390a35050565b505050565b6000806200057d838562000780565b905083811015620005a25760405162461bcd60e51b8152600401620003d9906200069d565b9392505050565b828054620005b790620007bd565b90600052602060002090601f016020900481019282620005db576000855562000626565b82601f10620005f657805160ff191683800117855562000626565b8280016001018555821562000626579182015b828111156200062657825182559160200191906001019062000609565b506200063492915062000638565b5090565b5b8082111562000634576000815560010162000639565b60006020828403121562000661578081fd5b81516001600160a01b0381168114620005a2578182fd5b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601a908201527f416c726561647920686173206265656e2061737369676e656421000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620007965762000796620007fa565b500190565b6000816000190483118215151615620007b857620007b8620007fa565b500290565b600281046001821680620007d257607f821691505b60208210811415620007f457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6136cc80620008206000396000f3fe6080604052600436106103905760003560e01c80637f5b4763116101dc578063c705c56911610102578063e7841ec0116100a0578063f27fd2541161006f578063f27fd254146109a9578063f2fde38b146109c9578063fe575a87146109e9578063ffdc083314610a0957610397565b8063e7841ec01461093f578063e98030c714610954578063ec342ad014610974578063f0cb19ff1461098957610397565b8063d6dac595116100dc578063d6dac595146108d5578063d950fbe1146108f5578063dd62ed3e1461090a578063dd7f67401461092a57610397565b8063c705c56914610880578063c816e4b6146108a0578063cee8279d146108b557610397565b80639c1b8af51161017a578063a9059cbb11610149578063a9059cbb146107ec578063ad56c13c1461080c578063b62496f514610840578063c02466681461086057610397565b80639c1b8af514610782578063a26579ad14610797578063a457c2d7146107ac578063a8b9d240146107cc57610397565b80638da5cb5b116101b65780638da5cb5b1461072357806392ca1e8d1461073857806395d89b411461074d5780639a7a23d61461076257610397565b80637f5b4763146106c3578063871c128d146106e357806388bdd9be1461070357610397565b80633bf39de5116102c15780634e71d92d1161025f57806364b0f6531161022e57806364b0f6531461064e578063700bb1911461066357806370a08231146106835780637e0e155c146106a357610397565b80634e71d92d146105e45780634fbee193146105f95780634fdc5cb314610619578063537df3b61461062e57610397565b80634838d1651161029b5780634838d1651461058557806349bd5a5e146105a55780634ada218b146105ba5780634e6fd6c4146105cf57610397565b80633bf39de51461055057806342966c6814610565578063436a88c11461055057610397565b806323b872dd1161032e578063313ce56711610308578063313ce567146104d9578063342e5b03146104fb578063395093511461051b5780633ad10ef61461053b57610397565b806323b872dd1461048f5780632c1f5216146104af57806330bb4cff146104c457610397565b80630f15f4c01161036a5780630f15f4c0146104165780631694505e1461042b57806318160ddd1461044d5780631816467f1461046f57610397565b80630483f7a01461039c57806306fdde03146103be578063095ea7b3146103e957610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612c05565b610a1e565b005b3480156103ca57600080fd5b506103d3610ac3565b6040516103e09190612df2565b60405180910390f35b3480156103f557600080fd5b50610409610404366004612c9b565b610b55565b6040516103e09190612de7565b34801561042257600080fd5b506103bc610b73565b34801561043757600080fd5b50610440610bf6565b6040516103e09190612d5e565b34801561045957600080fd5b50610462610c05565b6040516103e0919061347d565b34801561047b57600080fd5b506103bc61048a366004612b55565b610c0b565b34801561049b57600080fd5b506104096104aa366004612bc5565b610cd6565b3480156104bb57600080fd5b50610440610d5d565b3480156104d057600080fd5b50610462610d6c565b3480156104e557600080fd5b506104ee610dee565b6040516103e09190613511565b34801561050757600080fd5b50610462610516366004612b55565b610df3565b34801561052757600080fd5b50610409610536366004612c9b565b610e05565b34801561054757600080fd5b50610440610e53565b34801561055c57600080fd5b50610462610e62565b34801561057157600080fd5b506103bc610580366004612cfe565b610e67565b34801561059157600080fd5b506103bc6105a0366004612b55565b610e74565b3480156105b157600080fd5b50610440610f06565b3480156105c657600080fd5b50610409610f15565b3480156105db57600080fd5b50610440610f25565b3480156105f057600080fd5b506103bc610f2b565b34801561060557600080fd5b50610409610614366004612b55565b610f8f565b34801561062557600080fd5b50610462610fad565b34801561063a57600080fd5b506103bc610649366004612b55565b610fc7565b34801561065a57600080fd5b50610462611055565b34801561066f57600080fd5b506103bc61067e366004612cfe565b61109a565b34801561068f57600080fd5b5061046261069e366004612b55565b61117b565b3480156106af57600080fd5b506104096106be366004612b55565b611196565b3480156106cf57600080fd5b506103bc6106de366004612b55565b6111ab565b3480156106ef57600080fd5b506103bc6106fe366004612cfe565b61122a565b34801561070f57600080fd5b506103bc61071e366004612b55565b6112b4565b34801561072f57600080fd5b5061044061160a565b34801561074457600080fd5b50610462611619565b34801561075957600080fd5b506103d3611624565b34801561076e57600080fd5b506103bc61077d366004612c05565b611633565b34801561078e57600080fd5b506104626116a4565b3480156107a357600080fd5b506104626116aa565b3480156107b857600080fd5b506104096107c7366004612c9b565b6116ef565b3480156107d857600080fd5b506104626107e7366004612b55565b611757565b3480156107f857600080fd5b50610409610807366004612c9b565b6117d8565b34801561081857600080fd5b5061082c610827366004612b55565b6117ec565b6040516103e0989796959493929190612da6565b34801561084c57600080fd5b5061040961085b366004612b55565b611899565b34801561086c57600080fd5b506103bc61087b366004612c05565b6118ae565b34801561088c57600080fd5b5061040961089b366004612b55565b611982565b3480156108ac57600080fd5b50610462611a03565b3480156108c157600080fd5b506104096108d0366004612b55565b611a09565b3480156108e157600080fd5b506103bc6108f0366004612cfe565b611aa3565b34801561090157600080fd5b50610462611b56565b34801561091657600080fd5b50610462610925366004612b8d565b611b5c565b34801561093657600080fd5b506103bc611b87565b34801561094b57600080fd5b50610462611c10565b34801561096057600080fd5b506103bc61096f366004612cfe565b611c55565b34801561098057600080fd5b50610462611cef565b34801561099557600080fd5b506103bc6109a4366004612cc6565b611cfb565b3480156109b557600080fd5b5061082c6109c4366004612cfe565b611d81565b3480156109d557600080fd5b506103bc6109e4366004612b55565b611dc2565b3480156109f557600080fd5b50610409610a04366004612b55565b611e79565b348015610a1557600080fd5b50610409611e8e565b610a26611ed4565b6005546001600160a01b03908116911614610a5c5760405162461bcd60e51b8152600401610a53906131a7565b60405180910390fd5b60095460405162241fbd60e51b81526001600160a01b0390911690630483f7a090610a8d9085908590600401612d8b565b600060405180830381600087803b158015610aa757600080fd5b505af1158015610abb573d6000803e3d6000fd5b505050505050565b606060038054610ad29061358d565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe9061358d565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b5050505050905090565b6000610b69610b62611ed4565b8484611ed8565b5060015b92915050565b610b7b611ed4565b6005546001600160a01b03908116911614610ba85760405162461bcd60e51b8152600401610a53906131a7565b600c54600160a81b900460ff1615610bd25760405162461bcd60e51b8152600401610a539061337a565b600c805460ff60a81b1916600160a81b179055610bf14261012c611e9e565b600655565b600a546001600160a01b031681565b60025490565b610c13611ed4565b6005546001600160a01b03908116911614610c405760405162461bcd60e51b8152600401610a53906131a7565b600c546001600160a01b0382811691161415610c6e5760405162461bcd60e51b8152600401610a5390612e45565b610c798160016118ae565b600c546040516001600160a01b03918216918316907f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87190600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610ce3848484611f8c565b610d5384610cef611ed4565b610d4e8560405180606001604052806028815260200161364a602891396001600160a01b038a16600090815260016020526040812090610d2d611ed4565b6001600160a01b031681526020810191909152604001600020549190612520565b611ed8565b5060019392505050565b6009546001600160a01b031681565b600954604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610db157600080fd5b505afa158015610dc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de99190612d16565b905090565b601290565b60116020526000908152604090205481565b6000610b69610e12611ed4565b84610d4e8560016000610e23611ed4565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611e9e565b600c546001600160a01b031681565b600681565b610e71338261255a565b50565b610e7c611ed4565b6005546001600160a01b03908116911614610ea95760405162461bcd60e51b8152600401610a53906131a7565b6001600160a01b03811660009081526010602052604090205460ff1615610ee25760405162461bcd60e51b8152600401610a539061308a565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b600b546001600160a01b031681565b600c54600160a81b900460ff1681565b61dead81565b60095460405163807ab4f760e01b81526001600160a01b039091169063807ab4f790610f5b903390600401612d5e565b600060405180830381600087803b158015610f7557600080fd5b505af1158015610f89573d6000803e3d6000fd5b50505050565b6001600160a01b03166000908152600d602052604090205460ff1690565b610fc4670de0b6b3a7640000640ba43b7400613557565b81565b610fcf611ed4565b6005546001600160a01b03908116911614610ffc5760405162461bcd60e51b8152600401610a53906131a7565b6001600160a01b03811660009081526010602052604090205460ff166110345760405162461bcd60e51b8152600401610a53906130f8565b6001600160a01b03166000908152601060205260409020805460ff19169055565b600954604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610db157600080fd5b6009546040516001624d3b8760e01b03198152600091829182916001600160a01b03169063ffb2c479906110d290879060040161347d565b606060405180830381600087803b1580156110ec57600080fd5b505af1158015611100573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111249190612d2e565b925092509250326001600160a01b0316600015157fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a988585858960405161116d94939291906134f6565b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b600e6020526000908152604090205460ff1681565b6111b3611ed4565b6005546001600160a01b039081169116146111e05760405162461bcd60e51b8152600401610a53906131a7565b6001600160a01b0381166112065760405162461bcd60e51b8152600401610a53906133b1565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b611232611ed4565b6005546001600160a01b0390811691161461125f5760405162461bcd60e51b8152600401610a53906131a7565b6007548114156112815760405162461bcd60e51b8152600401610a53906132c8565b60075460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600755565b6112bc611ed4565b6005546001600160a01b039081169116146112e95760405162461bcd60e51b8152600401610a53906131a7565b6009546001600160a01b03828116911614156113175760405162461bcd60e51b8152600401610a539061320b565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561135f57600080fd5b505afa158015611373573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113979190612b71565b6001600160a01b0316146113bd5760405162461bcd60e51b8152600401610a539061340f565b60405162241fbd60e51b81526001600160a01b03821690630483f7a0906113eb908490600190600401612d8b565b600060405180830381600087803b15801561140557600080fd5b505af1158015611419573d6000803e3d6000fd5b505060405162241fbd60e51b81526001600160a01b0384169250630483f7a0915061144b903090600190600401612d8b565b600060405180830381600087803b15801561146557600080fd5b505af1158015611479573d6000803e3d6000fd5b50505050806001600160a01b0316630483f7a061149461160a565b60016040518363ffffffff1660e01b81526004016114b3929190612d8b565b600060405180830381600087803b1580156114cd57600080fd5b505af11580156114e1573d6000803e3d6000fd5b505060405162241fbd60e51b81526001600160a01b0384169250630483f7a091506115159061dead90600190600401612d8b565b600060405180830381600087803b15801561152f57600080fd5b505af1158015611543573d6000803e3d6000fd5b5050600c5460405162241fbd60e51b81526001600160a01b038086169450630483f7a09350611579921690600190600401612d8b565b600060405180830381600087803b15801561159357600080fd5b505af11580156115a7573d6000803e3d6000fd5b50506009546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600980546001600160a01b0319166001600160a01b039290921691909117905550565b6005546001600160a01b031690565b610fc460068061351f565b606060048054610ad29061358d565b61163b611ed4565b6005546001600160a01b039081169116146116685760405162461bcd60e51b8152600401610a53906131a7565b600b546001600160a01b03838116911614156116965760405162461bcd60e51b8152600401610a5390613343565b6116a0828261263c565b5050565b60075481565b60095460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610db157600080fd5b6000610b696116fc611ed4565b84610d4e856040518060600160405280602581526020016136726025913960016000611726611ed4565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612520565b6009546040516302a2e74960e61b81526000916001600160a01b03169063a8b9d24090611788908590600401612d5e565b60206040518083038186803b1580156117a057600080fd5b505afa1580156117b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6d9190612d16565b6000610b696117e5611ed4565b8484611f8c565b60095460405163fbcbc0f160e01b815260009182918291829182918291829182916001600160a01b039091169063fbcbc0f19061182d908c90600401612d5e565b6101006040518083038186803b15801561184657600080fd5b505afa15801561185a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061187e9190612c32565b97509750975097509750975097509750919395975091939597565b600f6020526000908152604090205460ff1681565b6118b6611ed4565b6005546001600160a01b039081169116146118e35760405162461bcd60e51b8152600401610a53906131a7565b6001600160a01b0382166000908152600d602052604090205460ff16151581151514156119225760405162461bcd60e51b8152600401610a5390613170565b6001600160a01b0382166000818152600d602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df790611976908490612de7565b60405180910390a25050565b60095460405163c705c56960e01b81526000916001600160a01b03169063c705c569906119b3908590600401612d5e565b60206040518083038186803b1580156119cb57600080fd5b505afa1580156119df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6d9190612ce2565b60085481565b60095460405163fbcbc0f160e01b815260009182916001600160a01b039091169063fbcbc0f190611a3e908690600401612d5e565b6101006040518083038186803b158015611a5757600080fd5b505afa158015611a6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a8f9190612c32565b505060001990941398975050505050505050565b611aab611ed4565b6005546001600160a01b03908116911614611ad85760405162461bcd60e51b8152600401610a53906131a7565b611aee670de0b6b3a7640000633b9aca00613557565b8110158015611b13575080611b10670de0b6b3a76400006402540be400613557565b10155b611b2f5760405162461bcd60e51b8152600401610a5390612ebf565b600854811415611b515760405162461bcd60e51b8152600401610a539061301c565b600855565b60065481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611b8f611ed4565b6005546001600160a01b03908116911614611bbc5760405162461bcd60e51b8152600401610a53906131a7565b600b546001600160a01b03166000908152600f602052604090205460ff1615611bf75760405162461bcd60e51b8152600401610a5390613053565b600b54611c0e906001600160a01b0316600161263c565b565b6009546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610db157600080fd5b611c5d611ed4565b6005546001600160a01b03908116911614611c8a5760405162461bcd60e51b8152600401610a53906131a7565b60095460405163e98030c760e01b81526001600160a01b039091169063e98030c790611cba90849060040161347d565b600060405180830381600087803b158015611cd457600080fd5b505af1158015611ce8573d6000803e3d6000fd5b5050505050565b670de0b6b3a764000081565b611d03611ed4565b6005546001600160a01b03908116911614611d305760405162461bcd60e51b8152600401610a53906131a7565b600c60169054906101000a900460ff1615158115151415611d635760405162461bcd60e51b8152600401610a53906133e0565b600c8054911515600160b01b0260ff60b01b19909216919091179055565b600954604051635183d6fd60e01b815260009182918291829182918291829182916001600160a01b0390911690635183d6fd9061182d908c9060040161347d565b611dca611ed4565b6005546001600160a01b03908116911614611df75760405162461bcd60e51b8152600401610a53906131a7565b6001600160a01b038116611e1d5760405162461bcd60e51b8152600401610a5390612ef6565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60106020526000908152604090205460ff1681565b600c54600160b01b900460ff1681565b600080611eab838561351f565b905083811015611ecd5760405162461bcd60e51b8152600401610a5390612f7e565b9392505050565b3390565b6001600160a01b038316611efe5760405162461bcd60e51b8152600401610a53906132ff565b6001600160a01b038216611f245760405162461bcd60e51b8152600401610a5390612f3c565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611f7f90859061347d565b60405180910390a3505050565b6001600160a01b038316611fb25760405162461bcd60e51b8152600401610a5390613283565b6001600160a01b038216611fd85760405162461bcd60e51b8152600401610a5390612e7c565b6001600160a01b03831660009081526010602052604090205460ff1615801561201a57506001600160a01b03821660009081526010602052604090205460ff16155b6120365760405162461bcd60e51b8152600401610a53906130c1565b8061204c5761204783836000612748565b61251b565b600c5460ff600160a81b8204811691600091600160a01b909104161580156120715750815b9050600061207e8661285d565b8061208d575061208d8561285d565b9050826120cc576001600160a01b0386166000908152600e602052604090205460ff166120cc5760405162461bcd60e51b8152600401610a5390612fec565b8015612325578115612241576001600160a01b0386166000908152600f602052604090205460ff16801561210e5750600a546001600160a01b03868116911614155b801561213357506001600160a01b0385166000908152600d602052604090205460ff16155b156121d457426006541061217757612158670de0b6b3a7640000640ba43b7400613557565b8411156121775760405162461bcd60e51b8152600401610a5390613446565b6001600160a01b0385166000908152601160205260409020544210156121af5760405162461bcd60e51b8152600401610a53906131dc565b6121ba42601e611e9e565b6001600160a01b0386166000908152601160205260409020555b60006121df3061117b565b6008549091508110801590819061220f57506001600160a01b0388166000908152600f602052604090205460ff16155b1561223e57600c805460ff60a01b1916600160a01b17905561223082612863565b600c805460ff60a01b191690555b50505b600083801561225a5750600c54600160a01b900460ff16155b6001600160a01b0388166000908152600d602052604090205490915060ff168061229c57506001600160a01b0386166000908152600d602052604090205460ff165b806122d757506001600160a01b0387166000908152600f602052604090205460ff1680156122d75750600a546001600160a01b038781169116145b156122e0575060005b801561232357600061230860646123026122fb60068061351f565b89906128b9565b906128fe565b90506123148682612940565b9550612321883083612748565b505b505b612330868686612748565b600061233b8761117b565b905060006123488761117b565b6009546040516338c110ef60e21b81529192506001600160a01b03169063e30443bc9061237b908b908690600401612d72565b600060405180830381600087803b15801561239557600080fd5b505af11580156123a9573d6000803e3d6000fd5b50506009546040516338c110ef60e21b81526001600160a01b03909116925063e30443bc91506123df908a908590600401612d72565b600060405180830381600087803b1580156123f957600080fd5b505af115801561240d573d6000803e3d6000fd5b5050600c54600160a01b900460ff161591505080156124355750600c54600160b01b900460ff165b801561243e5750825b15612515576007546009546040516001624d3b8760e01b031981526001600160a01b039091169063ffb2c4799061247990849060040161347d565b606060405180830381600087803b15801561249357600080fd5b505af19250505080156124c3575060408051601f3d908101601f191682019092526124c091810190612d2e565b60015b6124cc57612513565b60405132906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a9890612507908790879087908b906134f6565b60405180910390a35050505b505b50505050505b505050565b600081848411156125445760405162461bcd60e51b8152600401610a539190612df2565b5060006125518486613576565b95945050505050565b6001600160a01b0382166125805760405162461bcd60e51b8152600401610a5390613242565b61258c8260008361251b565b6125c981604051806060016040528060228152602001613602602291396001600160a01b0385166000908152602081905260409020549190612520565b6001600160a01b0383166000908152602081905260409020556002546125ef9082612940565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061263090859061347d565b60405180910390a35050565b6001600160a01b0382166000908152600f602052604090205460ff161515811515141561267b5760405162461bcd60e51b8152600401610a5390612fb5565b6001600160a01b0382166000908152600f60205260409020805460ff1916821580159190911790915561270c5760095460405162241fbd60e51b81526001600160a01b0390911690630483f7a0906126d99085908590600401612d8b565b600060405180830381600087803b1580156126f357600080fd5b505af1158015612707573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661276e5760405162461bcd60e51b8152600401610a5390613283565b6001600160a01b0382166127945760405162461bcd60e51b8152600401610a5390612e7c565b61279f83838361251b565b6127dc81604051806060016040528060268152602001613624602691396001600160a01b0386166000908152602081905260409020549190612520565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461280b9082611e9e565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611f7f90859061347d565b3b151590565b61286c81612982565b47600061288861287d60068061351f565b6123028460066128b9565b600c549091506128a1906001600160a01b031682612ad1565b6009544790610f89906001600160a01b031682612ad1565b6000826128c857506000610b6d565b60006128d48385613557565b9050826128e18583613537565b14611ecd5760405162461bcd60e51b8152600401610a539061312f565b6000611ecd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b27565b6000611ecd83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612520565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106129c557634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612a1957600080fd5b505afa158015612a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a519190612b71565b81600181518110612a7257634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600a54612a989130911684611ed8565b600a5460405163791ac94760e01b81526001600160a01b039091169063791ac94790610a8d908590600090869030904290600401613486565b6000826001600160a01b031682604051612aea90612d5b565b60006040518083038185875af1925050503d8060008114610abb576040519150601f19603f3d011682016040523d82523d6000602084013e610abb565b60008183612b485760405162461bcd60e51b8152600401610a539190612df2565b5060006125518486613537565b600060208284031215612b66578081fd5b8135611ecd816135de565b600060208284031215612b82578081fd5b8151611ecd816135de565b60008060408385031215612b9f578081fd5b8235612baa816135de565b91506020830135612bba816135de565b809150509250929050565b600080600060608486031215612bd9578081fd5b8335612be4816135de565b92506020840135612bf4816135de565b929592945050506040919091013590565b60008060408385031215612c17578182fd5b8235612c22816135de565b91506020830135612bba816135f3565b600080600080600080600080610100898b031215612c4e578384fd5b8851612c59816135de565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612cad578182fd5b8235612cb8816135de565b946020939093013593505050565b600060208284031215612cd7578081fd5b8135611ecd816135f3565b600060208284031215612cf3578081fd5b8151611ecd816135f3565b600060208284031215612d0f578081fd5b5035919050565b600060208284031215612d27578081fd5b5051919050565b600080600060608486031215612d42578283fd5b8351925060208401519150604084015190509250925092565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b039290921682521515602082015260400190565b6001600160a01b03989098168852602088019690965260408701949094526060860192909252608085015260a084015260c083015260e08201526101000190565b901515815260200190565b6000602080835283518082850152825b81811015612e1e57858101830151858201604001528201612e02565b81811115612e2f5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601d908201527f4465762077616c6c657420686173206265656e2061737369676e656421000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601d908201527f73686f756c64206265203130304d203c3d2076616c7565203c3d203142000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601b908201527f414d4d207061697220686173206265656e2061737369676e6564210000000000604082015260600190565b602080825260169082015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b604082015260600190565b60208082526017908201527f76616c756520616c72656164792061737369676e656421000000000000000000604082015260600190565b6020808252601a908201527f756e6973776170207061697220686173206265656e2073657421000000000000604082015260600190565b60208082526018908201527f7573657220616c726561647920626c61636b6c69737465640000000000000000604082015260600190565b60208082526019908201527f66726f6d206f7220746f20697320626c61636b6c697374656400000000000000604082015260600190565b60208082526018908201527f7573657220616c72656164792077686974656c69737465640000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252601a908201527f416c726561647920686173206265656e2061737369676e656421000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601590820152741d5b99195c8818dbdbdb191bdddb881c195c9a5bd9605a1b604082015260600190565b6020808252601d908201527f547261636b657220616c726561647920686173206265656e2073657421000000604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526018908201527f56616c756520686173206265656e2061737369676e6564210000000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601e908201527f4a6f65547261646572207061697220697320697272656d6f7661626c65210000604082015260600190565b6020808252601a908201527f54726164696e6720697320616c726561647920656e61626c6564000000000000604082015260600190565b6020808252601590820152745365747320746865207a65726f206164647265737360581b604082015260600190565b602080825260159082015274616c726561647920686173206265656e207365742160581b604082015260600190565b6020808252601e908201527f547261636b6572206d757374206265206f776e656420627920746f6b656e0000604082015260600190565b60208082526019908201527f65786365656473204d41585f4255595f54585f414d4f554e5400000000000000604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156134d55784516001600160a01b0316835293830193918301916001016134b0565b50506001600160a01b03969096166060850152505050608001529392505050565b93845260208401929092526040830152606082015260800190565b60ff91909116815260200190565b60008219821115613532576135326135c8565b500190565b60008261355257634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615613571576135716135c8565b500290565b600082821015613588576135886135c8565b500390565b6002810460018216806135a157607f821691505b602082108114156135c257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610e7157600080fd5b8015158114610e7157600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f02aff9f376e2ca717cab5541b75b6a1fd28e3920b5e11e07e5206c0d3901ab464736f6c634300080000330000000000000000000000008fd6e93cee7c744e183cabf00b2401e26aaf5979

Deployed Bytecode

0x6080604052600436106103905760003560e01c80637f5b4763116101dc578063c705c56911610102578063e7841ec0116100a0578063f27fd2541161006f578063f27fd254146109a9578063f2fde38b146109c9578063fe575a87146109e9578063ffdc083314610a0957610397565b8063e7841ec01461093f578063e98030c714610954578063ec342ad014610974578063f0cb19ff1461098957610397565b8063d6dac595116100dc578063d6dac595146108d5578063d950fbe1146108f5578063dd62ed3e1461090a578063dd7f67401461092a57610397565b8063c705c56914610880578063c816e4b6146108a0578063cee8279d146108b557610397565b80639c1b8af51161017a578063a9059cbb11610149578063a9059cbb146107ec578063ad56c13c1461080c578063b62496f514610840578063c02466681461086057610397565b80639c1b8af514610782578063a26579ad14610797578063a457c2d7146107ac578063a8b9d240146107cc57610397565b80638da5cb5b116101b65780638da5cb5b1461072357806392ca1e8d1461073857806395d89b411461074d5780639a7a23d61461076257610397565b80637f5b4763146106c3578063871c128d146106e357806388bdd9be1461070357610397565b80633bf39de5116102c15780634e71d92d1161025f57806364b0f6531161022e57806364b0f6531461064e578063700bb1911461066357806370a08231146106835780637e0e155c146106a357610397565b80634e71d92d146105e45780634fbee193146105f95780634fdc5cb314610619578063537df3b61461062e57610397565b80634838d1651161029b5780634838d1651461058557806349bd5a5e146105a55780634ada218b146105ba5780634e6fd6c4146105cf57610397565b80633bf39de51461055057806342966c6814610565578063436a88c11461055057610397565b806323b872dd1161032e578063313ce56711610308578063313ce567146104d9578063342e5b03146104fb578063395093511461051b5780633ad10ef61461053b57610397565b806323b872dd1461048f5780632c1f5216146104af57806330bb4cff146104c457610397565b80630f15f4c01161036a5780630f15f4c0146104165780631694505e1461042b57806318160ddd1461044d5780631816467f1461046f57610397565b80630483f7a01461039c57806306fdde03146103be578063095ea7b3146103e957610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612c05565b610a1e565b005b3480156103ca57600080fd5b506103d3610ac3565b6040516103e09190612df2565b60405180910390f35b3480156103f557600080fd5b50610409610404366004612c9b565b610b55565b6040516103e09190612de7565b34801561042257600080fd5b506103bc610b73565b34801561043757600080fd5b50610440610bf6565b6040516103e09190612d5e565b34801561045957600080fd5b50610462610c05565b6040516103e0919061347d565b34801561047b57600080fd5b506103bc61048a366004612b55565b610c0b565b34801561049b57600080fd5b506104096104aa366004612bc5565b610cd6565b3480156104bb57600080fd5b50610440610d5d565b3480156104d057600080fd5b50610462610d6c565b3480156104e557600080fd5b506104ee610dee565b6040516103e09190613511565b34801561050757600080fd5b50610462610516366004612b55565b610df3565b34801561052757600080fd5b50610409610536366004612c9b565b610e05565b34801561054757600080fd5b50610440610e53565b34801561055c57600080fd5b50610462610e62565b34801561057157600080fd5b506103bc610580366004612cfe565b610e67565b34801561059157600080fd5b506103bc6105a0366004612b55565b610e74565b3480156105b157600080fd5b50610440610f06565b3480156105c657600080fd5b50610409610f15565b3480156105db57600080fd5b50610440610f25565b3480156105f057600080fd5b506103bc610f2b565b34801561060557600080fd5b50610409610614366004612b55565b610f8f565b34801561062557600080fd5b50610462610fad565b34801561063a57600080fd5b506103bc610649366004612b55565b610fc7565b34801561065a57600080fd5b50610462611055565b34801561066f57600080fd5b506103bc61067e366004612cfe565b61109a565b34801561068f57600080fd5b5061046261069e366004612b55565b61117b565b3480156106af57600080fd5b506104096106be366004612b55565b611196565b3480156106cf57600080fd5b506103bc6106de366004612b55565b6111ab565b3480156106ef57600080fd5b506103bc6106fe366004612cfe565b61122a565b34801561070f57600080fd5b506103bc61071e366004612b55565b6112b4565b34801561072f57600080fd5b5061044061160a565b34801561074457600080fd5b50610462611619565b34801561075957600080fd5b506103d3611624565b34801561076e57600080fd5b506103bc61077d366004612c05565b611633565b34801561078e57600080fd5b506104626116a4565b3480156107a357600080fd5b506104626116aa565b3480156107b857600080fd5b506104096107c7366004612c9b565b6116ef565b3480156107d857600080fd5b506104626107e7366004612b55565b611757565b3480156107f857600080fd5b50610409610807366004612c9b565b6117d8565b34801561081857600080fd5b5061082c610827366004612b55565b6117ec565b6040516103e0989796959493929190612da6565b34801561084c57600080fd5b5061040961085b366004612b55565b611899565b34801561086c57600080fd5b506103bc61087b366004612c05565b6118ae565b34801561088c57600080fd5b5061040961089b366004612b55565b611982565b3480156108ac57600080fd5b50610462611a03565b3480156108c157600080fd5b506104096108d0366004612b55565b611a09565b3480156108e157600080fd5b506103bc6108f0366004612cfe565b611aa3565b34801561090157600080fd5b50610462611b56565b34801561091657600080fd5b50610462610925366004612b8d565b611b5c565b34801561093657600080fd5b506103bc611b87565b34801561094b57600080fd5b50610462611c10565b34801561096057600080fd5b506103bc61096f366004612cfe565b611c55565b34801561098057600080fd5b50610462611cef565b34801561099557600080fd5b506103bc6109a4366004612cc6565b611cfb565b3480156109b557600080fd5b5061082c6109c4366004612cfe565b611d81565b3480156109d557600080fd5b506103bc6109e4366004612b55565b611dc2565b3480156109f557600080fd5b50610409610a04366004612b55565b611e79565b348015610a1557600080fd5b50610409611e8e565b610a26611ed4565b6005546001600160a01b03908116911614610a5c5760405162461bcd60e51b8152600401610a53906131a7565b60405180910390fd5b60095460405162241fbd60e51b81526001600160a01b0390911690630483f7a090610a8d9085908590600401612d8b565b600060405180830381600087803b158015610aa757600080fd5b505af1158015610abb573d6000803e3d6000fd5b505050505050565b606060038054610ad29061358d565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe9061358d565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b5050505050905090565b6000610b69610b62611ed4565b8484611ed8565b5060015b92915050565b610b7b611ed4565b6005546001600160a01b03908116911614610ba85760405162461bcd60e51b8152600401610a53906131a7565b600c54600160a81b900460ff1615610bd25760405162461bcd60e51b8152600401610a539061337a565b600c805460ff60a81b1916600160a81b179055610bf14261012c611e9e565b600655565b600a546001600160a01b031681565b60025490565b610c13611ed4565b6005546001600160a01b03908116911614610c405760405162461bcd60e51b8152600401610a53906131a7565b600c546001600160a01b0382811691161415610c6e5760405162461bcd60e51b8152600401610a5390612e45565b610c798160016118ae565b600c546040516001600160a01b03918216918316907f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87190600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610ce3848484611f8c565b610d5384610cef611ed4565b610d4e8560405180606001604052806028815260200161364a602891396001600160a01b038a16600090815260016020526040812090610d2d611ed4565b6001600160a01b031681526020810191909152604001600020549190612520565b611ed8565b5060019392505050565b6009546001600160a01b031681565b600954604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610db157600080fd5b505afa158015610dc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de99190612d16565b905090565b601290565b60116020526000908152604090205481565b6000610b69610e12611ed4565b84610d4e8560016000610e23611ed4565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611e9e565b600c546001600160a01b031681565b600681565b610e71338261255a565b50565b610e7c611ed4565b6005546001600160a01b03908116911614610ea95760405162461bcd60e51b8152600401610a53906131a7565b6001600160a01b03811660009081526010602052604090205460ff1615610ee25760405162461bcd60e51b8152600401610a539061308a565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b600b546001600160a01b031681565b600c54600160a81b900460ff1681565b61dead81565b60095460405163807ab4f760e01b81526001600160a01b039091169063807ab4f790610f5b903390600401612d5e565b600060405180830381600087803b158015610f7557600080fd5b505af1158015610f89573d6000803e3d6000fd5b50505050565b6001600160a01b03166000908152600d602052604090205460ff1690565b610fc4670de0b6b3a7640000640ba43b7400613557565b81565b610fcf611ed4565b6005546001600160a01b03908116911614610ffc5760405162461bcd60e51b8152600401610a53906131a7565b6001600160a01b03811660009081526010602052604090205460ff166110345760405162461bcd60e51b8152600401610a53906130f8565b6001600160a01b03166000908152601060205260409020805460ff19169055565b600954604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610db157600080fd5b6009546040516001624d3b8760e01b03198152600091829182916001600160a01b03169063ffb2c479906110d290879060040161347d565b606060405180830381600087803b1580156110ec57600080fd5b505af1158015611100573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111249190612d2e565b925092509250326001600160a01b0316600015157fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a988585858960405161116d94939291906134f6565b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b600e6020526000908152604090205460ff1681565b6111b3611ed4565b6005546001600160a01b039081169116146111e05760405162461bcd60e51b8152600401610a53906131a7565b6001600160a01b0381166112065760405162461bcd60e51b8152600401610a53906133b1565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b611232611ed4565b6005546001600160a01b0390811691161461125f5760405162461bcd60e51b8152600401610a53906131a7565b6007548114156112815760405162461bcd60e51b8152600401610a53906132c8565b60075460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600755565b6112bc611ed4565b6005546001600160a01b039081169116146112e95760405162461bcd60e51b8152600401610a53906131a7565b6009546001600160a01b03828116911614156113175760405162461bcd60e51b8152600401610a539061320b565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561135f57600080fd5b505afa158015611373573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113979190612b71565b6001600160a01b0316146113bd5760405162461bcd60e51b8152600401610a539061340f565b60405162241fbd60e51b81526001600160a01b03821690630483f7a0906113eb908490600190600401612d8b565b600060405180830381600087803b15801561140557600080fd5b505af1158015611419573d6000803e3d6000fd5b505060405162241fbd60e51b81526001600160a01b0384169250630483f7a0915061144b903090600190600401612d8b565b600060405180830381600087803b15801561146557600080fd5b505af1158015611479573d6000803e3d6000fd5b50505050806001600160a01b0316630483f7a061149461160a565b60016040518363ffffffff1660e01b81526004016114b3929190612d8b565b600060405180830381600087803b1580156114cd57600080fd5b505af11580156114e1573d6000803e3d6000fd5b505060405162241fbd60e51b81526001600160a01b0384169250630483f7a091506115159061dead90600190600401612d8b565b600060405180830381600087803b15801561152f57600080fd5b505af1158015611543573d6000803e3d6000fd5b5050600c5460405162241fbd60e51b81526001600160a01b038086169450630483f7a09350611579921690600190600401612d8b565b600060405180830381600087803b15801561159357600080fd5b505af11580156115a7573d6000803e3d6000fd5b50506009546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600980546001600160a01b0319166001600160a01b039290921691909117905550565b6005546001600160a01b031690565b610fc460068061351f565b606060048054610ad29061358d565b61163b611ed4565b6005546001600160a01b039081169116146116685760405162461bcd60e51b8152600401610a53906131a7565b600b546001600160a01b03838116911614156116965760405162461bcd60e51b8152600401610a5390613343565b6116a0828261263c565b5050565b60075481565b60095460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610db157600080fd5b6000610b696116fc611ed4565b84610d4e856040518060600160405280602581526020016136726025913960016000611726611ed4565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612520565b6009546040516302a2e74960e61b81526000916001600160a01b03169063a8b9d24090611788908590600401612d5e565b60206040518083038186803b1580156117a057600080fd5b505afa1580156117b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6d9190612d16565b6000610b696117e5611ed4565b8484611f8c565b60095460405163fbcbc0f160e01b815260009182918291829182918291829182916001600160a01b039091169063fbcbc0f19061182d908c90600401612d5e565b6101006040518083038186803b15801561184657600080fd5b505afa15801561185a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061187e9190612c32565b97509750975097509750975097509750919395975091939597565b600f6020526000908152604090205460ff1681565b6118b6611ed4565b6005546001600160a01b039081169116146118e35760405162461bcd60e51b8152600401610a53906131a7565b6001600160a01b0382166000908152600d602052604090205460ff16151581151514156119225760405162461bcd60e51b8152600401610a5390613170565b6001600160a01b0382166000818152600d602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df790611976908490612de7565b60405180910390a25050565b60095460405163c705c56960e01b81526000916001600160a01b03169063c705c569906119b3908590600401612d5e565b60206040518083038186803b1580156119cb57600080fd5b505afa1580156119df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6d9190612ce2565b60085481565b60095460405163fbcbc0f160e01b815260009182916001600160a01b039091169063fbcbc0f190611a3e908690600401612d5e565b6101006040518083038186803b158015611a5757600080fd5b505afa158015611a6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a8f9190612c32565b505060001990941398975050505050505050565b611aab611ed4565b6005546001600160a01b03908116911614611ad85760405162461bcd60e51b8152600401610a53906131a7565b611aee670de0b6b3a7640000633b9aca00613557565b8110158015611b13575080611b10670de0b6b3a76400006402540be400613557565b10155b611b2f5760405162461bcd60e51b8152600401610a5390612ebf565b600854811415611b515760405162461bcd60e51b8152600401610a539061301c565b600855565b60065481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611b8f611ed4565b6005546001600160a01b03908116911614611bbc5760405162461bcd60e51b8152600401610a53906131a7565b600b546001600160a01b03166000908152600f602052604090205460ff1615611bf75760405162461bcd60e51b8152600401610a5390613053565b600b54611c0e906001600160a01b0316600161263c565b565b6009546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610db157600080fd5b611c5d611ed4565b6005546001600160a01b03908116911614611c8a5760405162461bcd60e51b8152600401610a53906131a7565b60095460405163e98030c760e01b81526001600160a01b039091169063e98030c790611cba90849060040161347d565b600060405180830381600087803b158015611cd457600080fd5b505af1158015611ce8573d6000803e3d6000fd5b5050505050565b670de0b6b3a764000081565b611d03611ed4565b6005546001600160a01b03908116911614611d305760405162461bcd60e51b8152600401610a53906131a7565b600c60169054906101000a900460ff1615158115151415611d635760405162461bcd60e51b8152600401610a53906133e0565b600c8054911515600160b01b0260ff60b01b19909216919091179055565b600954604051635183d6fd60e01b815260009182918291829182918291829182916001600160a01b0390911690635183d6fd9061182d908c9060040161347d565b611dca611ed4565b6005546001600160a01b03908116911614611df75760405162461bcd60e51b8152600401610a53906131a7565b6001600160a01b038116611e1d5760405162461bcd60e51b8152600401610a5390612ef6565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60106020526000908152604090205460ff1681565b600c54600160b01b900460ff1681565b600080611eab838561351f565b905083811015611ecd5760405162461bcd60e51b8152600401610a5390612f7e565b9392505050565b3390565b6001600160a01b038316611efe5760405162461bcd60e51b8152600401610a53906132ff565b6001600160a01b038216611f245760405162461bcd60e51b8152600401610a5390612f3c565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611f7f90859061347d565b60405180910390a3505050565b6001600160a01b038316611fb25760405162461bcd60e51b8152600401610a5390613283565b6001600160a01b038216611fd85760405162461bcd60e51b8152600401610a5390612e7c565b6001600160a01b03831660009081526010602052604090205460ff1615801561201a57506001600160a01b03821660009081526010602052604090205460ff16155b6120365760405162461bcd60e51b8152600401610a53906130c1565b8061204c5761204783836000612748565b61251b565b600c5460ff600160a81b8204811691600091600160a01b909104161580156120715750815b9050600061207e8661285d565b8061208d575061208d8561285d565b9050826120cc576001600160a01b0386166000908152600e602052604090205460ff166120cc5760405162461bcd60e51b8152600401610a5390612fec565b8015612325578115612241576001600160a01b0386166000908152600f602052604090205460ff16801561210e5750600a546001600160a01b03868116911614155b801561213357506001600160a01b0385166000908152600d602052604090205460ff16155b156121d457426006541061217757612158670de0b6b3a7640000640ba43b7400613557565b8411156121775760405162461bcd60e51b8152600401610a5390613446565b6001600160a01b0385166000908152601160205260409020544210156121af5760405162461bcd60e51b8152600401610a53906131dc565b6121ba42601e611e9e565b6001600160a01b0386166000908152601160205260409020555b60006121df3061117b565b6008549091508110801590819061220f57506001600160a01b0388166000908152600f602052604090205460ff16155b1561223e57600c805460ff60a01b1916600160a01b17905561223082612863565b600c805460ff60a01b191690555b50505b600083801561225a5750600c54600160a01b900460ff16155b6001600160a01b0388166000908152600d602052604090205490915060ff168061229c57506001600160a01b0386166000908152600d602052604090205460ff165b806122d757506001600160a01b0387166000908152600f602052604090205460ff1680156122d75750600a546001600160a01b038781169116145b156122e0575060005b801561232357600061230860646123026122fb60068061351f565b89906128b9565b906128fe565b90506123148682612940565b9550612321883083612748565b505b505b612330868686612748565b600061233b8761117b565b905060006123488761117b565b6009546040516338c110ef60e21b81529192506001600160a01b03169063e30443bc9061237b908b908690600401612d72565b600060405180830381600087803b15801561239557600080fd5b505af11580156123a9573d6000803e3d6000fd5b50506009546040516338c110ef60e21b81526001600160a01b03909116925063e30443bc91506123df908a908590600401612d72565b600060405180830381600087803b1580156123f957600080fd5b505af115801561240d573d6000803e3d6000fd5b5050600c54600160a01b900460ff161591505080156124355750600c54600160b01b900460ff165b801561243e5750825b15612515576007546009546040516001624d3b8760e01b031981526001600160a01b039091169063ffb2c4799061247990849060040161347d565b606060405180830381600087803b15801561249357600080fd5b505af19250505080156124c3575060408051601f3d908101601f191682019092526124c091810190612d2e565b60015b6124cc57612513565b60405132906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a9890612507908790879087908b906134f6565b60405180910390a35050505b505b50505050505b505050565b600081848411156125445760405162461bcd60e51b8152600401610a539190612df2565b5060006125518486613576565b95945050505050565b6001600160a01b0382166125805760405162461bcd60e51b8152600401610a5390613242565b61258c8260008361251b565b6125c981604051806060016040528060228152602001613602602291396001600160a01b0385166000908152602081905260409020549190612520565b6001600160a01b0383166000908152602081905260409020556002546125ef9082612940565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061263090859061347d565b60405180910390a35050565b6001600160a01b0382166000908152600f602052604090205460ff161515811515141561267b5760405162461bcd60e51b8152600401610a5390612fb5565b6001600160a01b0382166000908152600f60205260409020805460ff1916821580159190911790915561270c5760095460405162241fbd60e51b81526001600160a01b0390911690630483f7a0906126d99085908590600401612d8b565b600060405180830381600087803b1580156126f357600080fd5b505af1158015612707573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661276e5760405162461bcd60e51b8152600401610a5390613283565b6001600160a01b0382166127945760405162461bcd60e51b8152600401610a5390612e7c565b61279f83838361251b565b6127dc81604051806060016040528060268152602001613624602691396001600160a01b0386166000908152602081905260409020549190612520565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461280b9082611e9e565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611f7f90859061347d565b3b151590565b61286c81612982565b47600061288861287d60068061351f565b6123028460066128b9565b600c549091506128a1906001600160a01b031682612ad1565b6009544790610f89906001600160a01b031682612ad1565b6000826128c857506000610b6d565b60006128d48385613557565b9050826128e18583613537565b14611ecd5760405162461bcd60e51b8152600401610a539061312f565b6000611ecd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b27565b6000611ecd83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612520565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106129c557634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612a1957600080fd5b505afa158015612a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a519190612b71565b81600181518110612a7257634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600a54612a989130911684611ed8565b600a5460405163791ac94760e01b81526001600160a01b039091169063791ac94790610a8d908590600090869030904290600401613486565b6000826001600160a01b031682604051612aea90612d5b565b60006040518083038185875af1925050503d8060008114610abb576040519150601f19603f3d011682016040523d82523d6000602084013e610abb565b60008183612b485760405162461bcd60e51b8152600401610a539190612df2565b5060006125518486613537565b600060208284031215612b66578081fd5b8135611ecd816135de565b600060208284031215612b82578081fd5b8151611ecd816135de565b60008060408385031215612b9f578081fd5b8235612baa816135de565b91506020830135612bba816135de565b809150509250929050565b600080600060608486031215612bd9578081fd5b8335612be4816135de565b92506020840135612bf4816135de565b929592945050506040919091013590565b60008060408385031215612c17578182fd5b8235612c22816135de565b91506020830135612bba816135f3565b600080600080600080600080610100898b031215612c4e578384fd5b8851612c59816135de565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612cad578182fd5b8235612cb8816135de565b946020939093013593505050565b600060208284031215612cd7578081fd5b8135611ecd816135f3565b600060208284031215612cf3578081fd5b8151611ecd816135f3565b600060208284031215612d0f578081fd5b5035919050565b600060208284031215612d27578081fd5b5051919050565b600080600060608486031215612d42578283fd5b8351925060208401519150604084015190509250925092565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b039290921682521515602082015260400190565b6001600160a01b03989098168852602088019690965260408701949094526060860192909252608085015260a084015260c083015260e08201526101000190565b901515815260200190565b6000602080835283518082850152825b81811015612e1e57858101830151858201604001528201612e02565b81811115612e2f5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601d908201527f4465762077616c6c657420686173206265656e2061737369676e656421000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601d908201527f73686f756c64206265203130304d203c3d2076616c7565203c3d203142000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601b908201527f414d4d207061697220686173206265656e2061737369676e6564210000000000604082015260600190565b602080825260169082015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b604082015260600190565b60208082526017908201527f76616c756520616c72656164792061737369676e656421000000000000000000604082015260600190565b6020808252601a908201527f756e6973776170207061697220686173206265656e2073657421000000000000604082015260600190565b60208082526018908201527f7573657220616c726561647920626c61636b6c69737465640000000000000000604082015260600190565b60208082526019908201527f66726f6d206f7220746f20697320626c61636b6c697374656400000000000000604082015260600190565b60208082526018908201527f7573657220616c72656164792077686974656c69737465640000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252601a908201527f416c726561647920686173206265656e2061737369676e656421000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601590820152741d5b99195c8818dbdbdb191bdddb881c195c9a5bd9605a1b604082015260600190565b6020808252601d908201527f547261636b657220616c726561647920686173206265656e2073657421000000604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526018908201527f56616c756520686173206265656e2061737369676e6564210000000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601e908201527f4a6f65547261646572207061697220697320697272656d6f7661626c65210000604082015260600190565b6020808252601a908201527f54726164696e6720697320616c726561647920656e61626c6564000000000000604082015260600190565b6020808252601590820152745365747320746865207a65726f206164647265737360581b604082015260600190565b602080825260159082015274616c726561647920686173206265656e207365742160581b604082015260600190565b6020808252601e908201527f547261636b6572206d757374206265206f776e656420627920746f6b656e0000604082015260600190565b60208082526019908201527f65786365656473204d41585f4255595f54585f414d4f554e5400000000000000604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156134d55784516001600160a01b0316835293830193918301916001016134b0565b50506001600160a01b03969096166060850152505050608001529392505050565b93845260208401929092526040830152606082015260800190565b60ff91909116815260200190565b60008219821115613532576135326135c8565b500190565b60008261355257634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615613571576135716135c8565b500290565b600082821015613588576135886135c8565b500390565b6002810460018216806135a157607f821691505b602082108114156135c257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610e7157600080fd5b8015158114610e7157600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f02aff9f376e2ca717cab5541b75b6a1fd28e3920b5e11e07e5206c0d3901ab464736f6c63430008000033

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

0000000000000000000000008fd6e93cee7c744e183cabf00b2401e26aaf5979

-----Decoded View---------------
Arg [0] : _devAddress (address): 0x8fD6e93CeE7c744e183caBF00b2401e26aaf5979

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008fd6e93cee7c744e183cabf00b2401e26aaf5979


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.