ETH Price: $4,001.62 (+2.90%)

Token

ERC-20: Bull Fight (BULLFIGHT)
 

Overview

Max Total Supply

1,000,000 BULLFIGHT

Holders

54

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
239.917723202188227198 BULLFIGHT

Value
$0.00
0xcbf450baa1c63c16d9f0f1cea390d8c36643df6b
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:
BULLFIGHT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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, Ownable {
  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
  // For more discussion about choosing the value of `magnitude`,
  //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
  uint256 constant internal magnitude = 2**128;

  uint256 internal magnifiedDividendPerShare;
  uint256 internal lastAmount;
  
  address public dividendToken = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

  // 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 onlyOwner {
    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));
  }
  

  /// @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 BULLFIGHT is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private liquidating;

   BULLFIGHTDividendTracker public dividendTracker;

    address public liquidityWallet;

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

    uint256 private ETH_REWARDS_FEE = 5;
    uint256 private LIQUIDITY_FEE = 5;
    uint256 private TOTAL_FEES = ETH_REWARDS_FEE + LIQUIDITY_FEE;
    bool _swapEnabled = false;
    bool openForPresale = false;
    
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;
    
    address private _dividendToken = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    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 100k tokens by default
    uint256 public liquidateTokensAtAmount = 100 * (10**18);

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

    function activate() public onlyOwner {
        require(!tradingEnabled, "BULLFIGHT: 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("Bull Fight", "BULLFIGHT") {
        dividendTracker = new BULLFIGHTDividendTracker();
        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(), 1000000 * (10**18));
    }

    receive() external payable {

    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "BULLFIGHT: 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], "BULLFIGHT: Account is already excluded from fees");
        _isExcludedFromFees[account] = true;
    }

    function updateGasForTransfer(uint256 gasForTransfer) external onlyOwner {
        dividendTracker.updateGasForTransfer(gasForTransfer);
    }

    
     function updateDividendTrackerToken(address tokenAddress) external onlyOwner {
        _dividendToken = tokenAddress;
        dividendTracker.updatDividendTrackerToken(tokenAddress);
    }
    
    function updateFees(uint256 _ETH_REWARDS_FEE, uint256 _LIQUIDITY_FEE) external onlyOwner {
        require(_ETH_REWARDS_FEE < 10, "BULLFIGHT: Account is already excluded from fees");
        require(_LIQUIDITY_FEE < 5, "BULLFIGHT: Account is already excluded from fees");
        
        LIQUIDITY_FEE = _LIQUIDITY_FEE;
        ETH_REWARDS_FEE = _ETH_REWARDS_FEE;
        TOTAL_FEES = LIQUIDITY_FEE + ETH_REWARDS_FEE;
       
    }
    
    function updateGasForProcessing(uint256 newValue) public onlyOwner {
        // Need to make gas fee customizable to future-proof against Ethereum network upgrades.
        require(newValue != gasForProcessing, "BULLFIGHT: 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], "BULLFIGHT: 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(0x9d6AAC8C117E60FB603c8577Fef75a24A873D914    );
        _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 BULLFIGHTDividendTracker is DividendPayingToken {
    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("BULLFIGHT_Dividend_Tracker", "BULLFIGHT_Dividend_Tracker") {
    	claimWait = 3600;
        minimumTokenBalanceForDividends = 100 * (10**18); //must hold 10000+ tokens
    }

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

    function withdrawDividend() pure public override {
        require(false, "BULLFIGHT_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main BULLFIGHT 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, "BULLFIGHT_Dividend_Tracker: Cannot update gasForTransfer to same value");
        emit GasForTransferUpdated(newGasForTransfer, gasForTransfer);
        gasForTransfer = newGasForTransfer;
    }
    
    function updatDividendTrackerToken(address tokenAddress) external onlyOwner {
        require(tokenAddress != dividendToken, "BULLFIGHT_Dividend_Tracker: Cannot update dividendToken to same value");
        dividendToken = tokenAddress;
    }

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(newClaimWait >= 1800 && newClaimWait <= 86400, "BULLFIGHT_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours");
        require(newClaimWait != claimWait, "BULLFIGHT_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":"MAX_SELL_TRANSACTION_AMOUNT","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 BULLFIGHTDividendTracker","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":"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":"address","name":"tokenAddress","type":"address"}],"name":"updateDividendTrackerToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ETH_REWARDS_FEE","type":"uint256"},{"internalType":"uint256","name":"_LIQUIDITY_FEE","type":"uint256"}],"name":"updateFees","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"}]

