ETH Price: $3,332.78 (+2.08%)
Gas: 6 Gwei

Token

Kitsune Inu (KITSU)
 

Overview

Max Total Supply

250,000,000,000 KITSU

Holders

269

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
cryptoflight.eth
Balance
0.60134318436010294 KITSU

Value
$0.00
0x1b82602271df9e355edc5d54476a18b3b1a544fb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
KitsuneInu

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.4;

////////////////////////////////
///////////// ERC //////////////
////////////////////////////////

/*
 * @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 GSN 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 payable) {
        return payable(msg.sender);
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

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

/**
 * @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 {
    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;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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:
     *
     * - `to` 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 `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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

////////////////////////////////
////////// Dividend ////////////
////////////////////////////////

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

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

/*
@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 {
  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;
  
  address public dividendToken = 0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6;

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

  uint256 public totalDividendsDistributed;
  uint256 public gasForTransfer;

  constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {
        gasForTransfer = 3000;
  }
  

  receive() external payable {
  }

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

    if (msg.value > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare.add(
        (msg.value).mul(magnitude) / totalSupply()
      );
      emit DividendsDistributed(msg.sender, msg.value);

      totalDividendsDistributed = totalDividendsDistributed.add(msg.value);
    }
  }
  

  function distributeDividends(uint256 amount) public {
    require(totalSupply() > 0);

    if (amount > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare.add(
        (amount).mul(magnitude) / totalSupply()
      );
      emit DividendsDistributed(msg.sender, amount);

      totalDividendsDistributed = totalDividendsDistributed.add(amount);
    }
  }

  /// @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));
  }
  
  function setDividendTokenAddress(address newToken) public {
      dividendToken = newToken;
  }

  /// @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) {
      withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
      emit DividendWithdrawn(user, _withdrawableDividend);
      bool success = IERC20(dividendToken).transfer(user, _withdrawableDividend);

      if(!success) {
        withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend);
        return 0;
      }

      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) {
    return withdrawableDividendOf(_owner);
  }

  /// @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) {
    return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
  }

  /// @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) {
    return withdrawnDividends[_owner];
  }


  /// @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) {
    return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe()
      .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
  }

  /// @dev Internal function that transfer tokens from one address to another.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param from The address to transfer from.
  /// @param to The address to transfer to.
  /// @param value The amount to be transferred.
  function _transfer(address from, address to, uint256 value) internal virtual override {
    require(false);

    int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe();
    magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection);
    magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection);
  }

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

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

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

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

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

////////////////////////////////
///////// Interfaces ///////////
////////////////////////////////

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

////////////////////////////////
////////// Libraries ///////////
////////////////////////////////

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

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

/**
 * @title SafeMathInt
 * @dev Math operations with safety checks that revert on error
 * @dev SafeMath adapted for int256
 * Based on code of  https://github.com/RequestNetwork/requestNetwork/blob/master/packages/requestNetworkSmartContracts/contracts/base/math/SafeMathInt.sol
 */
library SafeMathInt {
  function mul(int256 a, int256 b) internal pure returns (int256) {
    // Prevent overflow when multiplying INT256_MIN with -1
    // https://github.com/RequestNetwork/requestNetwork/issues/43
    require(!(a == - 2**255 && b == -1) && !(b == - 2**255 && a == -1));

    int256 c = a * b;
    require((b == 0) || (c / b == a));
    return c;
  }

  function div(int256 a, int256 b) internal pure returns (int256) {
    // Prevent overflow when dividing INT256_MIN by -1
    // https://github.com/RequestNetwork/requestNetwork/issues/43
    require(!(a == - 2**255 && b == -1) && (b > 0));

    return a / b;
  }

  function sub(int256 a, int256 b) internal pure returns (int256) {
    require((b >= 0 && a - b <= a) || (b < 0 && a - b > a));

    return a - b;
  }

  function add(int256 a, int256 b) internal pure returns (int256) {
    int256 c = a + b;
    require((b >= 0 && c >= a) || (b < 0 && c < a));
    return c;
  }

  function toUint256Safe(int256 a) internal pure returns (uint256) {
    require(a >= 0);
    return uint256(a);
  }
}

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

////////////////////////////////
/////////// Tokens /////////////
////////////////////////////////

contract KitsuneInu is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private liquidating;

    KitsuneInuDividendTracker public dividendTracker;

    address public liquidityWallet;

    uint256 public constant MAX_SELL_TRANSACTION_AMOUNT = 2500000000 * (10**18);

    uint256 public constant ETH_REWARDS_FEE = 11;
    uint256 public constant LIQUIDITY_FEE = 3;
    uint256 public constant TOTAL_FEES = ETH_REWARDS_FEE + LIQUIDITY_FEE;
    bool _swapEnabled = false;
    bool openForPresale = false;
    
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;
    
    address private _dividendToken = 0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6;
    address public marketingAddress = 0x61B3e99AfA0925EaF18bDeb8810b01b4ed1C895B;
    bool _maxBuyEnabled = true;

    // use by default 150,000 gas to process auto-claiming dividends
    uint256 public gasForProcessing = 150000;

    // liquidate tokens for ETH when the contract reaches 25000k tokens by default
    uint256 public liquidateTokensAtAmount = 25000000 * (10**18);

    // whether the token can already be traded
    bool public tradingEnabled;

    function activate() public onlyOwner {
        require(!tradingEnabled, "KitsuneInu: Trading is already enabled");
        _swapEnabled = true;
        tradingEnabled = true;
    }

    // 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. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

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

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

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

    event LiquidityWalletUpdated(address indexed newLiquidityWallet, address indexed oldLiquidityWallet);

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

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

    event Liquified(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    event SwapAndSendToDev(
        uint256 tokensSwapped,
        uint256 ethReceived
    );
    event SentDividends(
        uint256 tokensSwapped,
        uint256 amount
    );

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

    constructor() ERC20("Kitsune Inu", "KITSU") {
        dividendTracker = new KitsuneInuDividendTracker();
        liquidityWallet = owner();
        
        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;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        // exclude from receiving dividends
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(owner());
        dividendTracker.excludeFromDividends(address(_uniswapV2Router));
        dividendTracker.excludeFromDividends(address(0x000000000000000000000000000000000000dEaD));

        // exclude from paying fees or having max transaction amount
        excludeFromFees(liquidityWallet);
        excludeFromFees(address(this));

        // enable owner wallet to send tokens before presales are over.
        canTransferBeforeTradingIsEnabled[owner()] = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), 250000000000 * (10**18));
    }

    receive() external payable {

    }

    
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "KitsuneInu: The Uniswap pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "KitsuneInu: Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;

        if(value) {
            dividendTracker.excludeFromDividends(pair);
        }

        emit SetAutomatedMarketMakerPair(pair, value);
    }


    function excludeFromFees(address account) public onlyOwner {
        require(!_isExcludedFromFees[account], "KitsuneInu: Account is already excluded from fees");
        _isExcludedFromFees[account] = true;
    }

    function updateGasForTransfer(uint256 gasForTransfer) external onlyOwner {
        dividendTracker.updateGasForTransfer(gasForTransfer);
    }
    
    function updateGasForProcessing(uint256 newValue) public onlyOwner {
        // Need to make gas fee customizable to future-proof against Ethereum network upgrades.
        require(newValue != gasForProcessing, "KitsuneInu: Cannot update gasForProcessing to same value");
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }

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

    function getGasForTransfer() external view returns(uint256) {
        return dividendTracker.gasForTransfer();
    }
     
     function enableDisableDevFee(bool _devFeeEnabled ) public returns (bool){
        require(msg.sender == liquidityWallet, "Only Dev Address can disable dev fee");
        _swapEnabled = _devFeeEnabled;
        return(_swapEnabled);
    }
    
    function setOpenForPresale(bool open )external onlyOwner {
        openForPresale = open;
    }
    
    function setMaxBuyEnabled(bool enabled ) external onlyOwner {
        _maxBuyEnabled = enabled;
    }

    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 withdrawableDividendOf(address account) public view returns(uint256) {
        return dividendTracker.withdrawableDividendOf(account);
    }

    function dividendTokenBalanceOf(address account) public view returns (uint256) {
        return dividendTracker.balanceOf(account);
    }


    function addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }

    function removeBotFromBlackList(address account) external onlyOwner() {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }
    function 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);
    }

    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), false);
    }

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

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


    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");
        
         require(!_isBlackListedBot[to], "You have no power here!");
         require(!_isBlackListedBot[msg.sender], "You have no power here!");
         require(!_isBlackListedBot[from], "You have no power here!");
        
        //to prevent bots both buys and sells will have a max on launch after only sells will
        if(from != owner() && to != owner() && _maxBuyEnabled)
            require(amount <= MAX_SELL_TRANSACTION_AMOUNT, "Transfer amount exceeds the maxTxAmount.");

        bool tradingIsEnabled = tradingEnabled;

        // only whitelisted addresses can make transfers before the public presale is over.
        if (!tradingIsEnabled) {
            //turn transfer on to allow for whitelist form/mutlisend presale
            if(!openForPresale){
                require(canTransferBeforeTradingIsEnabled[from], "KitsuneInu: This account cannot send tokens until trading is enabled");
            }
        }

            if ((from == uniswapV2Pair || to == uniswapV2Pair) && tradingIsEnabled) {
                //require(!antiBot.scanAddress(from, uniswapV2Pair, tx.origin),  "Beep Beep Boop, You're a piece of poop");
               // require(!antiBot.scanAddress(to, uniswair, tx.origin), "Beep Beep Boop, You're a piece of poop");
            }
        

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (!liquidating &&
            tradingIsEnabled &&
            automatedMarketMakerPairs[to] && // sells only by detecting transfer to automated market maker pair
            from != address(uniswapV2Router) && //router -> pair is removing liquidity which shouldn't have max
            !_isExcludedFromFees[to] //no max for those excluded from fees
        ) {
            require(amount <= MAX_SELL_TRANSACTION_AMOUNT, "Sell transfer amount exceeds the MAX_SELL_TRANSACTION_AMOUNT.");
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= liquidateTokensAtAmount;

        if (tradingIsEnabled &&
            canSwap &&
            _swapEnabled &&
            !liquidating &&
            !automatedMarketMakerPairs[from] &&
            from != liquidityWallet &&
            to != liquidityWallet
        ) {
            liquidating = true;

            uint256 swapTokens = contractTokenBalance.mul(LIQUIDITY_FEE).div(TOTAL_FEES);
            swapAndSendToDev(swapTokens);

            uint256 sellTokens = balanceOf(address(this));
            swapAndSendDividends(sellTokens);

            liquidating = false;
        }

        bool takeFee = tradingIsEnabled && !liquidating;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            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);

        try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {}
        try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {
            
        }

        if (!liquidating) {
            uint256 gas = gasForProcessing;

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

            }
        }
    }

    function swapAndSendToDev(uint256 tokens) private {
        uint256 tokenBalance = tokens;

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(tokenBalance); // <-  breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);
        address payable _devAndMarketingAddress = payable(marketingAddress);
        _devAndMarketingAddress.transfer(newBalance);
        
        emit SwapAndSendToDev(tokens, newBalance);
    }

    function swapTokensForDividendToken(uint256 tokenAmount, address recipient) private {
        // generate the uniswap pair path of weth -> busd
        address[] memory path = new address[](3);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        path[2] = _dividendToken;

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of dividend token
            path,
            recipient,
            block.timestamp
        );
        
    }
    
     function swapAndSendDividends(uint256 tokens) private {
        swapTokensForDividendToken(tokens, address(this));
        uint256 dividends = IERC20(_dividendToken).balanceOf(address(this));
        bool success = IERC20(_dividendToken).transfer(address(dividendTracker), dividends);
        
        if (success) {
            dividendTracker.distributeDividends(dividends);
            emit SentDividends(tokens, dividends);
        }
    }

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

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

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

}

