ETH Price: $3,451.61 (+1.77%)
Gas: 3 Gwei

Token

REU (REU)
 

Overview

Max Total Supply

77,000,000 REU

Holders

347

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
zoomercell.eth
Balance
489,081.875684604874382896 REU

Value
$0.00
0x192a2ff96d045bb859b81b4343e0d80583f768b2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
REU

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-20
*/

// SPDX-License-Identifier: Unlicensed

pragma solidity 0.8.14;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. 
 *
 * 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;
    address private _previousOwner;
    uint256 private _lockTime;

    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;
    }
    
    //Locks the contract for owner for the amount of time provided

    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }
}

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 { }
}


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

pragma solidity 0.8.14;


/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
interface DividendPayingTokenInterface {
  /// @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 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
  );
}

pragma solidity 0.8.14;

interface DividendPayingTokenOptionalInterface {
  /// @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);
}

contract DividendPayingToken is ERC20, Ownable, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface {
  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  address public rewardToken = address(0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599); // WBTC
  
  uint256 constant internal magnitude = 2**128;

  uint256 internal magnifiedDividendPerShare;

  mapping(address => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  uint256 public totalDividendsDistributed;

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

  }


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

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


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

contract LockToken is Ownable {
    bool public isOpen = false;
    mapping(address => bool) private _whiteList;
    modifier open(address from, address to) {
        require(isOpen || _whiteList[from] || _whiteList[to], "Not Open");
        _;
    }

    constructor() {
        _whiteList[msg.sender] = true;
        _whiteList[address(this)] = true;
    }

    function openTrade() external onlyOwner {
        isOpen = true;
    }

    function includeToWhiteList(address[] memory _users) external onlyOwner {
        for(uint8 i = 0; i < _users.length; i++) {
            _whiteList[_users[i]] = true;
        }
    }
}


contract REU is ERC20, Ownable, LockToken {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;

    bool private swapping;

    BTCDividendTracker public dividendTracker;

    address public deadWallet = 0x000000000000000000000000000000000000dEaD;

    address public rewardToken = address(0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599); // WBTC

    uint256 public maxBuyTransactionAmount = 77000000 * (10**18);
    uint256 public maxSellTransactionAmount = 77000000 * (10**18);
    uint256 public swapTokensAtAmount = 1000000 * (10**18);

    uint256 public rewardFee = 1; 
    uint256 public liquidityFee = 1; 
    uint256 public marketingFee = 4; 
    uint256 public buybackFee = 2; 
    uint256 public totalFees = rewardFee.add(liquidityFee).add(marketingFee).add(buybackFee);

    address payable public _marketingWalletAddress = payable(0x1c66e2ebfbB889cAf31BA29F1A20842813374da7);
    address payable public _buybackWalletAddress = payable(0x5D41234b36D82f5A39AC5BC0FC8Ed83bd2B5dFc0);


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

     // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;


    // 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 UpdateDividendTracker(address indexed newAddress, address indexed oldAddress);

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 REUeceived,
        uint256 tokensIntoLiqudity
    );

    event SendDividends(
    	uint256 tokensSwapped,
    	uint256 amount
    );

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

    constructor() ERC20("REU", "REU") {

    	dividendTracker = new BTCDividendTracker();


    	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(deadWallet);
        dividendTracker.excludeFromDividends(address(_uniswapV2Router));

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(_marketingWalletAddress, true);
        excludeFromFees(address(this), true);

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

    receive() external payable {

  	}

    function updateDividendTracker(address newAddress) public onlyOwner {
        require(newAddress != address(dividendTracker), "REU: The dividend tracker already has that address");

        BTCDividendTracker newDividendTracker = BTCDividendTracker(payable(newAddress));

        require(newDividendTracker.owner() == address(this), "REU: The new dividend tracker must be owned by the  token contract");

        newDividendTracker.excludeFromDividends(address(newDividendTracker));
        newDividendTracker.excludeFromDividends(address(this));
        newDividendTracker.excludeFromDividends(owner());
        newDividendTracker.excludeFromDividends(address(uniswapV2Router));

        emit UpdateDividendTracker(newAddress, address(dividendTracker));

        dividendTracker = newDividendTracker;
    }

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "REU: The router already has that address");
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Pair = _uniswapV2Pair;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "REU: Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }


    function updateGasForProcessing(uint256 newValue) public onlyOwner {
        require(newValue >= 200000 && newValue <= 500000, "REU: gasForProcessing must be between 200,000 and 500,000");
        require(newValue != gasForProcessing, "REU: Cannot update gasForProcessing to same value");
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }

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

    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 excludeFromDividends(address account) external onlyOwner{
	    dividendTracker.excludeFromDividends(account);
	}

    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
    ) open(from, to) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

        bool excludedAccount = (_isExcludedFromFees[from] || _isExcludedFromFees[to]);

        if(automatedMarketMakerPairs[from] && !excludedAccount){
            require(amount <= maxBuyTransactionAmount, "buy transfer amount exceeds the maxBuyTransactionAmount.");
        }

        if(automatedMarketMakerPairs[to] && !excludedAccount){
            require(amount <= maxSellTransactionAmount, "Sell transfer amount exceeds the maxSellTransactionAmount.");
        }

		uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if( canSwap &&
            !swapping &&
            automatedMarketMakerPairs[to] &&
            from != owner()
        ) {
            swapping = true;

            contractTokenBalance = swapTokensAtAmount;

            // marketing, buyback and liquidity tokens
            uint256 swapTokens = contractTokenBalance.mul(totalFees.sub(rewardFee)).div(100);
            swapAndLiquify(swapTokens);

            // tokens for redistribution
            uint256 rewardTokens = contractTokenBalance.sub(swapTokens);
            swapAndSendDividends(rewardTokens);

            swapping = false;
        }


        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(excludedAccount) {
            takeFee = false;
        }

        if(takeFee) {
        	uint256 fees;

             if(automatedMarketMakerPairs[from] || automatedMarketMakerPairs[to]) {
        	    fees = amount.mul(totalFees).div(100);
        	}

        	amount = amount.sub(fees);

            if(fees>0) {
                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(!swapping) {
	    	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 swapAndLiquify(uint256 tokens) private {
        uint256 liquidityTokens = tokens.mul(liquidityFee).div(totalFees.sub(rewardFee));
       // split the contract balance into halves
        uint256 half = liquidityTokens.div(2);
        uint256 otherHalf = liquidityTokens.sub(half);

        // 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(half); // <- this 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);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        // swap and send to marketing and buyback wallet
        swapTokensForEth(tokens.sub(liquidityTokens));
        _buybackWalletAddress.transfer(address(this).balance.mul(buybackFee).div(buybackFee.add(marketingFee)));
        _marketingWalletAddress.transfer(address(this).balance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }


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

    }

    function swapTokensForBTC(uint256 tokenAmount) private {
        address[] memory path = new address[](3);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        path[2] = rewardToken;

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {

        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );

    }

    function swapAndSendDividends(uint256 tokens) private{
        swapTokensForBTC(tokens);
        uint256 dividends = IERC20(rewardToken).balanceOf(address(this));
        bool success = IERC20(rewardToken).transfer(address(dividendTracker), dividends);

        if (success) {
            dividendTracker.distributeDividends(dividends);
            emit SendDividends(tokens, dividends);
        }
    }

    function setMaxBuyTransactionLimit(uint256 _newLimit) external onlyOwner{
        maxBuyTransactionAmount  = _newLimit;
        require(maxBuyTransactionAmount > totalSupply().div(400), "max transaction limit must be greator than 0.1% of total supply");
    }

    function setMaxSellTransactionLimit(uint256 _newLimit) external onlyOwner{
        maxSellTransactionAmount  = _newLimit;
        require(maxSellTransactionAmount > totalSupply().div(400), "max transaction limit must be greator than 0.1% of total supply");
    }

    function setSwapTokensAtAmount(uint256 _newLimit) external onlyOwner{
        swapTokensAtAmount = _newLimit;
    }

    function setMarketingWallet(address payable wallet) external onlyOwner{
        _marketingWalletAddress = wallet;
    }

    function setBuybackWallet(address payable wallet) external onlyOwner{
        _buybackWalletAddress = wallet;
    }
        
    function setFees(uint256 _rewardFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _buybackFee) external onlyOwner{
        rewardFee = _rewardFee;
        marketingFee = _marketingFee;
        liquidityFee = _liquidityFee;
        buybackFee = _buybackFee;
        totalFees = rewardFee.add(liquidityFee).add(marketingFee).add(buybackFee);
        require(totalFees <= 20, "total tax must be less than or equal to 20%");
    }


}

contract BTCDividendTracker is Ownable, 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 minimumTokenBalanceForDividends;

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

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

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

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

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

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

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

    	emit ExcludeFromDividends(account);
    }

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(newClaimWait >= 3600 && newClaimWait <= 86400, "REU_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours");
        require(newClaimWait != claimWait, "REU_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":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","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":"REUeceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"_buybackWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":[],"name":"buybackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract BTCDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"includeToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrade","outputs":[],"stateMutability":"nonpayable","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setBuybackWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_buybackFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setMaxBuyTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setMaxSellTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","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"}]

60806040526008805460ff19169055600d805461dead6001600160a01b031991821617909155600e8054732260fac5e5542a773aa44fbcfedf7c193bc2c59992169190911790556a3fb1625d33a3796d000000600f81905560105569d3c21bcecceda10000006011556001601281905560138190556004601481905560026015819055620000b7929091620000a39182908062000694602090811b620020b117901c565b6200069460201b620020b11790919060201c565b601655601780546001600160a01b0319908116731c66e2ebfbb889caf31ba29f1a20842813374da71790915560188054909116735d41234b36d82f5a39ac5bc0fc8ed83bd2b5dfc0179055620493e06019553480156200011657600080fd5b506040518060400160405280600381526020016252455560e81b8152506040518060400160405280600381526020016252455560e81b81525081600390805190602001906200016792919062000ac1565b5080516200017d90600490602084019062000ac1565b50506005805460ff19166012179055506000620001973390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350336000908152600960205260408082208054600160ff1991821681179092553084529282902080549093161790915551620002289062000b50565b604051809103906000f08015801562000245573d6000803e3d6000fd5b50600c60006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ec919062000b75565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200033a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000360919062000b75565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620003ae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d4919062000b75565b600a80546001600160a01b038086166001600160a01b031992831617909255600b80549284169290911691909117905590506200041381600162000702565b600c5460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b1580156200045a57600080fd5b505af11580156200046f573d6000803e3d6000fd5b5050600c5460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b158015620004b957600080fd5b505af1158015620004ce573d6000803e3d6000fd5b5050600c546001600160a01b031691506331e79db09050620004fd60055461010090046001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b1580156200053f57600080fd5b505af115801562000554573d6000803e3d6000fd5b5050600c54600d5460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db09150602401600060405180830381600087803b158015620005a257600080fd5b505af1158015620005b7573d6000803e3d6000fd5b5050600c5460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200060357600080fd5b505af115801562000618573d6000803e3d6000fd5b5050505062000638620006306200086660201b60201c565b60016200087a565b60175462000651906001600160a01b031660016200087a565b6200065e3060016200087a565b6200068c6200067a60055461010090046001600160a01b031690565b6a3fb1625d33a3796d000000620009c5565b505062000c03565b600080620006a3838562000ba0565b905083811015620006fb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064015b60405180910390fd5b9392505050565b6001600160a01b0382166000908152601b602052604090205481151560ff9091161515036200079a5760405162461bcd60e51b815260206004820152603d60248201527f5245553a204175746f6d61746564206d61726b6574206d616b6572207061697260448201527f20697320616c72656164792073657420746f20746861742076616c75650000006064820152608401620006f2565b6001600160a01b0382166000908152601b60205260409020805460ff191682158015919091179091556200082a57600c5460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156200081057600080fd5b505af115801562000825573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60055461010090046001600160a01b031690565b6005546001600160a01b03610100909104163314620008dc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620006f2565b6001600160a01b0382166000908152601a602052604090205481151560ff909116151503620009665760405162461bcd60e51b815260206004820152602f60248201527f5245553a204163636f756e7420697320616c7265616479207468652076616c7560448201526e65206f6620276578636c756465642760881b6064820152608401620006f2565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b03821662000a1d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620006f2565b62000a39816002546200069460201b620020b11790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000a6c918390620020b162000694821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b82805462000acf9062000bc7565b90600052602060002090601f01602090048101928262000af3576000855562000b3e565b82601f1062000b0e57805160ff191683800117855562000b3e565b8280016001018555821562000b3e579182015b8281111562000b3e57825182559160200191906001019062000b21565b5062000b4c92915062000b5e565b5090565b61228b806200454d83390190565b5b8082111562000b4c576000815560010162000b5f565b60006020828403121562000b8857600080fd5b81516001600160a01b0381168114620006fb57600080fd5b6000821982111562000bc257634e487b7160e01b600052601160045260246000fd5b500190565b600181811c9082168062000bdc57607f821691505b60208210810362000bfd57634e487b7160e01b600052602260045260246000fd5b50919050565b61393a8062000c136000396000f3fe6080604052600436106103905760003560e01c8063700bb191116101dc578063a8b9d24011610102578063dd62ed3e116100a0578063f27fd2541161006f578063f27fd25414610ab2578063f2fde38b14610ad2578063f7c618c114610af2578063fb201b1d14610b1257600080fd5b8063dd62ed3e14610a21578063e2f4560514610a67578063e7841ec014610a7d578063e98030c714610a9257600080fd5b8063afa4f3b2116100dc578063afa4f3b214610991578063b62496f5146109b1578063c0246668146109e1578063dd46706414610a0157600080fd5b8063a8b9d240146108ec578063a9059cbb1461090c578063ad56c13c1461092c57600080fd5b80638b4242671161017a5780639a7a23d6116101495780639a7a23d6146108815780639c1b8af5146108a1578063a26579ad146108b7578063a457c2d7146108cc57600080fd5b80638b4242671461081d5780638da5cb5b1461083357806395d89b411461085657806398118cb41461086b57600080fd5b8063794e4578116101b6578063794e45781461079d57806385141a77146107bd578063871c128d146107dd57806388bdd9be146107fd57600080fd5b8063700bb1911461073257806370a0823114610752578063715018a61461078857600080fd5b806339509351116102c15780634fbee1931161025f57806365b8dbc01161022e57806365b8dbc0146106bc5780636843cd84146106dc5780636b67c4df146106fc5780636fcba3771461071257600080fd5b80634fbee193146106385780635aa821a9146106715780635d098b381461068757806364b0f653146106a757600080fd5b80634291da2d1161029b5780634291da2d146105c957806347535d7b146105e957806349bd5a5e146106035780634e71d92d1461062357600080fd5b806339509351146105735780633b2d081c146105935780634144d9e4146105a957600080fd5b80631d0adc071161032e5780632c1f5216116103085780632c1f5216146104fc57806330bb4cff1461051c578063313ce5671461053157806331e79db01461055357600080fd5b80631d0adc071461049c57806323b872dd146104bc57806329d95d5d146104dc57600080fd5b80630b6bb6f51161036a5780630b6bb6f51461041757806313114a9d146104395780631694505e1461044f57806318160ddd1461048757600080fd5b806302259e9e1461039c57806306fdde03146103c5578063095ea7b3146103e757600080fd5b3661039757005b600080fd5b3480156103a857600080fd5b506103b260105481565b6040519081526020015b60405180910390f35b3480156103d157600080fd5b506103da610b27565b6040516103bc9190613287565b3480156103f357600080fd5b50610407610402366004613301565b610bb9565b60405190151581526020016103bc565b34801561042357600080fd5b50610437610432366004613343565b610bd0565b005b34801561044557600080fd5b506103b260165481565b34801561045b57600080fd5b50600a5461046f906001600160a01b031681565b6040516001600160a01b0390911681526020016103bc565b34801561049357600080fd5b506002546103b2565b3480156104a857600080fd5b506104376104b7366004613408565b610c7b565b3480156104c857600080fd5b506104076104d7366004613425565b610ccd565b3480156104e857600080fd5b5060185461046f906001600160a01b031681565b34801561050857600080fd5b50600c5461046f906001600160a01b031681565b34801561052857600080fd5b506103b2610d36565b34801561053d57600080fd5b5060055460405160ff90911681526020016103bc565b34801561055f57600080fd5b5061043761056e366004613408565b610da9565b34801561057f57600080fd5b5061040761058e366004613301565b610e3c565b34801561059f57600080fd5b506103b260155481565b3480156105b557600080fd5b5060175461046f906001600160a01b031681565b3480156105d557600080fd5b506104376105e4366004613466565b610e72565b3480156105f557600080fd5b506008546104079060ff1681565b34801561060f57600080fd5b50600b5461046f906001600160a01b031681565b34801561062f57600080fd5b50610437610edf565b34801561064457600080fd5b50610407610653366004613408565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561067d57600080fd5b506103b2600f5481565b34801561069357600080fd5b506104376106a2366004613408565b610f54565b3480156106b357600080fd5b506103b2610fa6565b3480156106c857600080fd5b506104376106d7366004613408565b610ff0565b3480156106e857600080fd5b506103b26106f7366004613408565b611265565b34801561070857600080fd5b506103b260145481565b34801561071e57600080fd5b5061043761072d36600461347f565b6112d5565b34801561073e57600080fd5b5061043761074d366004613466565b61139e565b34801561075e57600080fd5b506103b261076d366004613408565b6001600160a01b031660009081526020819052604090205490565b34801561079457600080fd5b50610437611470565b3480156107a957600080fd5b506104376107b8366004613466565b6114f0565b3480156107c957600080fd5b50600d5461046f906001600160a01b031681565b3480156107e957600080fd5b506104376107f8366004613466565b611554565b34801561080957600080fd5b50610437610818366004613408565b6116aa565b34801561082957600080fd5b506103b260125481565b34801561083f57600080fd5b5060055461010090046001600160a01b031661046f565b34801561086257600080fd5b506103da611a3c565b34801561087757600080fd5b506103b260135481565b34801561088d57600080fd5b5061043761089c3660046134bf565b611a4b565b3480156108ad57600080fd5b506103b260195481565b3480156108c357600080fd5b506103b2611b1c565b3480156108d857600080fd5b506104076108e7366004613301565b611b66565b3480156108f857600080fd5b506103b2610907366004613408565b611bb5565b34801561091857600080fd5b50610407610927366004613301565b611be8565b34801561093857600080fd5b5061094c610947366004613408565b611bf5565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016103bc565b34801561099d57600080fd5b506104376109ac366004613466565b611c90565b3480156109bd57600080fd5b506104076109cc366004613408565b601b6020526000908152604090205460ff1681565b3480156109ed57600080fd5b506104376109fc3660046134bf565b611cc5565b348015610a0d57600080fd5b50610437610a1c366004613466565b611ddc565b348015610a2d57600080fd5b506103b2610a3c3660046134f8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a7357600080fd5b506103b260115481565b348015610a8957600080fd5b506103b2611e89565b348015610a9e57600080fd5b50610437610aad366004613466565b611ed3565b348015610abe57600080fd5b5061094c610acd366004613466565b611f34565b348015610ade57600080fd5b50610437610aed366004613408565b611f76565b348015610afe57600080fd5b50600e5461046f906001600160a01b031681565b348015610b1e57600080fd5b50610437612072565b606060038054610b3690613526565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6290613526565b8015610baf5780601f10610b8457610100808354040283529160200191610baf565b820191906000526020600020905b815481529060010190602001808311610b9257829003601f168201915b5050505050905090565b6000610bc6338484612117565b5060015b92915050565b6005546001600160a01b03610100909104163314610c095760405162461bcd60e51b8152600401610c0090613560565b60405180910390fd5b60005b81518160ff161015610c7757600160096000848460ff1681518110610c3357610c33613595565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610c6f816135c1565b915050610c0c565b5050565b6005546001600160a01b03610100909104163314610cab5760405162461bcd60e51b8152600401610c0090613560565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6000610cda84848461223c565b610d2c8433610d27856040518060600160405280602881526020016138b8602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612832565b612117565b5060019392505050565b600c54604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610d80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da491906135e0565b905090565b6005546001600160a01b03610100909104163314610dd95760405162461bcd60e51b8152600401610c0090613560565b600c5460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610e2157600080fd5b505af1158015610e35573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bc6918590610d2790866120b1565b6005546001600160a01b03610100909104163314610ea25760405162461bcd60e51b8152600401610c0090613560565b6010819055610ebc610190610eb660025490565b90612869565b60105411610edc5760405162461bcd60e51b8152600401610c00906135f9565b50565b600c5460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af1158015610f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edc9190613656565b6005546001600160a01b03610100909104163314610f845760405162461bcd60e51b8152600401610c0090613560565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b600c54604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610d80573d6000803e3d6000fd5b6005546001600160a01b036101009091041633146110205760405162461bcd60e51b8152600401610c0090613560565b600a546001600160a01b039081169082160361108f5760405162461bcd60e51b815260206004820152602860248201527f5245553a2054686520726f7574657220616c7265616479206861732074686174604482015267206164647265737360c01b6064820152608401610c00565b600a546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600a80546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015611126573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114a9190613673565b6001600160a01b031663c9c6539630600a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d09190613673565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561121d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112419190613673565b600b80546001600160a01b0319166001600160a01b03929092169190911790555050565b600c546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa1580156112b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bca91906135e0565b6005546001600160a01b036101009091041633146113055760405162461bcd60e51b8152600401610c0090613560565b601284905560148390556013829055601581905561132f81611329858188876120b1565b906120b1565b6016819055601410156113985760405162461bcd60e51b815260206004820152602b60248201527f746f74616c20746178206d757374206265206c657373207468616e206f72206560448201526a7175616c20746f2032302560a81b6064820152608401610c00565b50505050565b600c546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af11580156113f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114159190613690565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6005546001600160a01b036101009091041633146114a05760405162461bcd60e51b8152600401610c0090613560565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146115205760405162461bcd60e51b8152600401610c0090613560565b600f819055611534610190610eb660025490565b600f5411610edc5760405162461bcd60e51b8152600401610c00906135f9565b6005546001600160a01b036101009091041633146115845760405162461bcd60e51b8152600401610c0090613560565b62030d40811015801561159a57506207a1208111155b61160c5760405162461bcd60e51b815260206004820152603960248201527f5245553a20676173466f7250726f63657373696e67206d75737420626520626560448201527f747765656e203230302c30303020616e64203530302c303030000000000000006064820152608401610c00565b60195481036116775760405162461bcd60e51b815260206004820152603160248201527f5245553a2043616e6e6f742075706461746520676173466f7250726f63657373604482015270696e6720746f2073616d652076616c756560781b6064820152608401610c00565b60195460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601955565b6005546001600160a01b036101009091041633146116da5760405162461bcd60e51b8152600401610c0090613560565b600c546001600160a01b03908116908216036117535760405162461bcd60e51b815260206004820152603260248201527f5245553a20546865206469766964656e6420747261636b657220616c7265616460448201527179206861732074686174206164647265737360701b6064820152608401610c00565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c49190613673565b6001600160a01b03161461184b5760405162461bcd60e51b815260206004820152604260248201527f5245553a20546865206e6577206469766964656e6420747261636b6572206d7560448201527f7374206265206f776e6564206279207468652020746f6b656e20636f6e74726160648201526118dd60f21b608482015260a401610c00565b60405163031e79db60e41b81526001600160a01b03821660048201819052906331e79db090602401600060405180830381600087803b15801561188d57600080fd5b505af11580156118a1573d6000803e3d6000fd5b505060405163031e79db60e41b81523060048201526001600160a01b03841692506331e79db09150602401600060405180830381600087803b1580156118e657600080fd5b505af11580156118fa573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db06119256005546001600160a01b036101009091041690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b15801561196657600080fd5b505af115801561197a573d6000803e3d6000fd5b5050600a5460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b1580156119c557600080fd5b505af11580156119d9573d6000803e3d6000fd5b5050600c546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600c80546001600160a01b0319166001600160a01b039290921691909117905550565b606060048054610b3690613526565b6005546001600160a01b03610100909104163314611a7b5760405162461bcd60e51b8152600401610c0090613560565b600b546001600160a01b0390811690831603611b125760405162461bcd60e51b815260206004820152604a60248201527f5245553a205468652050616e63616b655377617020706169722063616e6e6f7460448201527f2062652072656d6f7665642066726f6d206175746f6d617465644d61726b65746064820152694d616b6572506169727360b01b608482015260a401610c00565b610c7782826128c4565b600c5460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610d80573d6000803e3d6000fd5b6000610bc63384610d27856040518060600160405280602581526020016138e0602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612832565b600c546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401611294565b6000610bc633848461223c565b600c5460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b61010060405180830381865afa158015611c51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7591906136be565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b03610100909104163314611cc05760405162461bcd60e51b8152600401610c0090613560565b601155565b6005546001600160a01b03610100909104163314611cf55760405162461bcd60e51b8152600401610c0090613560565b6001600160a01b0382166000908152601a602052604090205481151560ff909116151503611d7d5760405162461bcd60e51b815260206004820152602f60248201527f5245553a204163636f756e7420697320616c7265616479207468652076616c7560448201526e65206f6620276578636c756465642760881b6064820152608401610c00565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03610100909104163314611e0c5760405162461bcd60e51b8152600401610c0090613560565b60058054600680546001600160a01b0319166001600160a01b03610100840416179055610100600160a81b0319169055611e468142613728565b60075560055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a350565b600c546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015610d80573d6000803e3d6000fd5b6005546001600160a01b03610100909104163314611f035760405162461bcd60e51b8152600401610c0090613560565b600c5460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610e07565b600c54604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611c33565b6005546001600160a01b03610100909104163314611fa65760405162461bcd60e51b8152600401610c0090613560565b6001600160a01b03811661200b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c00565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b036101009091041633146120a25760405162461bcd60e51b8152600401610c0090613560565b6008805460ff19166001179055565b6000806120be8385613728565b9050838110156121105760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610c00565b9392505050565b6001600160a01b0383166121795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c00565b6001600160a01b0382166121da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c00565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6008548390839060ff168061226957506001600160a01b03821660009081526009602052604090205460ff165b8061228c57506001600160a01b03811660009081526009602052604090205460ff165b6122c35760405162461bcd60e51b81526020600482015260086024820152672737ba1027b832b760c11b6044820152606401610c00565b6001600160a01b0385166122e95760405162461bcd60e51b8152600401610c0090613740565b6001600160a01b03841661230f5760405162461bcd60e51b8152600401610c0090613785565b826000036123285761232385856000612a23565b610e35565b6001600160a01b0385166000908152601a602052604081205460ff168061236757506001600160a01b0385166000908152601a602052604090205460ff165b6001600160a01b0387166000908152601b602052604090205490915060ff168015612390575080155b1561240d57600f5484111561240d5760405162461bcd60e51b815260206004820152603860248201527f627579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61784275795472616e73616374696f6e416d6f756e742e00000000000000006064820152608401610c00565b6001600160a01b0385166000908152601b602052604090205460ff168015612433575080155b156124b0576010548411156124b05760405162461bcd60e51b815260206004820152603a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e0000000000006064820152608401610c00565b30600090815260208190526040902054601154811080159081906124de5750600b54600160a01b900460ff16155b801561250257506001600160a01b0387166000908152601b602052604090205460ff165b801561252157506005546001600160a01b038981166101009092041614155b1561259657600b805460ff60a01b1916600160a01b17905560115460125460165491935060009161256491606491610eb69161255d9190612b2c565b8690612b88565b905061256f81612c0a565b600061257b8483612b2c565b905061258681612d67565b5050600b805460ff60a01b191690555b600b54600160a01b900460ff161583156125ae575060005b8015612634576001600160a01b0389166000908152601b602052604081205460ff16806125f357506001600160a01b0389166000908152601b602052604090205460ff165b15612615576126126064610eb66016548b612b8890919063ffffffff16565b90505b61261f8882612b2c565b97508015612632576126328a3083612a23565b505b61263f898989612a23565b600c546001600160a01b031663e30443bc8a612670816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156126b657600080fd5b505af19250505080156126c7575060015b50600c546001600160a01b031663e30443bc896126f9816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561273f57600080fd5b505af1925050508015612750575060015b50600b54600160a01b900460ff1661282757601954600c546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af19250505080156127cf575060408051601f3d908101601f191682019092526127cc91810190613690565b60015b156128255760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b505050505050505050565b600081848411156128565760405162461bcd60e51b8152600401610c009190613287565b5061286183856137c8565b949350505050565b60008082116128ba5760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610c00565b61211082846137df565b6001600160a01b0382166000908152601b602052604090205481151560ff90911615150361295a5760405162461bcd60e51b815260206004820152603d60248201527f5245553a204175746f6d61746564206d61726b6574206d616b6572207061697260448201527f20697320616c72656164792073657420746f20746861742076616c75650000006064820152608401610c00565b6001600160a01b0382166000908152601b60205260409020805460ff191682158015919091179091556129e757600c5460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156129ce57600080fd5b505af11580156129e2573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b038316612a495760405162461bcd60e51b8152600401610c0090613740565b6001600160a01b038216612a6f5760405162461bcd60e51b8152600401610c0090613785565b612aac81604051806060016040528060268152602001613892602691396001600160a01b0386166000908152602081905260409020549190612832565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612adb90826120b1565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161222f565b600082821115612b7e5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610c00565b61211082846137c8565b600082600003612b9a57506000610bca565b6000612ba68385613801565b905082612bb385836137df565b146121105760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610c00565b6000612c34612c26601254601654612b2c90919063ffffffff16565b601354610eb6908590612b88565b90506000612c43826002612869565b90506000612c518383612b2c565b905047612c5d83612f02565b6000612c694783612b2c565b9050612c75838261305c565b612c87612c828787612b2c565b612f02565b6018546014546015546001600160a01b03909216916108fc91612cbb91612cad916120b1565b601554610eb6904790612b88565b6040518115909202916000818181858888f19350505050158015612ce3573d6000803e3d6000fd5b506017546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015612d1d573d6000803e3d6000fd5b5060408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a1505050505050565b612d7081613130565b600e546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ddd91906135e0565b600e54600c5460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292935060009291169063a9059cbb906044016020604051808303816000875af1158015612e38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e5c9190613656565b90508015612efd57600c54604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b158015612eaa57600080fd5b505af1158015612ebe573d6000803e3d6000fd5b505060408051868152602081018690527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3935001905060405180910390a15b505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612f3757612f37613595565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612f90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fb49190613673565b81600181518110612fc757612fc7613595565b6001600160a01b039283166020918202929092010152600a54612fed9130911684612117565b600a5460405163791ac94760e01b81526001600160a01b039091169063791ac94790613026908590600090869030904290600401613820565b600060405180830381600087803b15801561304057600080fd5b505af1158015613054573d6000803e3d6000fd5b505050505050565b600a546130749030906001600160a01b031684612117565b600a546001600160a01b031663f305d7198230856000806130a36005546001600160a01b036101009091041690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561310b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e359190613690565b6040805160038082526080820190925260009160208201606080368337019050509050308160008151811061316757613167613595565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156131c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131e49190613673565b816001815181106131f7576131f7613595565b6001600160a01b039283166020918202929092010152600e5482519116908290600290811061322857613228613595565b6001600160a01b039283166020918202929092010152600a5461324e9130911684612117565b600a54604051635c11d79560e01b81526001600160a01b0390911690635c11d79590613026908590600090869030904290600401613820565b600060208083528351808285015260005b818110156132b457858101830151858201604001528201613298565b818111156132c6576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610edc57600080fd5b80356132fc816132dc565b919050565b6000806040838503121561331457600080fd5b823561331f816132dc565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561335657600080fd5b823567ffffffffffffffff8082111561336e57600080fd5b818501915085601f83011261338257600080fd5b8135818111156133945761339461332d565b8060051b604051601f19603f830116810181811085821117156133b9576133b961332d565b6040529182528482019250838101850191888311156133d757600080fd5b938501935b828510156133fc576133ed856132f1565b845293850193928501926133dc565b98975050505050505050565b60006020828403121561341a57600080fd5b8135612110816132dc565b60008060006060848603121561343a57600080fd5b8335613445816132dc565b92506020840135613455816132dc565b929592945050506040919091013590565b60006020828403121561347857600080fd5b5035919050565b6000806000806080858703121561349557600080fd5b5050823594602084013594506040840135936060013592509050565b8015158114610edc57600080fd5b600080604083850312156134d257600080fd5b82356134dd816132dc565b915060208301356134ed816134b1565b809150509250929050565b6000806040838503121561350b57600080fd5b8235613516816132dc565b915060208301356134ed816132dc565b600181811c9082168061353a57607f821691505b60208210810361355a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff81036135d7576135d76135ab565b60010192915050565b6000602082840312156135f257600080fd5b5051919050565b6020808252603f908201527f6d6178207472616e73616374696f6e206c696d6974206d75737420626520677260408201527f6561746f72207468616e20302e3125206f6620746f74616c20737570706c7900606082015260800190565b60006020828403121561366857600080fd5b8151612110816134b1565b60006020828403121561368557600080fd5b8151612110816132dc565b6000806000606084860312156136a557600080fd5b8351925060208401519150604084015190509250925092565b600080600080600080600080610100898b0312156136db57600080fd5b88516136e6816132dc565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b6000821982111561373b5761373b6135ab565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156137da576137da6135ab565b500390565b6000826137fc57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561381b5761381b6135ab565b500290565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156138705784516001600160a01b03168352938301939183019160010161384b565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fb68035e9f66428f2b1845bfcc26dfac8210579e66db86a5ab1c13e4cc0c2b3964736f6c634300080e00336080604052600880546001600160a01b031916732260fac5e5542a773aa44fbcfedf7c193bc2c5991790553480156200003757600080fd5b5060408051808201825260138082527f5245555f4469766964656e5f547261636b65720000000000000000000000000060208084018281528551808701909652928552840152815191929183918391620000949160039162000136565b508051620000aa90600490602084019062000136565b50506005805460ff19166012179055506000620000c43390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050610e106014555069021e19e0c9bab240000060155562000218565b8280546200014490620001dc565b90600052602060002090601f016020900481019282620001685760008555620001b3565b82601f106200018357805160ff1916838001178555620001b3565b82800160010185558215620001b3579182015b82811115620001b357825182559160200191906001019062000196565b50620001c1929150620001c5565b5090565b5b80821115620001c15760008155600101620001c6565b600181811c90821680620001f157607f821691505b6020821081036200021257634e487b7160e01b600052602260045260246000fd5b50919050565b61206380620002286000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c806385a6b3ae11610130578063be10b614116100b8578063e98030c71161007c578063e98030c714610516578063f2fde38b14610529578063f7c618c11461053c578063fbcbc0f11461054f578063ffb2c4791461056257600080fd5b8063be10b614146104a6578063dd467064146104af578063dd62ed3e146104c2578063e30443bc146104fb578063e7841ec01461050e57600080fd5b8063a457c2d7116100ff578063a457c2d714610431578063a8b9d24014610444578063a9059cbb14610457578063aafd847a1461046a578063bc4c4b371461049357600080fd5b806385a6b3ae146103e35780638da5cb5b146103ec57806391b89fba1461041657806395d89b411461042957600080fd5b806331e79db0116101b35780635183d6fd116101825780635183d6fd146103495780636a474002146103a15780636f2789ec146103a957806370a08231146103b2578063715018a6146103db57600080fd5b806331e79db0146102eb5780633243c7911461030057806339509351146103135780634e7b827f1461032657600080fd5b8063226cfa3d116101fa578063226cfa3d1461028757806323b872dd146102a757806327ce0147146102ba5780633009a609146102cd578063313ce567146102d657600080fd5b806306fdde031461022c578063095ea7b31461024a57806309bbedde1461026d57806318160ddd1461027f575b600080fd5b610234610590565b6040516102419190611c45565b60405180910390f35b61025d610258366004611caf565b610622565b6040519015158152602001610241565b600d545b604051908152602001610241565b600254610271565b610271610295366004611cdb565b60136020526000908152604090205481565b61025d6102b5366004611cf8565b610639565b6102716102c8366004611cdb565b6106a2565b61027160115481565b60055460405160ff9091168152602001610241565b6102fe6102f9366004611cdb565b6106fe565b005b6102fe61030e366004611d39565b610834565b61025d610321366004611caf565b6108f8565b61025d610334366004611cdb565b60126020526000908152604090205460ff1681565b61035c610357366004611d39565b61092e565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610241565b6102fe610a82565b61027160145481565b6102716103c0366004611cdb565b6001600160a01b031660009081526020819052604090205490565b6102fe610b22565b610271600c5481565b60055461010090046001600160a01b03165b6040516001600160a01b039091168152602001610241565b610271610424366004611cdb565b610ba2565b610234610bad565b61025d61043f366004611caf565b610bbc565b610271610452366004611cdb565b610c0b565b61025d610465366004611caf565b610c37565b610271610478366004611cdb565b6001600160a01b03166000908152600b602052604090205490565b61025d6104a1366004611d60565b610c44565b61027160155481565b6102fe6104bd366004611d39565b610cf8565b6102716104d0366004611d99565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102fe610509366004611caf565b610da5565b601154610271565b6102fe610524366004611d39565b610f15565b6102fe610537366004611cdb565b611088565b6008546103fe906001600160a01b031681565b61035c61055d366004611cdb565b611184565b610575610570366004611d39565b6112ed565b60408051938452602084019290925290820152606001610241565b60606003805461059f90611dc7565b80601f01602080910402602001604051908101604052809291908181526020018280546105cb90611dc7565b80156106185780601f106105ed57610100808354040283529160200191610618565b820191906000526020600020905b8154815290600101906020018083116105fb57829003601f168201915b5050505050905090565b600061062f33848461140a565b5060015b92915050565b600061064684848461152e565b610698843361069385604051806060016040528060288152602001611fe1602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611589565b61140a565b5060019392505050565b6001600160a01b0381166000908152600a602090815260408083205491839052822054600954600160801b926106f4926106ef926106e9916106e491906115c0565b611649565b90611659565b611697565b6106339190611e17565b6005546001600160a01b036101009091041633146107375760405162461bcd60e51b815260040161072e90611e39565b60405180910390fd5b6001600160a01b03811660009081526012602052604090205460ff161561075d57600080fd5b6001600160a01b0381166000908152601260205260408120805460ff1916600117905561078b9082906116aa565b60405163131836e760e21b8152600d60048201526001600160a01b038216602482015273714316ffe26969f1d6657e11588360d03776dca590634c60db9c9060440160006040518083038186803b1580156107e557600080fd5b505af41580156107f9573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b6005546001600160a01b036101009091041633146108645760405162461bcd60e51b815260040161072e90611e39565b600061086f60025490565b1161087957600080fd5b80156108f5576108ac61088b60025490565b61089983600160801b6115c0565b6108a39190611e17565b6009549061170f565b60095560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600c546108f1908261170f565b600c555b50565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161062f918590610693908661170f565b600080600080600080600080600d73714316ffe26969f1d6657e11588360d03776dca563deb3d89690916040518263ffffffff1660e01b815260040161097691815260200190565b602060405180830381865af4158015610993573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b79190611e6e565b89106109dc575060009650600019955085945086935083925082915081905080610a77565b6040516368d54f3f60e11b8152600d6004820152602481018a905260009073714316ffe26969f1d6657e11588360d03776dca59063d1aa9e7e90604401602060405180830381865af4158015610a36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5a9190611e87565b9050610a6581611184565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b815260206004820152606360248201527f5245555f4469766964656e645f547261636b65723a207769746864726177446960448201527f766964656e642064697361626c65642e20557365207468652027636c61696d2760648201527f2066756e6374696f6e206f6e20746865206d61696e2052455520636f6e74726160848201526231ba1760e91b60a482015260c40161072e565b6005546001600160a01b03610100909104163314610b525760405162461bcd60e51b815260040161072e90611e39565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600061063382610c0b565b60606004805461059f90611dc7565b600061062f338461069385604051806060016040528060258152602001612009602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611589565b6001600160a01b0381166000908152600b602052604081205461063390610c31846106a2565b9061176e565b600061062f33848461152e565b6005546000906001600160a01b03610100909104163314610c775760405162461bcd60e51b815260040161072e90611e39565b6000610c82846117ca565b90508015610cee576001600160a01b038416600081815260136020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610cdc9085815260200190565b60405180910390a36001915050610633565b5060009392505050565b6005546001600160a01b03610100909104163314610d285760405162461bcd60e51b815260040161072e90611e39565b60058054600680546001600160a01b0319166001600160a01b03610100840416179055610100600160a81b0319169055610d628142611ea4565b60075560055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a350565b6005546001600160a01b03610100909104163314610dd55760405162461bcd60e51b815260040161072e90611e39565b6001600160a01b03821660009081526012602052604090205460ff16610f11576015548110610e8657610e0882826116aa565b604051632f0ad01760e21b8152600d60048201526001600160a01b03831660248201526044810182905273714316ffe26969f1d6657e11588360d03776dca59063bc2b405c9060640160006040518083038186803b158015610e6957600080fd5b505af4158015610e7d573d6000803e3d6000fd5b50505050610f04565b610e918260006116aa565b60405163131836e760e21b8152600d60048201526001600160a01b038316602482015273714316ffe26969f1d6657e11588360d03776dca590634c60db9c9060440160006040518083038186803b158015610eeb57600080fd5b505af4158015610eff573d6000803e3d6000fd5b505050505b610f0f826001610c44565b505b5050565b6005546001600160a01b03610100909104163314610f455760405162461bcd60e51b815260040161072e90611e39565b610e108110158015610f5a5750620151808111155b610fde5760405162461bcd60e51b815260206004820152604960248201527f5245555f4469766964656e645f547261636b65723a20636c61696d576169742060448201527f6d757374206265207570646174656420746f206265747765656e203120616e6460648201526820323420686f75727360b81b608482015260a40161072e565b60145481036110555760405162461bcd60e51b815260206004820152603b60248201527f5245555f4469766964656e645f547261636b65723a2043616e6e6f742075706460448201527f61746520636c61696d5761697420746f2073616d652076616c75650000000000606482015260840161072e565b60145460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601455565b6005546001600160a01b036101009091041633146110b85760405162461bcd60e51b815260040161072e90611e39565b6001600160a01b03811661111d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072e565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6040516317e142d160e01b8152600d60048201526001600160a01b0382166024820152819060009081908190819081908190819073714316ffe26969f1d6657e11588360d03776dca5906317e142d190604401602060405180830381865af41580156111f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112189190611e6e565b965060001995506000871261127a576011548711156112465760115461123f90889061192f565b955061127a565b601154600d546000911061125b57600061126a565b601154600d5461126a9161176e565b90506112768882611659565b9650505b61128388610c0b565b945061128e886106a2565b6001600160a01b0389166000908152601360205260409020549094509250826112b85760006112c6565b6014546112c690849061170f565b91504282116112d65760006112e0565b6112e0824261176e565b9050919395975091939597565b600d546000908190819080820361130f57505060115460009250829150611403565b6011546000805a90506000805b898410801561132a57508582105b156113f2578461133981611ebc565b600d549096508610905061134c57600094505b6000600d600001868154811061136457611364611ed5565b60009182526020808320909101546001600160a01b031680835260139091526040909120549091506113959061197b565b156113b8576113a5816001610c44565b156113b857816113b481611ebc565b9250505b826113c281611ebc565b93505060005a9050808511156113e9576113e66113df868361176e565b879061170f565b95505b935061131c9050565b601185905590975095509193505050505b9193909250565b6001600160a01b03831661146c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161072e565b6001600160a01b0382166114cd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161072e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152602a60248201527f5245555f4469766964656e645f547261636b65723a204e6f207472616e7366656044820152691c9cc8185b1b1bddd95960b21b606482015260840161072e565b600081848411156115ad5760405162461bcd60e51b815260040161072e9190611c45565b506115b88385611eeb565b949350505050565b6000826000036115d257506000610633565b60006115de8385611f02565b9050826115eb8583611e17565b146116425760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161072e565b9392505050565b6000818181121561063357600080fd5b6000806116668385611f21565b9050600083121580156116795750838112155b8061168e575060008312801561168e57508381125b61164257600080fd5b6000808212156116a657600080fd5b5090565b6001600160a01b038216600090815260208190526040902054808211156116e95760006116d7838361176e565b90506116e384826119a2565b50610f0f565b80821015610f0f5760006116fd828461176e565b90506117098482611a06565b50505050565b60008061171c8385611ea4565b9050838110156116425760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161072e565b6000828211156117c05760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015260640161072e565b6116428284611eeb565b6000806117d683610c0b565b90508015611926576001600160a01b0383166000908152600b6020526040902054611801908261170f565b6001600160a01b0384166000818152600b6020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d906118509084815260200190565b60405180910390a260085460405163a9059cbb60e01b81526001600160a01b03858116600483015260248201849052600092169063a9059cbb906044016020604051808303816000875af11580156118ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d09190611f62565b90508061191f576001600160a01b0384166000908152600b60205260409020546118fa908361176e565b6001600160a01b039094166000908152600b6020526040812094909455509192915050565b5092915050565b50600092915050565b600080821215801561194a5750826119478382611f7f565b13155b8061196857506000821280156119685750826119668382611f7f565b135b61197157600080fd5b6116428284611f7f565b60004282111561198d57506000919050565b60145461199a428461176e565b101592915050565b6119ac8282611a4a565b6119e66119c76106e4836009546115c090919063ffffffff16565b6001600160a01b0384166000908152600a60205260409020549061192f565b6001600160a01b039092166000908152600a602052604090209190915550565b611a108282611b35565b6119e6611a2b6106e4836009546115c090919063ffffffff16565b6001600160a01b0384166000908152600a602052604090205490611659565b6001600160a01b038216611aa05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161072e565b611aac60008383610f0f565b600254611ab9908261170f565b6002556001600160a01b038216600090815260208190526040902054611adf908261170f565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b6001600160a01b038216611b955760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161072e565b611ba182600083610f0f565b611bde81604051806060016040528060228152602001611fbf602291396001600160a01b0385166000908152602081905260409020549190611589565b6001600160a01b038316600090815260208190526040902055600254611c04908261176e565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611b29565b600060208083528351808285015260005b81811015611c7257858101830151858201604001528201611c56565b81811115611c84576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146108f557600080fd5b60008060408385031215611cc257600080fd5b8235611ccd81611c9a565b946020939093013593505050565b600060208284031215611ced57600080fd5b813561164281611c9a565b600080600060608486031215611d0d57600080fd5b8335611d1881611c9a565b92506020840135611d2881611c9a565b929592945050506040919091013590565b600060208284031215611d4b57600080fd5b5035919050565b80151581146108f557600080fd5b60008060408385031215611d7357600080fd5b8235611d7e81611c9a565b91506020830135611d8e81611d52565b809150509250929050565b60008060408385031215611dac57600080fd5b8235611db781611c9a565b91506020830135611d8e81611c9a565b600181811c90821680611ddb57607f821691505b602082108103611dfb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082611e3457634e487b7160e01b600052601260045260246000fd5b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611e8057600080fd5b5051919050565b600060208284031215611e9957600080fd5b815161164281611c9a565b60008219821115611eb757611eb7611e01565b500190565b600060018201611ece57611ece611e01565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082821015611efd57611efd611e01565b500390565b6000816000190483118215151615611f1c57611f1c611e01565b500290565b600080821280156001600160ff1b0384900385131615611f4357611f43611e01565b600160ff1b8390038412811615611f5c57611f5c611e01565b50500190565b600060208284031215611f7457600080fd5b815161164281611d52565b60008083128015600160ff1b850184121615611f9d57611f9d611e01565b6001600160ff1b0384018313811615611fb857611fb8611e01565b5050039056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202e7923a0cb7e90fb602775f070e99569e62d12917ef741600005692c3e9f8d3464736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106103905760003560e01c8063700bb191116101dc578063a8b9d24011610102578063dd62ed3e116100a0578063f27fd2541161006f578063f27fd25414610ab2578063f2fde38b14610ad2578063f7c618c114610af2578063fb201b1d14610b1257600080fd5b8063dd62ed3e14610a21578063e2f4560514610a67578063e7841ec014610a7d578063e98030c714610a9257600080fd5b8063afa4f3b2116100dc578063afa4f3b214610991578063b62496f5146109b1578063c0246668146109e1578063dd46706414610a0157600080fd5b8063a8b9d240146108ec578063a9059cbb1461090c578063ad56c13c1461092c57600080fd5b80638b4242671161017a5780639a7a23d6116101495780639a7a23d6146108815780639c1b8af5146108a1578063a26579ad146108b7578063a457c2d7146108cc57600080fd5b80638b4242671461081d5780638da5cb5b1461083357806395d89b411461085657806398118cb41461086b57600080fd5b8063794e4578116101b6578063794e45781461079d57806385141a77146107bd578063871c128d146107dd57806388bdd9be146107fd57600080fd5b8063700bb1911461073257806370a0823114610752578063715018a61461078857600080fd5b806339509351116102c15780634fbee1931161025f57806365b8dbc01161022e57806365b8dbc0146106bc5780636843cd84146106dc5780636b67c4df146106fc5780636fcba3771461071257600080fd5b80634fbee193146106385780635aa821a9146106715780635d098b381461068757806364b0f653146106a757600080fd5b80634291da2d1161029b5780634291da2d146105c957806347535d7b146105e957806349bd5a5e146106035780634e71d92d1461062357600080fd5b806339509351146105735780633b2d081c146105935780634144d9e4146105a957600080fd5b80631d0adc071161032e5780632c1f5216116103085780632c1f5216146104fc57806330bb4cff1461051c578063313ce5671461053157806331e79db01461055357600080fd5b80631d0adc071461049c57806323b872dd146104bc57806329d95d5d146104dc57600080fd5b80630b6bb6f51161036a5780630b6bb6f51461041757806313114a9d146104395780631694505e1461044f57806318160ddd1461048757600080fd5b806302259e9e1461039c57806306fdde03146103c5578063095ea7b3146103e757600080fd5b3661039757005b600080fd5b3480156103a857600080fd5b506103b260105481565b6040519081526020015b60405180910390f35b3480156103d157600080fd5b506103da610b27565b6040516103bc9190613287565b3480156103f357600080fd5b50610407610402366004613301565b610bb9565b60405190151581526020016103bc565b34801561042357600080fd5b50610437610432366004613343565b610bd0565b005b34801561044557600080fd5b506103b260165481565b34801561045b57600080fd5b50600a5461046f906001600160a01b031681565b6040516001600160a01b0390911681526020016103bc565b34801561049357600080fd5b506002546103b2565b3480156104a857600080fd5b506104376104b7366004613408565b610c7b565b3480156104c857600080fd5b506104076104d7366004613425565b610ccd565b3480156104e857600080fd5b5060185461046f906001600160a01b031681565b34801561050857600080fd5b50600c5461046f906001600160a01b031681565b34801561052857600080fd5b506103b2610d36565b34801561053d57600080fd5b5060055460405160ff90911681526020016103bc565b34801561055f57600080fd5b5061043761056e366004613408565b610da9565b34801561057f57600080fd5b5061040761058e366004613301565b610e3c565b34801561059f57600080fd5b506103b260155481565b3480156105b557600080fd5b5060175461046f906001600160a01b031681565b3480156105d557600080fd5b506104376105e4366004613466565b610e72565b3480156105f557600080fd5b506008546104079060ff1681565b34801561060f57600080fd5b50600b5461046f906001600160a01b031681565b34801561062f57600080fd5b50610437610edf565b34801561064457600080fd5b50610407610653366004613408565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561067d57600080fd5b506103b2600f5481565b34801561069357600080fd5b506104376106a2366004613408565b610f54565b3480156106b357600080fd5b506103b2610fa6565b3480156106c857600080fd5b506104376106d7366004613408565b610ff0565b3480156106e857600080fd5b506103b26106f7366004613408565b611265565b34801561070857600080fd5b506103b260145481565b34801561071e57600080fd5b5061043761072d36600461347f565b6112d5565b34801561073e57600080fd5b5061043761074d366004613466565b61139e565b34801561075e57600080fd5b506103b261076d366004613408565b6001600160a01b031660009081526020819052604090205490565b34801561079457600080fd5b50610437611470565b3480156107a957600080fd5b506104376107b8366004613466565b6114f0565b3480156107c957600080fd5b50600d5461046f906001600160a01b031681565b3480156107e957600080fd5b506104376107f8366004613466565b611554565b34801561080957600080fd5b50610437610818366004613408565b6116aa565b34801561082957600080fd5b506103b260125481565b34801561083f57600080fd5b5060055461010090046001600160a01b031661046f565b34801561086257600080fd5b506103da611a3c565b34801561087757600080fd5b506103b260135481565b34801561088d57600080fd5b5061043761089c3660046134bf565b611a4b565b3480156108ad57600080fd5b506103b260195481565b3480156108c357600080fd5b506103b2611b1c565b3480156108d857600080fd5b506104076108e7366004613301565b611b66565b3480156108f857600080fd5b506103b2610907366004613408565b611bb5565b34801561091857600080fd5b50610407610927366004613301565b611be8565b34801561093857600080fd5b5061094c610947366004613408565b611bf5565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016103bc565b34801561099d57600080fd5b506104376109ac366004613466565b611c90565b3480156109bd57600080fd5b506104076109cc366004613408565b601b6020526000908152604090205460ff1681565b3480156109ed57600080fd5b506104376109fc3660046134bf565b611cc5565b348015610a0d57600080fd5b50610437610a1c366004613466565b611ddc565b348015610a2d57600080fd5b506103b2610a3c3660046134f8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a7357600080fd5b506103b260115481565b348015610a8957600080fd5b506103b2611e89565b348015610a9e57600080fd5b50610437610aad366004613466565b611ed3565b348015610abe57600080fd5b5061094c610acd366004613466565b611f34565b348015610ade57600080fd5b50610437610aed366004613408565b611f76565b348015610afe57600080fd5b50600e5461046f906001600160a01b031681565b348015610b1e57600080fd5b50610437612072565b606060038054610b3690613526565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6290613526565b8015610baf5780601f10610b8457610100808354040283529160200191610baf565b820191906000526020600020905b815481529060010190602001808311610b9257829003601f168201915b5050505050905090565b6000610bc6338484612117565b5060015b92915050565b6005546001600160a01b03610100909104163314610c095760405162461bcd60e51b8152600401610c0090613560565b60405180910390fd5b60005b81518160ff161015610c7757600160096000848460ff1681518110610c3357610c33613595565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610c6f816135c1565b915050610c0c565b5050565b6005546001600160a01b03610100909104163314610cab5760405162461bcd60e51b8152600401610c0090613560565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6000610cda84848461223c565b610d2c8433610d27856040518060600160405280602881526020016138b8602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612832565b612117565b5060019392505050565b600c54604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610d80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da491906135e0565b905090565b6005546001600160a01b03610100909104163314610dd95760405162461bcd60e51b8152600401610c0090613560565b600c5460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610e2157600080fd5b505af1158015610e35573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bc6918590610d2790866120b1565b6005546001600160a01b03610100909104163314610ea25760405162461bcd60e51b8152600401610c0090613560565b6010819055610ebc610190610eb660025490565b90612869565b60105411610edc5760405162461bcd60e51b8152600401610c00906135f9565b50565b600c5460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af1158015610f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edc9190613656565b6005546001600160a01b03610100909104163314610f845760405162461bcd60e51b8152600401610c0090613560565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b600c54604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610d80573d6000803e3d6000fd5b6005546001600160a01b036101009091041633146110205760405162461bcd60e51b8152600401610c0090613560565b600a546001600160a01b039081169082160361108f5760405162461bcd60e51b815260206004820152602860248201527f5245553a2054686520726f7574657220616c7265616479206861732074686174604482015267206164647265737360c01b6064820152608401610c00565b600a546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600a80546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015611126573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114a9190613673565b6001600160a01b031663c9c6539630600a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d09190613673565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561121d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112419190613673565b600b80546001600160a01b0319166001600160a01b03929092169190911790555050565b600c546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa1580156112b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bca91906135e0565b6005546001600160a01b036101009091041633146113055760405162461bcd60e51b8152600401610c0090613560565b601284905560148390556013829055601581905561132f81611329858188876120b1565b906120b1565b6016819055601410156113985760405162461bcd60e51b815260206004820152602b60248201527f746f74616c20746178206d757374206265206c657373207468616e206f72206560448201526a7175616c20746f2032302560a81b6064820152608401610c00565b50505050565b600c546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af11580156113f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114159190613690565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a350505050565b6005546001600160a01b036101009091041633146114a05760405162461bcd60e51b8152600401610c0090613560565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146115205760405162461bcd60e51b8152600401610c0090613560565b600f819055611534610190610eb660025490565b600f5411610edc5760405162461bcd60e51b8152600401610c00906135f9565b6005546001600160a01b036101009091041633146115845760405162461bcd60e51b8152600401610c0090613560565b62030d40811015801561159a57506207a1208111155b61160c5760405162461bcd60e51b815260206004820152603960248201527f5245553a20676173466f7250726f63657373696e67206d75737420626520626560448201527f747765656e203230302c30303020616e64203530302c303030000000000000006064820152608401610c00565b60195481036116775760405162461bcd60e51b815260206004820152603160248201527f5245553a2043616e6e6f742075706461746520676173466f7250726f63657373604482015270696e6720746f2073616d652076616c756560781b6064820152608401610c00565b60195460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601955565b6005546001600160a01b036101009091041633146116da5760405162461bcd60e51b8152600401610c0090613560565b600c546001600160a01b03908116908216036117535760405162461bcd60e51b815260206004820152603260248201527f5245553a20546865206469766964656e6420747261636b657220616c7265616460448201527179206861732074686174206164647265737360701b6064820152608401610c00565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c49190613673565b6001600160a01b03161461184b5760405162461bcd60e51b815260206004820152604260248201527f5245553a20546865206e6577206469766964656e6420747261636b6572206d7560448201527f7374206265206f776e6564206279207468652020746f6b656e20636f6e74726160648201526118dd60f21b608482015260a401610c00565b60405163031e79db60e41b81526001600160a01b03821660048201819052906331e79db090602401600060405180830381600087803b15801561188d57600080fd5b505af11580156118a1573d6000803e3d6000fd5b505060405163031e79db60e41b81523060048201526001600160a01b03841692506331e79db09150602401600060405180830381600087803b1580156118e657600080fd5b505af11580156118fa573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db06119256005546001600160a01b036101009091041690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b15801561196657600080fd5b505af115801561197a573d6000803e3d6000fd5b5050600a5460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b1580156119c557600080fd5b505af11580156119d9573d6000803e3d6000fd5b5050600c546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600c80546001600160a01b0319166001600160a01b039290921691909117905550565b606060048054610b3690613526565b6005546001600160a01b03610100909104163314611a7b5760405162461bcd60e51b8152600401610c0090613560565b600b546001600160a01b0390811690831603611b125760405162461bcd60e51b815260206004820152604a60248201527f5245553a205468652050616e63616b655377617020706169722063616e6e6f7460448201527f2062652072656d6f7665642066726f6d206175746f6d617465644d61726b65746064820152694d616b6572506169727360b01b608482015260a401610c00565b610c7782826128c4565b600c5460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610d80573d6000803e3d6000fd5b6000610bc63384610d27856040518060600160405280602581526020016138e0602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612832565b600c546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401611294565b6000610bc633848461223c565b600c5460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b61010060405180830381865afa158015611c51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7591906136be565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b03610100909104163314611cc05760405162461bcd60e51b8152600401610c0090613560565b601155565b6005546001600160a01b03610100909104163314611cf55760405162461bcd60e51b8152600401610c0090613560565b6001600160a01b0382166000908152601a602052604090205481151560ff909116151503611d7d5760405162461bcd60e51b815260206004820152602f60248201527f5245553a204163636f756e7420697320616c7265616479207468652076616c7560448201526e65206f6620276578636c756465642760881b6064820152608401610c00565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03610100909104163314611e0c5760405162461bcd60e51b8152600401610c0090613560565b60058054600680546001600160a01b0319166001600160a01b03610100840416179055610100600160a81b0319169055611e468142613728565b60075560055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a350565b600c546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015610d80573d6000803e3d6000fd5b6005546001600160a01b03610100909104163314611f035760405162461bcd60e51b8152600401610c0090613560565b600c5460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610e07565b600c54604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611c33565b6005546001600160a01b03610100909104163314611fa65760405162461bcd60e51b8152600401610c0090613560565b6001600160a01b03811661200b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c00565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b036101009091041633146120a25760405162461bcd60e51b8152600401610c0090613560565b6008805460ff19166001179055565b6000806120be8385613728565b9050838110156121105760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610c00565b9392505050565b6001600160a01b0383166121795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c00565b6001600160a01b0382166121da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c00565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6008548390839060ff168061226957506001600160a01b03821660009081526009602052604090205460ff165b8061228c57506001600160a01b03811660009081526009602052604090205460ff165b6122c35760405162461bcd60e51b81526020600482015260086024820152672737ba1027b832b760c11b6044820152606401610c00565b6001600160a01b0385166122e95760405162461bcd60e51b8152600401610c0090613740565b6001600160a01b03841661230f5760405162461bcd60e51b8152600401610c0090613785565b826000036123285761232385856000612a23565b610e35565b6001600160a01b0385166000908152601a602052604081205460ff168061236757506001600160a01b0385166000908152601a602052604090205460ff165b6001600160a01b0387166000908152601b602052604090205490915060ff168015612390575080155b1561240d57600f5484111561240d5760405162461bcd60e51b815260206004820152603860248201527f627579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61784275795472616e73616374696f6e416d6f756e742e00000000000000006064820152608401610c00565b6001600160a01b0385166000908152601b602052604090205460ff168015612433575080155b156124b0576010548411156124b05760405162461bcd60e51b815260206004820152603a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e0000000000006064820152608401610c00565b30600090815260208190526040902054601154811080159081906124de5750600b54600160a01b900460ff16155b801561250257506001600160a01b0387166000908152601b602052604090205460ff165b801561252157506005546001600160a01b038981166101009092041614155b1561259657600b805460ff60a01b1916600160a01b17905560115460125460165491935060009161256491606491610eb69161255d9190612b2c565b8690612b88565b905061256f81612c0a565b600061257b8483612b2c565b905061258681612d67565b5050600b805460ff60a01b191690555b600b54600160a01b900460ff161583156125ae575060005b8015612634576001600160a01b0389166000908152601b602052604081205460ff16806125f357506001600160a01b0389166000908152601b602052604090205460ff165b15612615576126126064610eb66016548b612b8890919063ffffffff16565b90505b61261f8882612b2c565b97508015612632576126328a3083612a23565b505b61263f898989612a23565b600c546001600160a01b031663e30443bc8a612670816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156126b657600080fd5b505af19250505080156126c7575060015b50600c546001600160a01b031663e30443bc896126f9816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561273f57600080fd5b505af1925050508015612750575060015b50600b54600160a01b900460ff1661282757601954600c546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af19250505080156127cf575060408051601f3d908101601f191682019092526127cc91810190613690565b60015b156128255760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b505050505050505050565b600081848411156128565760405162461bcd60e51b8152600401610c009190613287565b5061286183856137c8565b949350505050565b60008082116128ba5760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610c00565b61211082846137df565b6001600160a01b0382166000908152601b602052604090205481151560ff90911615150361295a5760405162461bcd60e51b815260206004820152603d60248201527f5245553a204175746f6d61746564206d61726b6574206d616b6572207061697260448201527f20697320616c72656164792073657420746f20746861742076616c75650000006064820152608401610c00565b6001600160a01b0382166000908152601b60205260409020805460ff191682158015919091179091556129e757600c5460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156129ce57600080fd5b505af11580156129e2573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b038316612a495760405162461bcd60e51b8152600401610c0090613740565b6001600160a01b038216612a6f5760405162461bcd60e51b8152600401610c0090613785565b612aac81604051806060016040528060268152602001613892602691396001600160a01b0386166000908152602081905260409020549190612832565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612adb90826120b1565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161222f565b600082821115612b7e5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610c00565b61211082846137c8565b600082600003612b9a57506000610bca565b6000612ba68385613801565b905082612bb385836137df565b146121105760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610c00565b6000612c34612c26601254601654612b2c90919063ffffffff16565b601354610eb6908590612b88565b90506000612c43826002612869565b90506000612c518383612b2c565b905047612c5d83612f02565b6000612c694783612b2c565b9050612c75838261305c565b612c87612c828787612b2c565b612f02565b6018546014546015546001600160a01b03909216916108fc91612cbb91612cad916120b1565b601554610eb6904790612b88565b6040518115909202916000818181858888f19350505050158015612ce3573d6000803e3d6000fd5b506017546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015612d1d573d6000803e3d6000fd5b5060408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a1505050505050565b612d7081613130565b600e546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ddd91906135e0565b600e54600c5460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292935060009291169063a9059cbb906044016020604051808303816000875af1158015612e38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e5c9190613656565b90508015612efd57600c54604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b158015612eaa57600080fd5b505af1158015612ebe573d6000803e3d6000fd5b505060408051868152602081018690527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3935001905060405180910390a15b505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612f3757612f37613595565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612f90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fb49190613673565b81600181518110612fc757612fc7613595565b6001600160a01b039283166020918202929092010152600a54612fed9130911684612117565b600a5460405163791ac94760e01b81526001600160a01b039091169063791ac94790613026908590600090869030904290600401613820565b600060405180830381600087803b15801561304057600080fd5b505af1158015613054573d6000803e3d6000fd5b505050505050565b600a546130749030906001600160a01b031684612117565b600a546001600160a01b031663f305d7198230856000806130a36005546001600160a01b036101009091041690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561310b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e359190613690565b6040805160038082526080820190925260009160208201606080368337019050509050308160008151811061316757613167613595565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156131c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131e49190613673565b816001815181106131f7576131f7613595565b6001600160a01b039283166020918202929092010152600e5482519116908290600290811061322857613228613595565b6001600160a01b039283166020918202929092010152600a5461324e9130911684612117565b600a54604051635c11d79560e01b81526001600160a01b0390911690635c11d79590613026908590600090869030904290600401613820565b600060208083528351808285015260005b818110156132b457858101830151858201604001528201613298565b818111156132c6576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610edc57600080fd5b80356132fc816132dc565b919050565b6000806040838503121561331457600080fd5b823561331f816132dc565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561335657600080fd5b823567ffffffffffffffff8082111561336e57600080fd5b818501915085601f83011261338257600080fd5b8135818111156133945761339461332d565b8060051b604051601f19603f830116810181811085821117156133b9576133b961332d565b6040529182528482019250838101850191888311156133d757600080fd5b938501935b828510156133fc576133ed856132f1565b845293850193928501926133dc565b98975050505050505050565b60006020828403121561341a57600080fd5b8135612110816132dc565b60008060006060848603121561343a57600080fd5b8335613445816132dc565b92506020840135613455816132dc565b929592945050506040919091013590565b60006020828403121561347857600080fd5b5035919050565b6000806000806080858703121561349557600080fd5b5050823594602084013594506040840135936060013592509050565b8015158114610edc57600080fd5b600080604083850312156134d257600080fd5b82356134dd816132dc565b915060208301356134ed816134b1565b809150509250929050565b6000806040838503121561350b57600080fd5b8235613516816132dc565b915060208301356134ed816132dc565b600181811c9082168061353a57607f821691505b60208210810361355a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff81036135d7576135d76135ab565b60010192915050565b6000602082840312156135f257600080fd5b5051919050565b6020808252603f908201527f6d6178207472616e73616374696f6e206c696d6974206d75737420626520677260408201527f6561746f72207468616e20302e3125206f6620746f74616c20737570706c7900606082015260800190565b60006020828403121561366857600080fd5b8151612110816134b1565b60006020828403121561368557600080fd5b8151612110816132dc565b6000806000606084860312156136a557600080fd5b8351925060208401519150604084015190509250925092565b600080600080600080600080610100898b0312156136db57600080fd5b88516136e6816132dc565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b6000821982111561373b5761373b6135ab565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156137da576137da6135ab565b500390565b6000826137fc57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561381b5761381b6135ab565b500290565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156138705784516001600160a01b03168352938301939183019160010161384b565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fb68035e9f66428f2b1845bfcc26dfac8210579e66db86a5ab1c13e4cc0c2b3964736f6c634300080e0033

Libraries Used

IterableMapping : 0x714316ffe26969f1d6657e11588360d03776dca5Unverified

Deployed Bytecode Sourcemap

46481:16353:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46974:61;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;46974:61:0;;;;;;;;7968:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10114:169::-;;;;;;;;;;-1:-1:-1;10114:169:0;;;;;:::i;:::-;;:::i;:::-;;;1558:14:1;;1551:22;1533:41;;1521:2;1506:18;10114:169:0;1393:187:1;46286:186:0;;;;;;;;;;-1:-1:-1;46286:186:0;;;;;:::i;:::-;;:::i;:::-;;47256:88;;;;;;;;;;;;;;;;46565:41;;;;;;;;;;-1:-1:-1;46565:41:0;;;;-1:-1:-1;;;;;46565:41:0;;;;;;-1:-1:-1;;;;;3034:32:1;;;3016:51;;3004:2;2989:18;46565:41:0;2843:230:1;9067:108:0;;;;;;;;;;-1:-1:-1;9155:12:0;;9067:108;;62252:117;;;;;;;;;;-1:-1:-1;62252:117:0;;;;;:::i;:::-;;:::i;10765:321::-;;;;;;;;;;-1:-1:-1;10765:321:0;;;;;:::i;:::-;;:::i;47460:98::-;;;;;;;;;;-1:-1:-1;47460:98:0;;;;-1:-1:-1;;;;;47460:98:0;;;46681:41;;;;;;;;;;-1:-1:-1;46681:41:0;;;;-1:-1:-1;;;;;46681:41:0;;;53261:141;;;;;;;;;;;;;:::i;8911:91::-;;;;;;;;;;-1:-1:-1;8985:9:0;;8911:91;;8985:9;;;;4400:36:1;;4388:2;4373:18;8911:91:0;4258:184:1;53830:123:0;;;;;;;;;;-1:-1:-1;53830:123:0;;;;;:::i;:::-;;:::i;11495:218::-;;;;;;;;;;-1:-1:-1;11495:218:0;;;;;:::i;:::-;;:::i;47219:29::-;;;;;;;;;;;;;;;;47353:100;;;;;;;;;;-1:-1:-1;47353:100:0;;;;-1:-1:-1;;;;;47353:100:0;;;61725:265;;;;;;;;;;-1:-1:-1;61725:265:0;;;;;:::i;:::-;;:::i;45866:26::-;;;;;;;;;;-1:-1:-1;45866:26:0;;;;;;;;46613:29;;;;;;;;;;-1:-1:-1;46613:29:0;;;;-1:-1:-1;;;;;46613:29:0;;;54881:97;;;;;;;;;;;;;:::i;53410:125::-;;;;;;;;;;-1:-1:-1;53410:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;53499:28:0;53475:4;53499:28;;;:19;:28;;;;;;;;;53410:125;46907:60;;;;;;;;;;;;;;;;62123:121;;;;;;;;;;-1:-1:-1;62123:121:0;;;;;:::i;:::-;;:::i;55120:141::-;;;;;;;;;;;;;:::i;51112:497::-;;;;;;;;;;-1:-1:-1;51112:497:0;;;;;:::i;:::-;;:::i;53695:130::-;;;;;;;;;;-1:-1:-1;53695:130:0;;;;;:::i;:::-;;:::i;47180:31::-;;;;;;;;;;;;;;;;62385:442;;;;;;;;;;-1:-1:-1;62385:442:0;;;;;:::i;:::-;;:::i;54614:259::-;;;;;;;;;;-1:-1:-1;54614:259:0;;;;;:::i;:::-;;:::i;9238:127::-;;;;;;;;;;-1:-1:-1;9238:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9339:18:0;9312:7;9339:18;;;;;;;;;;;;9238:127;2409:148;;;;;;;;;;;;;:::i;61455:262::-;;;;;;;;;;-1:-1:-1;61455:262:0;;;;;:::i;:::-;;:::i;46731:70::-;;;;;;;;;;-1:-1:-1;46731:70:0;;;;-1:-1:-1;;;;;46731:70:0;;;52603:402;;;;;;;;;;-1:-1:-1;52603:402:0;;;;;:::i;:::-;;:::i;50282:822::-;;;;;;;;;;-1:-1:-1;50282:822:0;;;;;:::i;:::-;;:::i;47105:28::-;;;;;;;;;;;;;;;;1758:87;;;;;;;;;;-1:-1:-1;1831:6:0;;;;;-1:-1:-1;;;;;1831:6:0;1758:87;;8178:95;;;;;;;;;;;;;:::i;47141:31::-;;;;;;;;;;;;;;;;51920:261;;;;;;;;;;-1:-1:-1;51920:261:0;;;;;:::i;:::-;;:::i;47639:40::-;;;;;;;;;;;;;;;;53145:108;;;;;;;;;;;;;:::i;12216:269::-;;;;;;;;;;-1:-1:-1;12216:269:0;;;;;:::i;:::-;;:::i;53543:147::-;;;;;;;;;;-1:-1:-1;53543:147:0;;;;;:::i;:::-;;:::i;9578:175::-;;;;;;;;;;-1:-1:-1;9578:175:0;;;;;:::i;:::-;;:::i;53961:318::-;;;;;;;;;;-1:-1:-1;53961:318:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6349:32:1;;;6331:51;;6413:2;6398:18;;6391:34;;;;6441:18;;;6434:34;;;;6499:2;6484:18;;6477:34;;;;6542:3;6527:19;;6520:35;6369:3;6571:19;;6564:35;6630:3;6615:19;;6608:35;6674:3;6659:19;;6652:35;6318:3;6303:19;53961:318:0;5992:701:1;61998:117:0;;;;;;;;;;-1:-1:-1;61998:117:0;;;;;:::i;:::-;;:::i;47955:58::-;;;;;;;;;;-1:-1:-1;47955:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;51617:295;;;;;;;;;;-1:-1:-1;51617:295:0;;;;;:::i;:::-;;:::i;3038:226::-;;;;;;;;;;-1:-1:-1;3038:226:0;;;;;:::i;:::-;;:::i;9816:151::-;;;;;;;;;;-1:-1:-1;9816:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9932:18:0;;;9905:7;9932:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9816:151;47042:54;;;;;;;;;;;;;;;;54986:126;;;;;;;;;;;;;:::i;53013:124::-;;;;;;;;;;-1:-1:-1;53013:124:0;;;;;:::i;:::-;;:::i;54284:325::-;;;;;;;;;;-1:-1:-1;54284:325:0;;;;;:::i;:::-;;:::i;2712:244::-;;;;;;;;;;-1:-1:-1;2712:244:0;;;;;:::i;:::-;;:::i;46810:80::-;;;;;;;;;;-1:-1:-1;46810:80:0;;;;-1:-1:-1;;;;;46810:80:0;;;46206:72;;;;;;;;;;;;;:::i;7968:91::-;8013:13;8046:5;8039:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7968:91;:::o;10114:169::-;10197:4;10214:39;414:10;10237:7;10246:6;10214:8;:39::i;:::-;-1:-1:-1;10271:4:0;10114:169;;;;;:::o;46286:186::-;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;;;;;;;;;46373:7:::1;46369:96;46390:6;:13;46386:1;:17;;;46369:96;;;46449:4;46425:10;:21;46436:6;46443:1;46436:9;;;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;46425:21:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;46425:21:0;:28;;-1:-1:-1;;46425:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46405:3;::::1;::::0;::::1;:::i;:::-;;;;46369:96;;;;46286:186:::0;:::o;62252:117::-;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;62331:21:::1;:30:::0;;-1:-1:-1;;;;;;62331:30:0::1;-1:-1:-1::0;;;;;62331:30:0;;;::::1;::::0;;;::::1;::::0;;62252:117::o;10765:321::-;10871:4;10888:36;10898:6;10906:9;10917:6;10888:9;:36::i;:::-;10935:121;10944:6;414:10;10966:89;11004:6;10966:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10966:19:0;;;;;;:11;:19;;;;;;;;414:10;10966:33;;;;;;;;;;:37;:89::i;:::-;10935:8;:121::i;:::-;-1:-1:-1;11074:4:0;10765:321;;;;;:::o;53261:141::-;53351:15;;:43;;;-1:-1:-1;;;53351:43:0;;;;53324:7;;-1:-1:-1;;;;;53351:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53344:50;;53261:141;:::o;53830:123::-;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;53903:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;53903:45:0;;-1:-1:-1;;;;;3034:32:1;;;53903:45:0::1;::::0;::::1;3016:51:1::0;53903:15:0;;::::1;::::0;:36:::1;::::0;2989:18:1;;53903:45:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53830:123:::0;:::o;11495:218::-;414:10;11583:4;11632:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11632:34:0;;;;;;;;;;11583:4;;11600:83;;11623:7;;11632:50;;11671:10;11632:38;:50::i;61725:265::-;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;61809:24:::1;:37:::0;;;61892:22:::1;61910:3;61892:13;9155:12:::0;;;9067:108;61892:13:::1;:17:::0;::::1;:22::i;:::-;61865:24;;:49;61857:125;;;;-1:-1:-1::0;;;61857:125:0::1;;;;;;;:::i;:::-;61725:265:::0;:::o;54881:97::-;54912:15;;:58;;-1:-1:-1;;;54912:58:0;;54951:10;54912:58;;;9086:51:1;54912:15:0;9153:18:1;;;9146:50;-1:-1:-1;;;;;54912:15:0;;;;:30;;9059:18:1;;54912:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;62123:121::-;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;62204:23:::1;:32:::0;;-1:-1:-1;;;;;;62204:32:0::1;-1:-1:-1::0;;;;;62204:32:0;;;::::1;::::0;;;::::1;::::0;;62123:121::o;55120:141::-;55212:15;;:41;;;-1:-1:-1;;;55212:41:0;;;;55185:7;;-1:-1:-1;;;;;55212:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;;;;;51112:497;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;51221:15:::1;::::0;-1:-1:-1;;;;;51221:15:0;;::::1;51199:38:::0;;::::1;::::0;51191:91:::1;;;::::0;-1:-1:-1;;;51191:91:0;;9659:2:1;51191:91:0::1;::::0;::::1;9641:21:1::0;9698:2;9678:18;;;9671:30;9737:34;9717:18;;;9710:62;-1:-1:-1;;;9788:18:1;;;9781:38;9836:19;;51191:91:0::1;9457:404:1::0;51191:91:0::1;51340:15;::::0;51298:59:::1;::::0;-1:-1:-1;;;;;51340:15:0;;::::1;::::0;51298:59;::::1;::::0;::::1;::::0;51340:15:::1;::::0;51298:59:::1;51368:15;:48:::0;;-1:-1:-1;;;;;;51368:48:0::1;-1:-1:-1::0;;;;;51368:48:0;::::1;::::0;;::::1;::::0;;;51470:25:::1;::::0;;-1:-1:-1;;;51470:25:0;;;;-1:-1:-1;;51368:48:0;51470:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;51368:48;51470:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51452:69:0::1;;51530:4;51537:15;;;;;;;;;-1:-1:-1::0;;;;;51537:15:0::1;-1:-1:-1::0;;;;;51537:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51452:108;::::0;-1:-1:-1;;;;;;51452:108:0::1;::::0;;;;;;-1:-1:-1;;;;;10352:15:1;;;51452:108:0::1;::::0;::::1;10334:34:1::0;10404:15;;10384:18;;;10377:43;10269:18;;51452:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51571:13;:30:::0;;-1:-1:-1;;;;;;51571:30:0::1;-1:-1:-1::0;;;;;51571:30:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;51112:497:0:o;53695:130::-;53786:15;;:34;;-1:-1:-1;;;53786:34:0;;-1:-1:-1;;;;;3034:32:1;;;53786:34:0;;;3016:51:1;53765:7:0;;53786:15;;:25;;2989:18:1;;53786:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;62385:442::-;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;62518:9:::1;:22:::0;;;62551:12:::1;:28:::0;;;62590:12:::1;:28:::0;;;62629:10:::1;:24:::0;;;62676:61:::1;62642:11:::0;62676:45:::1;62566:13:::0;62676:45;62530:10;62605:13;62676::::1;:27::i;:::-;:31:::0;::::1;:45::i;:61::-;62664:9;:73:::0;;;62769:2:::1;-1:-1:-1::0;62756:15:0::1;62748:71;;;::::0;-1:-1:-1;;;62748:71:0;;10633:2:1;62748:71:0::1;::::0;::::1;10615:21:1::0;10672:2;10652:18;;;10645:30;10711:34;10691:18;;;10684:62;-1:-1:-1;;;10762:18:1;;;10755:41;10813:19;;62748:71:0::1;10431:407:1::0;62748:71:0::1;62385:442:::0;;;;:::o;54614:259::-;54740:15;;:28;;-1:-1:-1;;;;;;54740:28:0;;;;;160:25:1;;;54674:18:0;;;;;;-1:-1:-1;;;;;54740:15:0;;:23;;133:18:1;;54740:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54778:87;;;11385:25:1;;;11441:2;11426:18;;11419:34;;;11469:18;;;11462:34;;;11527:2;11512:18;;11505:34;;;54673:95:0;;-1:-1:-1;54673:95:0;;-1:-1:-1;54673:95:0;-1:-1:-1;54855:9:0;;54843:5;;54778:87;;11372:3:1;11357:19;54778:87:0;;;;;;;54668:205;;;54614:259;:::o;2409:148::-;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;2500:6:::1;::::0;2479:40:::1;::::0;2516:1:::1;::::0;2500:6:::1;::::0;::::1;-1:-1:-1::0;;;;;2500:6:0::1;::::0;2479:40:::1;::::0;2516:1;;2479:40:::1;2530:6;:19:::0;;-1:-1:-1;;;;;;2530:19:0::1;::::0;;2409:148::o;61455:262::-;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;61538:23:::1;:36:::0;;;61619:22:::1;61637:3;61619:13;9155:12:::0;;;9067:108;61619:22:::1;61593:23;;:48;61585:124;;;;-1:-1:-1::0;;;61585:124:0::1;;;;;;;:::i;52603:402::-:0;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;52701:6:::1;52689:8;:18;;:40;;;;;52723:6;52711:8;:18;;52689:40;52681:110;;;::::0;-1:-1:-1;;;52681:110:0;;11752:2:1;52681:110:0::1;::::0;::::1;11734:21:1::0;11791:2;11771:18;;;11764:30;11830:34;11810:18;;;11803:62;11901:27;11881:18;;;11874:55;11946:19;;52681:110:0::1;11550:421:1::0;52681:110:0::1;52822:16;;52810:8;:28:::0;52802:90:::1;;;::::0;-1:-1:-1;;;52802:90:0;;12178:2:1;52802:90:0::1;::::0;::::1;12160:21:1::0;12217:2;12197:18;;;12190:30;12256:34;12236:18;;;12229:62;-1:-1:-1;;;12307:18:1;;;12300:47;12364:19;;52802:90:0::1;11976:413:1::0;52802:90:0::1;52942:16;::::0;52908:51:::1;::::0;52932:8;;52908:51:::1;::::0;;;::::1;52970:16;:27:::0;52603:402::o;50282:822::-;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;50391:15:::1;::::0;-1:-1:-1;;;;;50391:15:0;;::::1;50369:38:::0;;::::1;::::0;50361:101:::1;;;::::0;-1:-1:-1;;;50361:101:0;;12596:2:1;50361:101:0::1;::::0;::::1;12578:21:1::0;12635:2;12615:18;;;12608:30;12674:34;12654:18;;;12647:62;-1:-1:-1;;;12725:18:1;;;12718:48;12783:19;;50361:101:0::1;12394:414:1::0;50361:101:0::1;50475:37;50542:10;50475:79;;50613:4;-1:-1:-1::0;;;;;50575:43:0::1;:18;-1:-1:-1::0;;;;;50575:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50575:43:0::1;;50567:122;;;::::0;-1:-1:-1;;;50567:122:0;;13015:2:1;50567:122:0::1;::::0;::::1;12997:21:1::0;13054:2;13034:18;;;13027:30;13093:34;13073:18;;;13066:62;13164:34;13144:18;;;13137:62;-1:-1:-1;;;13215:19:1;;;13208:33;13258:19;;50567:122:0::1;12813:470:1::0;50567:122:0::1;50702:68;::::0;-1:-1:-1;;;50702:68:0;;-1:-1:-1;;;;;50702:39:0;::::1;:68;::::0;::::1;3016:51:1::0;;;50702:39:0;::::1;::::0;2989:18:1;;50702:68:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;50781:54:0::1;::::0;-1:-1:-1;;;50781:54:0;;50829:4:::1;50781:54;::::0;::::1;3016:51:1::0;-1:-1:-1;;;;;50781:39:0;::::1;::::0;-1:-1:-1;50781:39:0::1;::::0;-1:-1:-1;2989:18:1;;50781:54:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;50846:18;-1:-1:-1::0;;;;;50846:39:0::1;;50886:7;1831:6:::0;;-1:-1:-1;;;;;1831:6:0;;;;;;1758:87;50886:7:::1;50846:48;::::0;-1:-1:-1;;;;;;50846:48:0::1;::::0;;;;;;-1:-1:-1;;;;;3034:32:1;;;50846:48:0::1;::::0;::::1;3016:51:1::0;2989:18;;50846:48:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;50953:15:0::1;::::0;50905:65:::1;::::0;-1:-1:-1;;;50905:65:0;;-1:-1:-1;;;;;50953:15:0;;::::1;50905:65;::::0;::::1;3016:51:1::0;50905:39:0;;::::1;::::0;-1:-1:-1;50905:39:0::1;::::0;-1:-1:-1;2989:18:1;;50905:65:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;51030:15:0::1;::::0;50988:59:::1;::::0;-1:-1:-1;;;;;51030:15:0;;::::1;::::0;-1:-1:-1;50988:59:0;;::::1;::::0;-1:-1:-1;50988:59:0::1;::::0;51030:15:::1;::::0;50988:59:::1;51060:15;:36:::0;;-1:-1:-1;;;;;;51060:36:0::1;-1:-1:-1::0;;;;;51060:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;50282:822:0:o;8178:95::-;8225:13;8258:7;8251:14;;;;;:::i;51920:261::-;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;52027:13:::1;::::0;-1:-1:-1;;;;;52027:13:0;;::::1;52019:21:::0;;::::1;::::0;52011:108:::1;;;::::0;-1:-1:-1;;;52011:108:0;;13490:2:1;52011:108:0::1;::::0;::::1;13472:21:1::0;13529:2;13509:18;;;13502:30;13568:34;13548:18;;;13541:62;13639:34;13619:18;;;13612:62;-1:-1:-1;;;13690:19:1;;;13683:41;13741:19;;52011:108:0::1;13288:478:1::0;52011:108:0::1;52132:41;52161:4;52167:5;52132:28;:41::i;53145:108::-:0;53218:15;;:27;;;-1:-1:-1;;;53218:27:0;;;;53191:7;;-1:-1:-1;;;;;53218:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;;;;;12216:269;12309:4;12326:129;414:10;12349:7;12358:96;12397:15;12358:96;;;;;;;;;;;;;;;;;414:10;12358:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12358:34:0;;;;;;;;;;;;:38;:96::i;53543:147::-;53636:15;;:47;;-1:-1:-1;;;53636:47:0;;-1:-1:-1;;;;;3034:32:1;;;53636:47:0;;;3016:51:1;53612:7:0;;53636:15;;:38;;2989:18:1;;53636:47:0;2843:230:1;9578:175:0;9664:4;9681:42;414:10;9705:9;9716:6;9681:9;:42::i;53961:318::-;54236:15;;:35;;-1:-1:-1;;;54236:35:0;;-1:-1:-1;;;;;3034:32:1;;;54236:35:0;;;3016:51:1;54057:7:0;;;;;;;;;;;;;;;;54236:15;;;:26;;2989:18:1;;54236:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54229:42;;;;;;;;;;;;;;;;53961:318;;;;;;;;;:::o;61998:117::-;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;62077:18:::1;:30:::0;61998:117::o;51617:295::-;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51710:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;51702:100:::1;;;::::0;-1:-1:-1;;;51702:100:0;;14659:2:1;51702:100:0::1;::::0;::::1;14641:21:1::0;14698:2;14678:18;;;14671:30;14737:34;14717:18;;;14710:62;-1:-1:-1;;;14788:18:1;;;14781:45;14843:19;;51702:100:0::1;14457:411:1::0;51702:100:0::1;-1:-1:-1::0;;;;;51813:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;51813:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;51870:34;;1533:41:1;;;51870:34:0::1;::::0;1506:18:1;51870:34:0::1;;;;;;;51617:295:::0;;:::o;3038:226::-;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;3119:6:::1;::::0;;3102:14:::1;:23:::0;;-1:-1:-1;;;;;;3102:23:0::1;-1:-1:-1::0;;;;;3119:6:0::1;::::0;::::1;;3102:23;::::0;;-1:-1:-1;;;;;;3136:19:0::1;::::0;;3178:22:::1;3196:4:::0;3178:15:::1;:22;:::i;:::-;3166:9;:34:::0;3237:6:::1;::::0;3216:40:::1;::::0;3253:1:::1;::::0;3237:6:::1;::::0;::::1;-1:-1:-1::0;;;;;3237:6:0::1;::::0;3216:40:::1;::::0;3253:1;;3216:40:::1;3038:226:::0;:::o;54986:126::-;55065:15;;:39;;;-1:-1:-1;;;55065:39:0;;;;55041:7;;-1:-1:-1;;;;;55065:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;53013:124;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;53087:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;53087:42:0;;::::1;::::0;::::1;160:25:1::0;;;-1:-1:-1;;;;;53087:15:0;;::::1;::::0;:31:::1;::::0;133:18:1;;53087:42:0::1;14:177:1::0;54284:325:0;54561:15;;:40;;-1:-1:-1;;;54561:40:0;;;;;160:25:1;;;54385:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54561:15:0;;;;:33;;133:18:1;;54561:40:0;14:177:1;2712:244:0;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2801:22:0;::::1;2793:73;;;::::0;-1:-1:-1;;;2793:73:0;;15208:2:1;2793:73:0::1;::::0;::::1;15190:21:1::0;15247:2;15227:18;;;15220:30;15286:34;15266:18;;;15259:62;-1:-1:-1;;;15337:18:1;;;15330:36;15383:19;;2793:73:0::1;15006:402:1::0;2793:73:0::1;2903:6;::::0;2882:38:::1;::::0;-1:-1:-1;;;;;2882:38:0;;::::1;::::0;2903:6:::1;::::0;::::1;;::::0;2882:38:::1;::::0;;;::::1;2931:6;:17:::0;;-1:-1:-1;;;;;2931:17:0;;::::1;;;-1:-1:-1::0;;;;;;2931:17:0;;::::1;::::0;;;::::1;::::0;;2712:244::o;46206:72::-;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;414:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;46257:6:::1;:13:::0;;-1:-1:-1;;46257:13:0::1;46266:4;46257:13;::::0;;46206:72::o;39496:179::-;39554:7;;39586:5;39590:1;39586;:5;:::i;:::-;39574:17;;39615:1;39610;:6;;39602:46;;;;-1:-1:-1;;;39602:46:0;;15615:2:1;39602:46:0;;;15597:21:1;15654:2;15634:18;;;15627:30;15693:29;15673:18;;;15666:57;15740:18;;39602:46:0;15413:351:1;39602:46:0;39666:1;39496:179;-1:-1:-1;;;39496:179:0:o;15363:346::-;-1:-1:-1;;;;;15465:19:0;;15457:68;;;;-1:-1:-1;;;15457:68:0;;15971:2:1;15457:68:0;;;15953:21:1;16010:2;15990:18;;;15983:30;16049:34;16029:18;;;16022:62;-1:-1:-1;;;16100:18:1;;;16093:34;16144:19;;15457:68:0;15769:400:1;15457:68:0;-1:-1:-1;;;;;15544:21:0;;15536:68;;;;-1:-1:-1;;;15536:68:0;;16376:2:1;15536:68:0;;;16358:21:1;16415:2;16395:18;;;16388:30;16454:34;16434:18;;;16427:62;-1:-1:-1;;;16505:18:1;;;16498:32;16547:19;;15536:68:0;16174:398:1;15536:68:0;-1:-1:-1;;;;;15617:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15669:32;;160:25:1;;;15669:32:0;;133:18:1;15669:32:0;;;;;;;;15363:346;;;:::o;55271:2751::-;46008:6;;55371:4;;55377:2;;46008:6;;;:26;;-1:-1:-1;;;;;;46018:16:0;;;;;;:10;:16;;;;;;;;46008:26;:44;;;-1:-1:-1;;;;;;46038:14:0;;;;;;:10;:14;;;;;;;;46008:44;46000:65;;;;-1:-1:-1;;;46000:65:0;;16779:2:1;46000:65:0;;;16761:21:1;16818:1;16798:18;;;16791:29;-1:-1:-1;;;16836:18:1;;;16829:38;16884:18;;46000:65:0;16577:331:1;46000:65:0;-1:-1:-1;;;;;55418:18:0;::::1;55410:68;;;;-1:-1:-1::0;;;55410:68:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;55497:16:0;::::1;55489:64;;;;-1:-1:-1::0;;;55489:64:0::1;;;;;;;:::i;:::-;55569:6;55579:1;55569:11:::0;55566:92:::1;;55597:28;55613:4;55619:2;55623:1;55597:15;:28::i;:::-;55640:7;;55566:92;-1:-1:-1::0;;;;;55694:25:0;::::1;55670:20;55694:25:::0;;;:19:::1;:25;::::0;;;;;::::1;;::::0;:52:::1;;-1:-1:-1::0;;;;;;55723:23:0;::::1;;::::0;;;:19:::1;:23;::::0;;;;;::::1;;55694:52;-1:-1:-1::0;;;;;55763:31:0;::::1;;::::0;;;:25:::1;:31;::::0;;;;;55670:77;;-1:-1:-1;55763:31:0::1;;:51:::0;::::1;;;;55799:15;55798:16;55763:51;55760:184;;;55848:23;;55838:6;:33;;55830:102;;;::::0;-1:-1:-1;;;55830:102:0;;17925:2:1;55830:102:0::1;::::0;::::1;17907:21:1::0;17964:2;17944:18;;;17937:30;18003:34;17983:18;;;17976:62;18074:26;18054:18;;;18047:54;18118:19;;55830:102:0::1;17723:420:1::0;55830:102:0::1;-1:-1:-1::0;;;;;55959:29:0;::::1;;::::0;;;:25:::1;:29;::::0;;;;;::::1;;:49:::0;::::1;;;;55993:15;55992:16;55959:49;55956:185;;;56042:24;;56032:6;:34;;56024:105;;;::::0;-1:-1:-1;;;56024:105:0;;18350:2:1;56024:105:0::1;::::0;::::1;18332:21:1::0;18389:2;18369:18;;;18362:30;18428:34;18408:18;;;18401:62;18499:28;18479:18;;;18472:56;18545:19;;56024:105:0::1;18148:422:1::0;56024:105:0::1;56196:4;56147:28;9339:18:::0;;;;;;;;;;;56254::::1;::::0;56230:42;::::1;::::0;::::1;::::0;;;56289:33:::1;;-1:-1:-1::0;56314:8:0::1;::::0;-1:-1:-1;;;56314:8:0;::::1;;;56313:9;56289:33;:79;;;;-1:-1:-1::0;;;;;;56339:29:0;::::1;;::::0;;;:25:::1;:29;::::0;;;;;::::1;;56289:79;:111;;;;-1:-1:-1::0;1831:6:0;;-1:-1:-1;;;;;56385:15:0;;::::1;1831:6:::0;;;;;56385:15:::1;;56289:111;56285:621;;;56427:8;:15:::0;;-1:-1:-1;;;;56427:15:0::1;-1:-1:-1::0;;;56427:15:0::1;::::0;;56482:18:::1;::::0;56633:9:::1;::::0;56619::::1;::::0;56482:18;;-1:-1:-1;56427:15:0;;56594:59:::1;::::0;56649:3:::1;::::0;56594:50:::1;::::0;56619:24:::1;::::0;:9;:13:::1;:24::i;:::-;56594:20:::0;;:24:::1;:50::i;:59::-;56573:80;;56668:26;56683:10;56668:14;:26::i;:::-;56753:20;56776:36;:20:::0;56801:10;56776:24:::1;:36::i;:::-;56753:59;;56827:34;56848:12;56827:20;:34::i;:::-;-1:-1:-1::0;;56878:8:0::1;:16:::0;;-1:-1:-1;;;;56878:16:0::1;::::0;;56285:621:::1;56936:8;::::0;-1:-1:-1;;;56936:8:0;::::1;;;56935:9;57042:62:::0;::::1;;;-1:-1:-1::0;57087:5:0::1;57042:62;57119:7;57116:357;;;-1:-1:-1::0;;;;;57173:31:0;::::1;57140:12;57173:31:::0;;;:25:::1;:31;::::0;;;;;::::1;;::::0;:64:::1;;-1:-1:-1::0;;;;;;57208:29:0;::::1;;::::0;;;:25:::1;:29;::::0;;;;;::::1;;57173:64;57170:135;;;57262:30;57288:3;57262:21;57273:9;;57262:6;:10;;:21;;;;:::i;:30::-;57255:37;;57170:135;57327:16;:6:::0;57338:4;57327:10:::1;:16::i;:::-;57318:25:::0;-1:-1:-1;57363:6:0;;57360:88:::1;;57390:42;57406:4;57420;57427;57390:15;:42::i;:::-;57128:345;57116:357;57485:33;57501:4;57507:2;57511:6;57485:15;:33::i;:::-;57535:15;::::0;-1:-1:-1;;;;;57535:15:0::1;:26;57570:4:::0;57577:15:::1;57570:4:::0;-1:-1:-1;;;;;9339:18:0;9312:7;9339:18;;;;;;;;;;;;9238:127;57577:15:::1;57535:58;::::0;-1:-1:-1;;;;;;57535:58:0::1;::::0;;;;;;-1:-1:-1;;;;;18783:32:1;;;57535:58:0::1;::::0;::::1;18765:51:1::0;18832:18;;;18825:34;18738:18;;57535:58:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;57531:74:::0;57619:15:::1;::::0;-1:-1:-1;;;;;57619:15:0::1;:26;57654:2:::0;57659:13:::1;57654:2:::0;-1:-1:-1;;;;;9339:18:0;9312:7;9339:18;;;;;;;;;;;;9238:127;57659:13:::1;57619:54;::::0;-1:-1:-1;;;;;;57619:54:0::1;::::0;;;;;;-1:-1:-1;;;;;18783:32:1;;;57619:54:0::1;::::0;::::1;18765:51:1::0;18832:18;;;18825:34;18738:18;;57619:54:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;57615:70:::0;57701:8:::1;::::0;-1:-1:-1;;;57701:8:0;::::1;;;57697:318;;57734:16;::::0;57765:15:::1;::::0;:28:::1;::::0;-1:-1:-1;;;;;;57765:28:0;;::::1;::::0;::::1;160:25:1::0;;;-1:-1:-1;;;;;57765:15:0;;::::1;::::0;:23:::1;::::0;133:18:1;;57765:28:0::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;57765:28:0::1;::::0;;::::1;;::::0;;::::1;-1:-1:-1::0;;57765:28:0::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;;57761:243:::0;::::1;;57882:86;::::0;;11385:25:1;;;11441:2;11426:18;;11419:34;;;11469:18;;;11462:34;;;11527:2;11512:18;;11505:34;;;57958:9:0::1;::::0;57947:4:::1;::::0;57882:86:::1;::::0;11372:3:1;11357:19;57882:86:0::1;;;;;;;57794:184;;;57761:243;57711:304;57697:318;55399:2623;;;;55271:2751:::0;;;;;:::o;42323:166::-;42409:7;42445:12;42437:6;;;;42429:29;;;;-1:-1:-1;;;42429:29:0;;;;;;;;:::i;:::-;-1:-1:-1;42476:5:0;42480:1;42476;:5;:::i;:::-;42469:12;42323:166;-1:-1:-1;;;;42323:166:0:o;41073:153::-;41131:7;41163:1;41159;:5;41151:44;;;;-1:-1:-1;;;41151:44:0;;19202:2:1;41151:44:0;;;19184:21:1;19241:2;19221:18;;;19214:30;19280:28;19260:18;;;19253:56;19326:18;;41151:44:0;19000:350:1;41151:44:0;41213:5;41217:1;41213;:5;:::i;52189:404::-;-1:-1:-1;;;;;52280:31:0;;;;;;:25;:31;;;;;;:40;;;:31;;;;:40;;;52272:114;;;;-1:-1:-1;;;52272:114:0;;19779:2:1;52272:114:0;;;19761:21:1;19818:2;19798:18;;;19791:30;19857:34;19837:18;;;19830:62;19928:31;19908:18;;;19901:59;19977:19;;52272:114:0;19577:425:1;52272:114:0;-1:-1:-1;;;;;52397:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;52397:39:0;;;;;;;;;;;;52449:79;;52474:15;;:42;;-1:-1:-1;;;52474:42:0;;-1:-1:-1;;;;;3034:32:1;;;52474:42:0;;;3016:51:1;52474:15:0;;;;:36;;2989:18:1;;52474:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52449:79;52545:40;;;;;;-1:-1:-1;;;;;52545:40:0;;;;;;;;52189:404;;:::o;12975:539::-;-1:-1:-1;;;;;13081:20:0;;13073:70;;;;-1:-1:-1;;;13073:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13162:23:0;;13154:71;;;;-1:-1:-1;;;13154:71:0;;;;;;;:::i;:::-;13318;13340:6;13318:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13318:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13298:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13423:20;;;;;;;:32;;13448:6;13423:24;:32::i;:::-;-1:-1:-1;;;;;13400:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13471:35;160:25:1;;;13400:20:0;;13471:35;;;;;;133:18:1;13471:35:0;14:177:1;39958:158:0;40016:7;40049:1;40044;:6;;40036:49;;;;-1:-1:-1;;;40036:49:0;;20209:2:1;40036:49:0;;;20191:21:1;20248:2;20228:18;;;20221:30;20287:32;20267:18;;;20260:60;20337:18;;40036:49:0;20007:354:1;40036:49:0;40103:5;40107:1;40103;:5;:::i;40375:220::-;40433:7;40457:1;40462;40457:6;40453:20;;-1:-1:-1;40472:1:0;40465:8;;40453:20;40484:9;40496:5;40500:1;40496;:5;:::i;:::-;40484:17;-1:-1:-1;40529:1:0;40520:5;40524:1;40484:17;40520:5;:::i;:::-;:10;40512:56;;;;-1:-1:-1;;;40512:56:0;;20741:2:1;40512:56:0;;;20723:21:1;20780:2;20760:18;;;20753:30;20819:34;20799:18;;;20792:62;-1:-1:-1;;;20870:18:1;;;20863:31;20911:19;;40512:56:0;20539:397:1;58030:1327:0;58089:23;58115:54;58144:24;58158:9;;58144;;:13;;:24;;;;:::i;:::-;58126:12;;58115:24;;:6;;:10;:24::i;:54::-;58089:80;-1:-1:-1;58230:12:0;58245:22;58089:80;58265:1;58245:19;:22::i;:::-;58230:37;-1:-1:-1;58278:17:0;58298:25;:15;58230:37;58298:19;:25::i;:::-;58278:45;-1:-1:-1;58626:21:0;58692:22;58709:4;58692:16;:22::i;:::-;58845:18;58866:41;:21;58892:14;58866:25;:41::i;:::-;58845:62;;58957:35;58970:9;58981:10;58957:12;:35::i;:::-;59063:45;59080:27;:6;59091:15;59080:10;:27::i;:::-;59063:16;:45::i;:::-;59119:21;;59207:12;;59192:10;;-1:-1:-1;;;;;59119:21:0;;;;:103;;59150:71;;59192:28;;:14;:28::i;:::-;59176:10;;59150:37;;:21;;:25;:37::i;:71::-;59119:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59233:23:0;;:55;;-1:-1:-1;;;;;59233:23:0;;;;59266:21;59233:55;;;;;:23;:55;:23;:55;59266:21;59233:23;:55;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59306:43:0;;;21143:25:1;;;21199:2;21184:18;;21177:34;;;21227:18;;;21220:34;;;59306:43:0;;21131:2:1;21116:18;59306:43:0;;;;;;;58078:1279;;;;;58030:1327;:::o;61035:412::-;61099:24;61116:6;61099:16;:24::i;:::-;61161:11;;61154:44;;-1:-1:-1;;;61154:44:0;;61192:4;61154:44;;;3016:51:1;61134:17:0;;-1:-1:-1;;;;;61161:11:0;;61154:29;;2989:18:1;;61154:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61231:11;;61261:15;;61224:65;;-1:-1:-1;;;61224:65:0;;-1:-1:-1;;;;;61261:15:0;;;61224:65;;;18765:51:1;18832:18;;;18825:34;;;61134:64:0;;-1:-1:-1;61209:12:0;;61231:11;;;61224:28;;18738:18:1;;61224:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61209:80;;61306:7;61302:138;;;61330:15;;:46;;-1:-1:-1;;;61330:46:0;;;;;160:25:1;;;-1:-1:-1;;;;;61330:15:0;;;;:35;;133:18:1;;61330:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;61396:32:0;;;21718:25:1;;;21774:2;21759:18;;21752:34;;;61396:32:0;;-1:-1:-1;21691:18:1;;-1:-1:-1;61396:32:0;;;;;;;61302:138;61088:359;;61035:412;:::o;59367:591::-;59517:16;;;59531:1;59517:16;;;;;;;;59493:21;;59517:16;;;;;;;;;;-1:-1:-1;59517:16:0;59493:40;;59562:4;59544;59549:1;59544:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;59544:23:0;;;:7;;;;;;;;;;:23;;;;59588:15;;:22;;;-1:-1:-1;;;59588:22:0;;;;:15;;;;;:20;;:22;;;;;59544:7;;59588:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59578:4;59583:1;59578:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;59578:32:0;;;:7;;;;;;;;;:32;59655:15;;59623:62;;59640:4;;59655:15;59673:11;59623:8;:62::i;:::-;59724:15;;:224;;-1:-1:-1;;;59724:224:0;;-1:-1:-1;;;;;59724:15:0;;;;:66;;:224;;59805:11;;59724:15;;59875:4;;59902;;59922:15;;59724:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59422:536;59367:591;:::o;60510:517::-;60692:15;;60660:62;;60677:4;;-1:-1:-1;;;;;60692:15:0;60710:11;60660:8;:62::i;:::-;60765:15;;-1:-1:-1;;;;;60765:15:0;:31;60804:9;60837:4;60857:11;60765:15;;60969:7;1831:6;;-1:-1:-1;;;;;1831:6:0;;;;;;1758:87;60969:7;60765:252;;;;;;-1:-1:-1;;;;;;60765:252:0;;;-1:-1:-1;;;;;23141:15:1;;;60765:252:0;;;23123:34:1;23173:18;;;23166:34;;;;23216:18;;;23209:34;;;;23259:18;;;23252:34;23323:15;;;23302:19;;;23295:44;60991:15:0;23355:19:1;;;23348:35;23057:19;;60765:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;59966:536::-;60056:16;;;60070:1;60056:16;;;;;;;;;60032:21;;60056:16;;;;;;;;;;-1:-1:-1;60056:16:0;60032:40;;60101:4;60083;60088:1;60083:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;60083:23:0;;;:7;;;;;;;;;;:23;;;;60127:15;;:22;;;-1:-1:-1;;;60127:22:0;;;;:15;;;;;:20;;:22;;;;;60083:7;;60127:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60117:4;60122:1;60117:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;60117:32:0;;;:7;;;;;;;;;:32;60170:11;;60160:7;;60170:11;;;60160:4;;60165:1;;60160:7;;;;;;:::i;:::-;-1:-1:-1;;;;;60160:21:0;;;:7;;;;;;;;;:21;60226:15;;60194:62;;60211:4;;60226:15;60244:11;60194:8;:62::i;:::-;60295:15;;:199;;-1:-1:-1;;;60295:199:0;;-1:-1:-1;;;;;60295:15:0;;;;:69;;:199;;60379:11;;60295:15;;60421:4;;60448;;60468:15;;60295:199;;;:::i;196:597:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;634:6;631:1;628:13;625:91;;;704:1;699:2;690:6;679:9;675:22;671:31;664:42;625:91;-1:-1:-1;777:2:1;756:15;-1:-1:-1;;752:29:1;737:45;;;;784:2;733:54;;196:597;-1:-1:-1;;;196:597:1:o;798:131::-;-1:-1:-1;;;;;873:31:1;;863:42;;853:70;;919:1;916;909:12;934:134;1002:20;;1031:31;1002:20;1031:31;:::i;:::-;934:134;;;:::o;1073:315::-;1141:6;1149;1202:2;1190:9;1181:7;1177:23;1173:32;1170:52;;;1218:1;1215;1208:12;1170:52;1257:9;1244:23;1276:31;1301:5;1276:31;:::i;:::-;1326:5;1378:2;1363:18;;;;1350:32;;-1:-1:-1;;;1073:315:1:o;1585:127::-;1646:10;1641:3;1637:20;1634:1;1627:31;1677:4;1674:1;1667:15;1701:4;1698:1;1691:15;1717:1121;1801:6;1832:2;1875;1863:9;1854:7;1850:23;1846:32;1843:52;;;1891:1;1888;1881:12;1843:52;1931:9;1918:23;1960:18;2001:2;1993:6;1990:14;1987:34;;;2017:1;2014;2007:12;1987:34;2055:6;2044:9;2040:22;2030:32;;2100:7;2093:4;2089:2;2085:13;2081:27;2071:55;;2122:1;2119;2112:12;2071:55;2158:2;2145:16;2180:2;2176;2173:10;2170:36;;;2186:18;;:::i;:::-;2232:2;2229:1;2225:10;2264:2;2258:9;2327:2;2323:7;2318:2;2314;2310:11;2306:25;2298:6;2294:38;2382:6;2370:10;2367:22;2362:2;2350:10;2347:18;2344:46;2341:72;;;2393:18;;:::i;:::-;2429:2;2422:22;2479:18;;;2513:15;;;;-1:-1:-1;2555:11:1;;;2551:20;;;2583:19;;;2580:39;;;2615:1;2612;2605:12;2580:39;2639:11;;;;2659:148;2675:6;2670:3;2667:15;2659:148;;;2741:23;2760:3;2741:23;:::i;:::-;2729:36;;2692:12;;;;2785;;;;2659:148;;;2826:6;1717:1121;-1:-1:-1;;;;;;;;1717:1121:1:o;3078:255::-;3145:6;3198:2;3186:9;3177:7;3173:23;3169:32;3166:52;;;3214:1;3211;3204:12;3166:52;3253:9;3240:23;3272:31;3297:5;3272:31;:::i;3338:456::-;3415:6;3423;3431;3484:2;3472:9;3463:7;3459:23;3455:32;3452:52;;;3500:1;3497;3490:12;3452:52;3539:9;3526:23;3558:31;3583:5;3558:31;:::i;:::-;3608:5;-1:-1:-1;3665:2:1;3650:18;;3637:32;3678:33;3637:32;3678:33;:::i;:::-;3338:456;;3730:7;;-1:-1:-1;;;3784:2:1;3769:18;;;;3756:32;;3338:456::o;4699:180::-;4758:6;4811:2;4799:9;4790:7;4786:23;4782:32;4779:52;;;4827:1;4824;4817:12;4779:52;-1:-1:-1;4850:23:1;;4699:180;-1:-1:-1;4699:180:1:o;5092:385::-;5178:6;5186;5194;5202;5255:3;5243:9;5234:7;5230:23;5226:33;5223:53;;;5272:1;5269;5262:12;5223:53;-1:-1:-1;;5295:23:1;;;5365:2;5350:18;;5337:32;;-1:-1:-1;5416:2:1;5401:18;;5388:32;;5467:2;5452:18;5439:32;;-1:-1:-1;5092:385:1;-1:-1:-1;5092:385:1:o;5482:118::-;5568:5;5561:13;5554:21;5547:5;5544:32;5534:60;;5590:1;5587;5580:12;5605:382;5670:6;5678;5731:2;5719:9;5710:7;5706:23;5702:32;5699:52;;;5747:1;5744;5737:12;5699:52;5786:9;5773:23;5805:31;5830:5;5805:31;:::i;:::-;5855:5;-1:-1:-1;5912:2:1;5897:18;;5884:32;5925:30;5884:32;5925:30;:::i;:::-;5974:7;5964:17;;;5605:382;;;;;:::o;6698:388::-;6766:6;6774;6827:2;6815:9;6806:7;6802:23;6798:32;6795:52;;;6843:1;6840;6833:12;6795:52;6882:9;6869:23;6901:31;6926:5;6901:31;:::i;:::-;6951:5;-1:-1:-1;7008:2:1;6993:18;;6980:32;7021:33;6980:32;7021:33;:::i;7091:380::-;7170:1;7166:12;;;;7213;;;7234:61;;7288:4;7280:6;7276:17;7266:27;;7234:61;7341:2;7333:6;7330:14;7310:18;7307:38;7304:161;;7387:10;7382:3;7378:20;7375:1;7368:31;7422:4;7419:1;7412:15;7450:4;7447:1;7440:15;7304:161;;7091:380;;;:::o;7476:356::-;7678:2;7660:21;;;7697:18;;;7690:30;7756:34;7751:2;7736:18;;7729:62;7823:2;7808:18;;7476:356::o;7837:127::-;7898:10;7893:3;7889:20;7886:1;7879:31;7929:4;7926:1;7919:15;7953:4;7950:1;7943:15;7969:127;8030:10;8025:3;8021:20;8018:1;8011:31;8061:4;8058:1;8051:15;8085:4;8082:1;8075:15;8101:175;8138:3;8182:4;8175:5;8171:16;8211:4;8202:7;8199:17;8196:43;;8219:18;;:::i;:::-;8268:1;8255:15;;8101:175;-1:-1:-1;;8101:175:1:o;8281:184::-;8351:6;8404:2;8392:9;8383:7;8379:23;8375:32;8372:52;;;8420:1;8417;8410:12;8372:52;-1:-1:-1;8443:16:1;;8281:184;-1:-1:-1;8281:184:1:o;8470:427::-;8672:2;8654:21;;;8711:2;8691:18;;;8684:30;8750:34;8745:2;8730:18;;8723:62;8821:33;8816:2;8801:18;;8794:61;8887:3;8872:19;;8470:427::o;9207:245::-;9274:6;9327:2;9315:9;9306:7;9302:23;9298:32;9295:52;;;9343:1;9340;9333:12;9295:52;9375:9;9369:16;9394:28;9416:5;9394:28;:::i;9866:251::-;9936:6;9989:2;9977:9;9968:7;9964:23;9960:32;9957:52;;;10005:1;10002;9995:12;9957:52;10037:9;10031:16;10056:31;10081:5;10056:31;:::i;10843:306::-;10931:6;10939;10947;11000:2;10988:9;10979:7;10975:23;10971:32;10968:52;;;11016:1;11013;11006:12;10968:52;11045:9;11039:16;11029:26;;11095:2;11084:9;11080:18;11074:25;11064:35;;11139:2;11128:9;11124:18;11118:25;11108:35;;10843:306;;;;;:::o;13771:681::-;13902:6;13910;13918;13926;13934;13942;13950;13958;14011:3;13999:9;13990:7;13986:23;13982:33;13979:53;;;14028:1;14025;14018:12;13979:53;14060:9;14054:16;14079:31;14104:5;14079:31;:::i;:::-;14129:5;14119:15;;;14174:2;14163:9;14159:18;14153:25;14143:35;;14218:2;14207:9;14203:18;14197:25;14187:35;;14262:2;14251:9;14247:18;14241:25;14231:35;;14306:3;14295:9;14291:19;14285:26;14275:36;;14351:3;14340:9;14336:19;14330:26;14320:36;;14396:3;14385:9;14381:19;14375:26;14365:36;;14441:3;14430:9;14426:19;14420:26;14410:36;;13771:681;;;;;;;;;;;:::o;14873:128::-;14913:3;14944:1;14940:6;14937:1;14934:13;14931:39;;;14950:18;;:::i;:::-;-1:-1:-1;14986:9:1;;14873:128::o;16913:401::-;17115:2;17097:21;;;17154:2;17134:18;;;17127:30;17193:34;17188:2;17173:18;;17166:62;-1:-1:-1;;;17259:2:1;17244:18;;17237:35;17304:3;17289:19;;16913:401::o;17319:399::-;17521:2;17503:21;;;17560:2;17540:18;;;17533:30;17599:34;17594:2;17579:18;;17572:62;-1:-1:-1;;;17665:2:1;17650:18;;17643:33;17708:3;17693:19;;17319:399::o;18870:125::-;18910:4;18938:1;18935;18932:8;18929:34;;;18943:18;;:::i;:::-;-1:-1:-1;18980:9:1;;18870:125::o;19355:217::-;19395:1;19421;19411:132;;19465:10;19460:3;19456:20;19453:1;19446:31;19500:4;19497:1;19490:15;19528:4;19525:1;19518:15;19411:132;-1:-1:-1;19557:9:1;;19355:217::o;20366:168::-;20406:7;20472:1;20468;20464:6;20460:14;20457:1;20454:21;20449:1;20442:9;20435:17;20431:45;20428:71;;;20479:18;;:::i;:::-;-1:-1:-1;20519:9:1;;20366:168::o;21797:980::-;22059:4;22107:3;22096:9;22092:19;22138:6;22127:9;22120:25;22164:2;22202:6;22197:2;22186:9;22182:18;22175:34;22245:3;22240:2;22229:9;22225:18;22218:31;22269:6;22304;22298:13;22335:6;22327;22320:22;22373:3;22362:9;22358:19;22351:26;;22412:2;22404:6;22400:15;22386:29;;22433:1;22443:195;22457:6;22454:1;22451:13;22443:195;;;22522:13;;-1:-1:-1;;;;;22518:39:1;22506:52;;22613:15;;;;22578:12;;;;22554:1;22472:9;22443:195;;;-1:-1:-1;;;;;;;22694:32:1;;;;22689:2;22674:18;;22667:60;-1:-1:-1;;;22758:3:1;22743:19;22736:35;22655:3;21797:980;-1:-1:-1;;;21797:980:1:o

Swarm Source

ipfs://2e7923a0cb7e90fb602775f070e99569e62d12917ef741600005692c3e9f8d34
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.