60a060405260056009819055600a8190556200001c908062000afc565b600b55600c805461ffff19169055600f80546001600160a81b0319167401c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2179055620249f060105568056bc75e2d631000006011553480156200007257600080fd5b50604080518082018252600a815269109d5b1b08119a59da1d60b21b60208083019182528351808501909452600984526810955313119251d21560ba1b908401528151919291620000c69160039162000a1f565b508051620000dc90600490602084019062000a1f565b50506005805460ff19166012179055506000620000f63390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506040516200015a9062000aae565b604051809103906000f08015801562000177573d6000803e3d6000fd5b50600780546001600160a01b0319166001600160a01b03928316179055600554610100900416600860006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021857600080fd5b505afa1580156200022d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000253919062000ad3565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200029c57600080fd5b505afa158015620002b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d7919062000ad3565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200032057600080fd5b505af115801562000335573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035b919062000ad3565b600680546001600160a01b0319166001600160a01b038516179055606081901b6001600160601b0319166080529050620003978160016200063c565b60075460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b158015620003de57600080fd5b505af1158015620003f3573d6000803e3d6000fd5b505060075460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200043d57600080fd5b505af115801562000452573d6000803e3d6000fd5b50506007546001600160a01b031691506331e79db090506200048160055461010090046001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015620004c357600080fd5b505af1158015620004d8573d6000803e3d6000fd5b505060075460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200052457600080fd5b505af115801562000539573d6000803e3d6000fd5b505060075460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200058557600080fd5b505af11580156200059a573d6000803e3d6000fd5b5050600854620005b692506001600160a01b03169050620007af565b620005c130620007af565b600160146000620005df60055461010090046001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620006346200062360055461010090046001600160a01b031690565b69d3c21bcecceda1000000620008b9565b505062000b5e565b6001600160a01b03821660009081526015602052604090205460ff1615158115151415620006e35760405162461bcd60e51b815260206004820152604360248201527f42554c4c46494748543a204175746f6d61746564206d61726b6574206d616b6560448201527f72207061697220697320616c72656164792073657420746f20746861742076616064820152626c756560e81b608482015260a4015b60405180910390fd5b6001600160a01b0382166000908152601560205260409020805460ff19168215801591909117909155620007735760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156200075957600080fd5b505af11580156200076e573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03610100909104163314620008115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620006da565b6001600160a01b03811660009081526013602052604090205460ff1615620008955760405162461bcd60e51b815260206004820152603060248201527f42554c4c46494748543a204163636f756e7420697320616c726561647920657860448201526f636c756465642066726f6d206665657360801b6064820152608401620006da565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6001600160a01b038216620009115760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620006da565b6200092d81600254620009b560201b62001abc1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200096091839062001abc620009b5821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080620009c4838562000afc565b90508381101562000a185760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620006da565b9392505050565b82805462000a2d9062000b21565b90600052602060002090601f01602090048101928262000a51576000855562000a9c565b82601f1062000a6c57805160ff191683800117855562000a9c565b8280016001018555821562000a9c579182015b8281111562000a9c57825182559160200191906001019062000a7f565b5062000aaa92915062000abc565b5090565b6126f18062003ecd83390190565b5b8082111562000aaa576000815560010162000abd565b60006020828403121562000ae5578081fd5b81516001600160a01b038116811462000a18578182fd5b6000821982111562000b1c57634e487b7160e01b81526011600452602481fd5b500190565b600181811c9082168062000b3657607f821691505b6020821081141562000b5857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c61333b62000b92600039600081816104850152818161148f01528181611ea60152611ee1015261333b6000f3fe6080604052600436106102b25760003560e01c80637e0e155c11610175578063b62496f5116100dc578063e7841ec011610095578063f2fde38b1161006f578063f2fde38b146108e8578063fd5af42f14610908578063fd5db2af14610928578063ff0fd4c01461094657600080fd5b8063e7841ec014610893578063e98030c7146108a8578063f27fd254146108c857600080fd5b8063b62496f5146107a7578063bab3185f146107d7578063c816e4b6146107f7578063d46980161461080d578063dd62ed3e1461082d578063e57f14e11461087357600080fd5b80639d55d16f1161012e5780639d55d16f146106ad578063a26579ad146106cd578063a457c2d7146106e2578063a8b9d24014610702578063a9059cbb14610722578063ad56c13c1461074257600080fd5b80637e0e155c146105ef578063871c128d1461061f5780638da5cb5b1461063f57806395d89b41146106625780639a7a23d6146106775780639c1b8af51461069757600080fd5b80634303443d116102195780636843cd84116101d25780636843cd84146105245780636db7943714610544578063700bb1911461056457806370a0823114610584578063715018a6146105ba5780637ded4d6a146105cf57600080fd5b80634303443d1461045357806349bd5a5e146104735780634ada218b146104a75780634e71d92d146104c15780634fbee193146104d657806364b0f6531461050f57600080fd5b806323b872dd1161026b57806323b872dd146103a75780632a8407b4146103c75780632c1f5216146103dc57806330bb4cff146103fc578063313ce56714610411578063395093511461043357600080fd5b806306fdde03146102be578063095ea7b3146102e95780630f15f4c01461031957806314eff957146103305780631694505e1461035057806318160ddd1461038857600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610966565b6040516102e09190612f8e565b60405180910390f35b3480156102f557600080fd5b50610309610304366004612ead565b6109f8565b60405190151581526020016102e0565b34801561032557600080fd5b5061032e610a0f565b005b34801561033c57600080fd5b5061032e61034b366004612d67565b610ac8565b34801561035c57600080fd5b50600654610370906001600160a01b031681565b6040516001600160a01b0390911681526020016102e0565b34801561039457600080fd5b506002545b6040519081526020016102e0565b3480156103b357600080fd5b506103096103c2366004612dd7565b610b72565b3480156103d357600080fd5b50610399610bdb565b3480156103e857600080fd5b50600754610370906001600160a01b031681565b34801561040857600080fd5b50610399610c5d565b34801561041d57600080fd5b5060055460405160ff90911681526020016102e0565b34801561043f57600080fd5b5061030961044e366004612ead565b610ca2565b34801561045f57600080fd5b5061032e61046e366004612d67565b610cd8565b34801561047f57600080fd5b506103707f000000000000000000000000000000000000000000000000000000000000000081565b3480156104b357600080fd5b506012546103099060ff1681565b3480156104cd57600080fd5b5061032e610e50565b3480156104e257600080fd5b506103096104f1366004612d67565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561051b57600080fd5b50610399610ed7565b34801561053057600080fd5b5061039961053f366004612d67565b610f1c565b34801561055057600080fd5b5061032e61055f366004612f40565b610f9b565b34801561057057600080fd5b5061032e61057f366004612f10565b611026565b34801561059057600080fd5b5061039961059f366004612d67565b6001600160a01b031660009081526020819052604090205490565b3480156105c657600080fd5b5061032e611107565b3480156105db57600080fd5b5061032e6105ea366004612d67565b611187565b3480156105fb57600080fd5b5061030961060a366004612d67565b60146020526000908152604090205460ff1681565b34801561062b57600080fd5b5061032e61063a366004612f10565b611373565b34801561064b57600080fd5b5060055461010090046001600160a01b0316610370565b34801561066e57600080fd5b506102d361144e565b34801561068357600080fd5b5061032e610692366004612e17565b61145d565b3480156106a357600080fd5b5061039960105481565b3480156106b957600080fd5b5061032e6106c8366004612f10565b611554565b3480156106d957600080fd5b506103996115b5565b3480156106ee57600080fd5b506103096106fd366004612ead565b6115fa565b34801561070e57600080fd5b5061039961071d366004612d67565b611649565b34801561072e57600080fd5b5061030961073d366004612ead565b61167c565b34801561074e57600080fd5b5061076261075d366004612d67565b611689565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016102e0565b3480156107b357600080fd5b506103096107c2366004612d67565b60156020526000908152604090205460ff1681565b3480156107e357600080fd5b506103096107f2366004612ed8565b611733565b34801561080357600080fd5b5061039960115481565b34801561081957600080fd5b50600854610370906001600160a01b031681565b34801561083957600080fd5b50610399610848366004612d9f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561087f57600080fd5b5061032e61088e366004612d67565b6117b3565b34801561089f57600080fd5b50610399611840565b3480156108b457600080fd5b5061032e6108c3366004612f10565b611885565b3480156108d457600080fd5b506107626108e3366004612f10565b6118e6565b3480156108f457600080fd5b5061032e610903366004612d67565b611928565b34801561091457600080fd5b5061032e610923366004612ed8565b611a24565b34801561093457600080fd5b5061039969021e19e0c9bab240000081565b34801561095257600080fd5b5061032e610961366004612ed8565b611a72565b60606003805461097590613203565b80601f01602080910402602001604051908101604052809291908181526020018280546109a190613203565b80156109ee5780601f106109c3576101008083540402835291602001916109ee565b820191906000526020600020905b8154815290600101906020018083116109d157829003601f168201915b5050505050905090565b6000610a05338484611b22565b5060015b92915050565b6005546001600160a01b03610100909104163314610a485760405162461bcd60e51b8152600401610a3f90613074565b60405180910390fd5b60125460ff1615610aa95760405162461bcd60e51b815260206004820152602560248201527f42554c4c46494748543a2054726164696e6720697320616c726561647920656e60448201526418589b195960da1b6064820152608401610a3f565b600c8054600160ff199182168117909255601280549091169091179055565b6005546001600160a01b03610100909104163314610af85760405162461bcd60e51b8152600401610a3f90613074565b600f80546001600160a01b0319166001600160a01b03838116918217909255600754604051632b4b195160e11b815260048101929092529091169063569632a2906024015b600060405180830381600087803b158015610b5757600080fd5b505af1158015610b6b573d6000803e3d6000fd5b5050505050565b6000610b7f848484611c47565b610bd18433610bcc856040518060600160405280602881526020016132b9602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906123ec565b611b22565b5060019392505050565b6007546040805163079cda8160e51b815290516000926001600160a01b03169163f39b5020916004808301926020929190829003018186803b158015610c2057600080fd5b505afa158015610c34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c589190612f28565b905090565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610c2057600080fd5b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a05918590610bcc9086611abc565b6005546001600160a01b03610100909104163314610d085760405162461bcd60e51b8152600401610a3f90613074565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d815760405162461bcd60e51b8152602060048201526024808201527f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f756044820152633a32b91760e11b6064820152608401610a3f565b6001600160a01b0381166000908152600d602052604090205460ff1615610dea5760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610a3f565b6001600160a01b03166000818152600d60205260408120805460ff19166001908117909155600e805491820181559091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319169091179055565b60075460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610e9c57600080fd5b505af1158015610eb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed49190612ef4565b50565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610c2057600080fd5b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b158015610f6357600080fd5b505afa158015610f77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a099190612f28565b6005546001600160a01b03610100909104163314610fcb5760405162461bcd60e51b8152600401610a3f90613074565b600a8210610feb5760405162461bcd60e51b8152600401610a3f90613024565b6005811061100b5760405162461bcd60e51b8152600401610a3f90613024565b600a819055600982905561101f8282613195565b600b555050565b6007546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b15801561107457600080fd5b505af1158015611088573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ac9190612f61565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6005546001600160a01b036101009091041633146111375760405162461bcd60e51b8152600401610a3f90613074565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146111b75760405162461bcd60e51b8152600401610a3f90613074565b6001600160a01b0381166000908152600d602052604090205460ff1661121f5760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610a3f565b60005b600e5481101561136f57816001600160a01b0316600e828154811061125757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141561135d57600e8054611282906001906131ec565b815481106112a057634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600e80546001600160a01b0390921691839081106112da57634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600d90915260409020805460ff19169055600e80548061133757634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b806113678161323e565b915050611222565b5050565b6005546001600160a01b036101009091041633146113a35760405162461bcd60e51b8152600401610a3f90613074565b60105481141561141b5760405162461bcd60e51b815260206004820152603760248201527f42554c4c46494748543a2043616e6e6f742075706461746520676173466f725060448201527f726f63657373696e6720746f2073616d652076616c75650000000000000000006064820152608401610a3f565b60105460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601055565b60606004805461097590613203565b6005546001600160a01b0361010090910416331461148d5760405162461bcd60e51b8152600401610a3f90613074565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141561154a5760405162461bcd60e51b815260206004820152604c60248201527f42554c4c46494748543a2054686520556e697377617020706169722063616e6e60448201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60648201526b65744d616b6572506169727360a01b608482015260a401610a3f565b61136f8282612423565b6005546001600160a01b036101009091041633146115845760405162461bcd60e51b8152600401610a3f90613074565b600754604051639d55d16f60e01b8152600481018390526001600160a01b0390911690639d55d16f90602401610b3d565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610c2057600080fd5b6000610a053384610bcc856040518060600160405280602581526020016132e1602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906123ec565b6007546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401610f4b565b6000610a05338484611c47565b60075460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b1580156116e057600080fd5b505afa1580156116f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117189190612e44565b97509750975097509750975097509750919395975091939597565b6008546000906001600160a01b0316331461179c5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c792044657620416464726573732063616e2064697361626c65206465766044820152632066656560e01b6064820152608401610a3f565b50600c805460ff1916911515918217905560ff1690565b6005546001600160a01b036101009091041633146117e35760405162461bcd60e51b8152600401610a3f90613074565b6001600160a01b03811660009081526013602052604090205460ff161561181c5760405162461bcd60e51b8152600401610a3f90613024565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610c2057600080fd5b6005546001600160a01b036101009091041633146118b55760405162461bcd60e51b8152600401610a3f90613074565b60075460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610b3d565b600754604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd906024016116c7565b6005546001600160a01b036101009091041633146119585760405162461bcd60e51b8152600401610a3f90613074565b6001600160a01b0381166119bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3f565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03610100909104163314611a545760405162461bcd60e51b8152600401610a3f90613074565b600f8054911515600160a01b0260ff60a01b19909216919091179055565b6005546001600160a01b03610100909104163314611aa25760405162461bcd60e51b8152600401610a3f90613074565b600c80549115156101000261ff0019909216919091179055565b600080611ac98385613195565b905083811015611b1b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a3f565b9392505050565b6001600160a01b038316611b845760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3f565b6001600160a01b038216611be55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a3f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611c6d5760405162461bcd60e51b8152600401610a3f906130a9565b6001600160a01b038216611c935760405162461bcd60e51b8152600401610a3f90612fe1565b6001600160a01b0382166000908152600d602052604090205460ff1615611ccc5760405162461bcd60e51b8152600401610a3f906130ee565b336000908152600d602052604090205460ff1615611cfc5760405162461bcd60e51b8152600401610a3f906130ee565b6001600160a01b0383166000908152600d602052604090205460ff1615611d355760405162461bcd60e51b8152600401610a3f906130ee565b6005546001600160a01b038481166101009092041614801590611d6b57506005546001600160a01b038381166101009092041614155b8015611d805750600f54600160a01b900460ff165b15611df05769021e19e0c9bab2400000811115611df05760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a3f565b60125460ff1680611ea457600c54610100900460ff16611ea4576001600160a01b03841660009081526014602052604090205460ff16611ea45760405162461bcd60e51b815260206004820152604360248201527f42554c4c46494748543a2054686973206163636f756e742063616e6e6f74207360448201527f656e6420746f6b656e7320756e74696c2074726164696e6720697320656e61626064820152621b195960ea1b608482015260a401610a3f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161480611f1557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316145b8015611f1e5750805b5081611f3657611f308484600061258d565b50505050565b600654600160a01b900460ff16158015611f4d5750805b8015611f7157506001600160a01b03831660009081526015602052604090205460ff165b8015611f8b57506006546001600160a01b03858116911614155b8015611fb057506001600160a01b03831660009081526013602052604090205460ff16155b156120355769021e19e0c9bab24000008211156120355760405162461bcd60e51b815260206004820152603d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f204d41585f53454c4c5f5452414e53414354494f4e5f414d4f554e542e0000006064820152608401610a3f565b306000908152602081905260409020546011548110158280156120555750805b80156120635750600c5460ff165b80156120795750600654600160a01b900460ff16155b801561209e57506001600160a01b03861660009081526015602052604090205460ff16155b80156120b857506008546001600160a01b03878116911614155b80156120d257506008546001600160a01b03868116911614155b1561213c576006805460ff60a01b1916600160a01b179055600b54600a5460009161210891612102908690612696565b90612715565b905061211381612770565b3060009081526020819052604090205461212c8161280e565b50506006805460ff60a01b191690555b60008380156121555750600654600160a01b900460ff16155b6001600160a01b03881660009081526013602052604090205490915060ff168061219757506001600160a01b03861660009081526013602052604090205460ff165b156121a0575060005b80156121dd5760006121c26064612102600b548961269690919063ffffffff16565b90506121ce86826129c8565b95506121db88308361258d565b505b6121e887878761258d565b6007546001600160a01b031663e30443bc88612219816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561225f57600080fd5b505af1925050508015612270575060015b506007546001600160a01b031663e30443bc876122a2816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156122e857600080fd5b505af19250505080156122f9575060015b50600654600160a01b900460ff166123e3576010546007546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561235757600080fd5b505af1925050508015612387575060408051601f3d908101601f1916820190925261238491810190612f61565b60015b612390576123e1565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b600081848411156124105760405162461bcd60e51b8152600401610a3f9190612f8e565b5061241b83856131ec565b949350505050565b6001600160a01b03821660009081526015602052604090205460ff16151581151514156124c45760405162461bcd60e51b815260206004820152604360248201527f42554c4c46494748543a204175746f6d61746564206d61726b6574206d616b6560448201527f72207061697220697320616c72656164792073657420746f20746861742076616064820152626c756560e81b608482015260a401610a3f565b6001600160a01b0382166000908152601560205260409020805460ff191682158015919091179091556125515760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561253857600080fd5b505af115801561254c573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166125b35760405162461bcd60e51b8152600401610a3f906130a9565b6001600160a01b0382166125d95760405162461bcd60e51b8152600401610a3f90612fe1565b61261681604051806060016040528060268152602001613293602691396001600160a01b03861660009081526020819052604090205491906123ec565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546126459082611abc565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611c3a565b6000826126a557506000610a09565b60006126b183856131cd565b9050826126be85836131ad565b14611b1b5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a3f565b60008082116127665760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610a3f565b611b1b82846131ad565b804761277b82612a24565b600061278747836129c8565b604051909150739d6aac8c117e60fb603c8577fef75a24a873d91490819083156108fc029084906000818181858888f193505050501580156127cd573d6000803e3d6000fd5b5060408051868152602081018490527f98024b0e201aa667dd34d5242eaa5ec55bd223ff5dad2fb1fd9a11e35f86f05f910160405180910390a15050505050565b6128188130612ba9565b600f546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561285c57600080fd5b505afa158015612870573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128949190612f28565b600f5460075460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292935060009291169063a9059cbb90604401602060405180830381600087803b1580156128ea57600080fd5b505af11580156128fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129229190612ef4565b905080156129c357600754604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b15801561297057600080fd5b505af1158015612984573d6000803e3d6000fd5b505060408051868152602081018690527f5e8c953468549261e19b5df2c0776259d823043f64befbef757760c2800c07ca935001905060405180910390a15b505050565b600082821115612a1a5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610a3f565b611b1b82846131ec565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a6757634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612abb57600080fd5b505afa158015612acf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af39190612d83565b81600181518110612b1457634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612b3a9130911684611b22565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612b73908590600090869030904290600401613125565b600060405180830381600087803b158015612b8d57600080fd5b505af1158015612ba1573d6000803e3d6000fd5b505050505050565b60408051600380825260808201909252600091602082016060803683370190505090503081600081518110612bee57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612c4257600080fd5b505afa158015612c56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c7a9190612d83565b81600181518110612c9b57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600f54825191169082906002908110612cda57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612d009130911685611b22565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d79590612d39908690600090869088904290600401613125565b600060405180830381600087803b158015612d5357600080fd5b505af11580156123e3573d6000803e3d6000fd5b600060208284031215612d78578081fd5b8135611b1b8161326f565b600060208284031215612d94578081fd5b8151611b1b8161326f565b60008060408385031215612db1578081fd5b8235612dbc8161326f565b91506020830135612dcc8161326f565b809150509250929050565b600080600060608486031215612deb578081fd5b8335612df68161326f565b92506020840135612e068161326f565b929592945050506040919091013590565b60008060408385031215612e29578182fd5b8235612e348161326f565b91506020830135612dcc81613284565b600080600080600080600080610100898b031215612e60578384fd5b8851612e6b8161326f565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612ebf578182fd5b8235612eca8161326f565b946020939093013593505050565b600060208284031215612ee9578081fd5b8135611b1b81613284565b600060208284031215612f05578081fd5b8151611b1b81613284565b600060208284031215612f21578081fd5b5035919050565b600060208284031215612f39578081fd5b5051919050565b60008060408385031215612f52578182fd5b50508035926020909101359150565b600080600060608486031215612f75578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015612fba57858101830151858201604001528201612f9e565b81811115612fcb5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526030908201527f42554c4c46494748543a204163636f756e7420697320616c726561647920657860408201526f636c756465642066726f6d206665657360801b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526017908201527f596f752068617665206e6f20706f776572206865726521000000000000000000604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156131745784516001600160a01b03168352938301939183019160010161314f565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156131a8576131a8613259565b500190565b6000826131c857634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156131e7576131e7613259565b500290565b6000828210156131fe576131fe613259565b500390565b600181811c9082168061321757607f821691505b6020821081141561323857634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561325257613252613259565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610ed457600080fd5b8015158114610ed457600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dd1c76ef4a5f7b365bde4fa7d92182478d2ddcd27753f5575898041579deadae64736f6c6343000804003360a0604052600880546001600160a01b03191673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21790553480156200003757600080fd5b50604080518082018252601a8082527f42554c4c46494748545f4469766964656e645f547261636b65720000000000006020808401828152855180870190965292855284015281519192918391839162000094916003916200013b565b508051620000aa9060049060208401906200013b565b50506005805460ff19166012179055506000620000c43390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050610bb8600c5550610e1060145568056bc75e2d631000006080526200021e565b8280546200014990620001e1565b90600052602060002090601f0160209004810192826200016d5760008555620001b8565b82601f106200018857805160ff1916838001178555620001b8565b82800160010185558215620001b8579182015b82811115620001b85782518255916020019190600101906200019b565b50620001c6929150620001ca565b5090565b5b80821115620001c65760008155600101620001cb565b600181811c90821680620001f657607f821691505b602082108114156200021857634e487b7160e01b600052602260045260246000fd5b50919050565b6080516124b062000241600039600081816106a2015261122701526124b06000f3fe60806040526004361061023f5760003560e01c8063715018a61161012e578063bc4c4b37116100ab578063e98030c71161006f578063e98030c71461073f578063f2fde38b1461075f578063f39b50201461077f578063fbcbc0f114610795578063ffb2c479146107b557600080fd5b8063bc4c4b3714610670578063be10b61414610690578063dd62ed3e146106c4578063e30443bc1461070a578063e7841ec01461072a57600080fd5b80639d55d16f116100f25780639d55d16f146105ba578063a457c2d7146105da578063a8b9d240146105fa578063a9059cbb1461061a578063aafd847a1461063a57600080fd5b8063715018a61461053757806385a6b3ae1461054c5780638da5cb5b1461056257806391b89fba1461058557806395d89b41146105a557600080fd5b8063313ce567116101bc5780635183d6fd116101805780635183d6fd14610451578063569632a2146104b65780636a474002146104d65780636f2789ec146104eb57806370a082311461050157600080fd5b8063313ce5671461039f57806331e79db0146103c15780633243c791146103e157806339509351146104015780634e7b827f1461042157600080fd5b806318160ddd1161020357806318160ddd14610307578063226cfa3d1461031c57806323b872dd1461034957806327ce0147146103695780633009a6091461038957600080fd5b806303c833021461024b57806306fdde0314610255578063095ea7b31461028057806309bbedde146102b05780631582358e146102cf57600080fd5b3661024657005b600080fd5b6102536107f0565b005b34801561026157600080fd5b5061026a610883565b6040516102779190612206565b60405180910390f35b34801561028c57600080fd5b506102a061029b366004612122565b610915565b6040519015158152602001610277565b3480156102bc57600080fd5b50600d545b604051908152602001610277565b3480156102db57600080fd5b506008546102ef906001600160a01b031681565b6040516001600160a01b039091168152602001610277565b34801561031357600080fd5b506002546102c1565b34801561032857600080fd5b506102c16103373660046120b2565b60136020526000908152604090205481565b34801561035557600080fd5b506102a061036436600461217a565b61092c565b34801561037557600080fd5b506102c16103843660046120b2565b610995565b34801561039557600080fd5b506102c160115481565b3480156103ab57600080fd5b5060055460405160ff9091168152602001610277565b3480156103cd57600080fd5b506102536103dc3660046120b2565b6109f1565b3480156103ed57600080fd5b506102536103fc3660046121ee565b610b27565b34801561040d57600080fd5b506102a061041c366004612122565b610bd8565b34801561042d57600080fd5b506102a061043c3660046120b2565b60126020526000908152604090205460ff1681565b34801561045d57600080fd5b5061047161046c3660046121ee565b610c0e565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610277565b3480156104c257600080fd5b506102536104d13660046120b2565b610d80565b3480156104e257600080fd5b50610253610e64565b3480156104f757600080fd5b506102c160145481565b34801561050d57600080fd5b506102c161051c3660046120b2565b6001600160a01b031660009081526020819052604090205490565b34801561054357600080fd5b50610253610f10565b34801561055857600080fd5b506102c1600b5481565b34801561056e57600080fd5b5060055461010090046001600160a01b03166102ef565b34801561059157600080fd5b506102c16105a03660046120b2565b610f90565b3480156105b157600080fd5b5061026a610f9b565b3480156105c657600080fd5b506102536105d53660046121ee565b610faa565b3480156105e657600080fd5b506102a06105f5366004612122565b611094565b34801561060657600080fd5b506102c16106153660046120b2565b6110e3565b34801561062657600080fd5b506102a0610635366004612122565b61110f565b34801561064657600080fd5b506102c16106553660046120b2565b6001600160a01b03166000908152600a602052604090205490565b34801561067c57600080fd5b506102a061068b3660046120ea565b61111c565b34801561069c57600080fd5b506102c17f000000000000000000000000000000000000000000000000000000000000000081565b3480156106d057600080fd5b506102c16106df36600461214d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561071657600080fd5b50610253610725366004612122565b6111d0565b34801561073657600080fd5b506011546102c1565b34801561074b57600080fd5b5061025361075a3660046121ee565b611362565b34801561076b57600080fd5b5061025361077a3660046120b2565b6114e6565b34801561078b57600080fd5b506102c1600c5481565b3480156107a157600080fd5b506104716107b03660046120b2565b6115e2565b3480156107c157600080fd5b506107d56107d03660046121ee565b61175a565b60408051938452602084019290925290820152606001610277565b60006107fb60025490565b1161080557600080fd5b34156108815761083861081760025490565b61082534600160801b611883565b61082f91906122e7565b60065490611909565b60065560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600b5461087d9034611909565b600b555b565b6060600380546108929061237c565b80601f01602080910402602001604051908101604052809291908181526020018280546108be9061237c565b801561090b5780601f106108e05761010080835404028352916020019161090b565b820191906000526020600020905b8154815290600101906020018083116108ee57829003601f168201915b5050505050905090565b6000610922338484611968565b5060015b92915050565b6000610939848484611a8c565b61098b84336109868560405180606001604052806028815260200161242e602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611aed565b611968565b5060019392505050565b6001600160a01b03811660009081526009602090815260408083205491839052822054600654600160801b926109e7926109e2926109dc916109d79190611883565b611b24565b90611b34565b611b72565b61092691906122e7565b6005546001600160a01b03610100909104163314610a2a5760405162461bcd60e51b8152600401610a2190612259565b60405180910390fd5b6001600160a01b03811660009081526012602052604090205460ff1615610a5057600080fd5b6001600160a01b0381166000908152601260205260408120805460ff19166001179055610a7e908290611b85565b60405163131836e760e21b8152600d60048201526001600160a01b0382166024820152733fec5a0d4b71ac5b2c9412c7d8e9cdd8e9d4246590634c60db9c9060440160006040518083038186803b158015610ad857600080fd5b505af4158015610aec573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b6005546001600160a01b03610100909104163314610b575760405162461bcd60e51b8152600401610a2190612259565b6000610b6260025490565b11610b6c57600080fd5b8015610bd557610b8c610b7e60025490565b61082583600160801b611883565b60065560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600b54610bd19082611909565b600b555b50565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109229185906109869086611909565b600080600080600080600080600d733fec5a0d4b71ac5b2c9412c7d8e9cdd8e9d4246563deb3d89690916040518263ffffffff1660e01b8152600401610c5691815260200190565b60206040518083038186803b158015610c6e57600080fd5b505af4158015610c82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca691906121d6565b8910610ccb575060009650600019955085945086935083925082915081905080610d75565b6040516368d54f3f60e11b8152600d6004820152602481018a9052600090733fec5a0d4b71ac5b2c9412c7d8e9cdd8e9d424659063d1aa9e7e9060440160206040518083038186803b158015610d2057600080fd5b505af4158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5891906120ce565b9050610d63816115e2565b98509850985098509850985098509850505b919395975091939597565b6005546001600160a01b03610100909104163314610db05760405162461bcd60e51b8152600401610a2190612259565b6008546001600160a01b0382811691161415610e425760405162461bcd60e51b815260206004820152604560248201527f42554c4c46494748545f4469766964656e645f547261636b65723a2043616e6e60448201527f6f7420757064617465206469766964656e64546f6b656e20746f2073616d652060648201526476616c756560d81b608482015260a401610a21565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60405162461bcd60e51b815260206004820152606f60248201527f42554c4c46494748545f4469766964656e645f547261636b65723a207769746860448201527f647261774469766964656e642064697361626c65642e2055736520746865202760648201527f636c61696d272066756e6374696f6e206f6e20746865206d61696e2042554c4c60848201526e2324a3a42a1031b7b73a3930b1ba1760891b60a482015260c401610a21565b6005546001600160a01b03610100909104163314610f405760405162461bcd60e51b8152600401610a2190612259565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6000610926826110e3565b6060600480546108929061237c565b6005546001600160a01b03610100909104163314610fda5760405162461bcd60e51b8152600401610a2190612259565b600c548114156110615760405162461bcd60e51b815260206004820152604660248201527f42554c4c46494748545f4469766964656e645f547261636b65723a2043616e6e60448201527f6f742075706461746520676173466f725472616e7366657220746f2073616d656064820152652076616c756560d01b608482015260a401610a21565b600c5460405182907f5e2963a3d7c88b344b101641f89a2f7da9734fc777ed11ad0097b2775a9e9d1790600090a3600c55565b6000610922338461098685604051806060016040528060258152602001612456602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611aed565b6001600160a01b0381166000908152600a60205260408120546109269061110984610995565b90611be4565b6000610922338484611a8c565b6005546000906001600160a01b0361010090910416331461114f5760405162461bcd60e51b8152600401610a2190612259565b600061115a84611c40565b905080156111c6576001600160a01b038416600081815260136020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf092906111b49085815260200190565b60405180910390a36001915050610926565b5060009392505050565b6005546001600160a01b036101009091041633146112005760405162461bcd60e51b8152600401610a2190612259565b6001600160a01b03821660009081526012602052604090205460ff1615611225575050565b7f000000000000000000000000000000000000000000000000000000000000000081106112d4576112568282611b85565b604051632f0ad01760e21b8152600d60048201526001600160a01b038316602482015260448101829052733fec5a0d4b71ac5b2c9412c7d8e9cdd8e9d424659063bc2b405c9060640160006040518083038186803b1580156112b757600080fd5b505af41580156112cb573d6000803e3d6000fd5b50505050611352565b6112df826000611b85565b60405163131836e760e21b8152600d60048201526001600160a01b0383166024820152733fec5a0d4b71ac5b2c9412c7d8e9cdd8e9d4246590634c60db9c9060440160006040518083038186803b15801561133957600080fd5b505af415801561134d573d6000803e3d6000fd5b505050505b61135d82600161111c565b505050565b6005546001600160a01b036101009091041633146113925760405162461bcd60e51b8152600401610a2190612259565b61070881101580156113a75750620151808111155b6114315760405162461bcd60e51b815260206004820152604f60248201527f42554c4c46494748545f4469766964656e645f547261636b65723a20636c616960448201527f6d57616974206d757374206265207570646174656420746f206265747765656e60648201526e203120616e6420323420686f75727360881b608482015260a401610a21565b6014548114156114b35760405162461bcd60e51b815260206004820152604160248201527f42554c4c46494748545f4469766964656e645f547261636b65723a2043616e6e60448201527f6f742075706461746520636c61696d5761697420746f2073616d652076616c756064820152606560f81b608482015260a401610a21565b60145460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601455565b6005546001600160a01b036101009091041633146115165760405162461bcd60e51b8152600401610a2190612259565b6001600160a01b03811661157b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a21565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6040516317e142d160e01b8152600d60048201526001600160a01b03821660248201528190600090819081908190819081908190733fec5a0d4b71ac5b2c9412c7d8e9cdd8e9d42465906317e142d19060440160206040518083038186803b15801561164d57600080fd5b505af4158015611661573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168591906121d6565b96506000199550600087126116e7576011548711156116b3576011546116ac908890611db4565b95506116e7565b601154600d54600091106116c85760006116d7565b601154600d546116d791611be4565b90506116e38882611b34565b9650505b6116f0886110e3565b94506116fb88610995565b6001600160a01b038916600090815260136020526040902054909450925082611725576000611733565b601454611733908490611909565b915042821161174357600061174d565b61174d8242611be4565b9050919395975091939597565b600d54600090819081908061177a5750506011546000925082915061187c565b6011546000805a90506000805b898410801561179557508582105b1561186b57846117a4816123b7565b600d54909650861090506117b757600094505b6000600d60000186815481106117dd57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316808352601390915260409091205490915061180e90611e00565b156118315761181e81600161111c565b15611831578161182d816123b7565b9250505b8261183b816123b7565b93505060005a9050808511156118625761185f6118588683611be4565b8790611909565b95505b93506117879050565b601185905590975095509193505050505b9193909250565b60008261189257506000610926565b600061189e8385612307565b9050826118ab85836122e7565b146119025760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a21565b9392505050565b60008061191683856122cf565b9050838110156119025760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a21565b6001600160a01b0383166119ca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a21565b6001600160a01b038216611a2b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a21565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152603060248201527f42554c4c46494748545f4469766964656e645f547261636b65723a204e6f207460448201526f1c985b9cd9995c9cc8185b1b1bddd95960821b6064820152608401610a21565b60008184841115611b115760405162461bcd60e51b8152600401610a219190612206565b50611b1c8385612365565b949350505050565b6000818181121561092657600080fd5b600080611b41838561228e565b905060008312158015611b545750838112155b80611b695750600083128015611b6957508381125b61190257600080fd5b600080821215611b8157600080fd5b5090565b6001600160a01b03821660009081526020819052604090205480821115611bc4576000611bb28383611be4565b9050611bbe8482611e27565b50505050565b8082101561135d576000611bd88284611be4565b9050611bbe8482611e8b565b600082821115611c365760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610a21565b6119028284612365565b600080611c4c836110e3565b90508015611dab576001600160a01b0383166000908152600a6020526040902054611c779082611909565b6001600160a01b0384166000818152600a6020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d90611cc69084815260200190565b60405180910390a260085460405163a9059cbb60e01b81526001600160a01b03858116600483015260248201849052600092169063a9059cbb90604401602060405180830381600087803b158015611d1d57600080fd5b505af1158015611d31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5591906121ba565b905080611da4576001600160a01b0384166000908152600a6020526040902054611d7f9083611be4565b6001600160a01b039094166000908152600a6020526040812094909455509192915050565b5092915050565b50600092915050565b6000808212158015611dcf575082611dcc8382612326565b13155b80611ded5750600082128015611ded575082611deb8382612326565b135b611df657600080fd5b6119028284612326565b600042821115611e1257506000919050565b601454611e1f4284611be4565b101592915050565b611e318282611ecf565b611e6b611e4c6109d78360065461188390919063ffffffff16565b6001600160a01b03841660009081526009602052604090205490611db4565b6001600160a01b0390921660009081526009602052604090209190915550565b611e958282611fae565b611e6b611eb06109d78360065461188390919063ffffffff16565b6001600160a01b03841660009081526009602052604090205490611b34565b6001600160a01b038216611f255760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a21565b600254611f329082611909565b6002556001600160a01b038216600090815260208190526040902054611f589082611909565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b6001600160a01b03821661200e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a21565b61204b8160405180606001604052806022815260200161240c602291396001600160a01b0385166000908152602081905260409020549190611aed565b6001600160a01b0383166000908152602081905260409020556002546120719082611be4565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611fa2565b6000602082840312156120c3578081fd5b8135611902816123e8565b6000602082840312156120df578081fd5b8151611902816123e8565b600080604083850312156120fc578081fd5b8235612107816123e8565b91506020830135612117816123fd565b809150509250929050565b60008060408385031215612134578182fd5b823561213f816123e8565b946020939093013593505050565b6000806040838503121561215f578182fd5b823561216a816123e8565b91506020830135612117816123e8565b60008060006060848603121561218e578081fd5b8335612199816123e8565b925060208401356121a9816123e8565b929592945050506040919091013590565b6000602082840312156121cb578081fd5b8151611902816123fd565b6000602082840312156121e7578081fd5b5051919050565b6000602082840312156121ff578081fd5b5035919050565b6000602080835283518082850152825b8181101561223257858101830151858201604001528201612216565b818111156122435783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600080821280156001600160ff1b03849003851316156122b0576122b06123d2565b600160ff1b83900384128116156122c9576122c96123d2565b50500190565b600082198211156122e2576122e26123d2565b500190565b60008261230257634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612321576123216123d2565b500290565b60008083128015600160ff1b850184121615612344576123446123d2565b6001600160ff1b038401831381161561235f5761235f6123d2565b50500390565b600082821015612377576123776123d2565b500390565b600181811c9082168061239057607f821691505b602082108114156123b157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123cb576123cb6123d2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610bd557600080fd5b8015158114610bd557600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122092eb40118563cdef3ec2083a37c38aa4d677cbf48458857d177ea6656bfcc0ed64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80637e0e155c11610175578063b62496f5116100dc578063e7841ec011610095578063f2fde38b1161006f578063f2fde38b146108e8578063fd5af42f14610908578063fd5db2af14610928578063ff0fd4c01461094657600080fd5b8063e7841ec014610893578063e98030c7146108a8578063f27fd254146108c857600080fd5b8063b62496f5146107a7578063bab3185f146107d7578063c816e4b6146107f7578063d46980161461080d578063dd62ed3e1461082d578063e57f14e11461087357600080fd5b80639d55d16f1161012e5780639d55d16f146106ad578063a26579ad146106cd578063a457c2d7146106e2578063a8b9d24014610702578063a9059cbb14610722578063ad56c13c1461074257600080fd5b80637e0e155c146105ef578063871c128d1461061f5780638da5cb5b1461063f57806395d89b41146106625780639a7a23d6146106775780639c1b8af51461069757600080fd5b80634303443d116102195780636843cd84116101d25780636843cd84146105245780636db7943714610544578063700bb1911461056457806370a0823114610584578063715018a6146105ba5780637ded4d6a146105cf57600080fd5b80634303443d1461045357806349bd5a5e146104735780634ada218b146104a75780634e71d92d146104c15780634fbee193146104d657806364b0f6531461050f57600080fd5b806323b872dd1161026b57806323b872dd146103a75780632a8407b4146103c75780632c1f5216146103dc57806330bb4cff146103fc578063313ce56714610411578063395093511461043357600080fd5b806306fdde03146102be578063095ea7b3146102e95780630f15f4c01461031957806314eff957146103305780631694505e1461035057806318160ddd1461038857600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610966565b6040516102e09190612f8e565b60405180910390f35b3480156102f557600080fd5b50610309610304366004612ead565b6109f8565b60405190151581526020016102e0565b34801561032557600080fd5b5061032e610a0f565b005b34801561033c57600080fd5b5061032e61034b366004612d67565b610ac8565b34801561035c57600080fd5b50600654610370906001600160a01b031681565b6040516001600160a01b0390911681526020016102e0565b34801561039457600080fd5b506002545b6040519081526020016102e0565b3480156103b357600080fd5b506103096103c2366004612dd7565b610b72565b3480156103d357600080fd5b50610399610bdb565b3480156103e857600080fd5b50600754610370906001600160a01b031681565b34801561040857600080fd5b50610399610c5d565b34801561041d57600080fd5b5060055460405160ff90911681526020016102e0565b34801561043f57600080fd5b5061030961044e366004612ead565b610ca2565b34801561045f57600080fd5b5061032e61046e366004612d67565b610cd8565b34801561047f57600080fd5b506103707f000000000000000000000000d09e0774785c1328d782242cc551f0a04c5aaa3f81565b3480156104b357600080fd5b506012546103099060ff1681565b3480156104cd57600080fd5b5061032e610e50565b3480156104e257600080fd5b506103096104f1366004612d67565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561051b57600080fd5b50610399610ed7565b34801561053057600080fd5b5061039961053f366004612d67565b610f1c565b34801561055057600080fd5b5061032e61055f366004612f40565b610f9b565b34801561057057600080fd5b5061032e61057f366004612f10565b611026565b34801561059057600080fd5b5061039961059f366004612d67565b6001600160a01b031660009081526020819052604090205490565b3480156105c657600080fd5b5061032e611107565b3480156105db57600080fd5b5061032e6105ea366004612d67565b611187565b3480156105fb57600080fd5b5061030961060a366004612d67565b60146020526000908152604090205460ff1681565b34801561062b57600080fd5b5061032e61063a366004612f10565b611373565b34801561064b57600080fd5b5060055461010090046001600160a01b0316610370565b34801561066e57600080fd5b506102d361144e565b34801561068357600080fd5b5061032e610692366004612e17565b61145d565b3480156106a357600080fd5b5061039960105481565b3480156106b957600080fd5b5061032e6106c8366004612f10565b611554565b3480156106d957600080fd5b506103996115b5565b3480156106ee57600080fd5b506103096106fd366004612ead565b6115fa565b34801561070e57600080fd5b5061039961071d366004612d67565b611649565b34801561072e57600080fd5b5061030961073d366004612ead565b61167c565b34801561074e57600080fd5b5061076261075d366004612d67565b611689565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016102e0565b3480156107b357600080fd5b506103096107c2366004612d67565b60156020526000908152604090205460ff1681565b3480156107e357600080fd5b506103096107f2366004612ed8565b611733565b34801561080357600080fd5b5061039960115481565b34801561081957600080fd5b50600854610370906001600160a01b031681565b34801561083957600080fd5b50610399610848366004612d9f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561087f57600080fd5b5061032e61088e366004612d67565b6117b3565b34801561089f57600080fd5b50610399611840565b3480156108b457600080fd5b5061032e6108c3366004612f10565b611885565b3480156108d457600080fd5b506107626108e3366004612f10565b6118e6565b3480156108f457600080fd5b5061032e610903366004612d67565b611928565b34801561091457600080fd5b5061032e610923366004612ed8565b611a24565b34801561093457600080fd5b5061039969021e19e0c9bab240000081565b34801561095257600080fd5b5061032e610961366004612ed8565b611a72565b60606003805461097590613203565b80601f01602080910402602001604051908101604052809291908181526020018280546109a190613203565b80156109ee5780601f106109c3576101008083540402835291602001916109ee565b820191906000526020600020905b8154815290600101906020018083116109d157829003601f168201915b5050505050905090565b6000610a05338484611b22565b5060015b92915050565b6005546001600160a01b03610100909104163314610a485760405162461bcd60e51b8152600401610a3f90613074565b60405180910390fd5b60125460ff1615610aa95760405162461bcd60e51b815260206004820152602560248201527f42554c4c46494748543a2054726164696e6720697320616c726561647920656e60448201526418589b195960da1b6064820152608401610a3f565b600c8054600160ff199182168117909255601280549091169091179055565b6005546001600160a01b03610100909104163314610af85760405162461bcd60e51b8152600401610a3f90613074565b600f80546001600160a01b0319166001600160a01b03838116918217909255600754604051632b4b195160e11b815260048101929092529091169063569632a2906024015b600060405180830381600087803b158015610b5757600080fd5b505af1158015610b6b573d6000803e3d6000fd5b5050505050565b6000610b7f848484611c47565b610bd18433610bcc856040518060600160405280602881526020016132b9602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906123ec565b611b22565b5060019392505050565b6007546040805163079cda8160e51b815290516000926001600160a01b03169163f39b5020916004808301926020929190829003018186803b158015610c2057600080fd5b505afa158015610c34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c589190612f28565b905090565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610c2057600080fd5b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a05918590610bcc9086611abc565b6005546001600160a01b03610100909104163314610d085760405162461bcd60e51b8152600401610a3f90613074565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d815760405162461bcd60e51b8152602060048201526024808201527f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f756044820152633a32b91760e11b6064820152608401610a3f565b6001600160a01b0381166000908152600d602052604090205460ff1615610dea5760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610a3f565b6001600160a01b03166000818152600d60205260408120805460ff19166001908117909155600e805491820181559091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319169091179055565b60075460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610e9c57600080fd5b505af1158015610eb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed49190612ef4565b50565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610c2057600080fd5b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b158015610f6357600080fd5b505afa158015610f77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a099190612f28565b6005546001600160a01b03610100909104163314610fcb5760405162461bcd60e51b8152600401610a3f90613074565b600a8210610feb5760405162461bcd60e51b8152600401610a3f90613024565b6005811061100b5760405162461bcd60e51b8152600401610a3f90613024565b600a819055600982905561101f8282613195565b600b555050565b6007546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b15801561107457600080fd5b505af1158015611088573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ac9190612f61565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6005546001600160a01b036101009091041633146111375760405162461bcd60e51b8152600401610a3f90613074565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146111b75760405162461bcd60e51b8152600401610a3f90613074565b6001600160a01b0381166000908152600d602052604090205460ff1661121f5760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610a3f565b60005b600e5481101561136f57816001600160a01b0316600e828154811061125757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141561135d57600e8054611282906001906131ec565b815481106112a057634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600e80546001600160a01b0390921691839081106112da57634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600d90915260409020805460ff19169055600e80548061133757634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b806113678161323e565b915050611222565b5050565b6005546001600160a01b036101009091041633146113a35760405162461bcd60e51b8152600401610a3f90613074565b60105481141561141b5760405162461bcd60e51b815260206004820152603760248201527f42554c4c46494748543a2043616e6e6f742075706461746520676173466f725060448201527f726f63657373696e6720746f2073616d652076616c75650000000000000000006064820152608401610a3f565b60105460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601055565b60606004805461097590613203565b6005546001600160a01b0361010090910416331461148d5760405162461bcd60e51b8152600401610a3f90613074565b7f000000000000000000000000d09e0774785c1328d782242cc551f0a04c5aaa3f6001600160a01b0316826001600160a01b0316141561154a5760405162461bcd60e51b815260206004820152604c60248201527f42554c4c46494748543a2054686520556e697377617020706169722063616e6e60448201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60648201526b65744d616b6572506169727360a01b608482015260a401610a3f565b61136f8282612423565b6005546001600160a01b036101009091041633146115845760405162461bcd60e51b8152600401610a3f90613074565b600754604051639d55d16f60e01b8152600481018390526001600160a01b0390911690639d55d16f90602401610b3d565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610c2057600080fd5b6000610a053384610bcc856040518060600160405280602581526020016132e1602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906123ec565b6007546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401610f4b565b6000610a05338484611c47565b60075460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b1580156116e057600080fd5b505afa1580156116f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117189190612e44565b97509750975097509750975097509750919395975091939597565b6008546000906001600160a01b0316331461179c5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c792044657620416464726573732063616e2064697361626c65206465766044820152632066656560e01b6064820152608401610a3f565b50600c805460ff1916911515918217905560ff1690565b6005546001600160a01b036101009091041633146117e35760405162461bcd60e51b8152600401610a3f90613074565b6001600160a01b03811660009081526013602052604090205460ff161561181c5760405162461bcd60e51b8152600401610a3f90613024565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610c2057600080fd5b6005546001600160a01b036101009091041633146118b55760405162461bcd60e51b8152600401610a3f90613074565b60075460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610b3d565b600754604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd906024016116c7565b6005546001600160a01b036101009091041633146119585760405162461bcd60e51b8152600401610a3f90613074565b6001600160a01b0381166119bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3f565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03610100909104163314611a545760405162461bcd60e51b8152600401610a3f90613074565b600f8054911515600160a01b0260ff60a01b19909216919091179055565b6005546001600160a01b03610100909104163314611aa25760405162461bcd60e51b8152600401610a3f90613074565b600c80549115156101000261ff0019909216919091179055565b600080611ac98385613195565b905083811015611b1b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a3f565b9392505050565b6001600160a01b038316611b845760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3f565b6001600160a01b038216611be55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a3f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611c6d5760405162461bcd60e51b8152600401610a3f906130a9565b6001600160a01b038216611c935760405162461bcd60e51b8152600401610a3f90612fe1565b6001600160a01b0382166000908152600d602052604090205460ff1615611ccc5760405162461bcd60e51b8152600401610a3f906130ee565b336000908152600d602052604090205460ff1615611cfc5760405162461bcd60e51b8152600401610a3f906130ee565b6001600160a01b0383166000908152600d602052604090205460ff1615611d355760405162461bcd60e51b8152600401610a3f906130ee565b6005546001600160a01b038481166101009092041614801590611d6b57506005546001600160a01b038381166101009092041614155b8015611d805750600f54600160a01b900460ff165b15611df05769021e19e0c9bab2400000811115611df05760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a3f565b60125460ff1680611ea457600c54610100900460ff16611ea4576001600160a01b03841660009081526014602052604090205460ff16611ea45760405162461bcd60e51b815260206004820152604360248201527f42554c4c46494748543a2054686973206163636f756e742063616e6e6f74207360448201527f656e6420746f6b656e7320756e74696c2074726164696e6720697320656e61626064820152621b195960ea1b608482015260a401610a3f565b7f000000000000000000000000d09e0774785c1328d782242cc551f0a04c5aaa3f6001600160a01b0316846001600160a01b03161480611f1557507f000000000000000000000000d09e0774785c1328d782242cc551f0a04c5aaa3f6001600160a01b0316836001600160a01b0316145b8015611f1e5750805b5081611f3657611f308484600061258d565b50505050565b600654600160a01b900460ff16158015611f4d5750805b8015611f7157506001600160a01b03831660009081526015602052604090205460ff165b8015611f8b57506006546001600160a01b03858116911614155b8015611fb057506001600160a01b03831660009081526013602052604090205460ff16155b156120355769021e19e0c9bab24000008211156120355760405162461bcd60e51b815260206004820152603d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f204d41585f53454c4c5f5452414e53414354494f4e5f414d4f554e542e0000006064820152608401610a3f565b306000908152602081905260409020546011548110158280156120555750805b80156120635750600c5460ff165b80156120795750600654600160a01b900460ff16155b801561209e57506001600160a01b03861660009081526015602052604090205460ff16155b80156120b857506008546001600160a01b03878116911614155b80156120d257506008546001600160a01b03868116911614155b1561213c576006805460ff60a01b1916600160a01b179055600b54600a5460009161210891612102908690612696565b90612715565b905061211381612770565b3060009081526020819052604090205461212c8161280e565b50506006805460ff60a01b191690555b60008380156121555750600654600160a01b900460ff16155b6001600160a01b03881660009081526013602052604090205490915060ff168061219757506001600160a01b03861660009081526013602052604090205460ff165b156121a0575060005b80156121dd5760006121c26064612102600b548961269690919063ffffffff16565b90506121ce86826129c8565b95506121db88308361258d565b505b6121e887878761258d565b6007546001600160a01b031663e30443bc88612219816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561225f57600080fd5b505af1925050508015612270575060015b506007546001600160a01b031663e30443bc876122a2816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156122e857600080fd5b505af19250505080156122f9575060015b50600654600160a01b900460ff166123e3576010546007546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561235757600080fd5b505af1925050508015612387575060408051601f3d908101601f1916820190925261238491810190612f61565b60015b612390576123e1565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b600081848411156124105760405162461bcd60e51b8152600401610a3f9190612f8e565b5061241b83856131ec565b949350505050565b6001600160a01b03821660009081526015602052604090205460ff16151581151514156124c45760405162461bcd60e51b815260206004820152604360248201527f42554c4c46494748543a204175746f6d61746564206d61726b6574206d616b6560448201527f72207061697220697320616c72656164792073657420746f20746861742076616064820152626c756560e81b608482015260a401610a3f565b6001600160a01b0382166000908152601560205260409020805460ff191682158015919091179091556125515760075460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561253857600080fd5b505af115801561254c573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166125b35760405162461bcd60e51b8152600401610a3f906130a9565b6001600160a01b0382166125d95760405162461bcd60e51b8152600401610a3f90612fe1565b61261681604051806060016040528060268152602001613293602691396001600160a01b03861660009081526020819052604090205491906123ec565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546126459082611abc565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611c3a565b6000826126a557506000610a09565b60006126b183856131cd565b9050826126be85836131ad565b14611b1b5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a3f565b60008082116127665760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610a3f565b611b1b82846131ad565b804761277b82612a24565b600061278747836129c8565b604051909150739d6aac8c117e60fb603c8577fef75a24a873d91490819083156108fc029084906000818181858888f193505050501580156127cd573d6000803e3d6000fd5b5060408051868152602081018490527f98024b0e201aa667dd34d5242eaa5ec55bd223ff5dad2fb1fd9a11e35f86f05f910160405180910390a15050505050565b6128188130612ba9565b600f546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561285c57600080fd5b505afa158015612870573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128949190612f28565b600f5460075460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292935060009291169063a9059cbb90604401602060405180830381600087803b1580156128ea57600080fd5b505af11580156128fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129229190612ef4565b905080156129c357600754604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b15801561297057600080fd5b505af1158015612984573d6000803e3d6000fd5b505060408051868152602081018690527f5e8c953468549261e19b5df2c0776259d823043f64befbef757760c2800c07ca935001905060405180910390a15b505050565b600082821115612a1a5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610a3f565b611b1b82846131ec565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a6757634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612abb57600080fd5b505afa158015612acf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af39190612d83565b81600181518110612b1457634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612b3a9130911684611b22565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612b73908590600090869030904290600401613125565b600060405180830381600087803b158015612b8d57600080fd5b505af1158015612ba1573d6000803e3d6000fd5b505050505050565b60408051600380825260808201909252600091602082016060803683370190505090503081600081518110612bee57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612c4257600080fd5b505afa158015612c56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c7a9190612d83565b81600181518110612c9b57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600f54825191169082906002908110612cda57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612d009130911685611b22565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d79590612d39908690600090869088904290600401613125565b600060405180830381600087803b158015612d5357600080fd5b505af11580156123e3573d6000803e3d6000fd5b600060208284031215612d78578081fd5b8135611b1b8161326f565b600060208284031215612d94578081fd5b8151611b1b8161326f565b60008060408385031215612db1578081fd5b8235612dbc8161326f565b91506020830135612dcc8161326f565b809150509250929050565b600080600060608486031215612deb578081fd5b8335612df68161326f565b92506020840135612e068161326f565b929592945050506040919091013590565b60008060408385031215612e29578182fd5b8235612e348161326f565b91506020830135612dcc81613284565b600080600080600080600080610100898b031215612e60578384fd5b8851612e6b8161326f565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612ebf578182fd5b8235612eca8161326f565b946020939093013593505050565b600060208284031215612ee9578081fd5b8135611b1b81613284565b600060208284031215612f05578081fd5b8151611b1b81613284565b600060208284031215612f21578081fd5b5035919050565b600060208284031215612f39578081fd5b5051919050565b60008060408385031215612f52578182fd5b50508035926020909101359150565b600080600060608486031215612f75578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015612fba57858101830151858201604001528201612f9e565b81811115612fcb5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526030908201527f42554c4c46494748543a204163636f756e7420697320616c726561647920657860408201526f636c756465642066726f6d206665657360801b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526017908201527f596f752068617665206e6f20706f776572206865726521000000000000000000604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156131745784516001600160a01b03168352938301939183019160010161314f565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156131a8576131a8613259565b500190565b6000826131c857634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156131e7576131e7613259565b500290565b6000828210156131fe576131fe613259565b500390565b600181811c9082168061321757607f821691505b6020821081141561323857634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561325257613252613259565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610ed457600080fd5b8015158114610ed457600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dd1c76ef4a5f7b365bde4fa7d92182478d2ddcd27753f5575898041579deadae64736f6c63430008040033