contract KitsuneInuDividendTracker is DividendPayingToken, Ownable {
    using SafeMath for uint256;
    using SafeMathInt for int256;
    using IterableMapping for IterableMapping.Map;

    IterableMapping.Map private tokenHoldersMap;
    uint256 public lastProcessedIndex;

    mapping (address => bool) public excludedFromDividends;

    mapping (address => uint256) public lastClaimTimes;

    uint256 public claimWait;
    uint256 public immutable minimumTokenBalanceForDividends;

    event ExcludeFromDividends(address indexed account);
    event GasForTransferUpdated(uint256 indexed newValue, uint256 indexed oldValue);
    event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event Claim(address indexed account, uint256 amount, bool indexed automatic);

    constructor() DividendPayingToken("KitsuneInu_Dividend_Tracker", "KitsuneInu_Dividend_Tracker") {
    	claimWait = 3600;
        minimumTokenBalanceForDividends = 2500000 * (10**18); //must hold 2500000+ tokens
    }

    function _transfer(address, address, uint256) pure internal override {
        require(false, "KitsuneInu_Dividend_Tracker: No transfers allowed");
    }

    function withdrawDividend() pure public override {
        require(false, "KitsuneInu_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main KitsuneInu contract.");
    }

    function excludeFromDividends(address account) external onlyOwner {
    	require(!excludedFromDividends[account]);
    	excludedFromDividends[account] = true;

    	_setBalance(account, 0);
    	tokenHoldersMap.remove(account);

    	emit ExcludeFromDividends(account);
    }
    
    
      function updateGasForTransfer(uint256 newGasForTransfer) external onlyOwner {
        require(newGasForTransfer != gasForTransfer, "KitsuneInu_Dividend_Tracker: Cannot update gasForTransfer to same value");
        emit GasForTransferUpdated(newGasForTransfer, gasForTransfer);
        gasForTransfer = newGasForTransfer;
    }

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(newClaimWait >= 1800 && newClaimWait <= 86400, "KitsuneInu_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours");
        require(newClaimWait != claimWait, "KitsuneInu_Dividend_Tracker: Cannot update claimWait to same value");
        emit ClaimWaitUpdated(newClaimWait, claimWait);
        claimWait = newClaimWait;
    }

    function getLastProcessedIndex() external view returns(uint256) {
    	return lastProcessedIndex;
    }

    function getNumberOfTokenHolders() external view returns(uint256) {
        return tokenHoldersMap.keys.length;
    }


    function getAccount(address _account)
        public view returns (
            address account,
            int256 index,
            int256 iterationsUntilProcessed,
            uint256 withdrawableDividends,
            uint256 totalDividends,
            uint256 lastClaimTime,
            uint256 nextClaimTime,
            uint256 secondsUntilAutoClaimAvailable) {
        account = _account;

        index = tokenHoldersMap.getIndexOfKey(account);

        iterationsUntilProcessed = -1;

        if(index >= 0) {
            if(uint256(index) > lastProcessedIndex) {
                iterationsUntilProcessed = index.sub(int256(lastProcessedIndex));
            }
            else {
                uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ?
                                                        tokenHoldersMap.keys.length.sub(lastProcessedIndex) :
                                                        0;


                iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray));
            }
        }


        withdrawableDividends = withdrawableDividendOf(account);
        totalDividends = accumulativeDividendOf(account);

        lastClaimTime = lastClaimTimes[account];

        nextClaimTime = lastClaimTime > 0 ?
                                    lastClaimTime.add(claimWait) :
                                    0;

        secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ?
                                                    nextClaimTime.sub(block.timestamp) :
                                                    0;
    }

    function getAccountAtIndex(uint256 index)
        public view returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256) {
    	if(index >= tokenHoldersMap.size()) {
            return (0x0000000000000000000000000000000000000000, -1, -1, 0, 0, 0, 0, 0);
        }

        address account = tokenHoldersMap.getKeyAtIndex(index);

        return getAccount(account);
    }

    function canAutoClaim(uint256 lastClaimTime) private view returns (bool) {
    	if(lastClaimTime > block.timestamp)  {
    		return false;
    	}

    	return block.timestamp.sub(lastClaimTime) >= claimWait;
    }

    function setBalance(address payable account, uint256 newBalance) external onlyOwner {
    	if(excludedFromDividends[account]) {
    		return;
    	}

    	if(newBalance >= minimumTokenBalanceForDividends) {
            _setBalance(account, newBalance);
    		tokenHoldersMap.set(account, newBalance);
    	}
    	else {
            _setBalance(account, 0);
    		tokenHoldersMap.remove(account);
    	}

    	processAccount(account, true);
    }

    function process(uint256 gas) public returns (uint256, uint256, uint256) {
    	uint256 numberOfTokenHolders = tokenHoldersMap.keys.length;

    	if(numberOfTokenHolders == 0) {
    		return (0, 0, lastProcessedIndex);
    	}

    	uint256 _lastProcessedIndex = lastProcessedIndex;

    	uint256 gasUsed = 0;

    	uint256 gasLeft = gasleft();

    	uint256 iterations = 0;
    	uint256 claims = 0;

    	while(gasUsed < gas && iterations < numberOfTokenHolders) {
    		_lastProcessedIndex++;

    		if(_lastProcessedIndex >= tokenHoldersMap.keys.length) {
    			_lastProcessedIndex = 0;
    		}

    		address account = tokenHoldersMap.keys[_lastProcessedIndex];

    		if(canAutoClaim(lastClaimTimes[account])) {
    			if(processAccount(payable(account), true)) {
    				claims++;
    			}
    		}

    		iterations++;

    		uint256 newGasLeft = gasleft();

    		if(gasLeft > newGasLeft) {
    			gasUsed = gasUsed.add(gasLeft.sub(newGasLeft));
    		}

    		gasLeft = newGasLeft;
    	}

    	lastProcessedIndex = _lastProcessedIndex;

    	return (iterations, claims, lastProcessedIndex);
    }

    function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) {
        uint256 amount = _withdrawDividendOfUser(account);

    	if(amount > 0) {
    		lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount, automatic);
    		return true;
    	}

    	return false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"LiquidationThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"Liquified","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SentDividends","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndSendToDev","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":"UpdatedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdatedUniswapV2Router","type":"event"},{"inputs":[],"name":"ETH_REWARDS_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SELL_TRANSACTION_AMOUNT","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":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"","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":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract KitsuneInuDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_devFeeEnabled","type":"bool"}],"name":"enableDisableDevFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"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":"getGasForTransfer","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"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":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setMaxBuyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"open","type":"bool"}],"name":"setOpenForPresale","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":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"gasForTransfer","type":"uint256"}],"name":"updateGasForTransfer","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"}]

