Token CroKing

DeFi  

Overview CRC20

Price
$0.32 @ 3.057600 CRO (+10.07%)
Fully Diluted Market Cap
Total Supply:
1,200,000 CRK

Holders:
1,234 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

OVERVIEW

CroKing is a multifacet utility token which uses the Hype of Cronos Chain which provides a fresh start for many crypto investors away from the regular BSC and ETH dominance and gives holder 5% Cro Rewards.

Market

Volume (24H):$234.66
Market Capitalization:$0.00
Circulating Supply:0.00 CRK
Market Data Source: Coinmarketcap


Update? Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume
1
Crodex
0X7C8B5501A40D382E8A11889834C80B2D7FA1FC4F-0X5C7F8A570D578ED84E63FDFA7B1EE72DEAE1AE23$0.3221
0.0000073 Btc
$233.41
723.181 0X7C8B5501A40D382E8A11889834C80B2D7FA1FC4F
100.0000%

Contract Source Code Verified (Exact Match)

Contract Name:
CRK

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2022-12-22
*/

// SPDX-License-Identifier: MIT                                                                               
pragma solidity 0.8.16;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

interface IDexFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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


contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

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

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

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    function _createInitialSupply(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

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


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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

contract Ownable is Context {
    address private _owner;

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

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

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

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



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

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

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

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

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

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

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

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


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

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

interface IDexRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(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 swapExactTokensForTokensSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
    function addLiquidityETH(address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);
    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 getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function removeLiquidity(address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline) external returns (uint amountA, uint amountB);
}

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

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


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

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

  uint256 internal magnifiedDividendPerShare;
 
  address public token;
  
  // About dividendCorrection:
  // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
  // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
  //   `dividendOf(_user)` should not be changed,
  //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
  // To keep the `dividendOf(_user)` unchanged, we add a correction term:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
  //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
  //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
  // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
  mapping(address => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;
  
  mapping (address => uint256) public holderBalance;
  uint256 public totalBalance;

  uint256 public totalDividendsDistributed;
  uint256 public totalDividendsWaitingToSend;

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

  /// @notice Distributes ether to token holders as dividends.
  /// @dev It reverts if the total supply of tokens is 0.
  /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0.
  /// About undistributed ether:
  ///   In each distribution, there is a small amount of ether not distributed,
  ///     the magnified amount of which is
  ///     `(msg.value * magnitude) % totalSupply()`.
  ///   With a well-chosen `magnitude`, the amount of undistributed ether
  ///     (de-magnified) in a distribution can be less than 1 wei.
  ///   We can actually keep track of the undistributed ether in a distribution
  ///     and try to distribute it in the next distribution,
  ///     but keeping track of such data on-chain costs much more than
  ///     the saved ether, so we don't do that.
    
  function distributeDividends() public override payable {
    require(false, "Cannot send BNB directly to tracker as it is unrecoverable"); // 
  }
  
  function distributeTokenDividends() public {
    if(totalBalance > 0){
        uint256 tokensToAdd;
        uint256 balance = IERC20(token).balanceOf(address(this)); 
        
        if(totalDividendsWaitingToSend < balance){
            tokensToAdd = balance - totalDividendsWaitingToSend;
        } else {
            tokensToAdd = 0;
        }

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

            totalDividendsDistributed = totalDividendsDistributed.add(tokensToAdd);
            totalDividendsWaitingToSend = totalDividendsWaitingToSend.add(tokensToAdd);
        }
    }
  }

  /// @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);
      if(totalDividendsWaitingToSend >= _withdrawableDividend){
        totalDividendsWaitingToSend -= _withdrawableDividend;
      }
      else {
        totalDividendsWaitingToSend = 0;  
      }
      emit DividendWithdrawn(user, _withdrawableDividend);
      bool success = IERC20(token).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(holderBalance[_owner]).toInt256Safe()
      .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
  }

  /// @dev Internal function that increases 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 _increase(address account, uint256 value) internal {
    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  /// @dev Internal function that reduces 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 _reduce(address account, uint256 value) internal {
    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = holderBalance[account];
    holderBalance[account] = newBalance;
    if(newBalance > currentBalance) {
      uint256 increaseAmount = newBalance.sub(currentBalance);
      _increase(account, increaseAmount);
      totalBalance += increaseAmount;
    } else if(newBalance < currentBalance) {
      uint256 reduceAmount = currentBalance.sub(newBalance);
      _reduce(account, reduceAmount);
      totalBalance -= reduceAmount;
    }
  }
}

