Contract Address Details

0x46D741b89102815710efeA3051291E64Ff49C228

Token
NAVA (NAVA)
Creator
0xec251b–784eea at 0x22aa60–ce458d
Balance
0 REI ( )
Tokens
Fetching tokens...
Transactions
277 Transactions
Transfers
0 Transfers
Gas Used
11,821,755
Last Balance Update
20156829
Contract name:
Nava




Optimization enabled
true
Compiler version
v0.6.12+commit.27d51765




Optimization runs
200
Verified at
2022-12-01T07:28:05.776321Z

Constructor Arguments

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ec251bb4919570814d6ee191e59a7db408784eea

Arg [0] (uint256) : 0
Arg [1] (address) : 0xec251bb4919570814d6ee191e59a7db408784eea

              

Contract source code

// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

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

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

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

library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

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

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

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

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

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

        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) {
        require(b > 0, errorMessage);
        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

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

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

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

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

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

abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

contract Operator is Context, Ownable {
    address private _operator;

    event OperatorTransferred(address indexed previousOperator, address indexed newOperator);

    constructor() internal {
        _operator = _msgSender();
        emit OperatorTransferred(address(0), _operator);
    }

    function operator() public view returns (address) {
        return _operator;
    }

    modifier onlyOperator() {
        require(_operator == msg.sender, "operator: caller is not the operator");
        _;
    }

    function isOperator() public view returns (bool) {
        return _msgSender() == _operator;
    }

    function transferOperator(address newOperator_) public onlyOwner {
        _transferOperator(newOperator_);
    }

    function _transferOperator(address newOperator_) internal {
        require(newOperator_ != address(0), "operator: zero address given for new operator");
        emit OperatorTransferred(address(0), newOperator_);
        _operator = newOperator_;
    }
}

interface IOracle {
    function update() external;

    function consult(address _token, uint256 _amountIn) external view returns (uint144 amountOut);

    function twap(address _token, uint256 _amountIn) external view returns (uint144 _amountOut);
}

contract Nava is ERC20Burnable, Operator {
    using SafeMath8 for uint8;
    using SafeMath for uint256;

    // Initial distribution for the first 24h genesis pools
    uint256 public constant INITIAL_GENESIS_POOL_DISTRIBUTION = 400000 ether;
    // Initial distribution for the day 2-5 NAVA-WFTM LP -> NAVA pool
    // uint256 public constant INITIAL_NAVA_POOL_DISTRIBUTION = 123990 ether;
    // Distribution for airdrops wallet
    uint256 public constant INITIAL_AIRDROP_WALLET_DISTRIBUTION = 600000 ether;

    // Have the rewards been distributed to the pools
    bool public rewardPoolDistributed = false;

    /* ================= Taxation =============== */
    // Address of the Oracle
    address public navaOracle;
    // Address of the Tax Office
    address public taxOffice;

    // Current tax rate
    uint256 public taxRate;
    // Price threshold below which taxes will get burned
    uint256 public burnThreshold = 1.10e18;
    // Address of the tax collector wallet
    address public taxCollectorAddress;

    // Should the taxes be calculated using the tax tiers
    bool public autoCalculateTax;

    // Tax Tiers
    uint256[] public taxTiersTwaps = [0, 7e17, 8e17, 9e17, 1e18];
    uint256[] public taxTiersRates = [980, 700, 500, 300, 0];

    // Sender addresses excluded from Tax
    mapping(address => bool) public excludedAddresses;

    event TaxOfficeTransferred(address oldAddress, address newAddress);

    modifier onlyTaxOffice() {
        require(taxOffice == msg.sender, "Caller is not the tax office");
        _;
    }

    modifier onlyOperatorOrTaxOffice() {
        require(isOperator() || taxOffice == msg.sender, "Caller is not the operator or the tax office");
        _;
    }

    /**
     * @notice Constructs the NAVA ERC-20 contract.
     */
    constructor(uint256 _taxRate, address _taxCollectorAddress) public ERC20("NAVA", "NAVA") {
        // Mints 1 NAVA to contract creator for initial pool setup
        require(_taxRate < 10000, "tax equal or bigger to 100%");
        require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address");

        excludeAddress(address(this));

        _mint(msg.sender, 1 ether);
        taxRate = _taxRate;
        taxCollectorAddress = _taxCollectorAddress;
    }

    /* ============= Taxation ============= */

    function getTaxTiersTwapsCount() public view returns (uint256 count) {
        return taxTiersTwaps.length;
    }

    function getTaxTiersRatesCount() public view returns (uint256 count) {
        return taxTiersRates.length;
    }

    function isAddressExcluded(address _address) public view returns (bool) {
        return excludedAddresses[_address];
    }

    function setTaxTiersTwap(uint8 _index, uint256 _value) public onlyTaxOffice returns (bool) {
        require(_index >= 0, "Index has to be higher than 0");
        require(_index < getTaxTiersTwapsCount(), "Index has to lower than count of tax tiers");
        if (_index > 0) {
            require(_value > taxTiersTwaps[_index - 1]);
        }
        if (_index < getTaxTiersTwapsCount().sub(1)) {
            require(_value < taxTiersTwaps[_index + 1]);
        }
        taxTiersTwaps[_index] = _value;
        return true;
    }

    function setTaxTiersRate(uint8 _index, uint256 _value) public onlyTaxOffice returns (bool) {
        require(_index >= 0, "Index has to be higher than 0");
        require(_index < getTaxTiersRatesCount(), "Index has to lower than count of tax tiers");
        taxTiersRates[_index] = _value;
        return true;
    }

    function setBurnThreshold(uint256 _burnThreshold) public onlyTaxOffice returns (bool) {
        burnThreshold = _burnThreshold;
    }

    function _getNavaPrice() internal view returns (uint256 _navaPrice) {
        try IOracle(navaOracle).consult(address(this), 1e18) returns (uint144 _price) {
            return uint256(_price);
        } catch {
            revert("Nava: failed to fetch NAVA price from Oracle");
        }
    }

    function _updateTaxRate(uint256 _navaPrice) internal returns (uint256){
        if (autoCalculateTax) {
            for (uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1); tierId >= 0; --tierId) {
                if (_navaPrice >= taxTiersTwaps[tierId]) {
                    require(taxTiersRates[tierId] < 10000, "tax equal or bigger to 100%");
                    taxRate = taxTiersRates[tierId];
                    return taxTiersRates[tierId];
                }
            }
        }
    }

    function enableAutoCalculateTax() public onlyTaxOffice {
        autoCalculateTax = true;
    }

    function disableAutoCalculateTax() public onlyTaxOffice {
        autoCalculateTax = false;
    }

    function setNavaOracle(address _navaOracle) public onlyOperatorOrTaxOffice {
        require(_navaOracle != address(0), "oracle address cannot be 0 address");
        navaOracle = _navaOracle;
    }

    function setTaxOffice(address _taxOffice) public onlyOperatorOrTaxOffice {
        require(_taxOffice != address(0), "tax office address cannot be 0 address");
        emit TaxOfficeTransferred(taxOffice, _taxOffice);
        taxOffice = _taxOffice;
    }

    function setTaxCollectorAddress(address _taxCollectorAddress) public onlyTaxOffice {
        require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address");
        taxCollectorAddress = _taxCollectorAddress;
    }

    function setTaxRate(uint256 _taxRate) public onlyTaxOffice {
        require(!autoCalculateTax, "auto calculate tax cannot be enabled");
        require(_taxRate < 10000, "tax equal or bigger to 100%");
        taxRate = _taxRate;
    }

    function excludeAddress(address _address) public onlyOperatorOrTaxOffice returns (bool) {
        require(!excludedAddresses[_address], "address can't be excluded");
        excludedAddresses[_address] = true;
        return true;
    }

    function includeAddress(address _address) public onlyOperatorOrTaxOffice returns (bool) {
        require(excludedAddresses[_address], "address can't be included");
        excludedAddresses[_address] = false;
        return true;
    }

    /**
     * @notice Operator mints NAVA to a recipient
     * @param recipient_ The address of recipient
     * @param amount_ The amount of NAVA to mint to
     * @return whether the process has been done
     */
    function mint(address recipient_, uint256 amount_) public onlyOperator returns (bool) {
        uint256 balanceBefore = balanceOf(recipient_);
        _mint(recipient_, amount_);
        uint256 balanceAfter = balanceOf(recipient_);

        return balanceAfter > balanceBefore;
    }

    function burn(uint256 amount) public override {
        super.burn(amount);
    }

    function burnFrom(address account, uint256 amount) public override onlyOperator {
        super.burnFrom(account, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        uint256 currentTaxRate = 0;
        bool burnTax = false;

        if (autoCalculateTax) {
            uint256 currentNavaPrice = _getNavaPrice();
            currentTaxRate = _updateTaxRate(currentNavaPrice);
            if (currentNavaPrice < burnThreshold) {
                burnTax = true;
            }
        }


        if (currentTaxRate == 0 || excludedAddresses[sender]) {
            _transfer(sender, recipient, amount);
        } else {
            _transferWithTax(sender, recipient, amount, burnTax);
        }

        _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function _transferWithTax(
        address sender,
        address recipient,
        uint256 amount,
        bool burnTax
    ) internal returns (bool) {
        uint256 taxAmount = amount.mul(taxRate).div(10000);
        uint256 amountAfterTax = amount.sub(taxAmount);

        if(burnTax) {
            // Burn tax
            super.burnFrom(sender, taxAmount);
        } else {
            // Transfer tax to tax collector
            _transfer(sender, taxCollectorAddress, taxAmount);
        }

        // Transfer amount after tax to recipient
        _transfer(sender, recipient, amountAfterTax);

        return true;
    }

    /**
     * @notice distribute to reward pool (only once)
     */
    function distributeReward(
        address _genesisPool, 
        // address _navaPool,
        address _airdropWallet
    ) external onlyOperator {
        require(!rewardPoolDistributed, "only can distribute once");
        require(_genesisPool != address(0), "!_genesisPool");
        require(_airdropWallet != address(0), "!_airdropWallet");
        rewardPoolDistributed = true;
        _mint(_genesisPool, INITIAL_GENESIS_POOL_DISTRIBUTION);
        // _mint(_navaPool, INITIAL_NAVA_POOL_DISTRIBUTION);
        _mint(_airdropWallet, INITIAL_AIRDROP_WALLET_DISTRIBUTION);
    }

    function governanceRecoverUnsupported(
        IERC20 _token,
        uint256 _amount,
        address _to
    ) external onlyOperator {
        _token.transfer(_to, _amount);
    }
}
        
>

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"uint256","name":"_taxRate","internalType":"uint256"},{"type":"address","name":"_taxCollectorAddress","internalType":"address"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OperatorTransferred","inputs":[{"type":"address","name":"previousOperator","internalType":"address","indexed":true},{"type":"address","name":"newOperator","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"TaxOfficeTransferred","inputs":[{"type":"address","name":"oldAddress","internalType":"address","indexed":false},{"type":"address","name":"newAddress","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"INITIAL_AIRDROP_WALLET_DISTRIBUTION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"INITIAL_GENESIS_POOL_DISTRIBUTION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"autoCalculateTax","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"burnThreshold","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"disableAutoCalculateTax","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"distributeReward","inputs":[{"type":"address","name":"_genesisPool","internalType":"address"},{"type":"address","name":"_airdropWallet","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"enableAutoCalculateTax","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"excludeAddress","inputs":[{"type":"address","name":"_address","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"excludedAddresses","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"count","internalType":"uint256"}],"name":"getTaxTiersRatesCount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"count","internalType":"uint256"}],"name":"getTaxTiersTwapsCount","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"governanceRecoverUnsupported","inputs":[{"type":"address","name":"_token","internalType":"contract IERC20"},{"type":"uint256","name":"_amount","internalType":"uint256"},{"type":"address","name":"_to","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"includeAddress","inputs":[{"type":"address","name":"_address","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isAddressExcluded","inputs":[{"type":"address","name":"_address","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isOperator","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"mint","inputs":[{"type":"address","name":"recipient_","internalType":"address"},{"type":"uint256","name":"amount_","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"navaOracle","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"operator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"rewardPoolDistributed","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"setBurnThreshold","inputs":[{"type":"uint256","name":"_burnThreshold","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setNavaOracle","inputs":[{"type":"address","name":"_navaOracle","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTaxCollectorAddress","inputs":[{"type":"address","name":"_taxCollectorAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTaxOffice","inputs":[{"type":"address","name":"_taxOffice","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTaxRate","inputs":[{"type":"uint256","name":"_taxRate","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"setTaxTiersRate","inputs":[{"type":"uint8","name":"_index","internalType":"uint8"},{"type":"uint256","name":"_value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"setTaxTiersTwap","inputs":[{"type":"uint8","name":"_index","internalType":"uint8"},{"type":"uint256","name":"_value","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"taxCollectorAddress","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"taxOffice","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"taxRate","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"taxTiersRates","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"taxTiersTwaps","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOperator","inputs":[{"type":"address","name":"newOperator_","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
              

Contract Creation Code

0x6006805460ff60a01b19169055670f43fc2c04ee0000600a55610120604052600060809081526709b6e64a8ec6000060a052670b1a2bc2ec50000060c052670c7d713b49da000060e052670de0b6b3a7640000610100526200006690600c90600562000589565b506040805160a0810182526103d481526102bc60208201526101f49181019190915261012c606082015260006080820152620000a790600d906005620005e4565b50348015620000b557600080fd5b5060405162002f1538038062002f1583398181016040526040811015620000db57600080fd5b5080516020918201516040805180820182526004808252634e41564160e01b828701818152845180860190955291845295830195909552805193949293909262000129916003919062000628565b5080516200013f90600490602084019062000628565b50506005805460ff191660121790555060006200015b620002f0565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001bb620002f0565b600680546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a361271082106200025e576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b6001600160a01b038116620002a55760405162461bcd60e51b815260040180806020018281038252602e81526020018062002ebb602e913960400191505060405180910390fd5b620002b030620002f4565b50620002c533670de0b6b3a7640000620003eb565b600991909155600b80546001600160a01b0319166001600160a01b03909216919091179055620006b2565b3390565b600062000300620004fa565b806200031657506008546001600160a01b031633145b620003535760405162461bcd60e51b815260040180806020018281038252602c81526020018062002ee9602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615620003c2576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff1916600190811790915590565b6001600160a01b03821662000447576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620004556000838362000522565b62000471816002546200052760201b62001a491790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620004a491839062001a4962000527821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6006546000906001600160a01b031662000513620002f0565b6001600160a01b031614905090565b505050565b60008282018381101562000582576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054828255906000526020600020908101928215620005d2579160200282015b82811115620005d257825182906001600160401b0316905591602001919060010190620005aa565b50620005e09291506200069b565b5090565b828054828255906000526020600020908101928215620005d2579160200282015b82811115620005d2578251829061ffff1690559160200191906001019062000605565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200066b57805160ff1916838001178555620005d2565b82800160010185558215620005d2579182015b82811115620005d25782518255916020019190600101906200067e565b5b80821115620005e057600081556001016200069c565b6127f980620006c26000396000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c8063715018a611610167578063a9059cbb116100ce578063ebca1bd911610087578063ebca1bd9146107b3578063ee2a9535146107d9578063f2fde38b146107e1578063f4fd47cf14610807578063ff87fc7c14610835578063ffa8226e1461083d576102a0565b8063a9059cbb146106e8578063b87c5a4a14610714578063c3bdf6131461073a578063c6d69a3014610742578063cf011b261461075f578063dd62ed3e14610785576102a0565b806394f645681161012057806394f645681461067f57806395d89b41146106875780639662676c1461068f5780639d6b5f2114610697578063a457c2d7146106b4578063a6431bba146106e0576102a0565b8063715018a61461060d578063771a3a1d1461061557806379cc67901461061d5780638d3cc818146106495780638da5cb5b1461065157806393995d4b14610659576102a0565b806342c6b4f11161020b5780635c29908d116101c45780635c29908d1461055057806365bbacd91461056d57806365f142311461057557806366206ce91461059b57806369356d47146105c157806370a08231146105e7576102a0565b806342c6b4f1146104dd5780634456eda2146104fa5780634e20a02c146105025780634f6d38d01461050a57806354575af414610512578063570ca73514610548576102a0565b80633758e6ce1161025d5780633758e6ce146103f8578063395093511461041e5780633e5f13d41461044a5780633f07d76a1461046e57806340c10f191461049457806342966c68146104c0576102a0565b806306fdde03146102a5578063095ea7b31461032257806318160ddd1461036257806323b872dd1461037c57806329605e77146103b2578063313ce567146103da575b600080fd5b6102ad610845565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034e6004803603604081101561033857600080fd5b506001600160a01b0381351690602001356108dc565b604080519115158252519081900360200190f35b61036a6108fa565b60408051918252519081900360200190f35b61034e6004803603606081101561039257600080fd5b506001600160a01b03813581169160208101359091169060400135610900565b6103d8600480360360208110156103c857600080fd5b50356001600160a01b03166109db565b005b6103e2610a5b565b6040805160ff9092168252519081900360200190f35b61034e6004803603602081101561040e57600080fd5b50356001600160a01b0316610a64565b61034e6004803603604081101561043457600080fd5b506001600160a01b038135169060200135610b59565b610452610ba7565b604080516001600160a01b039092168252519081900360200190f35b6103d86004803603602081101561048457600080fd5b50356001600160a01b0316610bb6565b61034e600480360360408110156104aa57600080fd5b506001600160a01b038135169060200135610cbd565b6103d8600480360360208110156104d657600080fd5b5035610d37565b61036a600480360360208110156104f357600080fd5b5035610d40565b61034e610d5e565b61036a610d84565b61036a610d92565b6103d86004803603606081101561052857600080fd5b506001600160a01b03813581169160208101359160409091013516610d98565b610452610e69565b61036a6004803603602081101561056657600080fd5b5035610e78565b6103d8610e85565b6103d86004803603602081101561058b57600080fd5b50356001600160a01b0316610ee1565b61034e600480360360408110156105b157600080fd5b5060ff8135169060200135610fa0565b6103d8600480360360208110156105d757600080fd5b50356001600160a01b03166110d6565b61036a600480360360208110156105fd57600080fd5b50356001600160a01b031661118a565b6103d86111a5565b61036a611269565b6103d86004803603604081101561063357600080fd5b506001600160a01b03813516906020013561126f565b61034e6112c6565b6104526112d6565b61034e6004803603602081101561066f57600080fd5b50356001600160a01b03166112ea565b6104526113d6565b6102ad6113e5565b61034e611446565b61034e600480360360208110156106ad57600080fd5b5035611456565b61034e600480360360408110156106ca57600080fd5b506001600160a01b0381351690602001356114af565b61036a611517565b61034e600480360360408110156106fe57600080fd5b506001600160a01b03813516906020013561151d565b61034e6004803603604081101561072a57600080fd5b5060ff8135169060200135611531565b6104526115da565b6103d86004803603602081101561075857600080fd5b50356115e9565b61034e6004803603602081101561077557600080fd5b50356001600160a01b03166116da565b61036a6004803603604081101561079b57600080fd5b506001600160a01b03813581169160200135166116ef565b61034e600480360360208110156107c957600080fd5b50356001600160a01b031661171a565b61036a611738565b6103d8600480360360208110156107f757600080fd5b50356001600160a01b031661173e565b6103d86004803603604081101561081d57600080fd5b506001600160a01b038135811691602001351661185e565b6103d86119d9565b61036a611a3b565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108d15780601f106108a6576101008083540402835291602001916108d1565b820191906000526020600020905b8154815290600101906020018083116108b457829003601f168201915b505050505090505b90565b60006108f06108e9611aaa565b8484611aae565b5060015b92915050565b60025490565b600b5460009081908190600160a01b900460ff1615610941576000610923611b9a565b905061092e81611c6e565b9250600a5481101561093f57600191505b505b81158061096657506001600160a01b0386166000908152600e602052604090205460ff165b1561097b57610976868686611d7c565b610989565b61098786868684611ed7565b505b6109cf86610995611aaa565b6109ca876040518060600160405280602881526020016125fb602891396109c38c6109be611aaa565b6116ef565b9190611f50565b611aae565b50600195945050505050565b6109e3611aaa565b6001600160a01b03166109f46112d6565b6001600160a01b031614610a4f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a5881611fe7565b50565b60055460ff1690565b6000610a6e610d5e565b80610a8357506008546001600160a01b031633145b610abe5760405162461bcd60e51b815260040180806020018281038252602c81526020018061274f602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610b2c576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b60006108f0610b66611aaa565b846109ca8560016000610b77611aaa565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611a49565b6008546001600160a01b031681565b610bbe610d5e565b80610bd357506008546001600160a01b031633145b610c0e5760405162461bcd60e51b815260040180806020018281038252602c81526020018061274f602c913960400191505060405180910390fd5b6001600160a01b038116610c535760405162461bcd60e51b81526004018080602001828103825260268152602001806125876026913960400191505060405180910390fd5b600854604080516001600160a01b039283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b03163314610d095760405162461bcd60e51b81526004018080602001828103825260248152602001806126756024913960400191505060405180910390fd5b6000610d148461118a565b9050610d208484612084565b6000610d2b8561118a565b91909111949350505050565b610a5881612174565b600c8181548110610d4d57fe5b600091825260209091200154905081565b6006546000906001600160a01b0316610d75611aaa565b6001600160a01b031614905090565b6954b40b1f852bda00000081565b600a5481565b6006546001600160a01b03163314610de15760405162461bcd60e51b81526004018080602001828103825260248152602001806126756024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610e3857600080fd5b505af1158015610e4c573d6000803e3d6000fd5b505050506040513d6020811015610e6257600080fd5b5050505050565b6006546001600160a01b031690565b600d8181548110610d4d57fe5b6008546001600160a01b03163314610ed2576040805162461bcd60e51b815260206004820152601c6024820152600080516020612515833981519152604482015290519081900360640190fd5b600b805460ff60a01b19169055565b610ee9610d5e565b80610efe57506008546001600160a01b031633145b610f395760405162461bcd60e51b815260040180806020018281038252602c81526020018061274f602c913960400191505060405180910390fd5b6001600160a01b038116610f7e5760405162461bcd60e51b81526004018080602001828103825260228152602001806126e46022913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6008546000906001600160a01b03163314610ff0576040805162461bcd60e51b815260206004820152601c6024820152600080516020612515833981519152604482015290519081900360640190fd5b610ff8611517565b8360ff16106110385760405162461bcd60e51b815260040180806020018281038252602a815260200180612699602a913960400191505060405180910390fd5b60ff83161561106a57600c6001840360ff168154811061105457fe5b9060005260206000200154821161106a57600080fd5b61107d6001611077611517565b90612185565b8360ff1610156110b057600c8360010160ff168154811061109a57fe5b906000526020600020015482106110b057600080fd5b81600c8460ff16815481106110c157fe5b60009182526020909120015550600192915050565b6008546001600160a01b03163314611123576040805162461bcd60e51b815260206004820152601c6024820152600080516020612515833981519152604482015290519081900360640190fd5b6001600160a01b0381166111685760405162461bcd60e51b815260040180806020018281038252602e815260200180612623602e913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b6111ad611aaa565b6001600160a01b03166111be6112d6565b6001600160a01b031614611219576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60095481565b6006546001600160a01b031633146112b85760405162461bcd60e51b81526004018080602001828103825260248152602001806126756024913960400191505060405180910390fd5b6112c282826121e2565b5050565b600b54600160a01b900460ff1681565b60055461010090046001600160a01b031690565b60006112f4610d5e565b8061130957506008546001600160a01b031633145b6113445760405162461bcd60e51b815260040180806020018281038252602c81526020018061274f602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff166113b1576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b6007546001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108d15780601f106108a6576101008083540402835291602001916108d1565b600654600160a01b900460ff1681565b6008546000906001600160a01b031633146114a6576040805162461bcd60e51b815260206004820152601c6024820152600080516020612515833981519152604482015290519081900360640190fd5b600a9190915590565b60006108f06114bc611aaa565b846109ca8560405180606001604052806025815260200161279f60259139600160006114e6611aaa565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611f50565b600c5490565b60006108f061152a611aaa565b8484611d7c565b6008546000906001600160a01b03163314611581576040805162461bcd60e51b815260206004820152601c6024820152600080516020612515833981519152604482015290519081900360640190fd5b611589611738565b8360ff16106115c95760405162461bcd60e51b815260040180806020018281038252602a815260200180612699602a913960400191505060405180910390fd5b81600d8460ff16815481106110c157fe5b600b546001600160a01b031681565b6008546001600160a01b03163314611636576040805162461bcd60e51b815260206004820152601c6024820152600080516020612515833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff161561167f5760405162461bcd60e51b81526004018080602001828103825260248152602001806127066024913960400191505060405180910390fd5b61271081106116d5576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b600e6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5490565b611746611aaa565b6001600160a01b03166117576112d6565b6001600160a01b0316146117b2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166117f75760405162461bcd60e51b81526004018080602001828103825260268152602001806124cd6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6006546001600160a01b031633146118a75760405162461bcd60e51b81526004018080602001828103825260248152602001806126756024913960400191505060405180910390fd5b600654600160a01b900460ff1615611906576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b038216611951576040805162461bcd60e51b815260206004820152600d60248201526c0857d9d95b995cda5cd41bdbdb609a1b604482015290519081900360640190fd5b6001600160a01b03811661199e576040805162461bcd60e51b815260206004820152600f60248201526e0857d85a5c991c9bdc15d85b1b195d608a1b604482015290519081900360640190fd5b6006805460ff60a01b1916600160a01b1790556119c5826954b40b1f852bda000000612084565b6112c281697f0e10af47c1c7000000612084565b6008546001600160a01b03163314611a26576040805162461bcd60e51b815260206004820152601c6024820152600080516020612515833981519152604482015290519081900360640190fd5b600b805460ff60a01b1916600160a01b179055565b697f0e10af47c1c700000081565b600082820183811015611aa3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316611af35760405162461bcd60e51b815260040180806020018281038252602481526020018061277b6024913960400191505060405180910390fd5b6001600160a01b038216611b385760405162461bcd60e51b81526004018080602001828103825260228152602001806124f36022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60075460408051633ddac95360e01b8152306004820152670de0b6b3a7640000602482015290516000926001600160a01b031691633ddac953916044808301926020929190829003018186803b158015611bf357600080fd5b505afa925050508015611c1857506040513d6020811015611c1357600080fd5b505160015b611c535760405162461bcd60e51b815260040180806020018281038252602c81526020018061255b602c913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff1690506108d9565b600b54600090600160a01b900460ff1615610b54576000611c9b6001611c92611517565b60ff1690612230565b90505b600c8160ff1681548110611cae57fe5b90600052602060002001548310611d7357612710600d8260ff1681548110611cd257fe5b906000526020600020015410611d2f576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff1681548110611d3f57fe5b9060005260206000200154600981905550600d8160ff1681548110611d6057fe5b9060005260206000200154915050610b54565b60001901611c9e565b6001600160a01b038316611dc15760405162461bcd60e51b815260040180806020018281038252602581526020018061272a6025913960400191505060405180910390fd5b6001600160a01b038216611e065760405162461bcd60e51b81526004018080602001828103825260238152602001806124886023913960400191505060405180910390fd5b611e1183838361222b565b611e4e81604051806060016040528060268152602001612535602691396001600160a01b0386166000908152602081905260409020549190611f50565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611e7d9082611a49565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080611efb612710611ef56009548761227290919063ffffffff16565b906122cb565b90506000611f098583612185565b90508315611f2057611f1b87836121e2565b611f38565b600b54611f389088906001600160a01b031684611d7c565b611f43878783611d7c565b5060019695505050505050565b60008184841115611fdf5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611fa4578181015183820152602001611f8c565b50505050905090810190601f168015611fd15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03811661202c5760405162461bcd60e51b815260040180806020018281038252602d8152602001806125ad602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166120df576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6120eb6000838361222b565b6002546120f89082611a49565b6002556001600160a01b03821660009081526020819052604090205461211e9082611a49565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610a5861217f611aaa565b82612332565b6000828211156121dc576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600061220d82604051806060016040528060248152602001612651602491396109c3866109be611aaa565b90506122218361221b611aaa565b83611aae565b61222b8383612332565b505050565b6000611aa383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061242e565b600082612281575060006108f4565b8282028284828161228e57fe5b0414611aa35760405162461bcd60e51b81526004018080602001828103825260218152602001806125da6021913960400191505060405180910390fd5b6000808211612321576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161232a57fe5b049392505050565b6001600160a01b0382166123775760405162461bcd60e51b81526004018080602001828103825260218152602001806126c36021913960400191505060405180910390fd5b6123838260008361222b565b6123c0816040518060600160405280602281526020016124ab602291396001600160a01b0385166000908152602081905260409020549190611f50565b6001600160a01b0383166000908152602081905260409020556002546123e69082612185565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff1611158290611fdf5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611fa4578181015183820152602001611f8c56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654e6176613a206661696c656420746f206665746368204e4156412070726963652066726f6d204f7261636c65746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ca685a8f9ad4e8a889cbe4910f8cf64786921cd4dacf336e2b821ebc0f32670164736f6c634300060c003374617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f66666963650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ec251bb4919570814d6ee191e59a7db408784eea

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106102a05760003560e01c8063715018a611610167578063a9059cbb116100ce578063ebca1bd911610087578063ebca1bd9146107b3578063ee2a9535146107d9578063f2fde38b146107e1578063f4fd47cf14610807578063ff87fc7c14610835578063ffa8226e1461083d576102a0565b8063a9059cbb146106e8578063b87c5a4a14610714578063c3bdf6131461073a578063c6d69a3014610742578063cf011b261461075f578063dd62ed3e14610785576102a0565b806394f645681161012057806394f645681461067f57806395d89b41146106875780639662676c1461068f5780639d6b5f2114610697578063a457c2d7146106b4578063a6431bba146106e0576102a0565b8063715018a61461060d578063771a3a1d1461061557806379cc67901461061d5780638d3cc818146106495780638da5cb5b1461065157806393995d4b14610659576102a0565b806342c6b4f11161020b5780635c29908d116101c45780635c29908d1461055057806365bbacd91461056d57806365f142311461057557806366206ce91461059b57806369356d47146105c157806370a08231146105e7576102a0565b806342c6b4f1146104dd5780634456eda2146104fa5780634e20a02c146105025780634f6d38d01461050a57806354575af414610512578063570ca73514610548576102a0565b80633758e6ce1161025d5780633758e6ce146103f8578063395093511461041e5780633e5f13d41461044a5780633f07d76a1461046e57806340c10f191461049457806342966c68146104c0576102a0565b806306fdde03146102a5578063095ea7b31461032257806318160ddd1461036257806323b872dd1461037c57806329605e77146103b2578063313ce567146103da575b600080fd5b6102ad610845565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034e6004803603604081101561033857600080fd5b506001600160a01b0381351690602001356108dc565b604080519115158252519081900360200190f35b61036a6108fa565b60408051918252519081900360200190f35b61034e6004803603606081101561039257600080fd5b506001600160a01b03813581169160208101359091169060400135610900565b6103d8600480360360208110156103c857600080fd5b50356001600160a01b03166109db565b005b6103e2610a5b565b6040805160ff9092168252519081900360200190f35b61034e6004803603602081101561040e57600080fd5b50356001600160a01b0316610a64565b61034e6004803603604081101561043457600080fd5b506001600160a01b038135169060200135610b59565b610452610ba7565b604080516001600160a01b039092168252519081900360200190f35b6103d86004803603602081101561048457600080fd5b50356001600160a01b0316610bb6565b61034e600480360360408110156104aa57600080fd5b506001600160a01b038135169060200135610cbd565b6103d8600480360360208110156104d657600080fd5b5035610d37565b61036a600480360360208110156104f357600080fd5b5035610d40565b61034e610d5e565b61036a610d84565b61036a610d92565b6103d86004803603606081101561052857600080fd5b506001600160a01b03813581169160208101359160409091013516610d98565b610452610e69565b61036a6004803603602081101561056657600080fd5b5035610e78565b6103d8610e85565b6103d86004803603602081101561058b57600080fd5b50356001600160a01b0316610ee1565b61034e600480360360408110156105b157600080fd5b5060ff8135169060200135610fa0565b6103d8600480360360208110156105d757600080fd5b50356001600160a01b03166110d6565b61036a600480360360208110156105fd57600080fd5b50356001600160a01b031661118a565b6103d86111a5565b61036a611269565b6103d86004803603604081101561063357600080fd5b506001600160a01b03813516906020013561126f565b61034e6112c6565b6104526112d6565b61034e6004803603602081101561066f57600080fd5b50356001600160a01b03166112ea565b6104526113d6565b6102ad6113e5565b61034e611446565b61034e600480360360208110156106ad57600080fd5b5035611456565b61034e600480360360408110156106ca57600080fd5b506001600160a01b0381351690602001356114af565b61036a611517565b61034e600480360360408110156106fe57600080fd5b506001600160a01b03813516906020013561151d565b61034e6004803603604081101561072a57600080fd5b5060ff8135169060200135611531565b6104526115da565b6103d86004803603602081101561075857600080fd5b50356115e9565b61034e6004803603602081101561077557600080fd5b50356001600160a01b03166116da565b61036a6004803603604081101561079b57600080fd5b506001600160a01b03813581169160200135166116ef565b61034e600480360360208110156107c957600080fd5b50356001600160a01b031661171a565b61036a611738565b6103d8600480360360208110156107f757600080fd5b50356001600160a01b031661173e565b6103d86004803603604081101561081d57600080fd5b506001600160a01b038135811691602001351661185e565b6103d86119d9565b61036a611a3b565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108d15780601f106108a6576101008083540402835291602001916108d1565b820191906000526020600020905b8154815290600101906020018083116108b457829003601f168201915b505050505090505b90565b60006108f06108e9611aaa565b8484611aae565b5060015b92915050565b60025490565b600b5460009081908190600160a01b900460ff1615610941576000610923611b9a565b905061092e81611c6e565b9250600a5481101561093f57600191505b505b81158061096657506001600160a01b0386166000908152600e602052604090205460ff165b1561097b57610976868686611d7c565b610989565b61098786868684611ed7565b505b6109cf86610995611aaa565b6109ca876040518060600160405280602881526020016125fb602891396109c38c6109be611aaa565b6116ef565b9190611f50565b611aae565b50600195945050505050565b6109e3611aaa565b6001600160a01b03166109f46112d6565b6001600160a01b031614610a4f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a5881611fe7565b50565b60055460ff1690565b6000610a6e610d5e565b80610a8357506008546001600160a01b031633145b610abe5760405162461bcd60e51b815260040180806020018281038252602c81526020018061274f602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610b2c576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b60006108f0610b66611aaa565b846109ca8560016000610b77611aaa565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611a49565b6008546001600160a01b031681565b610bbe610d5e565b80610bd357506008546001600160a01b031633145b610c0e5760405162461bcd60e51b815260040180806020018281038252602c81526020018061274f602c913960400191505060405180910390fd5b6001600160a01b038116610c535760405162461bcd60e51b81526004018080602001828103825260268152602001806125876026913960400191505060405180910390fd5b600854604080516001600160a01b039283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b03163314610d095760405162461bcd60e51b81526004018080602001828103825260248152602001806126756024913960400191505060405180910390fd5b6000610d148461118a565b9050610d208484612084565b6000610d2b8561118a565b91909111949350505050565b610a5881612174565b600c8181548110610d4d57fe5b600091825260209091200154905081565b6006546000906001600160a01b0316610d75611aaa565b6001600160a01b031614905090565b6954b40b1f852bda00000081565b600a5481565b6006546001600160a01b03163314610de15760405162461bcd60e51b81526004018080602001828103825260248152602001806126756024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610e3857600080fd5b505af1158015610e4c573d6000803e3d6000fd5b505050506040513d6020811015610e6257600080fd5b5050505050565b6006546001600160a01b031690565b600d8181548110610d4d57fe5b6008546001600160a01b03163314610ed2576040805162461bcd60e51b815260206004820152601c6024820152600080516020612515833981519152604482015290519081900360640190fd5b600b805460ff60a01b19169055565b610ee9610d5e565b80610efe57506008546001600160a01b031633145b610f395760405162461bcd60e51b815260040180806020018281038252602c81526020018061274f602c913960400191505060405180910390fd5b6001600160a01b038116610f7e5760405162461bcd60e51b81526004018080602001828103825260228152602001806126e46022913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6008546000906001600160a01b03163314610ff0576040805162461bcd60e51b815260206004820152601c6024820152600080516020612515833981519152604482015290519081900360640190fd5b610ff8611517565b8360ff16106110385760405162461bcd60e51b815260040180806020018281038252602a815260200180612699602a913960400191505060405180910390fd5b60ff83161561106a57600c6001840360ff168154811061105457fe5b9060005260206000200154821161106a57600080fd5b61107d6001611077611517565b90612185565b8360ff1610156110b057600c8360010160ff168154811061109a57fe5b906000526020600020015482106110b057600080fd5b81600c8460ff16815481106110c157fe5b60009182526020909120015550600192915050565b6008546001600160a01b03163314611123576040805162461bcd60e51b815260206004820152601c6024820152600080516020612515833981519152604482015290519081900360640190fd5b6001600160a01b0381166111685760405162461bcd60e51b815260040180806020018281038252602e815260200180612623602e913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b6111ad611aaa565b6001600160a01b03166111be6112d6565b6001600160a01b031614611219576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60095481565b6006546001600160a01b031633146112b85760405162461bcd60e51b81526004018080602001828103825260248152602001806126756024913960400191505060405180910390fd5b6112c282826121e2565b5050565b600b54600160a01b900460ff1681565b60055461010090046001600160a01b031690565b60006112f4610d5e565b8061130957506008546001600160a01b031633145b6113445760405162461bcd60e51b815260040180806020018281038252602c81526020018061274f602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff166113b1576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b6007546001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108d15780601f106108a6576101008083540402835291602001916108d1565b600654600160a01b900460ff1681565b6008546000906001600160a01b031633146114a6576040805162461bcd60e51b815260206004820152601c6024820152600080516020612515833981519152604482015290519081900360640190fd5b600a9190915590565b60006108f06114bc611aaa565b846109ca8560405180606001604052806025815260200161279f60259139600160006114e6611aaa565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611f50565b600c5490565b60006108f061152a611aaa565b8484611d7c565b6008546000906001600160a01b03163314611581576040805162461bcd60e51b815260206004820152601c6024820152600080516020612515833981519152604482015290519081900360640190fd5b611589611738565b8360ff16106115c95760405162461bcd60e51b815260040180806020018281038252602a815260200180612699602a913960400191505060405180910390fd5b81600d8460ff16815481106110c157fe5b600b546001600160a01b031681565b6008546001600160a01b03163314611636576040805162461bcd60e51b815260206004820152601c6024820152600080516020612515833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff161561167f5760405162461bcd60e51b81526004018080602001828103825260248152602001806127066024913960400191505060405180910390fd5b61271081106116d5576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b600e6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5490565b611746611aaa565b6001600160a01b03166117576112d6565b6001600160a01b0316146117b2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166117f75760405162461bcd60e51b81526004018080602001828103825260268152602001806124cd6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6006546001600160a01b031633146118a75760405162461bcd60e51b81526004018080602001828103825260248152602001806126756024913960400191505060405180910390fd5b600654600160a01b900460ff1615611906576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b038216611951576040805162461bcd60e51b815260206004820152600d60248201526c0857d9d95b995cda5cd41bdbdb609a1b604482015290519081900360640190fd5b6001600160a01b03811661199e576040805162461bcd60e51b815260206004820152600f60248201526e0857d85a5c991c9bdc15d85b1b195d608a1b604482015290519081900360640190fd5b6006805460ff60a01b1916600160a01b1790556119c5826954b40b1f852bda000000612084565b6112c281697f0e10af47c1c7000000612084565b6008546001600160a01b03163314611a26576040805162461bcd60e51b815260206004820152601c6024820152600080516020612515833981519152604482015290519081900360640190fd5b600b805460ff60a01b1916600160a01b179055565b697f0e10af47c1c700000081565b600082820183811015611aa3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316611af35760405162461bcd60e51b815260040180806020018281038252602481526020018061277b6024913960400191505060405180910390fd5b6001600160a01b038216611b385760405162461bcd60e51b81526004018080602001828103825260228152602001806124f36022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60075460408051633ddac95360e01b8152306004820152670de0b6b3a7640000602482015290516000926001600160a01b031691633ddac953916044808301926020929190829003018186803b158015611bf357600080fd5b505afa925050508015611c1857506040513d6020811015611c1357600080fd5b505160015b611c535760405162461bcd60e51b815260040180806020018281038252602c81526020018061255b602c913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff1690506108d9565b600b54600090600160a01b900460ff1615610b54576000611c9b6001611c92611517565b60ff1690612230565b90505b600c8160ff1681548110611cae57fe5b90600052602060002001548310611d7357612710600d8260ff1681548110611cd257fe5b906000526020600020015410611d2f576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff1681548110611d3f57fe5b9060005260206000200154600981905550600d8160ff1681548110611d6057fe5b9060005260206000200154915050610b54565b60001901611c9e565b6001600160a01b038316611dc15760405162461bcd60e51b815260040180806020018281038252602581526020018061272a6025913960400191505060405180910390fd5b6001600160a01b038216611e065760405162461bcd60e51b81526004018080602001828103825260238152602001806124886023913960400191505060405180910390fd5b611e1183838361222b565b611e4e81604051806060016040528060268152602001612535602691396001600160a01b0386166000908152602081905260409020549190611f50565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611e7d9082611a49565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080611efb612710611ef56009548761227290919063ffffffff16565b906122cb565b90506000611f098583612185565b90508315611f2057611f1b87836121e2565b611f38565b600b54611f389088906001600160a01b031684611d7c565b611f43878783611d7c565b5060019695505050505050565b60008184841115611fdf5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611fa4578181015183820152602001611f8c565b50505050905090810190601f168015611fd15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03811661202c5760405162461bcd60e51b815260040180806020018281038252602d8152602001806125ad602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166120df576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6120eb6000838361222b565b6002546120f89082611a49565b6002556001600160a01b03821660009081526020819052604090205461211e9082611a49565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610a5861217f611aaa565b82612332565b6000828211156121dc576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600061220d82604051806060016040528060248152602001612651602491396109c3866109be611aaa565b90506122218361221b611aaa565b83611aae565b61222b8383612332565b505050565b6000611aa383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061242e565b600082612281575060006108f4565b8282028284828161228e57fe5b0414611aa35760405162461bcd60e51b81526004018080602001828103825260218152602001806125da6021913960400191505060405180910390fd5b6000808211612321576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161232a57fe5b049392505050565b6001600160a01b0382166123775760405162461bcd60e51b81526004018080602001828103825260218152602001806126c36021913960400191505060405180910390fd5b6123838260008361222b565b6123c0816040518060600160405280602281526020016124ab602291396001600160a01b0385166000908152602081905260409020549190611f50565b6001600160a01b0383166000908152602081905260409020556002546123e69082612185565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff1611158290611fdf5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611fa4578181015183820152602001611f8c56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654e6176613a206661696c656420746f206665746368204e4156412070726963652066726f6d204f7261636c65746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ca685a8f9ad4e8a889cbe4910f8cf64786921cd4dacf336e2b821ebc0f32670164736f6c634300060c0033