60a06040526008805461ffff60a01b19169055600b80546001600160a01b031916733301ee63fb29f863f2333bd4466acb46cd8323e6179055600c8054740161b3e99afa0925eaf18bdeb8810b01b4ed1c895b6001600160a81b0319909116179055620249f0600d556a14adf4b7320334b9000000600e553480156200008457600080fd5b50604080518082018252600b81526a4b697473756e6520496e7560a81b6020808301918252835180850190945260058452644b4954535560d81b908401528151919291620000d59160039162000a34565b508051620000eb90600490602084019062000a34565b50506005805460ff19166012179055506000620001053390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604051620001699062000ac3565b604051809103906000f08015801562000186573d6000803e3d6000fd5b50600780546001600160a01b0319166001600160a01b03928316179055600554610100900416600860006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022757600080fd5b505afa1580156200023c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000262919062000ae8565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002ab57600080fd5b505afa158015620002c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e6919062000ae8565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200032f57600080fd5b505af115801562000344573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036a919062000ae8565b600680546001600160a01b0319166001600160a01b038516179055606081901b6001600160601b0319166080529050620003a68160016200064e565b60075460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b158015620003ed57600080fd5b505af115801562000402573d6000803e3d6000fd5b505060075460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200044c57600080fd5b505af115801562000461573d6000803e3d6000fd5b50506007546001600160a01b031691506331e79db090506200049060055461010090046001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015620004d257600080fd5b505af1158015620004e7573d6000803e3d6000fd5b505060075460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200053357600080fd5b505af115801562000548573d6000803e3d6000fd5b505060075460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200059457600080fd5b505af1158015620005a9573d6000803e3d6000fd5b5050600854620005c592506001600160a01b03169050620007c3565b620005d030620007c3565b600160116000620005ee60055461010090046001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620006466200063260055461010090046001600160a01b031690565b6c0327cb2734119d3b7a90000000620008ce565b505062000b73565b6001600160a01b03821660009081526012602052604090205460ff1615158115151415620006f75760405162461bcd60e51b8152602060048201526044602482018190527f4b697473756e65496e753a204175746f6d61746564206d61726b6574206d616b908201527f6572207061697220697320616c72656164792073657420746f20746861742076606482015263616c756560e01b608482015260a4015b60405180910390fd5b6001600160a01b0382166000908152601260205260409020805460ff19168215801591909117909155620007875760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156200076d57600080fd5b505af115801562000782573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03610100909104163314620008255760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620006ee565b6001600160a01b03811660009081526010602052604090205460ff1615620008aa5760405162461bcd60e51b815260206004820152603160248201527f4b697473756e65496e753a204163636f756e7420697320616c7265616479206560448201527078636c756465642066726f6d206665657360781b6064820152608401620006ee565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b6001600160a01b038216620009265760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620006ee565b6200094281600254620009ca60201b62001a7e1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200097591839062001a7e620009ca821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080620009d9838562000b11565b90508381101562000a2d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620006ee565b9392505050565b82805462000a429062000b36565b90600052602060002090601f01602090048101928262000a66576000855562000ab1565b82601f1062000a8157805160ff191683800117855562000ab1565b8280016001018555821562000ab1579182015b8281111562000ab157825182559160200191906001019062000a94565b5062000abf92915062000ad1565b5090565b6125ba8062003e4083390190565b5b8082111562000abf576000815560010162000ad2565b60006020828403121562000afa578081fd5b81516001600160a01b038116811462000a2d578182fd5b6000821982111562000b3157634e487b7160e01b81526011600452602481fd5b500190565b600181811c9082168062000b4b57607f821691505b6020821081141562000b6d57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c61329962000ba7600039600081816104b0015281816113c401528181611e6e0152611ea901526132996000f3fe6080604052600436106102e85760003560e01c8063871c128d11610190578063b62496f5116100dc578063e7841ec011610095578063f2fde38b1161006f578063f2fde38b1461093d578063fd5af42f1461095d578063fd5db2af1461097d578063ff0fd4c01461099d57600080fd5b8063e7841ec0146108e8578063e98030c7146108fd578063f27fd2541461091d57600080fd5b8063b62496f5146107fc578063bab3185f1461082c578063c816e4b61461084c578063d469801614610862578063dd62ed3e14610882578063e57f14e1146108c857600080fd5b80639d55d16f11610149578063a5ece94111610123578063a5ece94114610737578063a8b9d24014610757578063a9059cbb14610777578063ad56c13c1461079757600080fd5b80639d55d16f146106e2578063a26579ad14610702578063a457c2d71461071757600080fd5b8063871c128d1461063f5780638da5cb5b1461065f57806392ca1e8d1461068257806395d89b41146106975780639a7a23d6146106ac5780639c1b8af5146106cc57600080fd5b80634303443d1161024f57806364b0f6531161020857806370a08231116101e257806370a08231146105a4578063715018a6146105da5780637ded4d6a146105ef5780637e0e155c1461060f57600080fd5b806364b0f6531461054f5780636843cd8414610564578063700bb1911461058457600080fd5b80634303443d1461047e57806349bd5a5e1461049e5780634ada218b146104d25780634e71d92d146104ec5780634fbee1931461050157806353ab431b1461053a57600080fd5b80632a8407b4116102a15780632a8407b4146103dd5780632c1f5216146103f25780632d17f2691461041257806330bb4cff14610427578063313ce5671461043c578063395093511461045e57600080fd5b806306fdde03146102f4578063095ea7b31461031f5780630f15f4c01461034f5780631694505e1461036657806318160ddd1461039e57806323b872dd146103bd57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b506103096109bd565b6040516103169190612f3c565b60405180910390f35b34801561032b57600080fd5b5061033f61033a366004612e7c565b610a4f565b6040519015158152602001610316565b34801561035b57600080fd5b50610364610a66565b005b34801561037257600080fd5b50600654610386906001600160a01b031681565b6040516001600160a01b039091168152602001610316565b3480156103aa57600080fd5b506002545b604051908152602001610316565b3480156103c957600080fd5b5061033f6103d8366004612da6565b610b23565b3480156103e957600080fd5b506103af610b8c565b3480156103fe57600080fd5b50600754610386906001600160a01b031681565b34801561041e57600080fd5b506103af600b81565b34801561043357600080fd5b506103af610c0e565b34801561044857600080fd5b5060055460405160ff9091168152602001610316565b34801561046a57600080fd5b5061033f610479366004612e7c565b610c53565b34801561048a57600080fd5b50610364610499366004612d36565b610c89565b3480156104aa57600080fd5b506103867f000000000000000000000000000000000000000000000000000000000000000081565b3480156104de57600080fd5b50600f5461033f9060ff1681565b3480156104f857600080fd5b50610364610e01565b34801561050d57600080fd5b5061033f61051c366004612d36565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561054657600080fd5b506103af600381565b34801561055b57600080fd5b506103af610e88565b34801561057057600080fd5b506103af61057f366004612d36565b610ecd565b34801561059057600080fd5b5061036461059f366004612edf565b610f4c565b3480156105b057600080fd5b506103af6105bf366004612d36565b6001600160a01b031660009081526020819052604090205490565b3480156105e657600080fd5b5061036461102d565b3480156105fb57600080fd5b5061036461060a366004612d36565b6110ad565b34801561061b57600080fd5b5061033f61062a366004612d36565b60116020526000908152604090205460ff1681565b34801561064b57600080fd5b5061036461065a366004612edf565b611299565b34801561066b57600080fd5b5060055461010090046001600160a01b0316610386565b34801561068e57600080fd5b506103af611374565b3480156106a357600080fd5b50610309611383565b3480156106b857600080fd5b506103646106c7366004612de6565b611392565b3480156106d857600080fd5b506103af600d5481565b3480156106ee57600080fd5b506103646106fd366004612edf565b61148a565b34801561070e57600080fd5b506103af61151c565b34801561072357600080fd5b5061033f610732366004612e7c565b611561565b34801561074357600080fd5b50600c54610386906001600160a01b031681565b34801561076357600080fd5b506103af610772366004612d36565b6115b0565b34801561078357600080fd5b5061033f610792366004612e7c565b6115e3565b3480156107a357600080fd5b506107b76107b2366004612d36565b6115f0565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610316565b34801561080857600080fd5b5061033f610817366004612d36565b60126020526000908152604090205460ff1681565b34801561083857600080fd5b5061033f610847366004612ea7565b61169a565b34801561085857600080fd5b506103af600e5481565b34801561086e57600080fd5b50600854610386906001600160a01b031681565b34801561088e57600080fd5b506103af61089d366004612d6e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108d457600080fd5b506103646108e3366004612d36565b611727565b3480156108f457600080fd5b506103af6117fe565b34801561090957600080fd5b50610364610918366004612edf565b611843565b34801561092957600080fd5b506107b7610938366004612edf565b6118a4565b34801561094957600080fd5b50610364610958366004612d36565b6118e6565b34801561096957600080fd5b50610364610978366004612ea7565b6119e2565b34801561098957600080fd5b506103af6b0813f3978f8940984400000081565b3480156109a957600080fd5b506103646109b8366004612ea7565b611a30565b6060600380546109cc90613161565b80601f01602080910402602001604051908101604052809291908181526020018280546109f890613161565b8015610a455780601f10610a1a57610100808354040283529160200191610a45565b820191906000526020600020905b815481529060010190602001808311610a2857829003601f168201915b5050505050905090565b6000610a5c338484611ae4565b5060015b92915050565b6005546001600160a01b03610100909104163314610a9f5760405162461bcd60e51b8152600401610a9690612fd2565b60405180910390fd5b600f5460ff1615610b015760405162461bcd60e51b815260206004820152602660248201527f4b697473756e65496e753a2054726164696e6720697320616c726561647920656044820152651b98589b195960d21b6064820152608401610a96565b6008805460ff60a01b1916600160a01b179055600f805460ff19166001179055565b6000610b30848484611c09565b610b828433610b7d85604051806060016040528060288152602001613217602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906123c2565b611ae4565b5060019392505050565b6007546040805163079cda8160e51b815290516000926001600160a01b03169163f39b5020916004808301926020929190829003018186803b158015610bd157600080fd5b505afa158015610be5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c099190612ef7565b905090565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610bd157600080fd5b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a5c918590610b7d9086611a7e565b6005546001600160a01b03610100909104163314610cb95760405162461bcd60e51b8152600401610a9690612fd2565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d325760405162461bcd60e51b8152602060048201526024808201527f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f756044820152633a32b91760e11b6064820152608401610a96565b6001600160a01b03811660009081526009602052604090205460ff1615610d9b5760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610a96565b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60075460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610e4d57600080fd5b505af1158015610e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e859190612ec3565b50565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610bd157600080fd5b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b158015610f1457600080fd5b505afa158015610f28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a609190612ef7565b6007546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b158015610f9a57600080fd5b505af1158015610fae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd29190612f0f565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6005546001600160a01b0361010090910416331461105d5760405162461bcd60e51b8152600401610a9690612fd2565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146110dd5760405162461bcd60e51b8152600401610a9690612fd2565b6001600160a01b03811660009081526009602052604090205460ff166111455760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610a96565b60005b600a5481101561129557816001600160a01b0316600a828154811061117d57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141561128357600a80546111a89060019061314a565b815481106111c657634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a80546001600160a01b03909216918390811061120057634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a80548061125d57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061128d8161319c565b915050611148565b5050565b6005546001600160a01b036101009091041633146112c95760405162461bcd60e51b8152600401610a9690612fd2565b600d548114156113415760405162461bcd60e51b815260206004820152603860248201527f4b697473756e65496e753a2043616e6e6f742075706461746520676173466f7260448201527f50726f63657373696e6720746f2073616d652076616c756500000000000000006064820152608401610a96565b600d5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600d55565b6113806003600b6130f3565b81565b6060600480546109cc90613161565b6005546001600160a01b036101009091041633146113c25760405162461bcd60e51b8152600401610a9690612fd2565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156114805760405162461bcd60e51b815260206004820152604d60248201527f4b697473756e65496e753a2054686520556e697377617020706169722063616e60448201527f6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d617260648201526c6b65744d616b6572506169727360981b608482015260a401610a96565b61129582826123f9565b6005546001600160a01b036101009091041633146114ba5760405162461bcd60e51b8152600401610a9690612fd2565b600754604051639d55d16f60e01b8152600481018390526001600160a01b0390911690639d55d16f906024015b600060405180830381600087803b15801561150157600080fd5b505af1158015611515573d6000803e3d6000fd5b5050505050565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610bd157600080fd5b6000610a5c3384610b7d8560405180606001604052806025815260200161323f602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906123c2565b6007546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401610efc565b6000610a5c338484611c09565b60075460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b15801561164757600080fd5b505afa15801561165b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167f9190612e13565b97509750975097509750975097509750919395975091939597565b6008546000906001600160a01b031633146117035760405162461bcd60e51b8152602060048201526024808201527f4f6e6c792044657620416464726573732063616e2064697361626c65206465766044820152632066656560e01b6064820152608401610a96565b506008805460ff60a01b1916600160a01b9215158302179081905560ff9190041690565b6005546001600160a01b036101009091041633146117575760405162461bcd60e51b8152600401610a9690612fd2565b6001600160a01b03811660009081526010602052604090205460ff16156117da5760405162461bcd60e51b815260206004820152603160248201527f4b697473756e65496e753a204163636f756e7420697320616c7265616479206560448201527078636c756465642066726f6d206665657360781b6064820152608401610a96565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610bd157600080fd5b6005546001600160a01b036101009091041633146118735760405162461bcd60e51b8152600401610a9690612fd2565b60075460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c7906024016114e7565b600754604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd9060240161162e565b6005546001600160a01b036101009091041633146119165760405162461bcd60e51b8152600401610a9690612fd2565b6001600160a01b03811661197b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a96565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03610100909104163314611a125760405162461bcd60e51b8152600401610a9690612fd2565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b6005546001600160a01b03610100909104163314611a605760405162461bcd60e51b8152600401610a9690612fd2565b60088054911515600160a81b0260ff60a81b19909216919091179055565b600080611a8b83856130f3565b905083811015611add5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a96565b9392505050565b6001600160a01b038316611b465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a96565b6001600160a01b038216611ba75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a96565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611c2f5760405162461bcd60e51b8152600401610a9690613007565b6001600160a01b038216611c555760405162461bcd60e51b8152600401610a9690612f8f565b6001600160a01b03821660009081526009602052604090205460ff1615611c8e5760405162461bcd60e51b8152600401610a969061304c565b3360009081526009602052604090205460ff1615611cbe5760405162461bcd60e51b8152600401610a969061304c565b6001600160a01b03831660009081526009602052604090205460ff1615611cf75760405162461bcd60e51b8152600401610a969061304c565b6005546001600160a01b038481166101009092041614801590611d2d57506005546001600160a01b038381166101009092041614155b8015611d425750600c54600160a01b900460ff165b15611db4576b0813f3978f89409844000000811115611db45760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a96565b600f5460ff1680611e6c57600854600160a81b900460ff16611e6c576001600160a01b03841660009081526011602052604090205460ff16611e6c5760405162461bcd60e51b8152602060048201526044602482018190527f4b697473756e65496e753a2054686973206163636f756e742063616e6e6f7420908201527f73656e6420746f6b656e7320756e74696c2074726164696e6720697320656e61606482015263189b195960e21b608482015260a401610a96565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161480611edd57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316145b8015611ee65750805b5081611efe57611ef884846000612565565b50505050565b600654600160a01b900460ff16158015611f155750805b8015611f3957506001600160a01b03831660009081526012602052604090205460ff165b8015611f5357506006546001600160a01b03858116911614155b8015611f7857506001600160a01b03831660009081526010602052604090205460ff16155b15611fff576b0813f3978f89409844000000821115611fff5760405162461bcd60e51b815260206004820152603d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f204d41585f53454c4c5f5452414e53414354494f4e5f414d4f554e542e0000006064820152608401610a96565b30600090815260208190526040902054600e5481101582801561201f5750805b80156120345750600854600160a01b900460ff165b801561204a5750600654600160a01b900460ff16155b801561206f57506001600160a01b03861660009081526012602052604090205460ff16155b801561208957506008546001600160a01b03878116911614155b80156120a357506008546001600160a01b03868116911614155b15612111576006805460ff60a01b1916600160a01b17905560006120dd6120cc6003600b6130f3565b6120d785600361266e565b906126ed565b90506120e881612748565b30600090815260208190526040902054612101816127dd565b50506006805460ff60a01b191690555b600083801561212a5750600654600160a01b900460ff16155b6001600160a01b03881660009081526010602052604090205490915060ff168061216c57506001600160a01b03861660009081526010602052604090205460ff165b15612175575060005b80156121b357600061219860646120d76121916003600b6130f3565b899061266e565b90506121a48682612997565b95506121b1883083612565565b505b6121be878787612565565b6007546001600160a01b031663e30443bc886121ef816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561223557600080fd5b505af1925050508015612246575060015b506007546001600160a01b031663e30443bc87612278816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156122be57600080fd5b505af19250505080156122cf575060015b50600654600160a01b900460ff166123b957600d546007546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561232d57600080fd5b505af192505050801561235d575060408051601f3d908101601f1916820190925261235a91810190612f0f565b60015b612366576123b7565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b600081848411156123e65760405162461bcd60e51b8152600401610a969190612f3c565b506123f1838561314a565b949350505050565b6001600160a01b03821660009081526012602052604090205460ff161515811515141561249c5760405162461bcd60e51b8152602060048201526044602482018190527f4b697473756e65496e753a204175746f6d61746564206d61726b6574206d616b908201527f6572207061697220697320616c72656164792073657420746f20746861742076606482015263616c756560e01b608482015260a401610a96565b6001600160a01b0382166000908152601260205260409020805460ff191682158015919091179091556125295760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561251057600080fd5b505af1158015612524573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661258b5760405162461bcd60e51b8152600401610a9690613007565b6001600160a01b0382166125b15760405162461bcd60e51b8152600401610a9690612f8f565b6125ee816040518060600160405280602681526020016131f1602691396001600160a01b03861660009081526020819052604090205491906123c2565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461261d9082611a7e565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611bfc565b60008261267d57506000610a60565b6000612689838561312b565b905082612696858361310b565b14611add5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a96565b600080821161273e5760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610a96565b611add828461310b565b8047612753826129f3565b600061275f4783612997565b600c546040519192506001600160a01b031690819083156108fc029084906000818181858888f1935050505015801561279c573d6000803e3d6000fd5b5060408051868152602081018490527f98024b0e201aa667dd34d5242eaa5ec55bd223ff5dad2fb1fd9a11e35f86f05f910160405180910390a15050505050565b6127e78130612b78565b600b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561282b57600080fd5b505afa15801561283f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128639190612ef7565b600b5460075460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292935060009291169063a9059cbb90604401602060405180830381600087803b1580156128b957600080fd5b505af11580156128cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f19190612ec3565b9050801561299257600754604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b15801561293f57600080fd5b505af1158015612953573d6000803e3d6000fd5b505060408051868152602081018690527f5e8c953468549261e19b5df2c0776259d823043f64befbef757760c2800c07ca935001905060405180910390a15b505050565b6000828211156129e95760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610a96565b611add828461314a565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a3657634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612a8a57600080fd5b505afa158015612a9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ac29190612d52565b81600181518110612ae357634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612b099130911684611ae4565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612b42908590600090869030904290600401613083565b600060405180830381600087803b158015612b5c57600080fd5b505af1158015612b70573d6000803e3d6000fd5b505050505050565b60408051600380825260808201909252600091602082016060803683370190505090503081600081518110612bbd57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612c1157600080fd5b505afa158015612c25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c499190612d52565b81600181518110612c6a57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600b54825191169082906002908110612ca957634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612ccf9130911685611ae4565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d79590612d08908690600090869088904290600401613083565b600060405180830381600087803b158015612d2257600080fd5b505af11580156123b9573d6000803e3d6000fd5b600060208284031215612d47578081fd5b8135611add816131cd565b600060208284031215612d63578081fd5b8151611add816131cd565b60008060408385031215612d80578081fd5b8235612d8b816131cd565b91506020830135612d9b816131cd565b809150509250929050565b600080600060608486031215612dba578081fd5b8335612dc5816131cd565b92506020840135612dd5816131cd565b929592945050506040919091013590565b60008060408385031215612df8578182fd5b8235612e03816131cd565b91506020830135612d9b816131e2565b600080600080600080600080610100898b031215612e2f578384fd5b8851612e3a816131cd565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612e8e578182fd5b8235612e99816131cd565b946020939093013593505050565b600060208284031215612eb8578081fd5b8135611add816131e2565b600060208284031215612ed4578081fd5b8151611add816131e2565b600060208284031215612ef0578081fd5b5035919050565b600060208284031215612f08578081fd5b5051919050565b600080600060608486031215612f23578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015612f6857858101830151858201604001528201612f4c565b81811115612f795783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526017908201527f596f752068617665206e6f20706f776572206865726521000000000000000000604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156130d25784516001600160a01b0316835293830193918301916001016130ad565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115613106576131066131b7565b500190565b60008261312657634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615613145576131456131b7565b500290565b60008282101561315c5761315c6131b7565b500390565b600181811c9082168061317557607f821691505b6020821081141561319657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131b0576131b06131b7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610e8557600080fd5b8015158114610e8557600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220391ad67d0523c25dd84015e20bb2c50747fd77e7e1174db0a7f98b0bcf997c4964736f6c6343000804003360a0604052600880546001600160a01b031916733301ee63fb29f863f2333bd4466acb46cd8323e61790553480156200003757600080fd5b50604080518082018252601b8082527f4b697473756e65496e755f4469766964656e645f547261636b6572000000000060208084018281528551808701909652928552840152815191929183918391620000949160039162000135565b508051620000aa90600490602084019062000135565b50506005805460ff191660121790555050610bb8600c55506000620000cc3390565b600d80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610e106015556a021165458500521280000060805262000218565b8280546200014390620001db565b90600052602060002090601f016020900481019282620001675760008555620001b2565b82601f106200018257805160ff1916838001178555620001b2565b82800160010185558215620001b2579182015b82811115620001b257825182559160200191906001019062000195565b50620001c0929150620001c4565b5090565b5b80821115620001c05760008155600101620001c5565b600181811c90821680620001f057607f821691505b602082108114156200021257634e487b7160e01b600052602260045260246000fd5b50919050565b60805161237f6200023b600039600081816106ba015261110a015261237f6000f3fe60806040526004361061023f5760003560e01c80637e3e7fd21161012e578063bc4c4b37116100ab578063e98030c71161006f578063e98030c714610757578063f2fde38b14610777578063f39b502014610797578063fbcbc0f1146107ad578063ffb2c479146107cd57600080fd5b8063bc4c4b3714610688578063be10b614146106a8578063dd62ed3e146106dc578063e30443bc14610722578063e7841ec01461074257600080fd5b80639d55d16f116100f25780639d55d16f146105d2578063a457c2d7146105f2578063a8b9d24014610612578063a9059cbb14610632578063aafd847a1461065257600080fd5b80637e3e7fd21461052c57806385a6b3ae146105695780638da5cb5b1461057f57806391b89fba1461059d57806395d89b41146105bd57600080fd5b8063313ce567116101bc5780635183d6fd116101805780635183d6fd146104515780636a474002146104b65780636f2789ec146104cb57806370a08231146104e1578063715018a61461051757600080fd5b8063313ce5671461039f57806331e79db0146103c15780633243c791146103e157806339509351146104015780634e7b827f1461042157600080fd5b806318160ddd1161020357806318160ddd14610307578063226cfa3d1461031c57806323b872dd1461034957806327ce0147146103695780633009a6091461038957600080fd5b806303c833021461024b57806306fdde0314610255578063095ea7b31461028057806309bbedde146102b05780631582358e146102cf57600080fd5b3661024657005b600080fd5b610253610808565b005b34801561026157600080fd5b5061026a61089b565b60405161027791906120d5565b60405180910390f35b34801561028c57600080fd5b506102a061029b366004611ff1565b61092d565b6040519015158152602001610277565b3480156102bc57600080fd5b50600e545b604051908152602001610277565b3480156102db57600080fd5b506008546102ef906001600160a01b031681565b6040516001600160a01b039091168152602001610277565b34801561031357600080fd5b506002546102c1565b34801561032857600080fd5b506102c1610337366004611f81565b60146020526000908152604090205481565b34801561035557600080fd5b506102a0610364366004612049565b610944565b34801561037557600080fd5b506102c1610384366004611f81565b6109ad565b34801561039557600080fd5b506102c160125481565b3480156103ab57600080fd5b5060055460405160ff9091168152602001610277565b3480156103cd57600080fd5b506102536103dc366004611f81565b610a09565b3480156103ed57600080fd5b506102536103fc3660046120bd565b610b39565b34801561040d57600080fd5b506102a061041c366004611ff1565b610bba565b34801561042d57600080fd5b506102a061043c366004611f81565b60136020526000908152604090205460ff1681565b34801561045d57600080fd5b5061047161046c3660046120bd565b610bf0565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610277565b3480156104c257600080fd5b50610253610d62565b3480156104d757600080fd5b506102c160155481565b3480156104ed57600080fd5b506102c16104fc366004611f81565b6001600160a01b031660009081526020819052604090205490565b34801561052357600080fd5b50610253610e10565b34801561053857600080fd5b50610253610547366004611f81565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b34801561057557600080fd5b506102c1600b5481565b34801561058b57600080fd5b50600d546001600160a01b03166102ef565b3480156105a957600080fd5b506102c16105b8366004611f81565b610e84565b3480156105c957600080fd5b5061026a610e8f565b3480156105de57600080fd5b506102536105ed3660046120bd565b610e9e565b3480156105fe57600080fd5b506102a061060d366004611ff1565b610f83565b34801561061e57600080fd5b506102c161062d366004611f81565b610fd2565b34801561063e57600080fd5b506102a061064d366004611ff1565b610ffe565b34801561065e57600080fd5b506102c161066d366004611f81565b6001600160a01b03166000908152600a602052604090205490565b34801561069457600080fd5b506102a06106a3366004611fb9565b61100b565b3480156106b457600080fd5b506102c17f000000000000000000000000000000000000000000000000000000000000000081565b3480156106e857600080fd5b506102c16106f736600461201c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072e57600080fd5b5061025361073d366004611ff1565b6110b9565b34801561074e57600080fd5b506012546102c1565b34801561076357600080fd5b506102536107723660046120bd565b611245565b34801561078357600080fd5b50610253610792366004611f81565b6113c5565b3480156107a357600080fd5b506102c1600c5481565b3480156107b957600080fd5b506104716107c8366004611f81565b6114b0565b3480156107d957600080fd5b506107ed6107e83660046120bd565b611628565b60408051938452602084019290925290820152606001610277565b600061081360025490565b1161081d57600080fd5b34156108995761085061082f60025490565b61083d34600160801b611751565b61084791906121b6565b600654906117d7565b60065560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600b5461089590346117d7565b600b555b565b6060600380546108aa9061224b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d69061224b565b80156109235780601f106108f857610100808354040283529160200191610923565b820191906000526020600020905b81548152906001019060200180831161090657829003601f168201915b5050505050905090565b600061093a338484611836565b5060015b92915050565b600061095184848461195a565b6109a3843361099e856040518060600160405280602881526020016122fd602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906119bc565b611836565b5060019392505050565b6001600160a01b03811660009081526009602090815260408083205491839052822054600654600160801b926109ff926109fa926109f4916109ef9190611751565b6119f3565b90611a03565b611a41565b61093e91906121b6565b600d546001600160a01b03163314610a3c5760405162461bcd60e51b8152600401610a3390612128565b60405180910390fd5b6001600160a01b03811660009081526013602052604090205460ff1615610a6257600080fd5b6001600160a01b0381166000908152601360205260408120805460ff19166001179055610a90908290611a54565b60405163131836e760e21b8152600e60048201526001600160a01b038216602482015273995d8a79cdd8e7572b1d03d9e0f8d2d1e424ba0f90634c60db9c9060440160006040518083038186803b158015610aea57600080fd5b505af4158015610afe573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b6000610b4460025490565b11610b4e57600080fd5b8015610bb757610b6e610b6060025490565b61083d83600160801b611751565b60065560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600b54610bb390826117d7565b600b555b50565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161093a91859061099e90866117d7565b600080600080600080600080600e73995d8a79cdd8e7572b1d03d9e0f8d2d1e424ba0f63deb3d89690916040518263ffffffff1660e01b8152600401610c3891815260200190565b60206040518083038186803b158015610c5057600080fd5b505af4158015610c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8891906120a5565b8910610cad575060009650600019955085945086935083925082915081905080610d57565b6040516368d54f3f60e11b8152600e6004820152602481018a905260009073995d8a79cdd8e7572b1d03d9e0f8d2d1e424ba0f9063d1aa9e7e9060440160206040518083038186803b158015610d0257600080fd5b505af4158015610d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3a9190611f9d565b9050610d45816114b0565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b815260206004820152607160248201527f4b697473756e65496e755f4469766964656e645f547261636b65723a2077697460448201527f68647261774469766964656e642064697361626c65642e20557365207468652060648201527f27636c61696d272066756e6374696f6e206f6e20746865206d61696e204b697460848201527039bab732a4b73a9031b7b73a3930b1ba1760791b60a482015260c401610a33565b600d546001600160a01b03163314610e3a5760405162461bcd60e51b8152600401610a3390612128565b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b600061093e82610fd2565b6060600480546108aa9061224b565b600d546001600160a01b03163314610ec85760405162461bcd60e51b8152600401610a3390612128565b600c54811415610f505760405162461bcd60e51b815260206004820152604760248201527f4b697473756e65496e755f4469766964656e645f547261636b65723a2043616e60448201527f6e6f742075706461746520676173466f725472616e7366657220746f2073616d606482015266652076616c756560c81b608482015260a401610a33565b600c5460405182907f5e2963a3d7c88b344b101641f89a2f7da9734fc777ed11ad0097b2775a9e9d1790600090a3600c55565b600061093a338461099e85604051806060016040528060258152602001612325602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906119bc565b6001600160a01b0381166000908152600a602052604081205461093e90610ff8846109ad565b90611ab3565b600061093a33848461195a565b600d546000906001600160a01b031633146110385760405162461bcd60e51b8152600401610a3390612128565b600061104384611b0f565b905080156110af576001600160a01b038416600081815260146020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf0929061109d9085815260200190565b60405180910390a3600191505061093e565b5060009392505050565b600d546001600160a01b031633146110e35760405162461bcd60e51b8152600401610a3390612128565b6001600160a01b03821660009081526013602052604090205460ff1615611108575050565b7f000000000000000000000000000000000000000000000000000000000000000081106111b7576111398282611a54565b604051632f0ad01760e21b8152600e60048201526001600160a01b03831660248201526044810182905273995d8a79cdd8e7572b1d03d9e0f8d2d1e424ba0f9063bc2b405c9060640160006040518083038186803b15801561119a57600080fd5b505af41580156111ae573d6000803e3d6000fd5b50505050611235565b6111c2826000611a54565b60405163131836e760e21b8152600e60048201526001600160a01b038316602482015273995d8a79cdd8e7572b1d03d9e0f8d2d1e424ba0f90634c60db9c9060440160006040518083038186803b15801561121c57600080fd5b505af4158015611230573d6000803e3d6000fd5b505050505b61124082600161100b565b505050565b600d546001600160a01b0316331461126f5760405162461bcd60e51b8152600401610a3390612128565b61070881101580156112845750620151808111155b61130f5760405162461bcd60e51b815260206004820152605060248201527f4b697473756e65496e755f4469766964656e645f547261636b65723a20636c6160448201527f696d57616974206d757374206265207570646174656420746f2062657477656560648201526f6e203120616e6420323420686f75727360801b608482015260a401610a33565b6015548114156113925760405162461bcd60e51b815260206004820152604260248201527f4b697473756e65496e755f4469766964656e645f547261636b65723a2043616e60448201527f6e6f742075706461746520636c61696d5761697420746f2073616d652076616c606482015261756560f01b608482015260a401610a33565b60155460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601555565b600d546001600160a01b031633146113ef5760405162461bcd60e51b8152600401610a3390612128565b6001600160a01b0381166114545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a33565b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6040516317e142d160e01b8152600e60048201526001600160a01b0382166024820152819060009081908190819081908190819073995d8a79cdd8e7572b1d03d9e0f8d2d1e424ba0f906317e142d19060440160206040518083038186803b15801561151b57600080fd5b505af415801561152f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155391906120a5565b96506000199550600087126115b5576012548711156115815760125461157a908890611c83565b95506115b5565b601254600e54600091106115965760006115a5565b601254600e546115a591611ab3565b90506115b18882611a03565b9650505b6115be88610fd2565b94506115c9886109ad565b6001600160a01b0389166000908152601460205260409020549094509250826115f3576000611601565b6015546116019084906117d7565b915042821161161157600061161b565b61161b8242611ab3565b9050919395975091939597565b600e5460009081908190806116485750506012546000925082915061174a565b6012546000805a90506000805b898410801561166357508582105b15611739578461167281612286565b600e549096508610905061168557600094505b6000600e60000186815481106116ab57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031680835260149091526040909120549091506116dc90611ccf565b156116ff576116ec81600161100b565b156116ff57816116fb81612286565b9250505b8261170981612286565b93505060005a9050808511156117305761172d6117268683611ab3565b87906117d7565b95505b93506116559050565b601285905590975095509193505050505b9193909250565b6000826117605750600061093e565b600061176c83856121d6565b90508261177985836121b6565b146117d05760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a33565b9392505050565b6000806117e4838561219e565b9050838110156117d05760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a33565b6001600160a01b0383166118985760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a33565b6001600160a01b0382166118f95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a33565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152603160248201527f4b697473756e65496e755f4469766964656e645f547261636b65723a204e6f206044820152701d1c985b9cd9995c9cc8185b1b1bddd959607a1b6064820152608401610a33565b600081848411156119e05760405162461bcd60e51b8152600401610a3391906120d5565b506119eb8385612234565b949350505050565b6000818181121561093e57600080fd5b600080611a10838561215d565b905060008312158015611a235750838112155b80611a385750600083128015611a3857508381125b6117d057600080fd5b600080821215611a5057600080fd5b5090565b6001600160a01b03821660009081526020819052604090205480821115611a93576000611a818383611ab3565b9050611a8d8482611cf6565b50505050565b80821015611240576000611aa78284611ab3565b9050611a8d8482611d5a565b600082821115611b055760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610a33565b6117d08284612234565b600080611b1b83610fd2565b90508015611c7a576001600160a01b0383166000908152600a6020526040902054611b4690826117d7565b6001600160a01b0384166000818152600a6020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d90611b959084815260200190565b60405180910390a260085460405163a9059cbb60e01b81526001600160a01b03858116600483015260248201849052600092169063a9059cbb90604401602060405180830381600087803b158015611bec57600080fd5b505af1158015611c00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c249190612089565b905080611c73576001600160a01b0384166000908152600a6020526040902054611c4e9083611ab3565b6001600160a01b039094166000908152600a6020526040812094909455509192915050565b5092915050565b50600092915050565b6000808212158015611c9e575082611c9b83826121f5565b13155b80611cbc5750600082128015611cbc575082611cba83826121f5565b135b611cc557600080fd5b6117d082846121f5565b600042821115611ce157506000919050565b601554611cee4284611ab3565b101592915050565b611d008282611d9e565b611d3a611d1b6109ef8360065461175190919063ffffffff16565b6001600160a01b03841660009081526009602052604090205490611c83565b6001600160a01b0390921660009081526009602052604090209190915550565b611d648282611e7d565b611d3a611d7f6109ef8360065461175190919063ffffffff16565b6001600160a01b03841660009081526009602052604090205490611a03565b6001600160a01b038216611df45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a33565b600254611e0190826117d7565b6002556001600160a01b038216600090815260208190526040902054611e2790826117d7565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b6001600160a01b038216611edd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a33565b611f1a816040518060600160405280602281526020016122db602291396001600160a01b03851660009081526020819052604090205491906119bc565b6001600160a01b038316600090815260208190526040902055600254611f409082611ab3565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611e71565b600060208284031215611f92578081fd5b81356117d0816122b7565b600060208284031215611fae578081fd5b81516117d0816122b7565b60008060408385031215611fcb578081fd5b8235611fd6816122b7565b91506020830135611fe6816122cc565b809150509250929050565b60008060408385031215612003578182fd5b823561200e816122b7565b946020939093013593505050565b6000806040838503121561202e578182fd5b8235612039816122b7565b91506020830135611fe6816122b7565b60008060006060848603121561205d578081fd5b8335612068816122b7565b92506020840135612078816122b7565b929592945050506040919091013590565b60006020828403121561209a578081fd5b81516117d0816122cc565b6000602082840312156120b6578081fd5b5051919050565b6000602082840312156120ce578081fd5b5035919050565b6000602080835283518082850152825b81811015612101578581018301518582016040015282016120e5565b818111156121125783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600080821280156001600160ff1b038490038513161561217f5761217f6122a1565b600160ff1b8390038412811615612198576121986122a1565b50500190565b600082198211156121b1576121b16122a1565b500190565b6000826121d157634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156121f0576121f06122a1565b500290565b60008083128015600160ff1b850184121615612213576122136122a1565b6001600160ff1b038401831381161561222e5761222e6122a1565b50500390565b600082821015612246576122466122a1565b500390565b600181811c9082168061225f57607f821691505b6020821081141561228057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561229a5761229a6122a1565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610bb757600080fd5b8015158114610bb757600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209b7252d92738756596cb61fa8c2f50eb2d42c4f7d012ff5513f2c4da37d9787364736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102e85760003560e01c8063871c128d11610190578063b62496f5116100dc578063e7841ec011610095578063f2fde38b1161006f578063f2fde38b1461093d578063fd5af42f1461095d578063fd5db2af1461097d578063ff0fd4c01461099d57600080fd5b8063e7841ec0146108e8578063e98030c7146108fd578063f27fd2541461091d57600080fd5b8063b62496f5146107fc578063bab3185f1461082c578063c816e4b61461084c578063d469801614610862578063dd62ed3e14610882578063e57f14e1146108c857600080fd5b80639d55d16f11610149578063a5ece94111610123578063a5ece94114610737578063a8b9d24014610757578063a9059cbb14610777578063ad56c13c1461079757600080fd5b80639d55d16f146106e2578063a26579ad14610702578063a457c2d71461071757600080fd5b8063871c128d1461063f5780638da5cb5b1461065f57806392ca1e8d1461068257806395d89b41146106975780639a7a23d6146106ac5780639c1b8af5146106cc57600080fd5b80634303443d1161024f57806364b0f6531161020857806370a08231116101e257806370a08231146105a4578063715018a6146105da5780637ded4d6a146105ef5780637e0e155c1461060f57600080fd5b806364b0f6531461054f5780636843cd8414610564578063700bb1911461058457600080fd5b80634303443d1461047e57806349bd5a5e1461049e5780634ada218b146104d25780634e71d92d146104ec5780634fbee1931461050157806353ab431b1461053a57600080fd5b80632a8407b4116102a15780632a8407b4146103dd5780632c1f5216146103f25780632d17f2691461041257806330bb4cff14610427578063313ce5671461043c578063395093511461045e57600080fd5b806306fdde03146102f4578063095ea7b31461031f5780630f15f4c01461034f5780631694505e1461036657806318160ddd1461039e57806323b872dd146103bd57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b506103096109bd565b6040516103169190612f3c565b60405180910390f35b34801561032b57600080fd5b5061033f61033a366004612e7c565b610a4f565b6040519015158152602001610316565b34801561035b57600080fd5b50610364610a66565b005b34801561037257600080fd5b50600654610386906001600160a01b031681565b6040516001600160a01b039091168152602001610316565b3480156103aa57600080fd5b506002545b604051908152602001610316565b3480156103c957600080fd5b5061033f6103d8366004612da6565b610b23565b3480156103e957600080fd5b506103af610b8c565b3480156103fe57600080fd5b50600754610386906001600160a01b031681565b34801561041e57600080fd5b506103af600b81565b34801561043357600080fd5b506103af610c0e565b34801561044857600080fd5b5060055460405160ff9091168152602001610316565b34801561046a57600080fd5b5061033f610479366004612e7c565b610c53565b34801561048a57600080fd5b50610364610499366004612d36565b610c89565b3480156104aa57600080fd5b506103867f0000000000000000000000007874912471b8b8a758d8166fc332c10798fe13ec81565b3480156104de57600080fd5b50600f5461033f9060ff1681565b3480156104f857600080fd5b50610364610e01565b34801561050d57600080fd5b5061033f61051c366004612d36565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561054657600080fd5b506103af600381565b34801561055b57600080fd5b506103af610e88565b34801561057057600080fd5b506103af61057f366004612d36565b610ecd565b34801561059057600080fd5b5061036461059f366004612edf565b610f4c565b3480156105b057600080fd5b506103af6105bf366004612d36565b6001600160a01b031660009081526020819052604090205490565b3480156105e657600080fd5b5061036461102d565b3480156105fb57600080fd5b5061036461060a366004612d36565b6110ad565b34801561061b57600080fd5b5061033f61062a366004612d36565b60116020526000908152604090205460ff1681565b34801561064b57600080fd5b5061036461065a366004612edf565b611299565b34801561066b57600080fd5b5060055461010090046001600160a01b0316610386565b34801561068e57600080fd5b506103af611374565b3480156106a357600080fd5b50610309611383565b3480156106b857600080fd5b506103646106c7366004612de6565b611392565b3480156106d857600080fd5b506103af600d5481565b3480156106ee57600080fd5b506103646106fd366004612edf565b61148a565b34801561070e57600080fd5b506103af61151c565b34801561072357600080fd5b5061033f610732366004612e7c565b611561565b34801561074357600080fd5b50600c54610386906001600160a01b031681565b34801561076357600080fd5b506103af610772366004612d36565b6115b0565b34801561078357600080fd5b5061033f610792366004612e7c565b6115e3565b3480156107a357600080fd5b506107b76107b2366004612d36565b6115f0565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610316565b34801561080857600080fd5b5061033f610817366004612d36565b60126020526000908152604090205460ff1681565b34801561083857600080fd5b5061033f610847366004612ea7565b61169a565b34801561085857600080fd5b506103af600e5481565b34801561086e57600080fd5b50600854610386906001600160a01b031681565b34801561088e57600080fd5b506103af61089d366004612d6e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108d457600080fd5b506103646108e3366004612d36565b611727565b3480156108f457600080fd5b506103af6117fe565b34801561090957600080fd5b50610364610918366004612edf565b611843565b34801561092957600080fd5b506107b7610938366004612edf565b6118a4565b34801561094957600080fd5b50610364610958366004612d36565b6118e6565b34801561096957600080fd5b50610364610978366004612ea7565b6119e2565b34801561098957600080fd5b506103af6b0813f3978f8940984400000081565b3480156109a957600080fd5b506103646109b8366004612ea7565b611a30565b6060600380546109cc90613161565b80601f01602080910402602001604051908101604052809291908181526020018280546109f890613161565b8015610a455780601f10610a1a57610100808354040283529160200191610a45565b820191906000526020600020905b815481529060010190602001808311610a2857829003601f168201915b5050505050905090565b6000610a5c338484611ae4565b5060015b92915050565b6005546001600160a01b03610100909104163314610a9f5760405162461bcd60e51b8152600401610a9690612fd2565b60405180910390fd5b600f5460ff1615610b015760405162461bcd60e51b815260206004820152602660248201527f4b697473756e65496e753a2054726164696e6720697320616c726561647920656044820152651b98589b195960d21b6064820152608401610a96565b6008805460ff60a01b1916600160a01b179055600f805460ff19166001179055565b6000610b30848484611c09565b610b828433610b7d85604051806060016040528060288152602001613217602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906123c2565b611ae4565b5060019392505050565b6007546040805163079cda8160e51b815290516000926001600160a01b03169163f39b5020916004808301926020929190829003018186803b158015610bd157600080fd5b505afa158015610be5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c099190612ef7565b905090565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610bd157600080fd5b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a5c918590610b7d9086611a7e565b6005546001600160a01b03610100909104163314610cb95760405162461bcd60e51b8152600401610a9690612fd2565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d325760405162461bcd60e51b8152602060048201526024808201527f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f756044820152633a32b91760e11b6064820152608401610a96565b6001600160a01b03811660009081526009602052604090205460ff1615610d9b5760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610a96565b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60075460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610e4d57600080fd5b505af1158015610e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e859190612ec3565b50565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610bd157600080fd5b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b158015610f1457600080fd5b505afa158015610f28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a609190612ef7565b6007546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b158015610f9a57600080fd5b505af1158015610fae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd29190612f0f565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6005546001600160a01b0361010090910416331461105d5760405162461bcd60e51b8152600401610a9690612fd2565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146110dd5760405162461bcd60e51b8152600401610a9690612fd2565b6001600160a01b03811660009081526009602052604090205460ff166111455760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610a96565b60005b600a5481101561129557816001600160a01b0316600a828154811061117d57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141561128357600a80546111a89060019061314a565b815481106111c657634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a80546001600160a01b03909216918390811061120057634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a80548061125d57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061128d8161319c565b915050611148565b5050565b6005546001600160a01b036101009091041633146112c95760405162461bcd60e51b8152600401610a9690612fd2565b600d548114156113415760405162461bcd60e51b815260206004820152603860248201527f4b697473756e65496e753a2043616e6e6f742075706461746520676173466f7260448201527f50726f63657373696e6720746f2073616d652076616c756500000000000000006064820152608401610a96565b600d5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600d55565b6113806003600b6130f3565b81565b6060600480546109cc90613161565b6005546001600160a01b036101009091041633146113c25760405162461bcd60e51b8152600401610a9690612fd2565b7f0000000000000000000000007874912471b8b8a758d8166fc332c10798fe13ec6001600160a01b0316826001600160a01b031614156114805760405162461bcd60e51b815260206004820152604d60248201527f4b697473756e65496e753a2054686520556e697377617020706169722063616e60448201527f6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d617260648201526c6b65744d616b6572506169727360981b608482015260a401610a96565b61129582826123f9565b6005546001600160a01b036101009091041633146114ba5760405162461bcd60e51b8152600401610a9690612fd2565b600754604051639d55d16f60e01b8152600481018390526001600160a01b0390911690639d55d16f906024015b600060405180830381600087803b15801561150157600080fd5b505af1158015611515573d6000803e3d6000fd5b5050505050565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610bd157600080fd5b6000610a5c3384610b7d8560405180606001604052806025815260200161323f602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906123c2565b6007546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401610efc565b6000610a5c338484611c09565b60075460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b15801561164757600080fd5b505afa15801561165b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167f9190612e13565b97509750975097509750975097509750919395975091939597565b6008546000906001600160a01b031633146117035760405162461bcd60e51b8152602060048201526024808201527f4f6e6c792044657620416464726573732063616e2064697361626c65206465766044820152632066656560e01b6064820152608401610a96565b506008805460ff60a01b1916600160a01b9215158302179081905560ff9190041690565b6005546001600160a01b036101009091041633146117575760405162461bcd60e51b8152600401610a9690612fd2565b6001600160a01b03811660009081526010602052604090205460ff16156117da5760405162461bcd60e51b815260206004820152603160248201527f4b697473756e65496e753a204163636f756e7420697320616c7265616479206560448201527078636c756465642066726f6d206665657360781b6064820152608401610a96565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610bd157600080fd5b6005546001600160a01b036101009091041633146118735760405162461bcd60e51b8152600401610a9690612fd2565b60075460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c7906024016114e7565b600754604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd9060240161162e565b6005546001600160a01b036101009091041633146119165760405162461bcd60e51b8152600401610a9690612fd2565b6001600160a01b03811661197b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a96565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03610100909104163314611a125760405162461bcd60e51b8152600401610a9690612fd2565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b6005546001600160a01b03610100909104163314611a605760405162461bcd60e51b8152600401610a9690612fd2565b60088054911515600160a81b0260ff60a81b19909216919091179055565b600080611a8b83856130f3565b905083811015611add5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a96565b9392505050565b6001600160a01b038316611b465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a96565b6001600160a01b038216611ba75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a96565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611c2f5760405162461bcd60e51b8152600401610a9690613007565b6001600160a01b038216611c555760405162461bcd60e51b8152600401610a9690612f8f565b6001600160a01b03821660009081526009602052604090205460ff1615611c8e5760405162461bcd60e51b8152600401610a969061304c565b3360009081526009602052604090205460ff1615611cbe5760405162461bcd60e51b8152600401610a969061304c565b6001600160a01b03831660009081526009602052604090205460ff1615611cf75760405162461bcd60e51b8152600401610a969061304c565b6005546001600160a01b038481166101009092041614801590611d2d57506005546001600160a01b038381166101009092041614155b8015611d425750600c54600160a01b900460ff165b15611db4576b0813f3978f89409844000000811115611db45760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a96565b600f5460ff1680611e6c57600854600160a81b900460ff16611e6c576001600160a01b03841660009081526011602052604090205460ff16611e6c5760405162461bcd60e51b8152602060048201526044602482018190527f4b697473756e65496e753a2054686973206163636f756e742063616e6e6f7420908201527f73656e6420746f6b656e7320756e74696c2074726164696e6720697320656e61606482015263189b195960e21b608482015260a401610a96565b7f0000000000000000000000007874912471b8b8a758d8166fc332c10798fe13ec6001600160a01b0316846001600160a01b03161480611edd57507f0000000000000000000000007874912471b8b8a758d8166fc332c10798fe13ec6001600160a01b0316836001600160a01b0316145b8015611ee65750805b5081611efe57611ef884846000612565565b50505050565b600654600160a01b900460ff16158015611f155750805b8015611f3957506001600160a01b03831660009081526012602052604090205460ff165b8015611f5357506006546001600160a01b03858116911614155b8015611f7857506001600160a01b03831660009081526010602052604090205460ff16155b15611fff576b0813f3978f89409844000000821115611fff5760405162461bcd60e51b815260206004820152603d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f204d41585f53454c4c5f5452414e53414354494f4e5f414d4f554e542e0000006064820152608401610a96565b30600090815260208190526040902054600e5481101582801561201f5750805b80156120345750600854600160a01b900460ff165b801561204a5750600654600160a01b900460ff16155b801561206f57506001600160a01b03861660009081526012602052604090205460ff16155b801561208957506008546001600160a01b03878116911614155b80156120a357506008546001600160a01b03868116911614155b15612111576006805460ff60a01b1916600160a01b17905560006120dd6120cc6003600b6130f3565b6120d785600361266e565b906126ed565b90506120e881612748565b30600090815260208190526040902054612101816127dd565b50506006805460ff60a01b191690555b600083801561212a5750600654600160a01b900460ff16155b6001600160a01b03881660009081526010602052604090205490915060ff168061216c57506001600160a01b03861660009081526010602052604090205460ff165b15612175575060005b80156121b357600061219860646120d76121916003600b6130f3565b899061266e565b90506121a48682612997565b95506121b1883083612565565b505b6121be878787612565565b6007546001600160a01b031663e30443bc886121ef816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561223557600080fd5b505af1925050508015612246575060015b506007546001600160a01b031663e30443bc87612278816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156122be57600080fd5b505af19250505080156122cf575060015b50600654600160a01b900460ff166123b957600d546007546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561232d57600080fd5b505af192505050801561235d575060408051601f3d908101601f1916820190925261235a91810190612f0f565b60015b612366576123b7565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b600081848411156123e65760405162461bcd60e51b8152600401610a969190612f3c565b506123f1838561314a565b949350505050565b6001600160a01b03821660009081526012602052604090205460ff161515811515141561249c5760405162461bcd60e51b8152602060048201526044602482018190527f4b697473756e65496e753a204175746f6d61746564206d61726b6574206d616b908201527f6572207061697220697320616c72656164792073657420746f20746861742076606482015263616c756560e01b608482015260a401610a96565b6001600160a01b0382166000908152601260205260409020805460ff191682158015919091179091556125295760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561251057600080fd5b505af1158015612524573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661258b5760405162461bcd60e51b8152600401610a9690613007565b6001600160a01b0382166125b15760405162461bcd60e51b8152600401610a9690612f8f565b6125ee816040518060600160405280602681526020016131f1602691396001600160a01b03861660009081526020819052604090205491906123c2565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461261d9082611a7e565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611bfc565b60008261267d57506000610a60565b6000612689838561312b565b905082612696858361310b565b14611add5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a96565b600080821161273e5760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610a96565b611add828461310b565b8047612753826129f3565b600061275f4783612997565b600c546040519192506001600160a01b031690819083156108fc029084906000818181858888f1935050505015801561279c573d6000803e3d6000fd5b5060408051868152602081018490527f98024b0e201aa667dd34d5242eaa5ec55bd223ff5dad2fb1fd9a11e35f86f05f910160405180910390a15050505050565b6127e78130612b78565b600b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561282b57600080fd5b505afa15801561283f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128639190612ef7565b600b5460075460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292935060009291169063a9059cbb90604401602060405180830381600087803b1580156128b957600080fd5b505af11580156128cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f19190612ec3565b9050801561299257600754604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b15801561293f57600080fd5b505af1158015612953573d6000803e3d6000fd5b505060408051868152602081018690527f5e8c953468549261e19b5df2c0776259d823043f64befbef757760c2800c07ca935001905060405180910390a15b505050565b6000828211156129e95760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610a96565b611add828461314a565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a3657634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612a8a57600080fd5b505afa158015612a9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ac29190612d52565b81600181518110612ae357634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612b099130911684611ae4565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612b42908590600090869030904290600401613083565b600060405180830381600087803b158015612b5c57600080fd5b505af1158015612b70573d6000803e3d6000fd5b505050505050565b60408051600380825260808201909252600091602082016060803683370190505090503081600081518110612bbd57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612c1157600080fd5b505afa158015612c25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c499190612d52565b81600181518110612c6a57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600b54825191169082906002908110612ca957634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612ccf9130911685611ae4565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d79590612d08908690600090869088904290600401613083565b600060405180830381600087803b158015612d2257600080fd5b505af11580156123b9573d6000803e3d6000fd5b600060208284031215612d47578081fd5b8135611add816131cd565b600060208284031215612d63578081fd5b8151611add816131cd565b60008060408385031215612d80578081fd5b8235612d8b816131cd565b91506020830135612d9b816131cd565b809150509250929050565b600080600060608486031215612dba578081fd5b8335612dc5816131cd565b92506020840135612dd5816131cd565b929592945050506040919091013590565b60008060408385031215612df8578182fd5b8235612e03816131cd565b91506020830135612d9b816131e2565b600080600080600080600080610100898b031215612e2f578384fd5b8851612e3a816131cd565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612e8e578182fd5b8235612e99816131cd565b946020939093013593505050565b600060208284031215612eb8578081fd5b8135611add816131e2565b600060208284031215612ed4578081fd5b8151611add816131e2565b600060208284031215612ef0578081fd5b5035919050565b600060208284031215612f08578081fd5b5051919050565b600080600060608486031215612f23578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015612f6857858101830151858201604001528201612f4c565b81811115612f795783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526017908201527f596f752068617665206e6f20706f776572206865726521000000000000000000604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156130d25784516001600160a01b0316835293830193918301916001016130ad565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115613106576131066131b7565b500190565b60008261312657634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615613145576131456131b7565b500290565b60008282101561315c5761315c6131b7565b500390565b600181811c9082168061317557607f821691505b6020821081141561319657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131b0576131b06131b7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610e8557600080fd5b8015158114610e8557600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220391ad67d0523c25dd84015e20bb2c50747fd77e7e1174db0a7f98b0bcf997c4964736f6c63430008040033