Libraries Used

IterableMapping : 0x3fec5a0d4b71ac5b2c9412c7d8e9cdd8e9d42465Unverified

Deployed Bytecode Sourcemap

47833:16855:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7989:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10135:169;;;;;;;;;;-1:-1:-1;10135:169:0;;;;;:::i;:::-;;:::i;:::-;;;6291:14:1;;6284:22;6266:41;;6254:2;6239:18;10135:169:0;6221:92:1;49004:183:0;;;;;;;;;;;;;:::i;:::-;;53415:191;;;;;;;;;;-1:-1:-1;53415:191:0;;;;;:::i;:::-;;:::i;47912:41::-;;;;;;;;;;-1:-1:-1;47912:41:0;;;;-1:-1:-1;;;;;47912:41:0;;;;;;-1:-1:-1;;;;;4497:32:1;;;4479:51;;4467:2;4452:18;47912:41:0;4434:102:1;9088:108:0;;;;;;;;;;-1:-1:-1;9176:12:0;;9088:108;;;16813:25:1;;;16801:2;16786:18;9088:108:0;16768:76:1;10786:321:0;;;;;;;;;;-1:-1:-1;10786:321:0;;;;;:::i;:::-;;:::i;54594:118::-;;;;;;;;;;;;;:::i;48039:47::-;;;;;;;;;;-1:-1:-1;48039:47:0;;;;-1:-1:-1;;;;;48039:47:0;;;55314:141;;;;;;;;;;;;;:::i;8932:91::-;;;;;;;;;;-1:-1:-1;9006:9:0;;8932:91;;9006:9;;;;18628:36:1;;18616:2;18601:18;8932:91:0;18583:87:1;11516:218:0;;;;;;;;;;-1:-1:-1;11516:218:0;;;;;:::i;:::-;;:::i;55904:352::-;;;;;;;;;;-1:-1:-1;55904:352:0;;;;;:::i;:::-;;:::i;47960:38::-;;;;;;;;;;;;;;;48969:26;;;;;;;;;;-1:-1:-1;48969:26:0;;;;;;;;57639:103;;;;;;;;;;;;;:::i;55463:125::-;;;;;;;;;;-1:-1:-1;55463:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;55552:28:0;55528:4;55552:28;;;:19;:28;;;;;;;;;55463:125;57887:141;;;;;;;;;;;;;:::i;55755:139::-;;;;;;;;;;-1:-1:-1;55755:139:0;;;;;:::i;:::-;;:::i;53618:440::-;;;;;;;;;;-1:-1:-1;53618:440:0;;;;;:::i;:::-;;:::i;57360:271::-;;;;;;;;;;-1:-1:-1;57360: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;56264:500::-;;;;;;;;;;-1:-1:-1;56264:500:0;;;;;:::i;:::-;;:::i;49375:66::-;;;;;;;;;;-1:-1:-1;49375:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54070:384;;;;;;;;;;-1:-1:-1;54070:384:0;;;;;:::i;:::-;;:::i;2087:87::-;;;;;;;;;;-1:-1:-1;2160:6:0;;;;;-1:-1:-1;;;;;2160:6:0;2087:87;;8199:95;;;;;;;;;;;;;:::i;52343:263::-;;;;;;;;;;-1:-1:-1;52343:263:0;;;;;:::i;:::-;;:::i;48726:40::-;;;;;;;;;;;;;;;;53256:144;;;;;;;;;;-1:-1:-1;53256:144:0;;;;;:::i;:::-;;:::i;55198:108::-;;;;;;;;;;;;;:::i;12237:269::-;;;;;;;;;;-1:-1:-1;12237:269:0;;;;;:::i;:::-;;:::i;55596:151::-;;;;;;;;;;-1:-1:-1;55596:151:0;;;;;:::i;:::-;;:::i;9599:175::-;;;;;;;;;;-1:-1:-1;9599:175:0;;;;;:::i;:::-;;:::i;56770:282::-;;;;;;;;;;-1:-1:-1;56770:282:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5498:32:1;;;5480:51;;5562:2;5547:18;;5540:34;;;;5590:18;;;5583:34;;;;5648:2;5633:18;;5626:34;;;;5691:3;5676:19;;5669:35;5518:3;5720:19;;5713:35;5779:3;5764:19;;5757:35;5823:3;5808:19;;5801:35;5467:3;5452:19;56770:282:0;5434:408:1;49599:58:0;;;;;;;;;;-1:-1:-1;49599:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54726:240;;;;;;;;;;-1:-1:-1;54726:240:0;;;;;:::i;:::-;;:::i;48857:55::-;;;;;;;;;;;;;;;;48095:30;;;;;;;;;;-1:-1:-1;48095:30:0;;;;-1:-1:-1;;;;;48095: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;53034:214;;;;;;;;;;-1:-1:-1;53034:214:0;;;;;:::i;:::-;;:::i;57750:129::-;;;;;;;;;;;;;:::i;54462:124::-;;;;;;;;;;-1:-1:-1;54462:124:0;;;;;:::i;:::-;;:::i;57060:292::-;;;;;;;;;;-1:-1:-1;57060:292:0;;;;;:::i;:::-;;:::i;3041:244::-;;;;;;;;;;-1:-1:-1;3041:244:0;;;;;:::i;:::-;;:::i;55087:103::-;;;;;;;;;;-1:-1:-1;55087:103:0;;;;;:::i;:::-;;:::i;48134:70::-;;;;;;;;;;;;48188:16;48134:70;;54978:97;;;;;;;;;;-1:-1:-1;54978: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;49004:183::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;;;;;;;;;49061:14:::1;::::0;::::1;;49060:15;49052:65;;;::::0;-1:-1:-1;;;49052:65:0;;9587:2:1;49052:65:0::1;::::0;::::1;9569:21:1::0;9626:2;9606:18;;;9599:30;9665:34;9645:18;;;9638:62;-1:-1:-1;;;9716:18:1;;;9709:35;9761:19;;49052:65:0::1;9559:227:1::0;49052:65:0::1;49128:12;:19:::0;;49143:4:::1;-1:-1:-1::0;;49128:19:0;;::::1;::::0;::::1;::::0;;;49158:14:::1;:21:::0;;;;::::1;::::0;;::::1;::::0;;49004:183::o;53415:191::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;53503:14:::1;:29:::0;;-1:-1:-1;;;;;;53503:29:0::1;-1:-1:-1::0;;;;;53503:29:0;;::::1;::::0;;::::1;::::0;;;53543:15:::1;::::0;:55:::1;::::0;-1:-1:-1;;;53543:55:0;;::::1;::::0;::::1;4479:51:1::0;;;;53543:15:0;;::::1;::::0;:41:::1;::::0;4452:18:1;;53543:55:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53415:191:::0;:::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;54594:118::-;54672:15;;:32;;;-1:-1:-1;;;54672:32:0;;;;54645:7;;-1:-1:-1;;;;;54672:15:0;;:30;;:32;;;;;;;;;;;;;;:15;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54665:39;;54594:118;:::o;55314:141::-;55404:15;;:43;;;-1:-1:-1;;;55404:43:0;;;;55377:7;;-1:-1:-1;;;;;55404: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;55904:352::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;55999:42:::1;-1:-1:-1::0;;;;;55988:53:0;::::1;;;55980:102;;;::::0;-1:-1:-1;;;55980:102:0;;14340:2:1;55980:102:0::1;::::0;::::1;14322:21:1::0;14379:2;14359:18;;;14352:30;14418:34;14398:18;;;14391:62;-1:-1:-1;;;14469:18:1;;;14462:34;14513:19;;55980:102:0::1;14312:226:1::0;55980:102:0::1;-1:-1:-1::0;;;;;56102:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;56101:27;56093:70;;;::::0;-1:-1:-1;;;56093:70:0;;10828:2:1;56093:70:0::1;::::0;::::1;10810:21:1::0;10867:2;10847:18;;;10840:30;10906:32;10886:18;;;10879:60;10956:18;;56093:70:0::1;10800:180:1::0;56093:70:0::1;-1:-1:-1::0;;;;;56174:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;56174:33:0::1;56203:4;56174:33:::0;;::::1;::::0;;;56218:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;56218:30:0::1;::::0;;::::1;::::0;;55904:352::o;57639:103::-;57676:15;;:58;;-1:-1:-1;;;57676:58:0;;57715:10;57676:58;;;4725:51:1;57676:15:0;4792:18:1;;;4785:50;-1:-1:-1;;;;;57676:15:0;;;;:30;;4698:18:1;;57676:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57639:103::o;57887:141::-;57979:15;;:41;;;-1:-1:-1;;;57979:41:0;;;;57952:7;;-1:-1:-1;;;;;57979:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;55755:139;55852:15;;:34;;-1:-1:-1;;;55852:34:0;;-1:-1:-1;;;;;4497:32:1;;;55852:34:0;;;4479:51:1;55825:7:0;;55852:15;;:25;;4452:18:1;;55852:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;53618:440::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;53745:2:::1;53726:16;:21;53718:82;;;;-1:-1:-1::0;;;53718:82:0::1;;;;;;;:::i;:::-;53836:1;53819:14;:18;53811:79;;;;-1:-1:-1::0;;;53811:79:0::1;;;;;;;:::i;:::-;53911:13;:30:::0;;;53952:15:::1;:34:::0;;;54010:31:::1;53970:16:::0;53927:14;54010:31:::1;:::i;:::-;53997:10;:44:::0;-1:-1:-1;;53618:440:0:o;57360:271::-;57492:15;;:28;;-1:-1:-1;;;;;;57492:28:0;;;;;16813:25:1;;;57426:18:0;;;;;;-1:-1:-1;;;;;57492:15:0;;:23;;16786:18:1;;57492:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57536:87;;;18321:25:1;;;18377:2;18362:18;;18355:34;;;18405:18;;;18398:34;;;18463:2;18448:18;;18441:34;;;57425:95:0;;-1:-1:-1;57425:95:0;;-1:-1:-1;57425:95:0;-1:-1:-1;57613:9:0;;57601:5;;57536:87;;18308:3:1;18293:19;57536:87:0;;;;;;;57360: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;56264: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;;;;;56353:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;56345:65;;;::::0;-1:-1:-1;;;56345:65:0;;13985:2:1;56345:65:0::1;::::0;::::1;13967:21:1::0;14024:2;14004:18;;;13997:30;14063:28;14043:18;;;14036:56;14109:18;;56345:65:0::1;13957:176:1::0;56345:65:0::1;56426:9;56421:336;56445:16;:23:::0;56441:27;::::1;56421:336;;;56517:7;-1:-1:-1::0;;;;;56494:30:0::1;:16;56511:1;56494:19;;;;;;-1:-1:-1::0;;;56494:19:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;56494:19:0::1;:30;56490:256;;;56567:16;56584:23:::0;;:27:::1;::::0;56610:1:::1;::::0;56584:27:::1;:::i;:::-;56567:45;;;;;;-1:-1:-1::0;;;56567:45:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;56545:16:::1;:19:::0;;-1:-1:-1;;;;;56567:45:0;;::::1;::::0;56562:1;;56545:19;::::1;;;-1:-1:-1::0;;;56545:19:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;56545:67:0::1;-1:-1:-1::0;;;;;56545:67:0;;::::1;;::::0;;56631:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;56631:34:0::1;::::0;;56684:16:::1;:22:::0;;;::::1;;-1:-1:-1::0;;;56684:22:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;56684:22:0;;;;;-1:-1:-1;;;;;;56684:22:0::1;::::0;;;;;56421:336:::1;56264:500:::0;:::o;56490:256::-:1;56470:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56421:336;;;;56264:500:::0;:::o;54070:384::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;54265:16:::1;;54253:8;:28;;54245:96;;;::::0;-1:-1:-1;;;54245:96:0;;12353:2:1;54245:96:0::1;::::0;::::1;12335:21:1::0;12392:2;12372:18;;;12365:30;12431:34;12411:18;;;12404:62;12502:25;12482:18;;;12475:53;12545:19;;54245:96:0::1;12325:245:1::0;54245:96:0::1;54391:16;::::0;54357:51:::1;::::0;54381:8;;54357:51:::1;::::0;;;::::1;54419:16;:27:::0;54070:384::o;8199:95::-;8246:13;8279:7;8272:14;;;;;:::i;52343:263::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;52450:13:::1;-1:-1:-1::0;;;;;52442:21:0::1;:4;-1:-1:-1::0;;;;;52442:21:0::1;;;52434:110;;;::::0;-1:-1:-1;;;52434:110:0;;16384:2:1;52434:110:0::1;::::0;::::1;16366:21:1::0;16423:2;16403:18;;;16396:30;16462:34;16442:18;;;16435:62;16533:34;16513:18;;;16506:62;-1:-1:-1;;;16584:19:1;;;16577:43;16637:19;;52434:110:0::1;16356:306:1::0;52434:110:0::1;52557:41;52586:4;52592:5;52557:28;:41::i;53256:144::-:0;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;53340:15:::1;::::0;:52:::1;::::0;-1:-1:-1;;;53340:52:0;;::::1;::::0;::::1;16813:25:1::0;;;-1:-1:-1;;;;;53340:15:0;;::::1;::::0;:36:::1;::::0;16786:18:1;;53340:52:0::1;16768:76:1::0;55198:108:0;55271:15;;:27;;;-1:-1:-1;;;55271:27:0;;;;55244:7;;-1:-1:-1;;;;;55271: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;55596:151::-;55692:15;;:47;;-1:-1:-1;;;55692:47:0;;-1:-1:-1;;;;;4497:32:1;;;55692:47:0;;;4479:51:1;55665:7:0;;55692:15;;:38;;4452:18:1;;55692:47:0;4434:102:1;9599:175:0;9685:4;9702:42;812:10;9726:9;9737:6;9702:9;:42::i;56770:282::-;57009:15;;:35;;-1:-1:-1;;;57009:35:0;;-1:-1:-1;;;;;4497:32:1;;;57009:35:0;;;4479:51:1;56858:7:0;;;;;;;;;;;;;;;;57009:15;;;:26;;4452:18:1;;57009:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57002:42;;;;;;;;;;;;;;;;56770:282;;;;;;;;;:::o;54726:240::-;54831:15;;54793:4;;-1:-1:-1;;;;;54831:15:0;54817:10;:29;54809:78;;;;-1:-1:-1;;;54809:78:0;;7612:2:1;54809:78:0;;;7594:21:1;7651:2;7631:18;;;7624:30;7690:34;7670:18;;;7663:62;-1:-1:-1;;;7741:18:1;;;7734:34;7785:19;;54809:78:0;7584:226:1;54809:78:0;-1:-1:-1;54898:12:0;:29;;-1:-1:-1;;54898:29:0;;;;;;;;;;54945:12;;54726:240::o;53034:214::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53113:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;53112:29;53104:90;;;;-1:-1:-1::0;;;53104:90:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;53205:28:0::1;;::::0;;;:19:::1;:28;::::0;;;;:35;;-1:-1:-1;;53205:35:0::1;53236:4;53205:35;::::0;;53034:214::o;57750:129::-;57832:15;;:39;;;-1:-1:-1;;;57832:39:0;;;;57805:7;;-1:-1:-1;;;;;57832:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;54462:124;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;54536:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;54536:42:0;;::::1;::::0;::::1;16813:25:1::0;;;-1:-1:-1;;;;;54536:15:0;;::::1;::::0;:31:::1;::::0;16786:18:1;;54536:42:0::1;16768:76:1::0;57060:292:0;57304:15;;:40;;-1:-1:-1;;;57304:40:0;;;;;16813:25:1;;;57153:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57304:15:0;;;;:33;;16786:18:1;;57304:40:0;16768: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;;8421:2:1;3122:73:0::1;::::0;::::1;8403:21:1::0;8460:2;8440:18;;;8433:30;8499:34;8479:18;;;8472:62;-1:-1:-1;;;8550:18:1;;;8543:36;8596:19;;3122:73:0::1;8393: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;55087:103::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;55158:14:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;55158:24:0::1;-1:-1:-1::0;;;;55158:24:0;;::::1;::::0;;;::::1;::::0;;55087:103::o;54978:97::-;2160:6;;-1:-1:-1;;;;;2160:6:0;;;;;812:10;2307:23;2299:68;;;;-1:-1:-1;;;2299:68:0;;;;;;;:::i;:::-;55046:14:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;55046:21:0;;::::1;::::0;;;::::1;::::0;;54978:97::o;41396:179::-;41454:7;;41486:5;41490:1;41486;:5;:::i;:::-;41474:17;;41515:1;41510;:6;;41502:46;;;;-1:-1:-1;;;41502:46:0;;9231:2:1;41502:46:0;;;9213:21:1;9270:2;9250:18;;;9243:30;9309:29;9289:18;;;9282:57;9356:18;;41502:46:0;9203:177:1;41502:46:0;41566:1;41396:179;-1:-1:-1;;;41396:179:0:o;15384:346::-;-1:-1:-1;;;;;15486:19:0;;15478:68;;;;-1:-1:-1;;;15478:68:0;;15151:2:1;15478:68:0;;;15133:21:1;15190:2;15170:18;;;15163:30;15229:34;15209:18;;;15202:62;-1:-1:-1;;;15280:18:1;;;15273:34;15324:19;;15478:68:0;15123:226:1;15478:68:0;-1:-1:-1;;;;;15565:21:0;;15557:68;;;;-1:-1:-1;;;15557:68:0;;8828:2:1;15557:68:0;;;8810:21:1;8867:2;8847:18;;;8840:30;8906:34;8886:18;;;8879:62;-1:-1:-1;;;8957:18:1;;;8950:32;8999:19;;15557:68:0;8800:224:1;15557:68:0;-1:-1:-1;;;;;15638:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15690:32;;16813:25:1;;;15690:32:0;;16786:18:1;15690:32:0;;;;;;;;15384:346;;;:::o;58038:3984::-;-1:-1:-1;;;;;58170:18:0;;58162:68;;;;-1:-1:-1;;;58162:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58249:16:0;;58241:64;;;;-1:-1:-1;;;58241:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58336:21:0;;;;;;:17;:21;;;;;;;;58335:22;58327:58;;;;-1:-1:-1;;;58327:58:0;;;;;;;:::i;:::-;58424:10;58406:29;;;;:17;:29;;;;;;;;58405:30;58397:66;;;;-1:-1:-1;;;58397:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58484:23:0;;;;;;:17;:23;;;;;;;;58483:24;58475:60;;;;-1:-1:-1;;;58475:60:0;;;;;;;:::i;:::-;2160:6;;-1:-1:-1;;;;;58654:15:0;;;2160:6;;;;;58654:15;;;;:32;;-1:-1:-1;2160:6:0;;-1:-1:-1;;;;;58673:13:0;;;2160:6;;;;;58673:13;;58654:32;:50;;;;-1:-1:-1;58690:14:0;;-1:-1:-1;;;58690:14:0;;;;58654:50;58651:158;;;48188:16;58727:6;:37;;58719:90;;;;-1:-1:-1;;;58719:90:0;;11542:2:1;58719:90:0;;;11524:21:1;11581:2;11561:18;;;11554:30;11620:34;11600:18;;;11593:62;-1:-1:-1;;;11671:18:1;;;11664:38;11719:19;;58719:90:0;11514:230:1;58719:90:0;58846:14;;;;;58966:300;;59086:14;;;;;;;59082:173;;-1:-1:-1;;;;;59128:39:0;;;;;;:33;:39;;;;;;;;59120:119;;;;-1:-1:-1;;;59120:119:0;;15556:2:1;59120:119:0;;;15538:21:1;15595:2;15575:18;;;15568:30;15634:34;15614:18;;;15607:62;15705:34;15685:18;;;15678:62;-1:-1:-1;;;15756:19:1;;;15749:34;15800:19;;59120:119:0;15528:297:1;59120:119:0;59295:13;-1:-1:-1;;;;;59287:21:0;:4;-1:-1:-1;;;;;59287:21:0;;:44;;;;59318:13;-1:-1:-1;;;;;59312:19:0;:2;-1:-1:-1;;;;;59312:19:0;;59287:44;59286:66;;;;;59336:16;59286:66;59282:330;59638:11;59634:93;;59666:28;59682:4;59688:2;59692:1;59666:15;:28::i;:::-;59709:7;58038:3984;;;:::o;59634:93::-;59744:11;;-1:-1:-1;;;59744:11:0;;;;59743:12;:45;;;;;59772:16;59743:45;:91;;;;-1:-1:-1;;;;;;59805:29:0;;;;;;:25;:29;;;;;;;;59743:91;:207;;;;-1:-1:-1;59934:15:0;;-1:-1:-1;;;;;59918:32:0;;;59934:15;;59918:32;;59743:207;:312;;;;-1:-1:-1;;;;;;60032:23:0;;;;;;:19;:23;;;;;;;;60031:24;59743:312;59739:504;;;48188:16;60128:6;:37;;60120:111;;;;-1:-1:-1;;;60120:111:0;;13555:2:1;60120:111:0;;;13537:21:1;13594:2;13574:18;;;13567:30;13633:34;13613:18;;;13606:62;13704:31;13684:18;;;13677:59;13753:19;;60120:111:0;13527:251:1;60120:111:0;60304:4;60255:28;9360:18;;;;;;;;;;;60362:23;;60338:47;;;60402:16;:40;;;;;60435:7;60402:40;:69;;;;-1:-1:-1;60459:12:0;;;;60402:69;:98;;;;-1:-1:-1;60489:11:0;;-1:-1:-1;;;60489:11:0;;;;60488:12;60402:98;:147;;;;-1:-1:-1;;;;;;60518:31:0;;;;;;:25;:31;;;;;;;;60517:32;60402:147;:187;;;;-1:-1:-1;60574:15:0;;-1:-1:-1;;;;;60566:23:0;;;60574:15;;60566:23;;60402:187;:225;;;;-1:-1:-1;60612:15:0;;-1:-1:-1;;;;;60606:21:0;;;60612:15;;60606:21;;60402:225;60398:567;;;60654:11;:18;;-1:-1:-1;;;;60654:18:0;-1:-1:-1;;;60654:18:0;;;60754:10;;60735:13;;60654:18;;60710:55;;:39;;:20;;:24;:39::i;:::-;:43;;:55::i;:::-;60689:76;;60780:28;60797:10;60780:16;:28::i;:::-;60864:4;60825:18;9360;;;;;;;;;;;60885:32;9360:18;60885:20;:32::i;:::-;-1:-1:-1;;60934:11:0;:19;;-1:-1:-1;;;;60934:19:0;;;60398:567;60977:12;60992:16;:32;;;;-1:-1:-1;61013:11:0;;-1:-1:-1;;;61013:11:0;;;;61012:12;60992:32;-1:-1:-1;;;;;61126:25:0;;;;;;:19;:25;;;;;;60977:47;;-1:-1:-1;61126:25:0;;;:52;;-1:-1:-1;;;;;;61155:23:0;;;;;;:19;:23;;;;;;;;61126:52;61122:100;;;-1:-1:-1;61205:5:0;61122:100;61238:7;61234:185;;;61262:12;61277:31;61304:3;61277:22;61288:10;;61277:6;:10;;:22;;;;:::i;:31::-;61262:46;-1:-1:-1;61332:16:0;:6;61262:46;61332:10;:16::i;:::-;61323:25;;61365:42;61381:4;61395;61402;61365:15;:42::i;:::-;61234:185;;61431:33;61447:4;61453:2;61457:6;61431:15;:33::i;:::-;61481:15;;-1:-1:-1;;;;;61481:15:0;:26;61516:4;61523:15;61516:4;-1:-1:-1;;;;;9360:18:0;9333:7;9360:18;;;;;;;;;;;;9259:127;61523:15;61481:58;;-1:-1:-1;;;;;;61481:58:0;;;;;;;-1:-1:-1;;;;;5054:32:1;;;61481:58:0;;;5036:51:1;5103:18;;;5096:34;5009:18;;61481:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61477:74;61565:15;;-1:-1:-1;;;;;61565:15:0;:26;61600:2;61605:13;61600:2;-1:-1:-1;;;;;9360:18:0;9333:7;9360:18;;;;;;;;;;;;9259:127;61605:13;61565:54;;-1:-1:-1;;;;;;61565:54:0;;;;;;;-1:-1:-1;;;;;5054:32:1;;;61565:54:0;;;5036:51:1;5103:18;;;5096:34;5009:18;;61565:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61561:94;61672:11;;-1:-1:-1;;;61672:11:0;;;;61667:348;;61714:16;;61751:15;;:28;;-1:-1:-1;;;;;;61751:28:0;;;;;16813:25:1;;;-1:-1:-1;;;;;61751:15:0;;;;:23;;16786:18:1;;61751:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61751:28:0;;;;;;;;-1:-1:-1;;61751:28:0;;;;;;;;;;;;:::i;:::-;;;61747:257;;;;;61877:86;;;18321:25:1;;;18377:2;18362:18;;18355:34;;;18405:18;;;18398:34;;;18463:2;18448:18;;18441:34;;;61953:9:0;;61942:4;;61877:86;;18308:3:1;18293:19;61877:86:0;;;;;;;61780:199;;;61747:257;61667:348;;58038:3984;;;;;;;:::o;44223:166::-;44309:7;44345:12;44337:6;;;;44329:29;;;;-1:-1:-1;;;44329:29:0;;;;;;;;:::i;:::-;-1:-1:-1;44376:5:0;44380:1;44376;:5;:::i;:::-;44369:12;44223:166;-1:-1:-1;;;;44223:166:0:o;52614:410::-;-1:-1:-1;;;;;52705:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;52697:120;;;;-1:-1:-1;;;52697:120:0;;9993:2:1;52697:120:0;;;9975:21:1;10032:2;10012:18;;;10005:30;10071:34;10051:18;;;10044:62;10142:34;10122:18;;;10115:62;-1:-1:-1;;;10193:19:1;;;10186:34;10237:19;;52697:120:0;9965:297:1;52697:120:0;-1:-1:-1;;;;;52828:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;52828:39:0;;;;;;;;;;;;52880:79;;52905:15;;:42;;-1:-1:-1;;;52905:42:0;;-1:-1:-1;;;;;4497:32:1;;;52905:42:0;;;4479:51:1;52905:15:0;;;;:36;;4452:18:1;;52905:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52880:79;52976:40;;;;;;-1:-1:-1;;;;;52976:40:0;;;;;;;;52614:410;;:::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;16813:25:1;;;13421:20:0;;13492:35;;;;;;16786:18:1;13492:35:0;16768:76:1;42275:220:0;42333:7;42357:6;42353:20;;-1:-1:-1;42372:1:0;42365:8;;42353:20;42384:9;42396:5;42400:1;42396;:5;:::i;:::-;42384:17;-1:-1:-1;42429:1:0;42420:5;42424:1;42384:17;42420:5;:::i;:::-;:10;42412:56;;;;-1:-1:-1;;;42412:56:0;;11951:2:1;42412:56:0;;;11933:21:1;11990:2;11970:18;;;11963:30;12029:34;12009:18;;;12002:62;-1:-1:-1;;;12080:18:1;;;12073:31;12121:19;;42412:56:0;11923:223:1;42973:153:0;43031:7;43063:1;43059;:5;43051:44;;;;-1:-1:-1;;;43051:44:0;;11187:2:1;43051:44:0;;;11169:21:1;11226:2;11206:18;;;11199:30;11265:28;11245:18;;;11238:56;11311:18;;43051:44:0;11159:176:1;43051:44:0;43113:5;43117:1;43113;:5;:::i;62030:911::-;62114:6;62423:21;62489:30;62114:6;62489:16;:30::i;:::-;62646:18;62667:41;:21;62693:14;62667:25;:41::i;:::-;62827:44;;62646:62;;-1:-1:-1;62769:42:0;;;;62827:44;;;;;62646:62;;62719:39;62827:44;62719:39;62827:44;62646:62;62769:42;62827:44;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62897:36:0;;;18011:25:1;;;18067:2;18052:18;;18045:34;;;62897:36:0;;17984:18:1;62897:36:0;;;;;;;62030:911;;;;;:::o;63634:452::-;63699:49;63726:6;63742:4;63699:26;:49::i;:::-;63786:14;;63779:47;;-1:-1:-1;;;63779:47:0;;63820:4;63779:47;;;4479:51:1;63759:17:0;;-1:-1:-1;;;;;63786:14:0;;63779:32;;4452:18:1;;63779:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63859:14;;63892:15;;63852:68;;-1:-1:-1;;;63852:68:0;;-1:-1:-1;;;;;63892:15:0;;;63852:68;;;5036:51:1;5103:18;;;5096:34;;;63759:67:0;;-1:-1:-1;63837:12:0;;63859:14;;;63852:31;;5009:18:1;;63852:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63837:83;;63945:7;63941:138;;;63969:15;;:46;;-1:-1:-1;;;63969:46:0;;;;;16813:25:1;;;-1:-1:-1;;;;;63969:15:0;;;;:35;;16786:18:1;;63969:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;64035:32:0;;;18011:25:1;;;18067:2;18052:18;;18045:34;;;64035:32:0;;-1:-1:-1;17984:18:1;;-1:-1:-1;64035:32:0;;;;;;;63941:138;63634:452;;;:::o;41858:158::-;41916:7;41949:1;41944;:6;;41936:49;;;;-1:-1:-1;;;41936:49:0;;10469:2:1;41936:49:0;;;10451:21:1;10508:2;10488:18;;;10481:30;10547:32;10527:18;;;10520:60;10597:18;;41936:49:0;10441:180:1;41936:49:0;42003:5;42007:1;42003;:5;:::i;64094:589::-;64244:16;;;64258:1;64244:16;;;;;;;;64220:21;;64244:16;;;;;;;;;;-1:-1:-1;64244:16:0;64220:40;;64289:4;64271;64276:1;64271:7;;;;;;-1:-1:-1;;;64271:7:0;;;;;;;;;-1:-1:-1;;;;;64271:23:0;;;:7;;;;;;;;;;:23;;;;64315:15;;:22;;;-1:-1:-1;;;64315:22:0;;;;:15;;;;;:20;;:22;;;;;64271:7;;64315:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64305:4;64310:1;64305:7;;;;;;-1:-1:-1;;;64305:7:0;;;;;;;;;-1:-1:-1;;;;;64305:32:0;;;:7;;;;;;;;;:32;64382:15;;64350:62;;64367:4;;64382:15;64400:11;64350:8;:62::i;:::-;64451:15;;:224;;-1:-1:-1;;;64451:224:0;;-1:-1:-1;;;;;64451:15:0;;;;:66;;:224;;64532:11;;64451:15;;64602:4;;64629;;64649:15;;64451:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64094:589;;:::o;62949:672::-;63127:16;;;63141:1;63127:16;;;;;;;;;63103:21;;63127:16;;;;;;;;;;-1:-1:-1;63127:16:0;63103:40;;63172:4;63154;63159:1;63154:7;;;;;;-1:-1:-1;;;63154:7:0;;;;;;;;;-1:-1:-1;;;;;63154:23:0;;;:7;;;;;;;;;;:23;;;;63198:15;;:22;;;-1:-1:-1;;;63198:22:0;;;;:15;;;;;:20;;:22;;;;;63154:7;;63198:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63188:4;63193:1;63188:7;;;;;;-1:-1:-1;;;63188:7:0;;;;;;;;;-1:-1:-1;;;;;63188:32:0;;;:7;;;;;;;;;:32;63241:14;;63231:7;;63241:14;;;63231:4;;63236:1;;63231:7;;;;-1:-1:-1;;;63231:7:0;;;;;;;;;-1:-1:-1;;;;;63231:24:0;;;:7;;;;;;;;;:24;63300:15;;63268:62;;63285:4;;63300:15;63318:11;63268:8;:62::i;:::-;63369:15;;:234;;-1:-1:-1;;;63369:234:0;;-1:-1:-1;;;;;63369:15:0;;;;:69;;:234;;63453:11;;63369:15;;63534:4;;63553:9;;63577:15;;63369: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:258::-;3817:6;3825;3878:2;3866:9;3857:7;3853:23;3849:32;3846:2;;;3899:6;3891;3884:22;3846:2;-1:-1:-1;;3927:23:1;;;3997:2;3982:18;;;3969:32;;-1:-1:-1;3836:171:1:o;4012:316::-;4100:6;4108;4116;4169:2;4157:9;4148:7;4144:23;4140:32;4137:2;;;4190:6;4182;4175:22;4137:2;4224:9;4218:16;4208:26;;4274:2;4263:9;4259:18;4253:25;4243:35;;4318:2;4307:9;4303:18;4297:25;4287:35;;4127:201;;;;;:::o;6802:603::-;6914:4;6943:2;6972;6961:9;6954:21;7004:6;6998:13;7047:6;7042:2;7031:9;7027:18;7020:34;7072:4;7085:140;7099:6;7096:1;7093:13;7085:140;;;7194:14;;;7190:23;;7184:30;7160:17;;;7179:2;7156:26;7149:66;7114:10;;7085:140;;;7243:6;7240:1;7237:13;7234:2;;;7313:4;7308:2;7299:6;7288:9;7284:22;7280:31;7273:45;7234:2;-1:-1:-1;7389:2:1;7368:15;-1:-1:-1;;7364:29:1;7349:45;;;;7396:2;7345:54;;6923:482;-1:-1:-1;;;6923:482:1:o;7815:399::-;8017:2;7999:21;;;8056:2;8036:18;;;8029:30;8095:34;8090:2;8075:18;;8068:62;-1:-1:-1;;;8161:2:1;8146:18;;8139:33;8204:3;8189:19;;7989:225::o;12575:412::-;12777:2;12759:21;;;12816:2;12796:18;;;12789:30;12855:34;12850:2;12835:18;;12828:62;-1:-1:-1;;;12921:2:1;12906:18;;12899:46;12977:3;12962:19;;12749:238::o;12992:356::-;13194:2;13176:21;;;13213:18;;;13206:30;13272:34;13267:2;13252:18;;13245:62;13339:2;13324:18;;13166:182::o;14543:401::-;14745:2;14727:21;;;14784:2;14764:18;;;14757:30;14823:34;14818:2;14803:18;;14796:62;-1:-1:-1;;;14889:2:1;14874:18;;14867:35;14934:3;14919:19;;14717:227::o;15830:347::-;16032:2;16014:21;;;16071:2;16051:18;;;16044:30;16110:25;16105:2;16090:18;;16083:53;16168:2;16153:18;;16004:173::o;16849:983::-;17111:4;17159:3;17148:9;17144:19;17190:6;17179:9;17172:25;17216:2;17254:6;17249:2;17238:9;17234:18;17227:34;17297:3;17292:2;17281:9;17277:18;17270:31;17321:6;17356;17350:13;17387:6;17379;17372:22;17425:3;17414:9;17410:19;17403:26;;17464:2;17456:6;17452:15;17438:29;;17485:4;17498:195;17512:6;17509:1;17506:13;17498:195;;;17577:13;;-1:-1:-1;;;;;17573:39:1;17561:52;;17668:15;;;;17633:12;;;;17609:1;17527:9;17498:195;;;-1:-1:-1;;;;;;;17749:32:1;;;;17744:2;17729:18;;17722:60;-1:-1:-1;;;17813:3:1;17798:19;17791:35;17710:3;17120:712;-1:-1:-1;;;17120:712:1:o;18675:128::-;18715:3;18746:1;18742:6;18739:1;18736:13;18733:2;;;18752:18;;:::i;:::-;-1:-1:-1;18788:9:1;;18723:80::o;18808:217::-;18848:1;18874;18864:2;;-1:-1:-1;;;18899:31:1;;18953:4;18950:1;18943:15;18981:4;18906:1;18971:15;18864:2;-1:-1:-1;19010:9:1;;18854:171::o;19030:168::-;19070:7;19136:1;19132;19128:6;19124:14;19121:1;19118:21;19113:1;19106:9;19099:17;19095:45;19092:2;;;19143:18;;:::i;:::-;-1:-1:-1;19183:9:1;;19082:116::o;19203:125::-;19243:4;19271:1;19268;19265:8;19262:2;;;19276:18;;:::i;:::-;-1:-1:-1;19313:9:1;;19252:76::o;19333:380::-;19412:1;19408:12;;;;19455;;;19476:2;;19530:4;19522:6;19518:17;19508:27;;19476:2;19583;19575:6;19572:14;19552:18;19549:38;19546:2;;;19629:10;19624:3;19620:20;19617:1;19610:31;19664:4;19661:1;19654:15;19692:4;19689:1;19682:15;19546:2;;19388:325;;;:::o;19718:135::-;19757:3;-1:-1:-1;;19778:17:1;;19775:2;;;19798:18;;:::i;:::-;-1:-1:-1;19845:1:1;19834:13;;19765:88::o;19858:127::-;19919:10;19914:3;19910:20;19907:1;19900:31;19950:4;19947:1;19940:15;19974:4;19971:1;19964:15;19990:131;-1:-1:-1;;;;;20065:31:1;;20055:42;;20045:2;;20111:1;20108;20101:12;20126:118;20212:5;20205:13;20198:21;20191:5;20188:32;20178:2;;20234:1;20231;20224:12

Swarm Source

ipfs://92eb40118563cdef3ec2083a37c38aa4d677cbf48458857d177ea6656bfcc0ed
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.