contract DividendTracker is DividendPayingToken {
    using SafeMath for uint256;
    using SafeMathInt for int256;

    Map private tokenHoldersMap;
    uint256 public lastProcessedIndex;

    mapping (address => bool) public excludedFromDividends;

    mapping (address => uint256) public lastClaimTimes;

    uint256 public claimWait;
    uint256 public immutable minimumTokenBalanceForDividends;

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

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

    constructor(address _token) {
    	claimWait = 1;
        minimumTokenBalanceForDividends = 1;
        token = _token;
    }

    struct Map {
        address[] keys;
        mapping(address => uint) values;
        mapping(address => uint) indexOf;
        mapping(address => bool) inserted;
    }

    function get(address key) private view returns (uint) {
        return tokenHoldersMap.values[key];
    }

    function getIndexOfKey(address key) private view returns (int) {
        if(!tokenHoldersMap.inserted[key]) {
            return -1;
        }
        return int(tokenHoldersMap.indexOf[key]);
    }

    function getKeyAtIndex(uint index) private view returns (address) {
        return tokenHoldersMap.keys[index];
    }



    function size() private view returns (uint) {
        return tokenHoldersMap.keys.length;
    }

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

    function remove(address key) private {
        if (!tokenHoldersMap.inserted[key]) {
            return;
        }

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

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

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

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

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

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

    	emit ExcludeFromDividends(account);
    }
    
    function includeInDividends(address account) external onlyOwner {
    	require(excludedFromDividends[account]);
    	excludedFromDividends[account] = false;

    	emit IncludeInDividends(account);
    }

    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 = 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 >= size()) {
            return (0x0000000000000000000000000000000000000000, -1, -1, 0, 0, 0, 0, 0);
        }

        address account = 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);
    		set(account, newBalance);
    	}
    	else {
            _setBalance(account, 0);
    		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 TokenHandler is Ownable {
    function sendTokenToOwner(address token) external onlyOwner {
        if(IERC20(token).balanceOf(address(this)) > 0){
            IERC20(token).transfer(owner(), IERC20(token).balanceOf(address(this)));
        }
    }
}

interface ILpPair {
    function sync() external;
}

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

    IDexRouter public immutable dexRouter;
    address public lpPair;

    IERC20 public immutable REWARDTOKEN;
    TokenHandler public tokenHandler;

    bool private swapping;

    DividendTracker public dividendTracker;

    address public operationsWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    uint256 public liquidityActiveBlock = 0; // 0 means liquidity is not active yet
    uint256 public tradingActiveBlock = 0; // 0 means trading is not active
    uint256 public earlyBuyPenaltyEnd; // determines when snipers/bots can sell without extra penalty
    
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;
    
    uint256 public constant FEE_DIVISOR = 1000;

    uint256 public totalSellFees;
    uint256 public rewardsSellFee;
    uint256 public operationsSellFee;
    uint256 public liquiditySellFee;
    
    uint256 public totalBuyFees;
    uint256 public rewardsBuyFee;
    uint256 public operationsBuyFee;
    uint256 public liquidityBuyFee;
    
    uint256 public tokensForRewards;
    uint256 public tokensForOperations;
    uint256 public tokensForLiquidity;
    
    uint256 public gasForProcessing = 0;

    /******************/

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

    mapping (address => bool) public _isExcludedMaxTransactionAmount;

    // 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 ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
    event ExcludedMaxTransactionAmount(address indexed account, bool isExcluded);

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

    event OperationsWalletUpdated(address indexed newWallet, address indexed oldWallet);

    event DevWalletUpdated(address indexed newWallet, address indexed oldWallet);

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

    event AutoBurnLP(uint256 indexed tokensBurned);

    event ManualBurnLP(uint256 indexed tokensBurned);
    
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    event SendDividends(
    	uint256 tokensSwapped,
    	uint256 amount
    );

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

    constructor() ERC20("CroKing", "CRK") {

        address _dexRouter;
        address pairedTokenAddress;

        if(block.chainid == 1){
            _dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // ETH Router
            pairedTokenAddress = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; // USDC ETH
        } else if(block.chainid == 25){
            pairedTokenAddress  = 0x5C7F8A570d578ED84E63fdFA7b1eE72dEae1AE23; // Cronos WCRO
            _dexRouter = 0xeC0A7a0C2439E8Cb67b992b12ecd020Ea943c7Be; // Cronos: CroDex Router
        } else {
            revert("Chain not configured");
        }

        tokenHandler = new TokenHandler();
        REWARDTOKEN = IERC20(pairedTokenAddress);
        dexRouter = IDexRouter(_dexRouter);

        dividendTracker = new DividendTracker(pairedTokenAddress);

        lpPair = IDexFactory(dexRouter.factory()).createPair(address(this), address(REWARDTOKEN));
        _setAutomatedMarketMakerPair(address(lpPair), true);

        uint256 totalSupply = 12 * 1e5 * 1e18;
        
        maxTransactionAmount = totalSupply * 5 / 1000; // 0.5% maxTransactionAmountTxn
        swapTokensAtAmount = totalSupply * 5 / 10000; // 0.05% swap tokens amount
        maxWallet = totalSupply * 1 / 100; // 0.5% Max wallet

        rewardsBuyFee = 20;
        operationsBuyFee = 10;
        liquidityBuyFee = 40;
        totalBuyFees = rewardsBuyFee + operationsBuyFee + liquidityBuyFee;
        
        rewardsSellFee = 50;
        operationsSellFee = 40;
        liquiditySellFee = 10;
        totalSellFees = rewardsSellFee + operationsSellFee + liquiditySellFee;
    	
    	operationsWallet = address(msg.sender); // set as operations wallet

        // exclude from receiving dividends
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(owner());
        dividendTracker.excludeFromDividends(address(_dexRouter));
        dividendTracker.excludeFromDividends(address(0xdead));
        
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(address(_dexRouter), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(dividendTracker), true);
        excludeFromMaxTransaction(address(_dexRouter), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _createInitialSupply(address(owner()), totalSupply);

         REWARDTOKEN.approve(address(dexRouter), type(uint256).max);
        _approve(address(this), address(dexRouter), type(uint256).max);
        IERC20(address(lpPair)).approve(address(dexRouter), type(uint256).max);
    }

    // only use if conducting a presale
    function addPresaleAddressForExclusions(address _presaleAddress) external onlyOwner {
        excludeFromFees(_presaleAddress, true);
        dividendTracker.excludeFromDividends(_presaleAddress);
        excludeFromMaxTransaction(_presaleAddress, true);
    }

    // leaving external and open for long-term viability for swapbacks
    function updateAllowanceForSwapping() external {
        REWARDTOKEN.approve(address(dexRouter), type(uint256).max);
        _approve(address(this), address(dexRouter), type(uint256).max);
    }

     // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }

    // excludes wallets and contracts from dividends (such as CEX hotwallets, etc.)
    function excludeFromDividends(address account) external onlyOwner {
        dividendTracker.excludeFromDividends(account);
    }

    // removes exclusion on wallets and contracts from dividends (such as CEX hotwallets, etc.)
    function includeInDividends(address account) external onlyOwner {
        dividendTracker.includeInDividends(account);
    }
    
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        require(!tradingActive, "Cannot re-enable trading");
        tradingActive = true;
        swapEnabled = true;
        tradingActiveBlock = block.number;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    function updateMaxAmount(uint256 newNum) external onlyOwner {
        require(newNum > (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }
    
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum > (totalSupply() * 1 / 100)/1e18, "Cannot set maxWallet lower than 1%");
        maxWallet = newNum * (10**18);
    }
    
    function updateBuyFees(uint256 _operationsFee, uint256 _rewardsFee, uint256 _liquidityFee) external onlyOwner {
        operationsBuyFee = _operationsFee;
        rewardsBuyFee = _rewardsFee;
        liquidityBuyFee = _liquidityFee;
        totalBuyFees = operationsBuyFee + rewardsBuyFee + liquidityBuyFee;
        require(totalBuyFees <= 200, "Must keep fees at 20% or less");
    }
    
    function updateSellFees(uint256 _operationsFee, uint256 _rewardsFee, uint256 _liquidityFee) external onlyOwner {
        operationsSellFee = _operationsFee;
        rewardsSellFee = _rewardsFee;
        liquiditySellFee = _liquidityFee;
        totalSellFees = operationsSellFee + rewardsSellFee + liquiditySellFee;
        require(totalSellFees <= 200, "Must keep fees at 20% or less");
    }

    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
        emit ExcludedMaxTransactionAmount(updAds, isEx);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) external onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(pair != lpPair, "The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateOperationsWallet(address newOperationsWallet) external onlyOwner {
        require(newOperationsWallet != address(0), "may not set to 0 address");
        excludeFromFees(newOperationsWallet, true);
        emit OperationsWalletUpdated(newOperationsWallet, operationsWallet);
        operationsWallet = newOperationsWallet;
    }

    function updateGasForProcessing(uint256 newValue) external onlyOwner {
        require(newValue <= 500000, " gasForProcessing must be between 0 and 500,000");
        require(newValue != gasForProcessing, "Cannot update gasForProcessing to same value");
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }

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

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

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

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

	function dividendTokenBalanceOf(address account) external view returns (uint256) {
		return dividendTracker.holderBalance(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 getNumberOfDividends() external view returns(uint256) {
        return dividendTracker.totalBalance();
    }
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        transferDelayEnabled = false;
        return true;
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(!tradingActive){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active yet.");
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != address(dexRouter) && to != address(lpPair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
                
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                    require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                    require(amount + balanceOf(to) <= maxWallet, "Unable to exceed Max Wallet");
                } 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                    require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet, "Unable to exceed Max Wallet");
                }
            }
        }

		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        
        // no taxes on transfers (non buys/sells)
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && totalSellFees > 0){
                fees = amount * totalSellFees / FEE_DIVISOR;
                tokensForRewards += fees * rewardsSellFee / totalSellFees;
                tokensForLiquidity += fees * liquiditySellFee / totalSellFees;
                tokensForOperations += fees * operationsSellFee / totalSellFees;
            }
            
            // on buy
            else if(automatedMarketMakerPairs[from] && totalBuyFees > 0) {
        	    fees = amount * totalBuyFees / FEE_DIVISOR;
        	    tokensForRewards += fees * rewardsBuyFee / totalBuyFees;
                tokensForLiquidity += fees * liquidityBuyFee / totalBuyFees;
                tokensForOperations += fees * operationsBuyFee / totalBuyFees;
            }

            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
        	
        	amount -= fees;
        }

        super._transfer(from, to, amount);

        dividendTracker.setBalance(payable(from), balanceOf(from));
        dividendTracker.setBalance(payable(to), balanceOf(to));

        if(!swapping && gasForProcessing > 0) {
	    	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 swapTokensForPairedToken(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = address(REWARDTOKEN);

        // make the swap
        dexRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(tokenHandler),
            block.timestamp
        );

        tokenHandler.sendTokenToOwner(address(REWARDTOKEN));
        
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 scAmount) private {
        // add the liquidity
        dexRouter.addLiquidity(
            address(this),
            address(REWARDTOKEN),
            tokenAmount,
            scAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }

    function buyBackTokens(uint256 amountInWei) internal {
        address[] memory path = new address[](2);
        path[0] = address(REWARDTOKEN);
        path[1] = address(this);

        dexRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            amountInWei,
            0,
            path,
            address(0xdead),
            block.timestamp
        );
    }
    
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForOperations + tokensForRewards;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap;
        uint256 amountToSwapForSC= contractBalance - liquidityTokens;
        
        uint256 initialSCBalance = REWARDTOKEN.balanceOf(address(this));

        swapTokensForPairedToken(amountToSwapForSC); 
        
        uint256 scBalance = REWARDTOKEN.balanceOf(address(this)) - (initialSCBalance);
        
        uint256 scForRewards = scBalance.mul(tokensForRewards).div(totalTokensToSwap - liquidityTokens);
        
        tokensForLiquidity = 0;
        tokensForOperations = 0;
        tokensForRewards = 0;
        
        if(liquidityTokens > 0){
            super._transfer(address(this), lpPair, liquidityTokens);
            try ILpPair(lpPair).sync(){} catch {emit LpSyncFailed();}
        }
        
        if(scForRewards > 0){
            REWARDTOKEN.transfer(address(dividendTracker), scForRewards);
            dividendTracker.distributeTokenDividends();
        }

        if(REWARDTOKEN.balanceOf(address(this)) > 0){
            REWARDTOKEN.transfer(operationsWallet, REWARDTOKEN.balanceOf(address(this)) );
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokensBurned","type":"uint256"}],"name":"AutoBurnLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevWalletUpdated","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":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMaxTransactionAmount","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":[],"name":"LpSyncFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokensBurned","type":"uint256"}],"name":"ManualBurnLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"OperationsWalletUpdated","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":"ethReceived","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"},{"inputs":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARDTOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_presaleAddress","type":"address"}],"name":"addPresaleAddressForExclusions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","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 DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyBuyPenaltyEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","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":"getNumberOfDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInDividends","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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"operationsBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"tokenHandler","outputs":[{"internalType":"contract TokenHandler","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"updateAllowanceForSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperationsWallet","type":"address"}],"name":"updateOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60c06040526000600d819055600e8190556010805462ffffff191660019081179091556012805460ff19169091179055601e553480156200003f57600080fd5b506040518060400160405280600781526020016643726f4b696e6760c81b8152506040518060400160405280600381526020016243524b60e81b81525081600390816200008d919062000d49565b5060046200009c828262000d49565b5050506000620000b16200084660201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600080466001036200013e5750737a250d5630b4cf539739df2c5dacb4c659f2488d905073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48620001c7565b466019036200017a575073ec0a7a0c2439e8cb67b992b12ecd020ea943c7be9050735c7f8a570d578ed84e63fdfa7b1ee72deae1ae23620001c7565b60405162461bcd60e51b815260206004820152601460248201527f436861696e206e6f7420636f6e6669677572656400000000000000000000000060448201526064015b60405180910390fd5b604051620001d59062000c88565b604051809103906000f080158015620001f2573d6000803e3d6000fd5b50600780546001600160a01b0319166001600160a01b0392831617905581811660a052821660805260405181906200022a9062000c96565b6001600160a01b039091168152602001604051809103906000f08015801562000257573d6000803e3d6000fd5b50600860006101000a8154816001600160a01b0302191690836001600160a01b031602179055506080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002bf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e5919062000e15565b60a0516040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af115801562000337573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035d919062000e15565b600680546001600160a01b0319166001600160a01b03929092169182179055620003899060016200084a565b69fe1c215e8f838e0000006103e8620003a482600562000e5d565b620003b0919062000e7f565b600a55612710620003c382600562000e5d565b620003cf919062000e7f565b600b556064620003e182600162000e5d565b620003ed919062000e7f565b600c5560146018819055600a60198190556028601a8190559162000412919062000ea2565b6200041e919062000ea2565b6017556032601481905560286015819055600a60168190559162000443919062000ea2565b6200044f919062000ea2565b601355600980546001600160a01b0319163317905560085460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b158015620004ab57600080fd5b505af1158015620004c0573d6000803e3d6000fd5b505060085460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200050a57600080fd5b505af11580156200051f573d6000803e3d6000fd5b50506008546001600160a01b031691506331e79db09050620005496005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b1580156200058b57600080fd5b505af1158015620005a0573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b03878116600483015290911692506331e79db09150602401600060405180830381600087803b158015620005ec57600080fd5b505af115801562000601573d6000803e3d6000fd5b505060085460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200064d57600080fd5b505af115801562000662573d6000803e3d6000fd5b50505050620006826200067a6200091f60201b60201c565b60016200092e565b6200068f3060016200092e565b6200069e61dead60016200092e565b620006ab8360016200092e565b620006ca620006c26005546001600160a01b031690565b6001620009d9565b620006d7306001620009d9565b600854620006f0906001600160a01b03166001620009d9565b620006fd836001620009d9565b6200070c61dead6001620009d9565b6200072a620007236005546001600160a01b031690565b8262000a7b565b60a05160805160405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af115801562000781573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007a7919062000ebe565b50620007bf3060805160001962000b6060201b60201c565b60065460805160405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af115801562000816573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200083c919062000ebe565b5050505062000ee2565b3390565b6001600160a01b0382166000908152602160205260409020805460ff19168215151790556200087a8282620009d9565b8015620008e35760085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b158015620008c957600080fd5b505af1158015620008de573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031690565b6005546001600160a01b03163314620009795760405162461bcd60e51b815260206004820181905260248201526000805160206200657f8339815191526044820152606401620001be565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b0316331462000a245760405162461bcd60e51b815260206004820181905260248201526000805160206200657f8339815191526044820152606401620001be565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d959101620009cd565b6001600160a01b03821662000ad35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620001be565b806002600082825462000ae7919062000ea2565b90915550506001600160a01b0382166000908152602081905260408120805483929062000b1690849062000ea2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03831662000bc45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620001be565b6001600160a01b03821662000c275760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620001be565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6104d6806200473583390190565b6119748062004c0b83390190565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000ccf57607f821691505b60208210810362000cf057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000d4457600081815260208120601f850160051c8101602086101562000d1f5750805b601f850160051c820191505b8181101562000d405782815560010162000d2b565b5050505b505050565b81516001600160401b0381111562000d655762000d6562000ca4565b62000d7d8162000d76845462000cba565b8462000cf6565b602080601f83116001811462000db5576000841562000d9c5750858301515b600019600386901b1c1916600185901b17855562000d40565b600085815260208120601f198616915b8281101562000de65788860151825594840194600190910190840162000dc5565b508582101562000e055787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000e2857600080fd5b81516001600160a01b038116811462000e4057600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000e7a5762000e7a62000e47565b500290565b60008262000e9d57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000eb85762000eb862000e47565b92915050565b60006020828403121562000ed157600080fd5b8151801515811462000e4057600080fd5b60805160a0516137d962000f5c6000396000818161045301528181610c0801528181612aec01528181612b8401528181612d0b01528181612dfc01528181612e9501528181612fd201526130b60152600081816104ac01528181610bd801528181610c7c01528181611fea015261302c01526137d96000f3fe608060405234801561001057600080fd5b50600436106104495760003560e01c80638a8c523c11610241578063c18bc1951161013b578063e7841ec0116100c3578063f2fde38b11610087578063f2fde38b14610948578063f54afa781461095b578063f8b45b0514610964578063fb002c971461096d578063fd72e22a1461097657600080fd5b8063e7841ec014610913578063e884f2601461091b578063ee40166e14610923578063efcc1b2f1461092c578063f27fd2541461093557600080fd5b8063ccb613581161010a578063ccb61358146108b6578063ccd146b2146108bf578063d0a39814146108c8578063dd62ed3e146108d1578063e2f456051461090a57600080fd5b8063c18bc1951461087a578063c492f0461461088d578063c876d0b9146108a0578063c8c8ebe4146108ad57600080fd5b8063a716b773116101c9578063b9e937001161018d578063b9e9370014610826578063bbc0c7421461082f578063c024666814610841578063c0f306ef14610854578063c17b5b8c1461086757600080fd5b8063a716b77314610772578063a8b9d24014610785578063a9059cbb14610798578063ad56c13c146107ab578063b62496f51461080357600080fd5b80639a7a23d6116102105780639a7a23d6146107325780639c1b8af5146107455780639e93ad8e1461074e578063a26579ad14610757578063a457c2d71461075f57600080fd5b80638a8c523c146106fe5780638da5cb5b14610706578063924de9b71461071757806395d89b411461072a57600080fd5b806331e79db0116103525780636ddd1713116102da5780637506cbd81161029e5780637506cbd8146106b4578063751039fc146106bd5780637571336a146106c55780638095d564146106d8578063871c128d146106eb57600080fd5b80636ddd17131461066b578063700bb1911461067e57806370a0823114610691578063715018a6146106a457806371778e7d146106ac57600080fd5b80634af6f7ee116103215780634af6f7ee146106135780634e71d92d1461061c5780634fbee1931461062457806364b0f653146106505780636843cd841461065857600080fd5b806331e79db0146105cd57806339509351146105e0578063452ed4f1146105f35780634a62bb651461060657600080fd5b80631a8145bb116103d557806325424896116103a457806325424896146105885780632c1f52161461059057806330bb4cff146105a357806330d5d18d146105ab578063313ce567146105be57600080fd5b80631a8145bb146105505780631b3d6e87146105595780631fc851bd1461056c57806323b872dd1461057557600080fd5b8063099d0d301161041c578063099d0d30146104f15780630f4432e314610508578063106b5da11461051157806310d5de531461052657806318160ddd1461054857600080fd5b8063032c32fc1461044e57806306fdde03146104925780630758d924146104a7578063095ea7b3146104ce575b600080fd5b6104757f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b61049a610989565b604051610489919061321e565b6104757f000000000000000000000000000000000000000000000000000000000000000081565b6104e16104dc366004613281565b610a1b565b6040519015158152602001610489565b6104fa60165481565b604051908152602001610489565b6104fa600d5481565b61052461051f3660046132ad565b610a32565b005b6104e16105343660046132c6565b602080526000908152604090205460ff1681565b6002546104fa565b6104fa601d5481565b600754610475906001600160a01b031681565b6104fa600f5481565b6104e16105833660046132e3565b610b17565b610524610bc1565b600854610475906001600160a01b031681565b6104fa610ca5565b6105246105b93660046132c6565b610d18565b60405160128152602001610489565b6105246105db3660046132c6565b610e00565b6104e16105ee366004613281565b610e8d565b600654610475906001600160a01b031681565b6010546104e19060ff1681565b6104fa60185481565b610524610ec9565b6104e16106323660046132c6565b6001600160a01b03166000908152601f602052604090205460ff1690565b6104fa610f41565b6104fa6106663660046132c6565b610f8b565b6010546104e19062010000900460ff1681565b61052461068c3660046132ad565b610ffb565b6104fa61069f3660046132c6565b6110ce565b6105246110e9565b6104fa61115d565b6104fa60155481565b6104e16111a7565b6105246106d3366004613332565b6111f0565b6105246106e636600461336b565b611278565b6105246106f93660046132ad565b611320565b61052461144e565b6005546001600160a01b0316610475565b610524610725366004613397565b6114e7565b61049a61152d565b610524610740366004613332565b61153c565b6104fa601e5481565b6104fa6103e881565b6104fa611606565b6104e161076d366004613281565b611650565b6105246107803660046132c6565b6116e9565b6104fa6107933660046132c6565b611788565b6104e16107a6366004613281565b6117bb565b6107be6107b93660046132c6565b6117c8565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610489565b6104e16108113660046132c6565b60216020526000908152604090205460ff1681565b6104fa60175481565b6010546104e190610100900460ff1681565b61052461084f366004613332565b611863565b6105246108623660046132c6565b6118e5565b61052461087536600461336b565b611941565b6105246108883660046132ad565b6119e4565b61052461089b3660046133b4565b611ab2565b6012546104e19060ff1681565b6104fa600a5481565b6104fa601a5481565b6104fa60145481565b6104fa60135481565b6104fa6108df36600461343a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104fa600b5481565b6104fa611b8e565b6104e1611bd8565b6104fa600e5481565b6104fa60195481565b6107be6109433660046132ad565b611c15565b6105246109563660046132c6565b611c57565b6104fa601b5481565b6104fa600c5481565b6104fa601c5481565b600954610475906001600160a01b031681565b60606003805461099890613468565b80601f01602080910402602001604051908101604052809291908181526020018280546109c490613468565b8015610a115780601f106109e657610100808354040283529160200191610a11565b820191906000526020600020905b8154815290600101906020018083116109f457829003601f168201915b5050505050905090565b6000610a28338484611d42565b5060015b92915050565b6005546001600160a01b03163314610a655760405162461bcd60e51b8152600401610a5c906134a2565b60405180910390fd5b670de0b6b3a76400006103e8610a7a60025490565b610a859060016134ed565b610a8f919061350c565b610a99919061350c565b8111610aff5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a5c565b610b1181670de0b6b3a76400006134ed565b600a5550565b6000610b24848484611e66565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ba95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a5c565b610bb68533858403611d42565b506001949350505050565b60405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301527f0000000000000000000000000000000000000000000000000000000000000000169063095ea7b3906044016020604051808303816000875af1158015610c51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c75919061352e565b50610ca3307f0000000000000000000000000000000000000000000000000000000000000000600019611d42565b565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610cef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d13919061354b565b905090565b6005546001600160a01b03163314610d425760405162461bcd60e51b8152600401610a5c906134a2565b6001600160a01b038116610d985760405162461bcd60e51b815260206004820152601860248201527f6d6179206e6f742073657420746f2030206164647265737300000000000000006044820152606401610a5c565b610da3816001611863565b6009546040516001600160a01b03918216918316907f086aa05ff00214e2d0c7c02b8a46b2614ad955732e6b43aa8afca69ed1ad76f890600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e2a5760405162461bcd60e51b8152600401610a5c906134a2565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610e7257600080fd5b505af1158015610e86573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a28918590610ec4908690613564565b611d42565b60085460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af1158015610f1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3e919061352e565b50565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610cef573d6000803e3d6000fd5b60085460405163156dbbf560e31b81526001600160a01b038381166004830152600092169063ab6ddfa8906024015b602060405180830381865afa158015610fd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2c919061354b565b6008546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af115801561104e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110729190613577565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146111135760405162461bcd60e51b8152600401610a5c906134a2565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6008546040805163ad7a672f60e01b815290516000926001600160a01b03169163ad7a672f9160048083019260209291908290030181865afa158015610cef573d6000803e3d6000fd5b6005546000906001600160a01b031633146111d45760405162461bcd60e51b8152600401610a5c906134a2565b506010805460ff19908116909155601280549091169055600190565b6005546001600160a01b0316331461121a5760405162461bcd60e51b8152600401610a5c906134a2565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d9591015b60405180910390a25050565b6005546001600160a01b031633146112a25760405162461bcd60e51b8152600401610a5c906134a2565b60198390556018829055601a819055806112bc8385613564565b6112c69190613564565b601781905560c8101561131b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610a5c565b505050565b6005546001600160a01b0316331461134a5760405162461bcd60e51b8152600401610a5c906134a2565b6207a1208111156113b55760405162461bcd60e51b815260206004820152602f60248201527f20676173466f7250726f63657373696e67206d7573742062652062657477656560448201526e06e203020616e64203530302c30303608c1b6064820152608401610a5c565b601e54810361141b5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610a5c565b601e5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601e55565b6005546001600160a01b031633146114785760405162461bcd60e51b8152600401610a5c906134a2565b601054610100900460ff16156114d05760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072652d656e61626c652074726164696e6700000000000000006044820152606401610a5c565b6010805462ffff0019166201010017905543600e55565b6005546001600160a01b031633146115115760405162461bcd60e51b8152600401610a5c906134a2565b60108054911515620100000262ff000019909216919091179055565b60606004805461099890613468565b6005546001600160a01b031633146115665760405162461bcd60e51b8152600401610a5c906134a2565b6006546001600160a01b03908116908316036115f85760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a401610a5c565b6116028282612847565b5050565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610cef573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156116d25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a5c565b6116df3385858403611d42565b5060019392505050565b6005546001600160a01b031633146117135760405162461bcd60e51b8152600401610a5c906134a2565b61171e816001611863565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db090602401600060405180830381600087803b15801561176557600080fd5b505af1158015611779573d6000803e3d6000fd5b50505050610f3e8160016111f0565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401610fba565b6000610a28338484611e66565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b61010060405180830381865afa158015611824573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184891906135a5565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b0316331461188d5760405162461bcd60e51b8152600401610a5c906134a2565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910161126c565b6005546001600160a01b0316331461190f5760405162461bcd60e51b8152600401610a5c906134a2565b60085460405163c0f306ef60e01b81526001600160a01b0383811660048301529091169063c0f306ef90602401610e58565b6005546001600160a01b0316331461196b5760405162461bcd60e51b8152600401610a5c906134a2565b601583905560148290556016819055806119858385613564565b61198f9190613564565b601381905560c8101561131b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610a5c565b6005546001600160a01b03163314611a0e5760405162461bcd60e51b8152600401610a5c906134a2565b670de0b6b3a76400006064611a2260025490565b611a2d9060016134ed565b611a37919061350c565b611a41919061350c565b8111611a9a5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610a5c565b611aac81670de0b6b3a76400006134ed565b600c5550565b6005546001600160a01b03163314611adc5760405162461bcd60e51b8152600401610a5c906134a2565b60005b82811015611b4d5781601f6000868685818110611afe57611afe61360f565b9050602002016020810190611b1391906132c6565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611b4581613625565b915050611adf565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051611b819392919061363e565b60405180910390a1505050565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015610cef573d6000803e3d6000fd5b6005546000906001600160a01b03163314611c055760405162461bcd60e51b8152600401610a5c906134a2565b506012805460ff19169055600190565b600854604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611806565b6005546001600160a01b03163314611c815760405162461bcd60e51b8152600401610a5c906134a2565b6001600160a01b038116611ce65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5c565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611da45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a5c565b6001600160a01b038216611e055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a5c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611e8c5760405162461bcd60e51b8152600401610a5c90613697565b6001600160a01b038216611eb25760405162461bcd60e51b8152600401610a5c906136dc565b80600003611ec65761131b83836000612917565b601054610100900460ff16611f60576001600160a01b0383166000908152601f602052604090205460ff1680611f1457506001600160a01b0382166000908152601f602052604090205460ff165b611f605760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610a5c565b60105460ff161561233d576005546001600160a01b03848116911614801590611f9757506005546001600160a01b03838116911614155b8015611fab57506001600160a01b03821615155b8015611fc257506001600160a01b03821661dead14155b8015611fd85750600754600160a01b900460ff16155b1561233d5760125460ff16156120e6577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415801561203857506006546001600160a01b03838116911614155b156120e6573260009081526011602052604090205443116120d35760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610a5c565b3260009081526011602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff16801561212657506001600160a01b038216600090815260208052604090205460ff16155b1561220457600a5481111561219b5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a5c565b600c546121a7836110ce565b6121b19083613564565b11156121ff5760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610a5c565b61233d565b6001600160a01b03821660009081526021602052604090205460ff16801561224457506001600160a01b038316600090815260208052604090205460ff16155b156122ba57600a548111156121ff5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a5c565b6001600160a01b038216600090815260208052604090205460ff1661233d57600c546122e5836110ce565b6122ef9083613564565b111561233d5760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610a5c565b6000612348306110ce565b600b5490915081108015908190612367575060105462010000900460ff165b801561237d5750600754600160a01b900460ff16155b80156123a257506001600160a01b03851660009081526021602052604090205460ff16155b80156123c757506001600160a01b0385166000908152601f602052604090205460ff16155b80156123ec57506001600160a01b0384166000908152601f602052604090205460ff16155b1561241a576007805460ff60a01b1916600160a01b17905561240c612a5e565b6007805460ff60a01b191690555b6007546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061246857506001600160a01b0385166000908152601f602052604090205460ff165b15612471575060005b60008115612658576001600160a01b03861660009081526021602052604090205460ff1680156124a357506000601354115b1561255c576103e8601354866124b991906134ed565b6124c3919061350c565b9050601354601454826124d691906134ed565b6124e0919061350c565b601b60008282546124f19190613564565b909155505060135460165461250690836134ed565b612510919061350c565b601d60008282546125219190613564565b909155505060135460155461253690836134ed565b612540919061350c565b601c60008282546125519190613564565b9091555061263a9050565b6001600160a01b03871660009081526021602052604090205460ff16801561258657506000601754115b1561263a576103e86017548661259c91906134ed565b6125a6919061350c565b9050601754601854826125b991906134ed565b6125c3919061350c565b601b60008282546125d49190613564565b9091555050601754601a546125e990836134ed565b6125f3919061350c565b601d60008282546126049190613564565b909155505060175460195461261990836134ed565b612623919061350c565b601c60008282546126349190613564565b90915550505b801561264b5761264b873083612917565b612655818661371f565b94505b612663878787612917565b6008546001600160a01b031663e30443bc8861267e816110ce565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156126c457600080fd5b505af11580156126d8573d6000803e3d6000fd5b50506008546001600160a01b0316915063e30443bc9050876126f9816110ce565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561273f57600080fd5b505af1158015612753573d6000803e3d6000fd5b5050600754600160a01b900460ff1615915050801561277457506000601e54115b1561283e57601e546008546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af19250505080156127e6575060408051601f3d908101601f191682019092526127e391810190613577565b60015b1561283c5760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b6001600160a01b0382166000908152602160205260409020805460ff191682151517905561287582826111f0565b80156128db5760085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156128c257600080fd5b505af11580156128d6573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661293d5760405162461bcd60e51b8152600401610a5c90613697565b6001600160a01b0382166129635760405162461bcd60e51b8152600401610a5c906136dc565b6001600160a01b038316600090815260208190526040902054818110156129db5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a5c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612a12908490613564565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110c091815260200190565b6000612a69306110ce565b90506000601b54601c54601d54612a809190613564565b612a8a9190613564565b9050811580612a97575080155b15612aa0575050565b600081601d5484612ab191906134ed565b612abb919061350c565b90506000612ac9828561371f565b6040516370a0823160e01b81523060048201529091506000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa158015612b33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b57919061354b565b9050612b6282612f7b565b6040516370a0823160e01b815230600482015260009082906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa158015612bcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bef919061354b565b612bf9919061371f565b90506000612c1e612c0a868861371f565b601b54612c18908590613121565b906131aa565b6000601d819055601c819055601b5590508415612cdc57600654612c4d9030906001600160a01b031687612917565b600660009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612c9d57600080fd5b505af1925050508015612cae575060015b612cdc576040517f369bc1927dd877d0df49584cd599d33d299580bdbb12f0ec30ef965da981640190600090a15b8015612de45760085460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390527f00000000000000000000000000000000000000000000000000000000000000009091169063a9059cbb906044016020604051808303816000875af1158015612d56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d7a919061352e565b50600860009054906101000a90046001600160a01b03166001600160a01b031663b51312916040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612dcb57600080fd5b505af1158015612ddf573d6000803e3d6000fd5b505050505b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015612e4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e6f919061354b565b111561283e576009546040516370a0823160e01b81523060048201526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015612ee8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f0c919061354b565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015612f57573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061283c919061352e565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612fb057612fb061360f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000000000000000000000000000000000000000000000816001815181106130045761300461360f565b6001600160a01b039283166020918202929092010152600754604051635c11d79560e01b81527f0000000000000000000000000000000000000000000000000000000000000000831692635c11d7959261306c92879260009288929116904290600401613732565b600060405180830381600087803b15801561308657600080fd5b505af115801561309a573d6000803e3d6000fd5b50506007546040516304fa881160e21b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015290911692506313ea20449150602401600060405180830381600087803b15801561310557600080fd5b505af1158015613119573d6000803e3d6000fd5b505050505050565b60008260000361313357506000610a2c565b600061313f83856134ed565b90508261314c858361350c565b146131a35760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a5c565b9392505050565b60006131a383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250600081836132085760405162461bcd60e51b8152600401610a5c919061321e565b506000613215848661350c565b95945050505050565b600060208083528351808285015260005b8181101561324b5785810183015185820160400152820161322f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610f3e57600080fd5b6000806040838503121561329457600080fd5b823561329f8161326c565b946020939093013593505050565b6000602082840312156132bf57600080fd5b5035919050565b6000602082840312156132d857600080fd5b81356131a38161326c565b6000806000606084860312156132f857600080fd5b83356133038161326c565b925060208401356133138161326c565b929592945050506040919091013590565b8015158114610f3e57600080fd5b6000806040838503121561334557600080fd5b82356133508161326c565b9150602083013561336081613324565b809150509250929050565b60008060006060848603121561338057600080fd5b505081359360208301359350604090920135919050565b6000602082840312156133a957600080fd5b81356131a381613324565b6000806000604084860312156133c957600080fd5b833567ffffffffffffffff808211156133e157600080fd5b818601915086601f8301126133f557600080fd5b81358181111561340457600080fd5b8760208260051b850101111561341957600080fd5b6020928301955093505084013561342f81613324565b809150509250925092565b6000806040838503121561344d57600080fd5b82356134588161326c565b915060208301356133608161326c565b600181811c9082168061347c57607f821691505b60208210810361349c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613507576135076134d7565b500290565b60008261352957634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561354057600080fd5b81516131a381613324565b60006020828403121561355d57600080fd5b5051919050565b80820180821115610a2c57610a2c6134d7565b60008060006060848603121561358c57600080fd5b8351925060208401519150604084015190509250925092565b600080600080600080600080610100898b0312156135c257600080fd5b88516135cd8161326c565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b634e487b7160e01b600052603260045260246000fd5b600060018201613637576136376134d7565b5060010190565b6040808252810183905260008460608301825b868110156136815782356136648161326c565b6001600160a01b0316825260209283019290910190600101613651565b5080925050508215156020830152949350505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a2c57610a2c6134d7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156137825784516001600160a01b03168352938301939183019160010161375d565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205feb1c25ab8a05a1428ec3d84e9e74cfcaa8b21ca426b8ca0fe53f571a77522764736f6c63430008100033608060405234801561001057600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610475806100616000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806313ea204414610051578063715018a6146100665780638da5cb5b1461006e578063f2fde38b1461008d575b600080fd5b61006461005f36600461039f565b6100a0565b005b610064610241565b600054604080516001600160a01b039092168252519081900360200190f35b61006461009b36600461039f565b6102b5565b6000546001600160a01b031633146100d35760405162461bcd60e51b81526004016100ca906103cf565b60405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561011a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061013e9190610404565b111561023e57806001600160a01b031663a9059cbb6101656000546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa1580156101a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101cd9190610404565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610218573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061023c919061041d565b505b50565b6000546001600160a01b0316331461026b5760405162461bcd60e51b81526004016100ca906103cf565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146102df5760405162461bcd60e51b81526004016100ca906103cf565b6001600160a01b0381166103445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016100ca565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000602082840312156103b157600080fd5b81356001600160a01b03811681146103c857600080fd5b9392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561041657600080fd5b5051919050565b60006020828403121561042f57600080fd5b815180151581146103c857600080fdfea264697066735822122093fcc994ee590b240e1a4403bb336ce950ab8925b2eb92754b178f7a20361ffe64736f6c6343000810003360a060405234801561001057600080fd5b5060405161197438038061197483398101604081905261002f9161009f565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060016010819055608052600280546001600160a01b0319166001600160a01b03929092169190911790556100cf565b6000602082840312156100b157600080fd5b81516001600160a01b03811681146100c857600080fd5b9392505050565b6080516118836100f1600039600081816104b60152610b2701526118836000f3fe6080604052600436106101c65760003560e01c8063a8b9d240116100f7578063c0f306ef11610095578063f2fde38b11610064578063f2fde38b14610543578063fbcbc0f114610563578063fc0c546a14610583578063ffb2c479146105a357600080fd5b8063c0f306ef146104d8578063e30443bc146104f8578063e7841ec014610518578063f2e65d6f1461052d57600080fd5b8063ad7a672f116100d1578063ad7a672f14610459578063b51312911461046f578063bc4c4b3714610484578063be10b614146104a457600080fd5b8063a8b9d240146103d6578063aafd847a146103f6578063ab6ddfa81461042c57600080fd5b80635183d6fd11610164578063715018a61161013e578063715018a61461035957806385a6b3ae1461036e5780638da5cb5b1461038457806391b89fba146103b657600080fd5b80635183d6fd146102c95780636a4740021461032e5780636f2789ec1461034357600080fd5b806327ce0147116101a057806327ce0147146102335780633009a6091461025357806331e79db0146102695780634e7b827f1461028957600080fd5b806303c83302146101da57806309bbedde146101e2578063226cfa3d1461020657600080fd5b366101d5576101d36105de565b005b600080fd5b6101d36105de565b3480156101ee57600080fd5b506009545b6040519081526020015b60405180910390f35b34801561021257600080fd5b506101f36102213660046115e1565b600f6020526000908152604090205481565b34801561023f57600080fd5b506101f361024e3660046115e1565b610653565b34801561025f57600080fd5b506101f3600d5481565b34801561027557600080fd5b506101d36102843660046115e1565b6106b6565b34801561029557600080fd5b506102b96102a43660046115e1565b600e6020526000908152604090205460ff1681565b60405190151581526020016101fd565b3480156102d557600080fd5b506102e96102e43660046115fe565b61074e565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016101fd565b34801561033a57600080fd5b506101d36107bb565b34801561034f57600080fd5b506101f360105481565b34801561036557600080fd5b506101d36107c7565b34801561037a57600080fd5b506101f360075481565b34801561039057600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020016101fd565b3480156103c257600080fd5b506101f36103d13660046115e1565b61083b565b3480156103e257600080fd5b506101f36103f13660046115e1565b610842565b34801561040257600080fd5b506101f36104113660046115e1565b6001600160a01b031660009081526004602052604090205490565b34801561043857600080fd5b506101f36104473660046115e1565b60056020526000908152604090205481565b34801561046557600080fd5b506101f360065481565b34801561047b57600080fd5b506101d361086e565b34801561049057600080fd5b506102b961049f366004611625565b610997565b3480156104b057600080fd5b506101f37f000000000000000000000000000000000000000000000000000000000000000081565b3480156104e457600080fd5b506101d36104f33660046115e1565b610a43565b34801561050457600080fd5b506101d361051336600461165e565b610adb565b34801561052457600080fd5b50600d546101f3565b34801561053957600080fd5b506101f360085481565b34801561054f57600080fd5b506101d361055e3660046115e1565b610b89565b34801561056f57600080fd5b506102e961057e3660046115e1565b610c73565b34801561058f57600080fd5b5060025461039e906001600160a01b031681565b3480156105af57600080fd5b506105c36105be3660046115fe565b610d5a565b604080519384526020840192909252908201526060016101fd565b60405162461bcd60e51b815260206004820152603a60248201527f43616e6e6f742073656e6420424e42206469726563746c7920746f207472616360448201527f6b657220617320697420697320756e7265636f76657261626c6500000000000060648201526084015b60405180910390fd5b565b6001600160a01b0381166000908152600360209081526040808320546005909252822054600154600160801b926106a6926106a19261069b916106969190610e77565b610f00565b90610f10565b610f4e565b6106b091906116a0565b92915050565b6000546001600160a01b031633146106e05760405162461bcd60e51b8152600401610648906116c2565b6001600160a01b0381166000908152600e60205260408120805460ff1916600117905561070e908290610f61565b61071781610ffa565b6040516001600160a01b038216907fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b2590600090a250565b60008060008060008060008061076360095490565b89106107885750600096506000199550859450869350839250829150819050806107b0565b60006107938a61112d565b905061079e81610c73565b98509850985098509850985098509850505b919395975091939597565b6107c433611160565b50565b6000546001600160a01b031633146107f15760405162461bcd60e51b8152600401610648906116c2565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006106b0825b6001600160a01b0381166000908152600460205260408120546106b09061086884610653565b906112f6565b60065415610651576002546040516370a0823160e01b815230600482015260009182916001600160a01b03909116906370a0823190602401602060405180830381865afa1580156108c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e791906116f7565b9050806008541015610907576008546109009082611710565b915061090c565b600091505b81156109935760065461093a9061092784600160801b610e77565b61093191906116a0565b60015490611338565b60015560405182815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a260075461097f9083611338565b60075560085461098f9083611338565b6008555b5050565b600080546001600160a01b031633146109c25760405162461bcd60e51b8152600401610648906116c2565b60006109cd84611160565b90508015610a39576001600160a01b0384166000818152600f6020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610a279085815260200190565b60405180910390a360019150506106b0565b5060009392505050565b6000546001600160a01b03163314610a6d5760405162461bcd60e51b8152600401610648906116c2565b6001600160a01b0381166000908152600e602052604090205460ff16610a9257600080fd5b6001600160a01b0381166000818152600e6020526040808220805460ff19169055517f40a78dcf8526b72f2eaf598af1c7e49c8d5fc577f6c8f1bed887f3e4dfa289329190a250565b6000546001600160a01b03163314610b055760405162461bcd60e51b8152600401610648906116c2565b6001600160a01b0382166000908152600e602052604090205460ff16610993577f00000000000000000000000000000000000000000000000000000000000000008110610b6557610b568282610f61565b610b608282611397565b610b79565b610b70826000610f61565b610b7982610ffa565b610b84826001610997565b505050565b6000546001600160a01b03163314610bb35760405162461bcd60e51b8152600401610648906116c2565b6001600160a01b038116610c185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610648565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b806000808080808080610c8588611455565b9650600019955060008712610ce757600d54871115610cb357600d54610cac90889061149a565b9550610ce7565b600d5460095460009110610cc8576000610cd7565b600d54600954610cd7916112f6565b9050610ce38882610f10565b9650505b610cf088610842565b9450610cfb88610653565b6001600160a01b0389166000908152600f6020526040902054909450925082610d25576000610d33565b601054610d33908490611338565b9150428211610d43576000610d4d565b610d4d82426112f6565b9050919395975091939597565b60095460009081908190808203610d7c575050600d5460009250829150610e70565b600d546000805a90506000805b8984108015610d9757508582105b15610e5f5784610da681611723565b60095490965086109050610db957600094505b600060096000018681548110610dd157610dd161173c565b60009182526020808320909101546001600160a01b0316808352600f909152604090912054909150610e02906114d7565b15610e2557610e12816001610997565b15610e255781610e2181611723565b9250505b82610e2f81611723565b93505060005a905080851115610e5657610e53610e4c86836112f6565b8790611338565b95505b9350610d899050565b600d85905590975095509193505050505b9193909250565b600082600003610e89575060006106b0565b6000610e958385611752565b905082610ea285836116a0565b14610ef95760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610648565b9392505050565b600081818112156106b057600080fd5b600080610f1d8385611771565b905060008312158015610f305750838112155b80610f455750600083128015610f4557508381125b610ef957600080fd5b600080821215610f5d57600080fd5b5090565b6001600160a01b038216600090815260056020526040902080549082905580821115610fbd576000610f9383836112f6565b9050610f9f84826114fe565b8060066000828254610fb19190611799565b90915550610b84915050565b80821015610b84576000610fd182846112f6565b9050610fdd8482611558565b8060066000828254610fef9190611710565b909155505050505050565b6001600160a01b0381166000908152600c602052604090205460ff1661101d5750565b6001600160a01b0381166000908152600c60209081526040808320805460ff19169055600a8252808320839055600b90915281205460095490919061106490600190611710565b905060006009600001828154811061107e5761107e61173c565b60009182526020808320909101546001600160a01b03908116808452600b90925260408084208790559087168352822091909155600980549192508291859081106110cb576110cb61173c565b600091825260209091200180546001600160a01b0319166001600160a01b03929092169190911790556009805480611105576111056117ac565b600082815260209020810160001990810180546001600160a01b031916905501905550505050565b6000600960000182815481106111455761114561173c565b6000918252602090912001546001600160a01b031692915050565b60008061116c83610842565b905080156112ed576001600160a01b0383166000908152600460205260409020546111979082611338565b6001600160a01b03841660009081526004602052604090205560085481116111d65780600860008282546111cb9190611710565b909155506111dc9050565b60006008555b826001600160a01b03167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8260405161121791815260200190565b60405180910390a260025460405163a9059cbb60e01b81526001600160a01b03858116600483015260248201849052600092169063a9059cbb906044016020604051808303816000875af1158015611273573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129791906117c2565b9050806112e6576001600160a01b0384166000908152600460205260409020546112c190836112f6565b6001600160a01b03909416600090815260046020526040812094909455509192915050565b5092915050565b50600092915050565b6000610ef983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611592565b6000806113458385611799565b905083811015610ef95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610648565b6001600160a01b0382166000908152600c602052604090205460ff16156113d5576001600160a01b03919091166000908152600a6020526040902055565b6001600160a01b0382166000818152600c60209081526040808320805460ff19166001908117909155600a835281842086905560098054600b909452918420839055820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b03191690911790555050565b6001600160a01b0381166000908152600c602052604081205460ff1661147e5750600019919050565b506001600160a01b03166000908152600b602052604090205490565b6000806114a783856117df565b9050600083121580156114ba5750838113155b80610f455750600083128015610f455750838113610ef957600080fd5b6000428211156114e957506000919050565b6010546114f642846112f6565b101592915050565b61153861151961069683600154610e7790919063ffffffff16565b6001600160a01b0384166000908152600360205260409020549061149a565b6001600160a01b0390921660009081526003602052604090209190915550565b61153861157361069683600154610e7790919063ffffffff16565b6001600160a01b03841660009081526003602052604090205490610f10565b600081848411156115b65760405162461bcd60e51b815260040161064891906117ff565b5060006115c38486611710565b95945050505050565b6001600160a01b03811681146107c457600080fd5b6000602082840312156115f357600080fd5b8135610ef9816115cc565b60006020828403121561161057600080fd5b5035919050565b80151581146107c457600080fd5b6000806040838503121561163857600080fd5b8235611643816115cc565b9150602083013561165381611617565b809150509250929050565b6000806040838503121561167157600080fd5b823561167c816115cc565b946020939093013593505050565b634e487b7160e01b600052601160045260246000fd5b6000826116bd57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561170957600080fd5b5051919050565b818103818111156106b0576106b061168a565b6000600182016117355761173561168a565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561176c5761176c61168a565b500290565b80820182811260008312801582168215821617156117915761179161168a565b505092915050565b808201808211156106b0576106b061168a565b634e487b7160e01b600052603160045260246000fd5b6000602082840312156117d457600080fd5b8151610ef981611617565b81810360008312801583831316838312821617156112e6576112e661168a565b600060208083528351808285015260005b8181101561182c57858101830151858201604001528201611810565b506000604082860101526040601f19601f830116850101925050509291505056fea2646970667358221220b8910797829ae72d1615cd4ca87ae51f4ab97a0da8d3483b6abf32f8d02449e964736f6c634300081000334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed ByteCode Sourcemap

36342:21074:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36489:35;;;;;;;;-1:-1:-1;;;;;192:32:1;;;174:51;;162:2;147:18;36489:35:0;;;;;;;;4145:100;;;:::i;:::-;;;;;;;:::i;36415:37::-;;;;;5059:169;;;;;;:::i;:::-;;:::i;:::-;;;1637:14:1;;1630:22;1612:41;;1600:2;1585:18;5059:169:0;1472:187:1;37599:31:0;;;;;;;;;1810:25:1;;;1798:2;1783:18;37599:31:0;1664:177:1;36812:39:0;;;;;;44252:230;;;;;;:::i;:::-;;:::i;:::-;;38105:64;;;;;;:::i;:::-;;;;;;;;;;;;;;;;4466:108;4554:12;;4466:108;;37872:33;;;;;;36531:32;;;;;-1:-1:-1;;;;;36531:32:0;;;36974:33;;;;;;5236:492;;;;;;:::i;:::-;;:::i;42920:197::-;;;:::i;36602:38::-;;;;;-1:-1:-1;;;;;36602:38:0;;;47695:141;;;:::i;46847:349::-;;;;;;:::i;:::-;;:::i;4365:93::-;;;4448:2;3355:36:1;;3343:2;3328:18;4365:93:0;3213:184:1;43406:130:0;;;;;;:::i;:::-;;:::i;5736:215::-;;;;;;:::i;:::-;;:::i;36459:21::-;;;;;-1:-1:-1;;;;;36459:21:0;;;37083:33;;;;;;;;;37677:28;;;;;;49197:97;;;:::i;47844:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;47935:28:0;47911:4;47935:28;;;:19;:28;;;;;;;;;47844:127;49436:141;;;:::i;48133:136::-;;;;;;:::i;:::-;;:::i;37163:31::-;;;;;;;;;;;;48930:259;;;;;;:::i;:::-;;:::i;4582:127::-;;;;;;:::i;:::-;;:::i;13549:148::-;;;:::i;49589:119::-;;;:::i;37560:32::-;;;;;;49764:159;;;:::i;45526:202::-;;;;;;:::i;:::-;;:::i;44717:390::-;;;;;;:::i;:::-;;:::i;47204:367::-;;;;;;:::i;:::-;;:::i;43825:218::-;;;:::i;12907:79::-;12972:6;;-1:-1:-1;;;;;12972:6:0;12907:79;;44143:101;;;;;;:::i;:::-;;:::i;4253:104::-;;;:::i;46242:251::-;;;;;;:::i;:::-;;:::i;37918:35::-;;;;;;37438:42;;37476:4;37438:42;;47579:108;;;:::i;5959:413::-;;;;;;:::i;:::-;;:::i;42576:264::-;;;;;;:::i;:::-;;:::i;47979:149::-;;;;;;:::i;:::-;;:::i;4717:175::-;;;;;;:::i;:::-;;:::i;48277:318::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5044:32:1;;;5026:51;;5108:2;5093:18;;5086:34;;;;5136:18;;;5129:34;;;;5194:2;5179:18;;5172:34;;;;5237:3;5222:19;;5215:35;5064:3;5266:19;;5259:35;5325:3;5310:19;;5303:35;5369:3;5354:19;;5347:35;5013:3;4998:19;48277:318:0;4687:701:1;38327:58:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;37643:27;;;;;;37123:33;;;;;;;;;;;;45736:184;;;;;;:::i;:::-;;:::i;43641:126::-;;;;;;:::i;:::-;;:::i;45119:399::-;;;;;;:::i;:::-;;:::i;44494:211::-;;;;;;:::i;:::-;;:::i;45928:306::-;;;;;;:::i;:::-;;:::i;37386:39::-;;;;;;;;;36693:35;;;;;;37750:30;;;;;;37524:29;;;;;;37489:28;;;;;;4900:151;;;;;;:::i;:::-;-1:-1:-1;;;;;5016:18:0;;;4989:7;5016:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4900:151;36735:33;;;;;;49302:126;;;:::i;43179:134::-;;;:::i;36897:37::-;;;;;;37712:31;;;;;;48600:325;;;;;;:::i;:::-;;:::i;13852:244::-;;;;;;:::i;:::-;;:::i;37793:31::-;;;;;;36775:24;;;;;;37831:34;;;;;;36649:31;;;;;-1:-1:-1;;;;;36649:31:0;;;4145:100;4199:13;4232:5;4225:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4145:100;:::o;5059:169::-;5142:4;5159:39;252:10;5182:7;5191:6;5159:8;:39::i;:::-;-1:-1:-1;5216:4:0;5059:169;;;;;:::o;44252:230::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;;;;;;;;;44367:4:::1;44361;44341:13;4554:12:::0;;;4466:108;44341:13:::1;:17;::::0;44357:1:::1;44341:17;:::i;:::-;:24;;;;:::i;:::-;44340:31;;;;:::i;:::-;44331:6;:40;44323:100;;;::::0;-1:-1:-1;;;44323:100:0;;8016:2:1;44323:100:0::1;::::0;::::1;7998:21:1::0;8055:2;8035:18;;;8028:30;8094:34;8074:18;;;8067:62;-1:-1:-1;;;8145:18:1;;;8138:45;8200:19;;44323:100:0::1;7814:411:1::0;44323:100:0::1;44457:17;:6:::0;44467::::1;44457:17;:::i;:::-;44434:20;:40:::0;-1:-1:-1;44252:230:0:o;5236:492::-;5376:4;5393:36;5403:6;5411:9;5422:6;5393:9;:36::i;:::-;-1:-1:-1;;;;;5469:19:0;;5442:24;5469:19;;;:11;:19;;;;;;;;252:10;5469:33;;;;;;;;5521:26;;;;5513:79;;;;-1:-1:-1;;;5513:79:0;;8432:2:1;5513:79:0;;;8414:21:1;8471:2;8451:18;;;8444:30;8510:34;8490:18;;;8483:62;-1:-1:-1;;;8561:18:1;;;8554:38;8609:19;;5513:79:0;8230:404:1;5513:79:0;5628:57;5637:6;252:10;5678:6;5659:16;:25;5628:8;:57::i;:::-;-1:-1:-1;5716:4:0;;5236:492;-1:-1:-1;;;;5236:492:0:o;42920:197::-;42978:58;;-1:-1:-1;;;42978:58:0;;-1:-1:-1;;;;;43006:9:0;8831:32:1;;42978:58:0;;;8813:51:1;-1:-1:-1;;8880:18:1;;;8873:34;42978:11:0;:19;;;;8786:18:1;;42978:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43047:62;43064:4;43079:9;-1:-1:-1;;43047:8:0;:62::i;:::-;42920:197::o;47695:141::-;47785:15;;:43;;;-1:-1:-1;;;47785:43:0;;;;47758:7;;-1:-1:-1;;;;;47785:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47778:50;;47695:141;:::o;46847:349::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46946:33:0;::::1;46938:70;;;::::0;-1:-1:-1;;;46938:70:0;;9559:2:1;46938:70:0::1;::::0;::::1;9541:21:1::0;9598:2;9578:18;;;9571:30;9637:26;9617:18;;;9610:54;9681:18;;46938:70:0::1;9357:348:1::0;46938:70:0::1;47019:42;47035:19;47056:4;47019:15;:42::i;:::-;47122:16;::::0;47077:62:::1;::::0;-1:-1:-1;;;;;47122:16:0;;::::1;::::0;47077:62;::::1;::::0;::::1;::::0;47122:16:::1;::::0;47077:62:::1;47150:16;:38:::0;;-1:-1:-1;;;;;;47150:38:0::1;-1:-1:-1::0;;;;;47150:38:0;;;::::1;::::0;;;::::1;::::0;;46847:349::o;43406:130::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;43483:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;43483:45:0;;-1:-1:-1;;;;;192:32:1;;;43483:45:0::1;::::0;::::1;174:51:1::0;43483:15:0;;::::1;::::0;:36:::1;::::0;147:18:1;;43483:45:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;43406:130:::0;:::o;5736:215::-;252:10;5824:4;5873:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5873:34:0;;;;;;;;;;5824:4;;5841:80;;5864:7;;5873:47;;5910:10;;5873:47;:::i;:::-;5841:8;:80::i;49197:97::-;49228:15;;:58;;-1:-1:-1;;;49228:58:0;;49267:10;49228:58;;;10024:51:1;49228:15:0;10091:18:1;;;10084:50;-1:-1:-1;;;;;49228:15:0;;;;:30;;9997:18:1;;49228:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49197:97::o;49436:141::-;49528:15;;:41;;;-1:-1:-1;;;49528:41:0;;;;49501:7;;-1:-1:-1;;;;;49528:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;;;;;48133:136;48226:15;;:38;;-1:-1:-1;;;48226:38:0;;-1:-1:-1;;;;;192:32:1;;;48226:38:0;;;174:51:1;48205:7:0;;48226:15;;:29;;147:18:1;;48226:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;48930:259::-;49056:15;;:28;;-1:-1:-1;;;;;;49056:28:0;;;;;1810:25:1;;;48990:18:0;;;;;;-1:-1:-1;;;;;49056:15:0;;:23;;1783:18:1;;49056:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49094:87;;;10687:25:1;;;10743:2;10728:18;;10721:34;;;10771:18;;;10764:34;;;10829:2;10814:18;;10807:34;;;48989:95:0;;-1:-1:-1;48989:95:0;;-1:-1:-1;48989:95:0;-1:-1:-1;49171:9:0;;49159:5;;49094:87;;10674:3:1;10659:19;49094:87:0;;;;;;;;48984:205;;;48930:259;:::o;4582:127::-;-1:-1:-1;;;;;4683:18:0;4656:7;4683:18;;;;;;;;;;;;4582:127::o;13549:148::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;13640:6:::1;::::0;13619:40:::1;::::0;13656:1:::1;::::0;-1:-1:-1;;;;;13640:6:0::1;::::0;13619:40:::1;::::0;13656:1;;13619:40:::1;13670:6;:19:::0;;-1:-1:-1;;;;;;13670:19:0::1;::::0;;13549:148::o;49589:119::-;49670:15;;:30;;;-1:-1:-1;;;49670:30:0;;;;49643:7;;-1:-1:-1;;;;;49670:15:0;;:28;;:30;;;;;;;;;;;;;;:15;:30;;;;;;;;;;;;;;49764:159;13119:6;;49816:4;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;-1:-1:-1;49832:14:0::1;:22:::0;;-1:-1:-1;;49832:22:0;;::::1;::::0;;;49865:20:::1;:28:::0;;;;::::1;::::0;;49832:22;49764:159;:::o;45526:202::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45616:39:0;::::1;;::::0;;;:31:::1;:39:::0;;;;;;;;:46;;-1:-1:-1;;45616:46:0::1;::::0;::::1;;::::0;;::::1;::::0;;;45678:42;;1612:41:1;;;45678:42:0::1;::::0;1585:18:1;45678:42:0::1;;;;;;;;45526:202:::0;;:::o;44717:390::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;44838:16:::1;:33:::0;;;44882:13:::1;:27:::0;;;44920:15:::1;:31:::0;;;44938:13;44977:32:::1;44898:11:::0;44857:14;44977:32:::1;:::i;:::-;:50;;;;:::i;:::-;44962:12;:65:::0;;;45062:3:::1;-1:-1:-1::0;45046:19:0::1;45038:61;;;::::0;-1:-1:-1;;;45038:61:0;;11054:2:1;45038:61:0::1;::::0;::::1;11036:21:1::0;11093:2;11073:18;;;11066:30;11132:31;11112:18;;;11105:59;11181:18;;45038:61:0::1;10852:353:1::0;45038:61:0::1;44717:390:::0;;;:::o;47204:367::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;47304:6:::1;47292:8;:18;;47284:78;;;::::0;-1:-1:-1;;;47284:78:0;;11412:2:1;47284:78:0::1;::::0;::::1;11394:21:1::0;11451:2;11431:18;;;11424:30;11490:34;11470:18;;;11463:62;-1:-1:-1;;;11541:18:1;;;11534:45;11596:19;;47284:78:0::1;11210:411:1::0;47284:78:0::1;47393:16;;47381:8;:28:::0;47373:85:::1;;;::::0;-1:-1:-1;;;47373:85:0;;11828:2:1;47373:85:0::1;::::0;::::1;11810:21:1::0;11867:2;11847:18;;;11840:30;11906:34;11886:18;;;11879:62;-1:-1:-1;;;11957:18:1;;;11950:42;12009:19;;47373:85:0::1;11626:408:1::0;47373:85:0::1;47508:16;::::0;47474:51:::1;::::0;47498:8;;47474:51:::1;::::0;;;::::1;47536:16;:27:::0;47204:367::o;43825:218::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;43889:13:::1;::::0;::::1;::::0;::::1;;;43888:14;43880:51;;;::::0;-1:-1:-1;;;43880:51:0;;12241:2:1;43880:51:0::1;::::0;::::1;12223:21:1::0;12280:2;12260:18;;;12253:30;12319:26;12299:18;;;12292:54;12363:18;;43880:51:0::1;12039:348:1::0;43880:51:0::1;43942:13;:20:::0;;-1:-1:-1;;43973:18:0;;;;;44023:12:::1;44002:18;:33:::0;43825:218::o;44143:101::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;44215:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44215:21:0;;::::1;::::0;;;::::1;::::0;;44143:101::o;4253:104::-;4309:13;4342:7;4335:14;;;;;:::i;46242:251::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;46351:6:::1;::::0;-1:-1:-1;;;;;46351:6:0;;::::1;46343:14:::0;;::::1;::::0;46335:96:::1;;;::::0;-1:-1:-1;;;46335:96:0;;12594:2:1;46335:96:0::1;::::0;::::1;12576:21:1::0;12633:2;12613:18;;;12606:30;12672:34;12652:18;;;12645:62;12743:34;12723:18;;;12716:62;-1:-1:-1;;;12794:19:1;;;12787:36;12840:19;;46335:96:0::1;12392:473:1::0;46335:96:0::1;46444:41;46473:4;46479:5;46444:28;:41::i;:::-;46242:251:::0;;:::o;47579:108::-;47652:15;;:27;;;-1:-1:-1;;;47652:27:0;;;;47625:7;;-1:-1:-1;;;;;47652:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;;;;;5959:413;252:10;6052:4;6096:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6096:34:0;;;;;;;;;;6149:35;;;;6141:85;;;;-1:-1:-1;;;6141:85:0;;13072:2:1;6141:85:0;;;13054:21:1;13111:2;13091:18;;;13084:30;13150:34;13130:18;;;13123:62;-1:-1:-1;;;13201:18:1;;;13194:35;13246:19;;6141:85:0;12870:401:1;6141:85:0;6262:67;252:10;6285:7;6313:15;6294:16;:34;6262:8;:67::i;:::-;-1:-1:-1;6360:4:0;;5959:413;-1:-1:-1;;;5959:413:0:o;42576:264::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;42671:38:::1;42687:15;42704:4;42671:15;:38::i;:::-;42720:15;::::0;:53:::1;::::0;-1:-1:-1;;;42720:53:0;;-1:-1:-1;;;;;192:32:1;;;42720:53:0::1;::::0;::::1;174:51:1::0;42720:15:0;;::::1;::::0;:36:::1;::::0;147:18:1;;42720:53:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;42784:48;42810:15;42827:4;42784:25;:48::i;47979:149::-:0;48074:15;;:47;;-1:-1:-1;;;48074:47:0;;-1:-1:-1;;;;;192:32:1;;;48074:47:0;;;174:51:1;48050:7:0;;48074:15;;:38;;147:18:1;;48074:47:0;14:217:1;4717:175:0;4803:4;4820:42;252:10;4844:9;4855:6;4820:9;:42::i;48277:318::-;48552:15;;:35;;-1:-1:-1;;;48552:35:0;;-1:-1:-1;;;;;192:32:1;;;48552:35:0;;;174:51:1;48373:7:0;;;;;;;;;;;;;;;;48552:15;;;:26;;147:18:1;;48552:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48545:42;;;;;;;;;;;;;;;;48277:318;;;;;;;;;:::o;45736:184::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45821:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;45821:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;45878:34;;1612:41:1;;;45878:34:0::1;::::0;1585:18:1;45878:34:0::1;1472:187:1::0;43641:126:0;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;43716:15:::1;::::0;:43:::1;::::0;-1:-1:-1;;;43716:43:0;;-1:-1:-1;;;;;192:32:1;;;43716:43:0::1;::::0;::::1;174:51:1::0;43716:15:0;;::::1;::::0;:34:::1;::::0;147:18:1;;43716:43:0::1;14:217:1::0;45119:399:0;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;45241:17:::1;:34:::0;;;45286:14:::1;:28:::0;;;45325:16:::1;:32:::0;;;45344:13;45384:34:::1;45303:11:::0;45261:14;45384:34:::1;:::i;:::-;:53;;;;:::i;:::-;45368:13;:69:::0;;;45473:3:::1;-1:-1:-1::0;45456:20:0::1;45448:62;;;::::0;-1:-1:-1;;;45448:62:0;;11054:2:1;45448:62:0::1;::::0;::::1;11036:21:1::0;11093:2;11073:18;;;11066:30;11132:31;11112:18;;;11105:59;11181:18;;45448:62:0::1;10852:353:1::0;44494:211:0;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;44614:4:::1;44609:3;44589:13;4554:12:::0;;;4466:108;44589:13:::1;:17;::::0;44605:1:::1;44589:17;:::i;:::-;:23;;;;:::i;:::-;44588:30;;;;:::i;:::-;44579:6;:39;44571:86;;;::::0;-1:-1:-1;;;44571:86:0;;14164:2:1;44571:86:0::1;::::0;::::1;14146:21:1::0;14203:2;14183:18;;;14176:30;14242:34;14222:18;;;14215:62;-1:-1:-1;;;14293:18:1;;;14286:32;14335:19;;44571:86:0::1;13962:398:1::0;44571:86:0::1;44680:17;:6:::0;44690::::1;44680:17;:::i;:::-;44668:9;:29:::0;-1:-1:-1;44494:211:0:o;45928:306::-;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;46047:9:::1;46043:115;46062:19:::0;;::::1;46043:115;;;46138:8;46103:19;:32;46123:8;;46132:1;46123:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46103:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;46103:32:0;:43;;-1:-1:-1;;46103:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46083:3;::::1;::::0;::::1;:::i;:::-;;;;46043:115;;;;46175:51;46207:8;;46217;46175:51;;;;;;;;:::i;:::-;;;;;;;;45928:306:::0;;;:::o;49302:126::-;49381:15;;:39;;;-1:-1:-1;;;49381:39:0;;;;49357:7;;-1:-1:-1;;;;;49381:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;43179:134;13119:6;;43239:4;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;-1:-1:-1;43255:20:0::1;:28:::0;;-1:-1:-1;;43255:28:0::1;::::0;;;43179:134;:::o;48600:325::-;48877:15;;:40;;-1:-1:-1;;;48877:40:0;;;;;1810:25:1;;;48701:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48877:15:0;;;;:33;;1783:18:1;;48877:40:0;1664:177:1;13852:244:0;13119:6;;-1:-1:-1;;;;;13119:6:0;252:10;13119:22;13111:67;;;;-1:-1:-1;;;13111:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13941:22:0;::::1;13933:73;;;::::0;-1:-1:-1;;;13933:73:0;;15638:2:1;13933:73:0::1;::::0;::::1;15620:21:1::0;15677:2;15657:18;;;15650:30;15716:34;15696:18;;;15689:62;-1:-1:-1;;;15767:18:1;;;15760:36;15813:19;;13933:73:0::1;15436:402:1::0;13933:73:0::1;14043:6;::::0;14022:38:::1;::::0;-1:-1:-1;;;;;14022:38:0;;::::1;::::0;14043:6:::1;::::0;14022:38:::1;::::0;14043:6:::1;::::0;14022:38:::1;14071:6;:17:::0;;-1:-1:-1;;;;;;14071:17:0::1;-1:-1:-1::0;;;;;14071:17:0;;;::::1;::::0;;;::::1;::::0;;13852:244::o;7299:380::-;-1:-1:-1;;;;;7435:19:0;;7427:68;;;;-1:-1:-1;;;7427:68:0;;16045:2:1;7427:68:0;;;16027:21:1;16084:2;16064:18;;;16057:30;16123:34;16103:18;;;16096:62;-1:-1:-1;;;16174:18:1;;;16167:34;16218:19;;7427:68:0;15843:400:1;7427:68:0;-1:-1:-1;;;;;7514:21:0;;7506:68;;;;-1:-1:-1;;;7506:68:0;;16450:2:1;7506:68:0;;;16432:21:1;16489:2;16469:18;;;16462:30;16528:34;16508:18;;;16501:62;-1:-1:-1;;;16579:18:1;;;16572:32;16621:19;;7506:68:0;16248:398:1;7506:68:0;-1:-1:-1;;;;;7587:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7639:32;;1810:25:1;;;7639:32:0;;1783:18:1;7639:32:0;;;;;;;7299:380;;;:::o;49935:4530::-;-1:-1:-1;;;;;50067:18:0;;50059:68;;;;-1:-1:-1;;;50059:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50146:16:0;;50138:64;;;;-1:-1:-1;;;50138:64:0;;;;;;;:::i;:::-;50227:6;50237:1;50227:11;50224:92;;50255:28;50271:4;50277:2;50281:1;50255:15;:28::i;50224:92::-;50340:13;;;;;;;50336:136;;-1:-1:-1;;;;;50377:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;50406:23:0;;;;;;:19;:23;;;;;;;;50377:52;50369:91;;;;-1:-1:-1;;;50369:91:0;;17663:2:1;50369:91:0;;;17645:21:1;17702:2;17682:18;;;17675:30;17741:28;17721:18;;;17714:56;17787:18;;50369:91:0;17461:350:1;50369:91:0;50495:14;;;;50492:1632;;;12972:6;;-1:-1:-1;;;;;50547:15:0;;;12972:6;;50547:15;;;;:49;;-1:-1:-1;12972:6:0;;-1:-1:-1;;;;;50583:13:0;;;12972:6;;50583:13;;50547:49;:86;;;;-1:-1:-1;;;;;;50617:16:0;;;;50547:86;:128;;;;-1:-1:-1;;;;;;50654:21:0;;50668:6;50654:21;;50547:128;:158;;;;-1:-1:-1;50697:8:0;;-1:-1:-1;;;50697:8:0;;;;50696:9;50547:158;50525:1588;;;50879:20;;;;50875:393;;;50941:9;-1:-1:-1;;;;;50927:24:0;:2;-1:-1:-1;;;;;50927:24:0;;;:49;;;;-1:-1:-1;50969:6:0;;-1:-1:-1;;;;;50955:21:0;;;50969:6;;50955:21;;50927:49;50923:326;;;51041:9;51012:39;;;;:28;:39;;;;;;51054:12;-1:-1:-1;51004:140:0;;;;-1:-1:-1;;;51004:140:0;;18018:2:1;51004:140:0;;;18000:21:1;18057:2;18037:18;;;18030:30;18096:34;18076:18;;;18069:62;18167:34;18147:18;;;18140:62;-1:-1:-1;;;18218:19:1;;;18211:40;18268:19;;51004:140:0;17816:477:1;51004:140:0;51200:9;51171:39;;;;:28;:39;;;;;51213:12;51171:54;;50923:326;-1:-1:-1;;;;;51336:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;51372:35:0;;;;;;:31;:35;;;;;;;;51371:36;51336:71;51332:766;;;51450:20;;51440:6;:30;;51432:96;;;;-1:-1:-1;;;51432:96:0;;18500:2:1;51432:96:0;;;18482:21:1;18539:2;18519:18;;;18512:30;18578:34;18558:18;;;18551:62;-1:-1:-1;;;18629:18:1;;;18622:51;18690:19;;51432:96:0;18298:417:1;51432:96:0;51585:9;;51568:13;51578:2;51568:9;:13::i;:::-;51559:22;;:6;:22;:::i;:::-;:35;;51551:75;;;;-1:-1:-1;;;51551:75:0;;18922:2:1;51551:75:0;;;18904:21:1;18961:2;18941:18;;;18934:30;19000:29;18980:18;;;18973:57;19047:18;;51551:75:0;18720:351:1;51551:75:0;51332:766;;;-1:-1:-1;;;;;51703:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;51737:37:0;;;;;;:31;:37;;;;;;;;51736:38;51703:71;51699:399;;;51817:20;;51807:6;:30;;51799:97;;;;-1:-1:-1;;;51799:97:0;;19278:2:1;51799:97:0;;;19260:21:1;19317:2;19297:18;;;19290:30;19356:34;19336:18;;;19329:62;-1:-1:-1;;;19407:18:1;;;19400:52;19469:19;;51799:97:0;19076:418:1;51699:399:0;-1:-1:-1;;;;;51943:35:0;;;;;;:31;:35;;;;;;;;51939:159;;52037:9;;52020:13;52030:2;52020:9;:13::i;:::-;52011:22;;:6;:22;:::i;:::-;:35;;52003:75;;;;-1:-1:-1;;;52003:75:0;;18922:2:1;52003:75:0;;;18904:21:1;18961:2;18941:18;;;18934:30;19000:29;18980:18;;;18973:57;19047:18;;52003:75:0;18720:351:1;52003:75:0;52130:28;52161:24;52179:4;52161:9;:24::i;:::-;52245:18;;52130:55;;-1:-1:-1;52221:42:0;;;;;;;52294:35;;-1:-1:-1;52318:11:0;;;;;;;52294:35;:61;;;;-1:-1:-1;52347:8:0;;-1:-1:-1;;;52347:8:0;;;;52346:9;52294:61;:110;;;;-1:-1:-1;;;;;;52373:31:0;;;;;;:25;:31;;;;;;;;52372:32;52294:110;:153;;;;-1:-1:-1;;;;;;52422:25:0;;;;;;:19;:25;;;;;;;;52421:26;52294:153;:194;;;;-1:-1:-1;;;;;;52465:23:0;;;;;;:19;:23;;;;;;;;52464:24;52294:194;52276:322;;;52515:8;:15;;-1:-1:-1;;;;52515:15:0;-1:-1:-1;;;52515:15:0;;;52545:10;:8;:10::i;:::-;52570:8;:16;;-1:-1:-1;;;;52570:16:0;;;52276:322;52626:8;;-1:-1:-1;;;;;52735:25:0;;52610:12;52735:25;;;:19;:25;;;;;;52626:8;-1:-1:-1;;;52626:8:0;;;;;52625:9;;52735:25;;:52;;-1:-1:-1;;;;;;52764:23:0;;;;;;:19;:23;;;;;;;;52735:52;52732:99;;;-1:-1:-1;52814:5:0;52732:99;52851:12;52942:7;52939:993;;;-1:-1:-1;;;;;52993:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;53042:1;53026:13;;:17;52993:50;52989:786;;;37476:4;53079:13;;53070:6;:22;;;;:::i;:::-;:36;;;;:::i;:::-;53063:43;;53169:13;;53152:14;;53145:4;:21;;;;:::i;:::-;:37;;;;:::i;:::-;53125:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;53249:13:0;;53230:16;;53223:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;53201:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;53331:13:0;;53311:17;;53304:24;;:4;:24;:::i;:::-;:40;;;;:::i;:::-;53281:19;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;52989:786:0;;-1:-1:-1;52989:786:0;;-1:-1:-1;;;;;53419:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;53469:1;53454:12;;:16;53419:51;53416:359;;;37476:4;53504:12;;53495:6;:21;;;;:::i;:::-;:35;;;;:::i;:::-;53488:42;;53589:12;;53573:13;;53566:4;:20;;;;:::i;:::-;:35;;;;:::i;:::-;53546:16;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;53667:12:0;;53649:15;;53642:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;53620:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;53747:12:0;;53728:16;;53721:23;;:4;:23;:::i;:::-;:38;;;;:::i;:::-;53698:19;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;53416:359:0;53794:8;;53791:93;;53826:42;53842:4;53856;53863;53826:15;:42::i;:::-;53906:14;53916:4;53906:14;;:::i;:::-;;;52939:993;53944:33;53960:4;53966:2;53970:6;53944:15;:33::i;:::-;53990:15;;-1:-1:-1;;;;;53990:15:0;:26;54025:4;54032:15;54025:4;54032:9;:15::i;:::-;53990:58;;-1:-1:-1;;;;;;53990:58:0;;;;;;;-1:-1:-1;;;;;8831:32:1;;;53990:58:0;;;8813:51:1;8880:18;;;8873:34;8786:18;;53990:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54059:15:0;;-1:-1:-1;;;;;54059:15:0;;-1:-1:-1;54059:26:0;;-1:-1:-1;54094:2:0;54099:13;54094:2;54099:9;:13::i;:::-;54059:54;;-1:-1:-1;;;;;;54059:54:0;;;;;;;-1:-1:-1;;;;;8831:32:1;;;54059:54:0;;;8813:51:1;8880:18;;;8873:34;8786:18;;54059:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54130:8:0;;-1:-1:-1;;;54130:8:0;;;;54129:9;;-1:-1:-1;;54129:33:0;;;;;54161:1;54142:16;;:20;54129:33;54126:332;;;54187:16;;54218:15;;:28;;-1:-1:-1;;;;;;54218:28:0;;;;;1810:25:1;;;-1:-1:-1;;;;;54218:15:0;;;;:23;;1783:18:1;;54218:28:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;54218:28:0;;;;;;;;-1:-1:-1;;54218:28:0;;;;;;;;;;;;:::i;:::-;;;54214:233;;;54335:86;;;10687:25:1;;;10743:2;10728:18;;10721:34;;;10771:18;;;10764:34;;;10829:2;10814:18;;10807:34;;;54411:9:0;;54400:4;;54335:86;;10674:3:1;10659:19;54335:86:0;;;;;;;54247:184;;;54214:233;54164:294;54126:332;50048:4417;;;;49935:4530;;;:::o;46501:338::-;-1:-1:-1;;;;;46584:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;46584:39:0;;;;;;;46636:38;46584:31;:39;46636:25;:38::i;:::-;46698:5;46695:79;;;46720:15;;:42;;-1:-1:-1;;;46720:42:0;;-1:-1:-1;;;;;192:32:1;;;46720:42:0;;;174:51:1;46720:15:0;;;;:36;;147:18:1;;46720:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46695:79;46791:40;;;;;;-1:-1:-1;;;;;46791:40:0;;;;;;;;46501:338;;:::o;6380:614::-;-1:-1:-1;;;;;6520:20:0;;6512:70;;;;-1:-1:-1;;;6512:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6601:23:0;;6593:71;;;;-1:-1:-1;;;6593:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6701:17:0;;6677:21;6701:17;;;;;;;;;;;6737:23;;;;6729:74;;;;-1:-1:-1;;;6729:74:0;;20129:2:1;6729:74:0;;;20111:21:1;20168:2;20148:18;;;20141:30;20207:34;20187:18;;;20180:62;-1:-1:-1;;;20258:18:1;;;20251:36;20304:19;;6729:74:0;19927:402:1;6729:74:0;-1:-1:-1;;;;;6839:17:0;;;:9;:17;;;;;;;;;;;6859:22;;;6839:42;;6903:20;;;;;;;;:30;;6875:6;;6839:9;6903:30;;6875:6;;6903:30;:::i;:::-;;;;;;;;6968:9;-1:-1:-1;;;;;6951:35:0;6960:6;-1:-1:-1;;;;;6951:35:0;;6979:6;6951:35;;;;1810:25:1;;1798:2;1783:18;;1664:177;55912:1501:0;55951:23;55977:24;55995:4;55977:9;:24::i;:::-;55951:50;;56012:25;56083:16;;56061:19;;56040:18;;:40;;;;:::i;:::-;:59;;;;:::i;:::-;56012:87;-1:-1:-1;56123:20:0;;;:46;;-1:-1:-1;56147:22:0;;56123:46;56120:60;;;56172:7;;55912:1501::o;56120:60::-;56249:23;56314:17;56293:18;;56275:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;56249:82;-1:-1:-1;56342:25:0;56369:33;56249:82;56369:15;:33;:::i;:::-;56450:36;;-1:-1:-1;;;56450:36:0;;56480:4;56450:36;;;174:51:1;56342:60:0;;-1:-1:-1;56423:24:0;;-1:-1:-1;;;;;56450:11:0;:21;;;;147:18:1;;56450:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56423:63;;56499:43;56524:17;56499:24;:43::i;:::-;56584:36;;-1:-1:-1;;;56584:36:0;;56614:4;56584:36;;;174:51:1;56564:17:0;;56624:16;;-1:-1:-1;;;;;56584:11:0;:21;;;;147:18:1;;56584:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:57;;;;:::i;:::-;56564:77;-1:-1:-1;56662:20:0;56685:72;56721:35;56741:15;56721:17;:35;:::i;:::-;56699:16;;56685:31;;:9;;:13;:31::i;:::-;:35;;:72::i;:::-;56799:1;56778:18;:22;;;56811:19;:23;;;56845:16;:20;56662:95;-1:-1:-1;56889:19:0;;56886:176;;56955:6;;56924:55;;56948:4;;-1:-1:-1;;;;;56955:6:0;56963:15;56924;:55::i;:::-;57006:6;;;;;;;;;-1:-1:-1;;;;;57006:6:0;-1:-1:-1;;;;;56998:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56994:57;;57035:14;;;;;;;56994:57;57085:16;;57082:164;;57146:15;;57117:60;;-1:-1:-1;;;57117:60:0;;-1:-1:-1;;;;;57146:15:0;;;57117:60;;;8813:51:1;8880:18;;;8873:34;;;57117:11:0;:20;;;;;;8786:18:1;;57117:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57192:15;;;;;;;;;-1:-1:-1;;;;;57192:15:0;-1:-1:-1;;;;;57192:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57082:164;57261:36;;-1:-1:-1;;;57261:36:0;;57291:4;57261:36;;;174:51:1;57300:1:0;;57261:11;-1:-1:-1;;;;;57261:21:0;;;;147:18:1;;57261:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;57258:148;;;57338:16;;57356:36;;-1:-1:-1;;;57356:36:0;;57386:4;57356:36;;;174:51:1;-1:-1:-1;;;;;57317:11:0;:20;;;;;57338:16;;;57317:20;;57356:21;;147:18:1;;57356:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57317:77;;-1:-1:-1;;;;;;57317:77:0;;;;;;;-1:-1:-1;;;;;8831:32:1;;;57317:77:0;;;8813:51:1;8880:18;;;8873:34;8786:18;;57317:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;54477:601::-;54637:16;;;54651:1;54637:16;;;;;;;;54613:21;;54637:16;;;;;;;;;;-1:-1:-1;54637:16:0;54613:40;;54682:4;54664;54669:1;54664:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;54664:23:0;;;-1:-1:-1;;;;;54664:23:0;;;;;54716:11;54698:4;54703:1;54698:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;54698:30:0;;;:7;;;;;;;;;:30;54942:12;;54767:229;;-1:-1:-1;;;54767:229:0;;:9;:63;;;;;:229;;54845:11;;54871:1;;54915:4;;54942:12;;;54970:15;;54767:229;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;55009:12:0;;:51;;-1:-1:-1;;;55009:51:0;;-1:-1:-1;;;;;55047:11:0;192:32:1;;55009:51:0;;;174::1;55009:12:0;;;;-1:-1:-1;55009:29:0;;-1:-1:-1;147:18:1;;55009:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54540:538;54477:601;:::o;9305:471::-;9363:7;9608:1;9613;9608:6;9604:47;;-1:-1:-1;9638:1:0;9631:8;;9604:47;9663:9;9675:5;9679:1;9675;:5;:::i;:::-;9663:17;-1:-1:-1;9708:1:0;9699:5;9703:1;9663:17;9699:5;:::i;:::-;:10;9691:56;;;;-1:-1:-1;;;9691:56:0;;21653:2:1;9691:56:0;;;21635:21:1;21692:2;21672:18;;;21665:30;21731:34;21711:18;;;21704:62;-1:-1:-1;;;21782:18:1;;;21775:31;21823:19;;9691:56:0;21451:397:1;9691:56:0;9767:1;9305:471;-1:-1:-1;;;9305:471:0:o;10252:132::-;10310:7;10337:39;10341:1;10344;10337:39;;;;;;;;;;;;;;;;;10966:7;11001:12;10994:5;10986:28;;;;-1:-1:-1;;;10986:28:0;;;;;;;;:::i;:::-;-1:-1:-1;11025:9:0;11037:5;11041:1;11037;:5;:::i;:::-;11025:17;10880:278;-1:-1:-1;;;;;10880:278:0:o;236:548:1:-;348:4;377:2;406;395:9;388:21;438:6;432:13;481:6;476:2;465:9;461:18;454:34;506:1;516:140;530:6;527:1;524:13;516:140;;;625:14;;;621:23;;615:30;591:17;;;610:2;587:26;580:66;545:10;;516:140;;;520:3;705:1;700:2;691:6;680:9;676:22;672:31;665:42;775:2;768;764:7;759:2;751:6;747:15;743:29;732:9;728:45;724:54;716:62;;;;236:548;;;;:::o;1016:131::-;-1:-1:-1;;;;;1091:31:1;;1081:42;;1071:70;;1137:1;1134;1127:12;1152:315;1220:6;1228;1281:2;1269:9;1260:7;1256:23;1252:32;1249:52;;;1297:1;1294;1287:12;1249:52;1336:9;1323:23;1355:31;1380:5;1355:31;:::i;:::-;1405:5;1457:2;1442:18;;;;1429:32;;-1:-1:-1;;;1152:315:1:o;1846:180::-;1905:6;1958:2;1946:9;1937:7;1933:23;1929:32;1926:52;;;1974:1;1971;1964:12;1926:52;-1:-1:-1;1997:23:1;;1846:180;-1:-1:-1;1846:180:1:o;2031:247::-;2090:6;2143:2;2131:9;2122:7;2118:23;2114:32;2111:52;;;2159:1;2156;2149:12;2111:52;2198:9;2185:23;2217:31;2242:5;2217:31;:::i;2512:456::-;2589:6;2597;2605;2658:2;2646:9;2637:7;2633:23;2629:32;2626:52;;;2674:1;2671;2664:12;2626:52;2713:9;2700:23;2732:31;2757:5;2732:31;:::i;:::-;2782:5;-1:-1:-1;2839:2:1;2824:18;;2811:32;2852:33;2811:32;2852:33;:::i;:::-;2512:456;;2904:7;;-1:-1:-1;;;2958:2:1;2943:18;;;;2930:32;;2512:456::o;3610:118::-;3696:5;3689:13;3682:21;3675:5;3672:32;3662:60;;3718:1;3715;3708:12;3733:382;3798:6;3806;3859:2;3847:9;3838:7;3834:23;3830:32;3827:52;;;3875:1;3872;3865:12;3827:52;3914:9;3901:23;3933:31;3958:5;3933:31;:::i;:::-;3983:5;-1:-1:-1;4040:2:1;4025:18;;4012:32;4053:30;4012:32;4053:30;:::i;:::-;4102:7;4092:17;;;3733:382;;;;;:::o;4120:316::-;4197:6;4205;4213;4266:2;4254:9;4245:7;4241:23;4237:32;4234:52;;;4282:1;4279;4272:12;4234:52;-1:-1:-1;;4305:23:1;;;4375:2;4360:18;;4347:32;;-1:-1:-1;4426:2:1;4411:18;;;4398:32;;4120:316;-1:-1:-1;4120:316:1:o;4441:241::-;4497:6;4550:2;4538:9;4529:7;4525:23;4521:32;4518:52;;;4566:1;4563;4556:12;4518:52;4605:9;4592:23;4624:28;4646:5;4624:28;:::i;5393:750::-;5485:6;5493;5501;5554:2;5542:9;5533:7;5529:23;5525:32;5522:52;;;5570:1;5567;5560:12;5522:52;5610:9;5597:23;5639:18;5680:2;5672:6;5669:14;5666:34;;;5696:1;5693;5686:12;5666:34;5734:6;5723:9;5719:22;5709:32;;5779:7;5772:4;5768:2;5764:13;5760:27;5750:55;;5801:1;5798;5791:12;5750:55;5841:2;5828:16;5867:2;5859:6;5856:14;5853:34;;;5883:1;5880;5873:12;5853:34;5938:7;5931:4;5921:6;5918:1;5914:14;5910:2;5906:23;5902:34;5899:47;5896:67;;;5959:1;5956;5949:12;5896:67;5990:4;5982:13;;;;-1:-1:-1;6014:6:1;-1:-1:-1;;6055:20:1;;6042:34;6085:28;6042:34;6085:28;:::i;:::-;6132:5;6122:15;;;5393:750;;;;;:::o;6148:388::-;6216:6;6224;6277:2;6265:9;6256:7;6252:23;6248:32;6245:52;;;6293:1;6290;6283:12;6245:52;6332:9;6319:23;6351:31;6376:5;6351:31;:::i;:::-;6401:5;-1:-1:-1;6458:2:1;6443:18;;6430:32;6471:33;6430:32;6471:33;:::i;6541:380::-;6620:1;6616:12;;;;6663;;;6684:61;;6738:4;6730:6;6726:17;6716:27;;6684:61;6791:2;6783:6;6780:14;6760:18;6757:38;6754:161;;6837:10;6832:3;6828:20;6825:1;6818:31;6872:4;6869:1;6862:15;6900:4;6897:1;6890:15;6754:161;;6541:380;;;:::o;6926:356::-;7128:2;7110:21;;;7147:18;;;7140:30;7206:34;7201:2;7186:18;;7179:62;7273:2;7258:18;;6926:356::o;7287:127::-;7348:10;7343:3;7339:20;7336:1;7329:31;7379:4;7376:1;7369:15;7403:4;7400:1;7393:15;7419:168;7459:7;7525:1;7521;7517:6;7513:14;7510:1;7507:21;7502:1;7495:9;7488:17;7484:45;7481:71;;;7532:18;;:::i;:::-;-1:-1:-1;7572:9:1;;7419:168::o;7592:217::-;7632:1;7658;7648:132;;7702:10;7697:3;7693:20;7690:1;7683:31;7737:4;7734:1;7727:15;7765:4;7762:1;7755:15;7648:132;-1:-1:-1;7794:9:1;;7592:217::o;8918:245::-;8985:6;9038:2;9026:9;9017:7;9013:23;9009:32;9006:52;;;9054:1;9051;9044:12;9006:52;9086:9;9080:16;9105:28;9127:5;9105:28;:::i;9168:184::-;9238:6;9291:2;9279:9;9270:7;9266:23;9262:32;9259:52;;;9307:1;9304;9297:12;9259:52;-1:-1:-1;9330:16:1;;9168:184;-1:-1:-1;9168:184:1:o;9710:125::-;9775:9;;;9796:10;;;9793:36;;;9809:18;;:::i;10145:306::-;10233:6;10241;10249;10302:2;10290:9;10281:7;10277:23;10273:32;10270:52;;;10318:1;10315;10308:12;10270:52;10347:9;10341:16;10331:26;;10397:2;10386:9;10382:18;10376:25;10366:35;;10441:2;10430:9;10426:18;10420:25;10410:35;;10145:306;;;;;:::o;13276:681::-;13407:6;13415;13423;13431;13439;13447;13455;13463;13516:3;13504:9;13495:7;13491:23;13487:33;13484:53;;;13533:1;13530;13523:12;13484:53;13565:9;13559:16;13584:31;13609:5;13584:31;:::i;:::-;13634:5;13624:15;;;13679:2;13668:9;13664:18;13658:25;13648:35;;13723:2;13712:9;13708:18;13702:25;13692:35;;13767:2;13756:9;13752:18;13746:25;13736:35;;13811:3;13800:9;13796:19;13790:26;13780:36;;13856:3;13845:9;13841:19;13835:26;13825:36;;13901:3;13890:9;13886:19;13880:26;13870:36;;13946:3;13935:9;13931:19;13925:26;13915:36;;13276:681;;;;;;;;;;;:::o;14365:127::-;14426:10;14421:3;14417:20;14414:1;14407:31;14457:4;14454:1;14447:15;14481:4;14478:1;14471:15;14497:135;14536:3;14557:17;;;14554:43;;14577:18;;:::i;:::-;-1:-1:-1;14624:1:1;14613:13;;14497:135::o;14637:794::-;14859:2;14871:21;;;14844:18;;14927:22;;;14811:4;15006:6;14980:2;14965:18;;14811:4;15040:304;15054:6;15051:1;15048:13;15040:304;;;15129:6;15116:20;15149:31;15174:5;15149:31;:::i;:::-;-1:-1:-1;;;;;15205:31:1;15193:44;;15260:4;15319:15;;;;15284:12;;;;15233:1;15069:9;15040:304;;;15044:3;15361;15353:11;;;;15416:6;15409:14;15402:22;15395:4;15384:9;15380:20;15373:52;14637:794;;;;;;:::o;16651:401::-;16853:2;16835:21;;;16892:2;16872:18;;;16865:30;16931:34;16926:2;16911:18;;16904:62;-1:-1:-1;;;16997:2:1;16982:18;;16975:35;17042:3;17027:19;;16651:401::o;17057:399::-;17259:2;17241:21;;;17298:2;17278:18;;;17271:30;17337:34;17332:2;17317:18;;17310:62;-1:-1:-1;;;17403:2:1;17388:18;;17381:33;17446:3;17431:19;;17057:399::o;19499:128::-;19566:9;;;19587:11;;;19584:37;;;19601:18;;:::i;20466:980::-;20728:4;20776:3;20765:9;20761:19;20807:6;20796:9;20789:25;20833:2;20871:6;20866:2;20855:9;20851:18;20844:34;20914:3;20909:2;20898:9;20894:18;20887:31;20938:6;20973;20967:13;21004:6;20996;20989:22;21042:3;21031:9;21027:19;21020:26;;21081:2;21073:6;21069:15;21055:29;;21102:1;21112:195;21126:6;21123:1;21120:13;21112:195;;;21191:13;;-1:-1:-1;;;;;21187:39:1;21175:52;;21282:15;;;;21247:12;;;;21223:1;21141:9;21112:195;;;-1:-1:-1;;;;;;;21363:32:1;;;;21358:2;21343:18;;21336:60;-1:-1:-1;;;21427:3:1;21412:19;21405:35;21324:3;20466:980;-1:-1:-1;;;20466:980:1:o

Swarm Source

ipfs://b8910797829ae72d1615cd4ca87ae51f4ab97a0da8d3483b6abf32f8d02449e9
Loading