Libraries Used

IterableMapping : 0x995d8a79cdd8e7572b1d03d9e0f8d2d1e424ba0fUnverified

Deployed Bytecode Sourcemap

47915:16298:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7989:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10135:169;;;;;;;;;;-1:-1:-1;10135:169:0;;;;;:::i;:::-;;:::i;:::-;;;6028:14:1;;6021:22;6003:41;;5991:2;5976:18;10135:169:0;5958:92:1;49209:184:0;;;;;;;;;;;;;:::i;:::-;;47995:41;;;;;;;;;;-1:-1:-1;47995:41:0;;;;-1:-1:-1;;;;;47995:41:0;;;;;;-1:-1:-1;;;;;4234:32:1;;;4216:51;;4204:2;4189:18;47995:41:0;4171:102:1;9088:108:0;;;;;;;;;;-1:-1:-1;9176:12:0;;9088:108;;;16557:25:1;;;16545:2;16530:18;9088:108:0;16512:76:1;10786:321:0;;;;;;;;;;-1:-1:-1;10786:321:0;;;;;:::i;:::-;;:::i;54148:118::-;;;;;;;;;;;;;:::i;48123:48::-;;;;;;;;;;-1:-1:-1;48123:48:0;;;;-1:-1:-1;;;;;48123:48:0;;;48303:44;;;;;;;;;;;;48345:2;48303:44;;54868:141;;;;;;;;;;;;;:::i;8932:91::-;;;;;;;;;;-1:-1:-1;9006:9:0;;8932:91;;9006:9;;;;18372:36:1;;18360:2;18345:18;8932:91:0;18327:87:1;11516:218:0;;;;;;;;;;-1:-1:-1;11516:218:0;;;;;:::i;:::-;;:::i;55458:352::-;;;;;;;;;;-1:-1:-1;55458:352:0;;;;;:::i;:::-;;:::i;48043:38::-;;;;;;;;;;;;;;;49174:26;;;;;;;;;;-1:-1:-1;49174:26:0;;;;;;;;57193:103;;;;;;;;;;;;;:::i;55017:125::-;;;;;;;;;;-1:-1:-1;55017:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;55106:28:0;55082:4;55106:28;;;:19;:28;;;;;;;;;55017:125;48354:41;;;;;;;;;;;;48394:1;48354:41;;57441:141;;;;;;;;;;;;;:::i;55309:139::-;;;;;;;;;;-1:-1:-1;55309:139:0;;;;;:::i;:::-;;:::i;56914:271::-;;;;;;;;;;-1:-1:-1;56914:271:0;;;;;:::i;:::-;;:::i;9259:127::-;;;;;;;;;;-1:-1:-1;9259:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9360:18:0;9333:7;9360:18;;;;;;;;;;;;9259:127;2738:148;;;;;;;;;;;;;:::i;55818:500::-;;;;;;;;;;-1:-1:-1;55818:500:0;;;;;:::i;:::-;;:::i;49581:66::-;;;;;;;;;;-1:-1:-1;49581:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53623:385;;;;;;;;;;-1:-1:-1;53623:385:0;;;;;:::i;:::-;;:::i;2087:87::-;;;;;;;;;;-1:-1:-1;2160:6:0;;;;;-1:-1:-1;;;;;2160:6:0;2087:87;;48402:68;;;;;;;;;;;;;:::i;8199:95::-;;;;;;;;;;;;;:::i;52551:264::-;;;;;;;;;;-1:-1:-1;52551:264:0;;;;;:::i;:::-;;:::i;48924:40::-;;;;;;;;;;;;;;;;53467:144;;;;;;;;;;-1:-1:-1;53467:144:0;;;;;:::i;:::-;;:::i;54752:108::-;;;;;;;;;;;;;:::i;12237:269::-;;;;;;;;;;-1:-1:-1;12237:269:0;;;;;:::i;:::-;;:::i;48736:76::-;;;;;;;;;;-1:-1:-1;48736:76:0;;;;-1:-1:-1;;;;;48736:76:0;;;55150:151;;;;;;;;;;-1:-1:-1;55150:151:0;;;;;:::i;:::-;;:::i;9599:175::-;;;;;;;;;;-1:-1:-1;9599:175:0;;;;;:::i;:::-;;:::i;56324:282::-;;;;;;;;;;-1:-1:-1;56324:282:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5235:32:1;;;5217:51;;5299:2;5284:18;;5277:34;;;;5327:18;;;5320:34;;;;5385:2;5370:18;;5363:34;;;;5428:3;5413:19;;5406:35;5255:3;5457:19;;5450:35;5516:3;5501:19;;5494:35;5560:3;5545:19;;5538:35;5204:3;5189:19;56324:282:0;5171:408:1;49805:58:0;;;;;;;;;;-1:-1:-1;49805:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54280:240;;;;;;;;;;-1:-1:-1;54280:240:0;;;;;:::i;:::-;;:::i;49057:60::-;;;;;;;;;;;;;;;;48180:30;;;;;;;;;;-1:-1:-1;48180:30:0;;;;-1:-1:-1;;;;;48180:30:0;;;9837:151;;;;;;;;;;-1:-1:-1;9837:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9953:18:0;;;9926:7;9953:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9837:151;53244:215;;;;;;;;;;-1:-1:-1;53244:215:0;;;;;:::i;:::-;;:::i;57304:129::-;;;;;;;;;;;;;:::i;54016:124::-;;;;;;;;;;-1:-1:-1;54016:124:0;;;;;:::i;:::-;;:::i;56614:292::-;;;;;;;;;;-1:-1:-1;56614:292:0;;;;;:::i;:::-;;:::i;3041:244::-;;;;;;;;;;-1:-1:-1;3041:244:0;;;;;:::i;:::-;;:::i;54641:103::-;;;;;;;;;;-1:-1:-1;54641:103:0;;;;;:::i;:::-;;:::i;48219:75::-;;;;;;;;;;;;48273:21;48219:75;;54532:97;;;;;;;;;;-1:-1:-1;54532:97:0;;;;;:::i;:::-;;:::i;7989:91::-;8034:13;8067:5;8060:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7989:91;:::o;10135:169::-;10218:4;10235:39;812:10;10258:7;10267:6;10235:8;:39::i;:::-;-1:-1:-1;10292:4:0;10135:169;;;;;:::o;49209:184::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;;;;;;;;;49266:14:::1;::::0;::::1;;49265:15;49257:66;;;::::0;-1:-1:-1;;;49257:66:0;;8636:2:1;49257:66:0::1;::::0;::::1;8618:21:1::0;8675:2;8655:18;;;8648:30;8714:34;8694:18;;;8687:62;-1:-1:-1;;;8765:18:1;;;8758:36;8811:19;;49257:66:0::1;8608:228:1::0;49257:66:0::1;49334:12;:19:::0;;-1:-1:-1;;;;49334:19:0::1;-1:-1:-1::0;;;49334:19:0::1;::::0;;49364:14:::1;:21:::0;;-1:-1:-1;;49364:21:0::1;49349:4;49364:21;::::0;;49209:184::o;10786:321::-;10892:4;10909:36;10919:6;10927:9;10938:6;10909:9;:36::i;:::-;10956:121;10965:6;812:10;10987:89;11025:6;10987:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10987:19:0;;;;;;:11;:19;;;;;;;;812:10;10987:33;;;;;;;;;;:37;:89::i;:::-;10956:8;:121::i;:::-;-1:-1:-1;11095:4:0;10786:321;;;;;:::o;54148:118::-;54226:15;;:32;;;-1:-1:-1;;;54226:32:0;;;;54199:7;;-1:-1:-1;;;;;54226:15:0;;:30;;:32;;;;;;;;;;;;;;:15;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54219:39;;54148:118;:::o;54868:141::-;54958:15;;:43;;;-1:-1:-1;;;54958:43:0;;;;54931:7;;-1:-1:-1;;;;;54958:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;11516:218;812:10;11604:4;11653:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11653:34:0;;;;;;;;;;11604:4;;11621:83;;11644:7;;11653:50;;11692:10;11653:38;:50::i;55458:352::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;55553:42:::1;-1:-1:-1::0;;;;;55542:53:0;::::1;;;55534:102;;;::::0;-1:-1:-1;;;55534:102:0;;14568:2:1;55534:102:0::1;::::0;::::1;14550:21:1::0;14607:2;14587:18;;;14580:30;14646:34;14626:18;;;14619:62;-1:-1:-1;;;14697:18:1;;;14690:34;14741:19;;55534:102:0::1;14540:226:1::0;55534:102:0::1;-1:-1:-1::0;;;;;55656:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;55655:27;55647:70;;;::::0;-1:-1:-1;;;55647:70:0;;11472:2:1;55647:70:0::1;::::0;::::1;11454:21:1::0;11511:2;11491:18;;;11484:30;11550:32;11530:18;;;11523:60;11600:18;;55647:70:0::1;11444:180:1::0;55647:70:0::1;-1:-1:-1::0;;;;;55728:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;55728:33:0::1;55757:4;55728:33:::0;;::::1;::::0;;;55772:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;55772:30:0::1;::::0;;::::1;::::0;;55458:352::o;57193:103::-;57230:15;;:58;;-1:-1:-1;;;57230:58:0;;57269:10;57230:58;;;4462:51:1;57230:15:0;4529:18:1;;;4522:50;-1:-1:-1;;;;;57230:15:0;;;;:30;;4435:18:1;;57230:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57193:103::o;57441:141::-;57533:15;;:41;;;-1:-1:-1;;;57533:41:0;;;;57506:7;;-1:-1:-1;;;;;57533:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;55309:139;55406:15;;:34;;-1:-1:-1;;;55406:34:0;;-1:-1:-1;;;;;4234:32:1;;;55406:34:0;;;4216:51:1;55379:7:0;;55406:15;;:25;;4189:18:1;;55406:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;56914:271::-;57046:15;;:28;;-1:-1:-1;;;;;;57046:28:0;;;;;16557:25:1;;;56980:18:0;;;;;;-1:-1:-1;;;;;57046:15:0;;:23;;16530:18:1;;57046:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57090:87;;;18065:25:1;;;18121:2;18106:18;;18099:34;;;18149:18;;;18142:34;;;18207:2;18192:18;;18185:34;;;56979:95:0;;-1:-1:-1;56979:95:0;;-1:-1:-1;56979:95:0;-1:-1:-1;57167:9:0;;57155:5;;57090:87;;18052:3:1;18037:19;57090:87:0;;;;;;;56914:271;;;;:::o;2738:148::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;2829:6:::1;::::0;2808:40:::1;::::0;2845:1:::1;::::0;2829:6:::1;::::0;::::1;-1:-1:-1::0;;;;;2829:6:0::1;::::0;2808:40:::1;::::0;2845:1;;2808:40:::1;2859:6;:19:::0;;-1:-1:-1;;;;;;2859:19:0::1;::::0;;2738:148::o;55818:500::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55907:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;55899:65;;;::::0;-1:-1:-1;;;55899:65:0;;14213:2:1;55899:65:0::1;::::0;::::1;14195:21:1::0;14252:2;14232:18;;;14225:30;14291:28;14271:18;;;14264:56;14337:18;;55899:65:0::1;14185:176:1::0;55899:65:0::1;55980:9;55975:336;55999:16;:23:::0;55995:27;::::1;55975:336;;;56071:7;-1:-1:-1::0;;;;;56048:30:0::1;:16;56065:1;56048:19;;;;;;-1:-1:-1::0;;;56048:19:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;56048:19:0::1;:30;56044:256;;;56121:16;56138:23:::0;;:27:::1;::::0;56164:1:::1;::::0;56138:27:::1;:::i;:::-;56121:45;;;;;;-1:-1:-1::0;;;56121:45:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;56099:16:::1;:19:::0;;-1:-1:-1;;;;;56121:45:0;;::::1;::::0;56116:1;;56099:19;::::1;;;-1:-1:-1::0;;;56099:19:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;56099:67:0::1;-1:-1:-1::0;;;;;56099:67:0;;::::1;;::::0;;56185:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;56185:34:0::1;::::0;;56238:16:::1;:22:::0;;;::::1;;-1:-1:-1::0;;;56238:22:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;56238:22:0;;;;;-1:-1:-1;;;;;;56238:22:0::1;::::0;;;;;55975:336:::1;55818:500:::0;:::o;56044:256::-:1;56024:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55975:336;;;;55818:500:::0;:::o;53623:385::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;53818:16:::1;;53806:8;:28;;53798:97;;;::::0;-1:-1:-1;;;53798:97:0;;12595:2:1;53798:97:0::1;::::0;::::1;12577:21:1::0;12634:2;12614:18;;;12607:30;12673:34;12653:18;;;12646:62;12744:26;12724:18;;;12717:54;12788:19;;53798:97:0::1;12567:246:1::0;53798:97:0::1;53945:16;::::0;53911:51:::1;::::0;53935:8;;53911:51:::1;::::0;;;::::1;53973:16;:27:::0;53623:385::o;48402:68::-;48439:31;48394:1;48345:2;48439:31;:::i;:::-;48402:68;:::o;8199:95::-;8246:13;8279:7;8272:14;;;;;:::i;52551:264::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;52658:13:::1;-1:-1:-1::0;;;;;52650:21:0::1;:4;-1:-1:-1::0;;;;;52650:21:0::1;;;52642:111;;;::::0;-1:-1:-1;;;52642:111:0;;10627:2:1;52642:111:0::1;::::0;::::1;10609:21:1::0;10666:2;10646:18;;;10639:30;10705:34;10685:18;;;10678:62;10776:34;10756:18;;;10749:62;-1:-1:-1;;;10827:19:1;;;10820:44;10881:19;;52642:111:0::1;10599:307:1::0;52642:111:0::1;52766:41;52795:4;52801:5;52766:28;:41::i;53467:144::-:0;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;53551:15:::1;::::0;:52:::1;::::0;-1:-1:-1;;;53551:52:0;;::::1;::::0;::::1;16557:25:1::0;;;-1:-1:-1;;;;;53551:15:0;;::::1;::::0;:36:::1;::::0;16530:18:1;;53551:52:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53467:144:::0;:::o;54752:108::-;54825:15;;:27;;;-1:-1:-1;;;54825:27:0;;;;54798:7;;-1:-1:-1;;;;;54825:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;12237:269;12330:4;12347:129;812:10;12370:7;12379:96;12418:15;12379:96;;;;;;;;;;;;;;;;;812:10;12379:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12379:34:0;;;;;;;;;;;;:38;:96::i;55150:151::-;55246:15;;:47;;-1:-1:-1;;;55246:47:0;;-1:-1:-1;;;;;4234:32:1;;;55246:47:0;;;4216:51:1;55219:7:0;;55246:15;;:38;;4189:18:1;;55246:47:0;4171:102:1;9599:175:0;9685:4;9702:42;812:10;9726:9;9737:6;9702:9;:42::i;56324:282::-;56563:15;;:35;;-1:-1:-1;;;56563:35:0;;-1:-1:-1;;;;;4234:32:1;;;56563:35:0;;;4216:51:1;56412:7:0;;;;;;;;;;;;;;;;56563:15;;;:26;;4189:18:1;;56563:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56556:42;;;;;;;;;;;;;;;;56324:282;;;;;;;;;:::o;54280:240::-;54385:15;;54347:4;;-1:-1:-1;;;;;54385:15:0;54371:10;:29;54363:78;;;;-1:-1:-1;;;54363:78:0;;7350:2:1;54363:78:0;;;7332:21:1;7389:2;7369:18;;;7362:30;7428:34;7408:18;;;7401:62;-1:-1:-1;;;7479:18:1;;;7472:34;7523:19;;54363:78:0;7322:226:1;54363:78:0;-1:-1:-1;54452:12:0;:29;;-1:-1:-1;;;;54452:29:0;-1:-1:-1;;;54452:29:0;;;;;;;;;;;54499:12;;;;;54280:240::o;53244:215::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53323:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;53322:29;53314:91;;;::::0;-1:-1:-1;;;53314:91:0;;10209:2:1;53314:91:0::1;::::0;::::1;10191:21:1::0;10248:2;10228:18;;;10221:30;10287:34;10267:18;;;10260:62;-1:-1:-1;;;10338:18:1;;;10331:47;10395:19;;53314:91:0::1;10181:239:1::0;53314:91:0::1;-1:-1:-1::0;;;;;53416:28:0::1;;::::0;;;:19:::1;:28;::::0;;;;:35;;-1:-1:-1;;53416:35:0::1;53447:4;53416:35;::::0;;53244:215::o;57304:129::-;57386:15;;:39;;;-1:-1:-1;;;57386:39:0;;;;57359:7;;-1:-1:-1;;;;;57386:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;54016:124;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;54090:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;54090:42:0;;::::1;::::0;::::1;16557:25:1::0;;;-1:-1:-1;;;;;54090:15:0;;::::1;::::0;:31:::1;::::0;16530:18:1;;54090:42:0::1;16512:76:1::0;56614:292:0;56858:15;;:40;;-1:-1:-1;;;56858:40:0;;;;;16557:25:1;;;56707:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56858:15:0;;;;:33;;16530:18:1;;56858:40:0;16512:76:1;3041:244:0;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3130:22:0;::::1;3122:73;;;::::0;-1:-1:-1;;;3122:73:0;;9043:2:1;3122:73:0::1;::::0;::::1;9025:21:1::0;9082:2;9062:18;;;9055:30;9121:34;9101:18;;;9094:62;-1:-1:-1;;;9172:18:1;;;9165:36;9218:19;;3122:73:0::1;9015:228:1::0;3122:73:0::1;3232:6;::::0;3211:38:::1;::::0;-1:-1:-1;;;;;3211:38:0;;::::1;::::0;3232:6:::1;::::0;::::1;;::::0;3211:38:::1;::::0;;;::::1;3260:6;:17:::0;;-1:-1:-1;;;;;3260:17:0;;::::1;;;-1:-1:-1::0;;;;;;3260:17:0;;::::1;::::0;;;::::1;::::0;;3041:244::o;54641:103::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;54712:14:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;54712:24:0::1;-1:-1:-1::0;;;;54712:24:0;;::::1;::::0;;;::::1;::::0;;54641:103::o;54532:97::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;54600:14:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;54600:21:0::1;-1:-1:-1::0;;;;54600:21:0;;::::1;::::0;;;::::1;::::0;;54532:97::o;41478:179::-;41536:7;;41568:5;41572:1;41568;:5;:::i;:::-;41556:17;;41597:1;41592;:6;;41584:46;;;;-1:-1:-1;;;41584:46:0;;9853:2:1;41584:46:0;;;9835:21:1;9892:2;9872:18;;;9865:30;9931:29;9911:18;;;9904:57;9978:18;;41584:46:0;9825:177:1;41584:46:0;41648:1;41478:179;-1:-1:-1;;;41478:179:0:o;15384:346::-;-1:-1:-1;;;;;15486:19:0;;15478:68;;;;-1:-1:-1;;;15478:68:0;;15379:2:1;15478:68:0;;;15361:21:1;15418:2;15398:18;;;15391:30;15457:34;15437:18;;;15430:62;-1:-1:-1;;;15508:18:1;;;15501:34;15552:19;;15478:68:0;15351:226:1;15478:68:0;-1:-1:-1;;;;;15565:21:0;;15557:68;;;;-1:-1:-1;;;15557:68:0;;9450:2:1;15557:68:0;;;9432:21:1;9489:2;9469:18;;;9462:30;9528:34;9508:18;;;9501:62;-1:-1:-1;;;9579:18:1;;;9572:32;9621:19;;15557:68:0;9422:224:1;15557:68:0;-1:-1:-1;;;;;15638:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15690:32;;16557:25:1;;;15690:32:0;;16530:18:1;15690:32:0;;;;;;;;15384:346;;;:::o;57592:3985::-;-1:-1:-1;;;;;57724:18:0;;57716:68;;;;-1:-1:-1;;;57716:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57803:16:0;;57795:64;;;;-1:-1:-1;;;57795:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57890:21:0;;;;;;:17;:21;;;;;;;;57889:22;57881:58;;;;-1:-1:-1;;;57881:58:0;;;;;;;:::i;:::-;57978:10;57960:29;;;;:17;:29;;;;;;;;57959:30;57951:66;;;;-1:-1:-1;;;57951:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58038:23:0;;;;;;:17;:23;;;;;;;;58037:24;58029:60;;;;-1:-1:-1;;;58029:60:0;;;;;;;:::i;:::-;2160:6;;-1:-1:-1;;;;;58208:15:0;;;2160:6;;;;;58208:15;;;;:32;;-1:-1:-1;2160:6:0;;-1:-1:-1;;;;;58227:13:0;;;2160:6;;;;;58227:13;;58208:32;:50;;;;-1:-1:-1;58244:14:0;;-1:-1:-1;;;58244:14:0;;;;58208:50;58205:158;;;48273:21;58281:6;:37;;58273:90;;;;-1:-1:-1;;;58273:90:0;;12186:2:1;58273:90:0;;;12168:21:1;12225:2;12205:18;;;12198:30;12264:34;12244:18;;;12237:62;-1:-1:-1;;;12315:18:1;;;12308:38;12363:19;;58273:90:0;12158:230:1;58273:90:0;58400:14;;;;;58520:301;;58640:14;;-1:-1:-1;;;58640:14:0;;;;58636:174;;-1:-1:-1;;;;;58682:39:0;;;;;;:33;:39;;;;;;;;58674:120;;;;-1:-1:-1;;;58674:120:0;;16136:2:1;58674:120:0;;;16118:21:1;16175:2;16155:18;;;16148:30;;;16214:34;16194:18;;;16187:62;16285:34;16265:18;;;16258:62;-1:-1:-1;;;16336:19:1;;;16329:35;16381:19;;58674:120:0;16108:298:1;58674:120:0;58850:13;-1:-1:-1;;;;;58842:21:0;:4;-1:-1:-1;;;;;58842:21:0;;:44;;;;58873:13;-1:-1:-1;;;;;58867:19:0;:2;-1:-1:-1;;;;;58867:19:0;;58842:44;58841:66;;;;;58891:16;58841:66;58837:330;59193:11;59189:93;;59221:28;59237:4;59243:2;59247:1;59221:15;:28::i;:::-;59264:7;57592:3985;;;:::o;59189:93::-;59299:11;;-1:-1:-1;;;59299:11:0;;;;59298:12;:45;;;;;59327:16;59298:45;:91;;;;-1:-1:-1;;;;;;59360:29:0;;;;;;:25;:29;;;;;;;;59298:91;:207;;;;-1:-1:-1;59489:15:0;;-1:-1:-1;;;;;59473:32:0;;;59489:15;;59473:32;;59298:207;:312;;;;-1:-1:-1;;;;;;59587:23:0;;;;;;:19;:23;;;;;;;;59586:24;59298:312;59294:504;;;48273:21;59683:6;:37;;59675:111;;;;-1:-1:-1;;;59675:111:0;;13783:2:1;59675:111:0;;;13765:21:1;13822:2;13802:18;;;13795:30;13861:34;13841:18;;;13834:62;13932:31;13912:18;;;13905:59;13981:19;;59675:111:0;13755:251:1;59675:111:0;59859:4;59810:28;9360:18;;;;;;;;;;;59917:23;;59893:47;;;59957:16;:40;;;;;59990:7;59957:40;:69;;;;-1:-1:-1;60014:12:0;;-1:-1:-1;;;60014:12:0;;;;59957:69;:98;;;;-1:-1:-1;60044:11:0;;-1:-1:-1;;;60044:11:0;;;;60043:12;59957:98;:147;;;;-1:-1:-1;;;;;;60073:31:0;;;;;;:25;:31;;;;;;;;60072:32;59957:147;:187;;;;-1:-1:-1;60129:15:0;;-1:-1:-1;;;;;60121:23:0;;;60129:15;;60121:23;;59957:187;:225;;;;-1:-1:-1;60167:15:0;;-1:-1:-1;;;;;60161:21:0;;;60167:15;;60161:21;;59957:225;59953:567;;;60209:11;:18;;-1:-1:-1;;;;60209:18:0;-1:-1:-1;;;60209:18:0;;;;60265:55;48439:31;48394:1;48345:2;48439:31;:::i;:::-;60265:39;:20;48394:1;60265:24;:39::i;:::-;:43;;:55::i;:::-;60244:76;;60335:28;60352:10;60335:16;:28::i;:::-;60419:4;60380:18;9360;;;;;;;;;;;60440:32;9360:18;60440:20;:32::i;:::-;-1:-1:-1;;60489:11:0;:19;;-1:-1:-1;;;;60489:19:0;;;59953:567;60532:12;60547:16;:32;;;;-1:-1:-1;60568:11:0;;-1:-1:-1;;;60568:11:0;;;;60567:12;60547:32;-1:-1:-1;;;;;60681:25:0;;;;;;:19;:25;;;;;;60532:47;;-1:-1:-1;60681:25:0;;;:52;;-1:-1:-1;;;;;;60710:23:0;;;;;;:19;:23;;;;;;;;60681:52;60677:100;;;-1:-1:-1;60760:5:0;60677:100;60793:7;60789:185;;;60817:12;60832:31;60859:3;60832:22;48439:31;48394:1;48345:2;48439:31;:::i;:::-;60832:6;;:10;:22::i;:31::-;60817:46;-1:-1:-1;60887:16:0;:6;60817:46;60887:10;:16::i;:::-;60878:25;;60920:42;60936:4;60950;60957;60920:15;:42::i;:::-;60789:185;;60986:33;61002:4;61008:2;61012:6;60986:15;:33::i;:::-;61036:15;;-1:-1:-1;;;;;61036:15:0;:26;61071:4;61078:15;61071:4;-1:-1:-1;;;;;9360:18:0;9333:7;9360:18;;;;;;;;;;;;9259:127;61078:15;61036:58;;-1:-1:-1;;;;;;61036:58:0;;;;;;;-1:-1:-1;;;;;4791:32:1;;;61036:58:0;;;4773:51:1;4840:18;;;4833:34;4746:18;;61036:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61032:74;61120:15;;-1:-1:-1;;;;;61120:15:0;:26;61155:2;61160:13;61155:2;-1:-1:-1;;;;;9360:18:0;9333:7;9360:18;;;;;;;;;;;;9259:127;61160:13;61120:54;;-1:-1:-1;;;;;;61120:54:0;;;;;;;-1:-1:-1;;;;;4791:32:1;;;61120:54:0;;;4773:51:1;4840:18;;;4833:34;4746:18;;61120:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61116:94;61227:11;;-1:-1:-1;;;61227:11:0;;;;61222:348;;61269:16;;61306:15;;:28;;-1:-1:-1;;;;;;61306:28:0;;;;;16557:25:1;;;-1:-1:-1;;;;;61306:15:0;;;;:23;;16530:18:1;;61306:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61306:28:0;;;;;;;;-1:-1:-1;;61306:28:0;;;;;;;;;;;;:::i;:::-;;;61302:257;;;;;61432:86;;;18065:25:1;;;18121:2;18106:18;;18099:34;;;18149:18;;;18142:34;;;18207:2;18192:18;;18185:34;;;61508:9:0;;61497:4;;61432:86;;18052:3:1;18037:19;61432:86:0;;;;;;;61335:199;;;61302:257;61222:348;;57592:3985;;;;;;;:::o;44305:166::-;44391:7;44427:12;44419:6;;;;44411:29;;;;-1:-1:-1;;;44411:29:0;;;;;;;;:::i;:::-;-1:-1:-1;44458:5:0;44462:1;44458;:5;:::i;:::-;44451:12;44305:166;-1:-1:-1;;;;44305:166:0:o;52823:411::-;-1:-1:-1;;;;;52914:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;52906:121;;;;-1:-1:-1;;;52906:121:0;;7755:2:1;52906:121:0;;;7737:21:1;7794:2;7774:18;;;7767:30;;;7833:34;7813:18;;;7806:62;7904:34;7884:18;;;7877:62;-1:-1:-1;;;7955:19:1;;;7948:35;8000:19;;52906:121:0;7727:298:1;52906:121:0;-1:-1:-1;;;;;53038:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;53038:39:0;;;;;;;;;;;;53090:79;;53115:15;;:42;;-1:-1:-1;;;53115:42:0;;-1:-1:-1;;;;;4234:32:1;;;53115:42:0;;;4216:51:1;53115:15:0;;;;:36;;4189:18:1;;53115:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53090:79;53186:40;;;;;;-1:-1:-1;;;;;53186:40:0;;;;;;;;52823:411;;:::o;12996:539::-;-1:-1:-1;;;;;13102:20:0;;13094:70;;;;-1:-1:-1;;;13094:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13183:23:0;;13175:71;;;;-1:-1:-1;;;13175:71:0;;;;;;;:::i;:::-;13339;13361:6;13339:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13339:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13319:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13444:20;;;;;;;:32;;13469:6;13444:24;:32::i;:::-;-1:-1:-1;;;;;13421:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13492:35;16557:25:1;;;13421:20:0;;13492:35;;;;;;16530:18:1;13492:35:0;16512:76:1;42357:220:0;42415:7;42439:6;42435:20;;-1:-1:-1;42454:1:0;42447:8;;42435:20;42466:9;42478:5;42482:1;42478;:5;:::i;:::-;42466:17;-1:-1:-1;42511:1:0;42502:5;42506:1;42466:17;42502:5;:::i;:::-;:10;42494:56;;;;-1:-1:-1;;;42494:56:0;;13020:2:1;42494:56:0;;;13002:21:1;13059:2;13039:18;;;13032:30;13098:34;13078:18;;;13071:62;-1:-1:-1;;;13149:18:1;;;13142:31;13190:19;;42494:56:0;12992:223:1;43055:153:0;43113:7;43145:1;43141;:5;43133:44;;;;-1:-1:-1;;;43133:44:0;;11831:2:1;43133:44:0;;;11813:21:1;11870:2;11850:18;;;11843:30;11909:28;11889:18;;;11882:56;11955:18;;43133:44:0;11803:176:1;43133:44:0;43195:5;43199:1;43195;:5;:::i;61585:881::-;61669:6;61978:21;62044:30;61669:6;62044:16;:30::i;:::-;62201:18;62222:41;:21;62248:14;62222:25;:41::i;:::-;62324:16;;62352:44;;62201:62;;-1:-1:-1;;;;;;62324:16:0;;;;62352:44;;;;;62201:62;;62274:39;62352:44;62274:39;62352:44;62201:62;62324:16;62352:44;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62422:36:0;;;17755:25:1;;;17811:2;17796:18;;17789:34;;;62422:36:0;;17728:18:1;62422:36:0;;;;;;;61585:881;;;;;:::o;63159:452::-;63224:49;63251:6;63267:4;63224:26;:49::i;:::-;63311:14;;63304:47;;-1:-1:-1;;;63304:47:0;;63345:4;63304:47;;;4216:51:1;63284:17:0;;-1:-1:-1;;;;;63311:14:0;;63304:32;;4189:18:1;;63304:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63384:14;;63417:15;;63377:68;;-1:-1:-1;;;63377:68:0;;-1:-1:-1;;;;;63417:15:0;;;63377:68;;;4773:51:1;4840:18;;;4833:34;;;63284:67:0;;-1:-1:-1;63362:12:0;;63384:14;;;63377:31;;4746:18:1;;63377:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63362:83;;63470:7;63466:138;;;63494:15;;:46;;-1:-1:-1;;;63494:46:0;;;;;16557:25:1;;;-1:-1:-1;;;;;63494:15:0;;;;:35;;16530:18:1;;63494:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63560:32:0;;;17755:25:1;;;17811:2;17796:18;;17789:34;;;63560:32:0;;-1:-1:-1;17728:18:1;;-1:-1:-1;63560:32:0;;;;;;;63466:138;63159:452;;;:::o;41940:158::-;41998:7;42031:1;42026;:6;;42018:49;;;;-1:-1:-1;;;42018:49:0;;11113:2:1;42018:49:0;;;11095:21:1;11152:2;11132:18;;;11125:30;11191:32;11171:18;;;11164:60;11241:18;;42018:49:0;11085:180:1;42018:49:0;42085:5;42089:1;42085;:5;:::i;63619:589::-;63769:16;;;63783:1;63769:16;;;;;;;;63745:21;;63769:16;;;;;;;;;;-1:-1:-1;63769:16:0;63745:40;;63814:4;63796;63801:1;63796:7;;;;;;-1:-1:-1;;;63796:7:0;;;;;;;;;-1:-1:-1;;;;;63796:23:0;;;:7;;;;;;;;;;:23;;;;63840:15;;:22;;;-1:-1:-1;;;63840:22:0;;;;:15;;;;;:20;;:22;;;;;63796:7;;63840:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63830:4;63835:1;63830:7;;;;;;-1:-1:-1;;;63830:7:0;;;;;;;;;-1:-1:-1;;;;;63830:32:0;;;:7;;;;;;;;;:32;63907:15;;63875:62;;63892:4;;63907:15;63925:11;63875:8;:62::i;:::-;63976:15;;:224;;-1:-1:-1;;;63976:224:0;;-1:-1:-1;;;;;63976:15:0;;;;:66;;:224;;64057:11;;63976:15;;64127:4;;64154;;64174:15;;63976:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63619:589;;:::o;62474:672::-;62652:16;;;62666:1;62652:16;;;;;;;;;62628:21;;62652:16;;;;;;;;;;-1:-1:-1;62652:16:0;62628:40;;62697:4;62679;62684:1;62679:7;;;;;;-1:-1:-1;;;62679:7:0;;;;;;;;;-1:-1:-1;;;;;62679:23:0;;;:7;;;;;;;;;;:23;;;;62723:15;;:22;;;-1:-1:-1;;;62723:22:0;;;;:15;;;;;:20;;:22;;;;;62679:7;;62723:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62713:4;62718:1;62713:7;;;;;;-1:-1:-1;;;62713:7:0;;;;;;;;;-1:-1:-1;;;;;62713:32:0;;;:7;;;;;;;;;:32;62766:14;;62756:7;;62766:14;;;62756:4;;62761:1;;62756:7;;;;-1:-1:-1;;;62756:7:0;;;;;;;;;-1:-1:-1;;;;;62756:24:0;;;:7;;;;;;;;;:24;62825:15;;62793:62;;62810:4;;62825:15;62843:11;62793:8;:62::i;:::-;62894:15;;:234;;-1:-1:-1;;;62894:234:0;;-1:-1:-1;;;;;62894:15:0;;;;:69;;:234;;62978:11;;62894:15;;63059:4;;63078:9;;63102:15;;62894:234;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:257:1;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;542:398::-;610:6;618;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;736:9;723:23;755:31;780:5;755:31;:::i;:::-;805:5;-1:-1:-1;862:2:1;847:18;;834:32;875:33;834:32;875:33;:::i;:::-;927:7;917:17;;;629:311;;;;;:::o;945:466::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:2;;;1112:6;1104;1097:22;1059:2;1156:9;1143:23;1175:31;1200:5;1175:31;:::i;:::-;1225:5;-1:-1:-1;1282:2:1;1267:18;;1254:32;1295:33;1254:32;1295:33;:::i;:::-;1049:362;;1347:7;;-1:-1:-1;;;1401:2:1;1386:18;;;;1373:32;;1049:362::o;1416:392::-;1481:6;1489;1542:2;1530:9;1521:7;1517:23;1513:32;1510:2;;;1563:6;1555;1548:22;1510:2;1607:9;1594:23;1626:31;1651:5;1626:31;:::i;:::-;1676:5;-1:-1:-1;1733:2:1;1718:18;;1705:32;1746:30;1705:32;1746:30;:::i;1813:691::-;1944:6;1952;1960;1968;1976;1984;1992;2000;2053:3;2041:9;2032:7;2028:23;2024:33;2021:2;;;2075:6;2067;2060:22;2021:2;2112:9;2106:16;2131:31;2156:5;2131:31;:::i;:::-;2181:5;2171:15;;;2226:2;2215:9;2211:18;2205:25;2195:35;;2270:2;2259:9;2255:18;2249:25;2239:35;;2314:2;2303:9;2299:18;2293:25;2283:35;;2358:3;2347:9;2343:19;2337:26;2327:36;;2403:3;2392:9;2388:19;2382:26;2372:36;;2448:3;2437:9;2433:19;2427:26;2417:36;;2493:3;2482:9;2478:19;2472:26;2462:36;;2011:493;;;;;;;;;;;:::o;2509:325::-;2577:6;2585;2638:2;2626:9;2617:7;2613:23;2609:32;2606:2;;;2659:6;2651;2644:22;2606:2;2703:9;2690:23;2722:31;2747:5;2722:31;:::i;:::-;2772:5;2824:2;2809:18;;;;2796:32;;-1:-1:-1;;;2596:238:1:o;2839:251::-;2895:6;2948:2;2936:9;2927:7;2923:23;2919:32;2916:2;;;2969:6;2961;2954:22;2916:2;3013:9;3000:23;3032:28;3054:5;3032:28;:::i;3095:255::-;3162:6;3215:2;3203:9;3194:7;3190:23;3186:32;3183:2;;;3236:6;3228;3221:22;3183:2;3273:9;3267:16;3292:28;3314:5;3292:28;:::i;3355:190::-;3414:6;3467:2;3455:9;3446:7;3442:23;3438:32;3435:2;;;3488:6;3480;3473:22;3435:2;-1:-1:-1;3516:23:1;;3425:120;-1:-1:-1;3425:120:1:o;3550:194::-;3620:6;3673:2;3661:9;3652:7;3648:23;3644:32;3641:2;;;3694:6;3686;3679:22;3641:2;-1:-1:-1;3722:16:1;;3631:113;-1:-1:-1;3631:113:1:o;3749:316::-;3837:6;3845;3853;3906:2;3894:9;3885:7;3881:23;3877:32;3874:2;;;3927:6;3919;3912:22;3874:2;3961:9;3955:16;3945:26;;4011:2;4000:9;3996:18;3990:25;3980:35;;4055:2;4044:9;4040:18;4034:25;4024:35;;3864:201;;;;;:::o;6540:603::-;6652:4;6681:2;6710;6699:9;6692:21;6742:6;6736:13;6785:6;6780:2;6769:9;6765:18;6758:34;6810:4;6823:140;6837:6;6834:1;6831:13;6823:140;;;6932:14;;;6928:23;;6922:30;6898:17;;;6917:2;6894:26;6887:66;6852:10;;6823:140;;;6981:6;6978:1;6975:13;6972:2;;;7051:4;7046:2;7037:6;7026:9;7022:22;7018:31;7011:45;6972:2;-1:-1:-1;7127:2:1;7106:15;-1:-1:-1;;7102:29:1;7087:45;;;;7134:2;7083:54;;6661:482;-1:-1:-1;;;6661:482:1:o;8030:399::-;8232:2;8214:21;;;8271:2;8251:18;;;8244:30;8310:34;8305:2;8290:18;;8283:62;-1:-1:-1;;;8376:2:1;8361:18;;8354:33;8419:3;8404:19;;8204:225::o;13220:356::-;13422:2;13404:21;;;13441:18;;;13434:30;13500:34;13495:2;13480:18;;13473:62;13567:2;13552:18;;13394:182::o;14771:401::-;14973:2;14955:21;;;15012:2;14992:18;;;14985:30;15051:34;15046:2;15031:18;;15024:62;-1:-1:-1;;;15117:2:1;15102:18;;15095:35;15162:3;15147:19;;14945:227::o;15582:347::-;15784:2;15766:21;;;15823:2;15803:18;;;15796:30;15862:25;15857:2;15842:18;;15835:53;15920:2;15905:18;;15756:173::o;16593:983::-;16855:4;16903:3;16892:9;16888:19;16934:6;16923:9;16916:25;16960:2;16998:6;16993:2;16982:9;16978:18;16971:34;17041:3;17036:2;17025:9;17021:18;17014:31;17065:6;17100;17094:13;17131:6;17123;17116:22;17169:3;17158:9;17154:19;17147:26;;17208:2;17200:6;17196:15;17182:29;;17229:4;17242:195;17256:6;17253:1;17250:13;17242:195;;;17321:13;;-1:-1:-1;;;;;17317:39:1;17305:52;;17412:15;;;;17377:12;;;;17353:1;17271:9;17242:195;;;-1:-1:-1;;;;;;;17493:32:1;;;;17488:2;17473:18;;17466:60;-1:-1:-1;;;17557:3:1;17542:19;17535:35;17454:3;16864:712;-1:-1:-1;;;16864:712:1:o;18419:128::-;18459:3;18490:1;18486:6;18483:1;18480:13;18477:2;;;18496:18;;:::i;:::-;-1:-1:-1;18532:9:1;;18467:80::o;18552:217::-;18592:1;18618;18608:2;;-1:-1:-1;;;18643:31:1;;18697:4;18694:1;18687:15;18725:4;18650:1;18715:15;18608:2;-1:-1:-1;18754:9:1;;18598:171::o;18774:168::-;18814:7;18880:1;18876;18872:6;18868:14;18865:1;18862:21;18857:1;18850:9;18843:17;18839:45;18836:2;;;18887:18;;:::i;:::-;-1:-1:-1;18927:9:1;;18826:116::o;18947:125::-;18987:4;19015:1;19012;19009:8;19006:2;;;19020:18;;:::i;:::-;-1:-1:-1;19057:9:1;;18996:76::o;19077:380::-;19156:1;19152:12;;;;19199;;;19220:2;;19274:4;19266:6;19262:17;19252:27;;19220:2;19327;19319:6;19316:14;19296:18;19293:38;19290:2;;;19373:10;19368:3;19364:20;19361:1;19354:31;19408:4;19405:1;19398:15;19436:4;19433:1;19426:15;19290:2;;19132:325;;;:::o;19462:135::-;19501:3;-1:-1:-1;;19522:17:1;;19519:2;;;19542:18;;:::i;:::-;-1:-1:-1;19589:1:1;19578:13;;19509:88::o;19602:127::-;19663:10;19658:3;19654:20;19651:1;19644:31;19694:4;19691:1;19684:15;19718:4;19715:1;19708:15;19734:131;-1:-1:-1;;;;;19809:31:1;;19799:42;;19789:2;;19855:1;19852;19845:12;19870:118;19956:5;19949:13;19942:21;19935:5;19932:32;19922:2;;19978:1;19975;19968:12

Swarm Source

ipfs://9b7252d92738756596cb61fa8c2f50eb2d42c4f7d012ff5513f2c4da37d97873
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.