S Price: $0.717495 (+6.61%)

Token

Hermes Protocol (HERMES)

Overview

Max Total Supply

5,000 HERMES

Holders

3

Total Transfers

-

Market

Price

$0.00 @ 0.000000 S

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Hermes

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2025-02-28
*/

// File: contracts/interfaces/IOracle.sol



pragma solidity 0.6.12;

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

// File: contracts/lib/SafeMath8.sol



pragma solidity 0.6.12;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library 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;
    }
}

// File: @openzeppelin/contracts/math/Math.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
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);
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return 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;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () 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;
    }
}

// File: @openzeppelin/contracts/GSN/Context.sol



pragma solidity >=0.6.0 <0.8.0;


// File: contracts/owner/Operator.sol



pragma solidity 0.6.12;



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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity >=0.6.0 <0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) 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 { }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol



pragma solidity >=0.6.0 <0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
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);
    }
}

// File: contracts/Hermes.sol



pragma solidity 0.6.12;

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

    // Initial distribution for Liquidity
    uint256 public constant INITIAL_LAUNCH_DISTRIBUTION = 2500 ether;
    // Distribution for Treasury wallet
    uint256 public constant INITIAL_TREASURY_WALLET_DISTRIBUTION = 1000 ether;

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

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

    // Current tax rate
    uint256 public taxRate;
    
    //buy tax
    uint256 public buyTax;
    //sell tax
    uint256 public sellTax;

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

    //spookyswap pair address
    address public uniswapV2Pair;

    // Tax Tiers
    uint256[] public taxTiersTwaps = [0, 5e17, 6e17, 7e17, 8e17, 9e17, 9.5e17, 1e18, 1.05e18, 1.10e18, 1.20e18, 1.30e18, 1.40e18, 1.50e18];
    uint256[] public taxTiersRates = [2000, 1900, 1800, 1700, 1600, 1500, 1500, 1500, 1500, 1400, 900, 400, 200, 100];

    // 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 HERMES ERC-20 contract.
     */
    constructor(uint256 _taxRate, address _taxCollectorAddress) public ERC20("Hermes Protocol", "HERMES") {
        // Mints 1 HERMES to contract creator for initial pool setup
        require(_taxRate < 1000, "tax equal or bigger to 100%");
        require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address");

        excludeAddress(address(this));

        _mint(msg.sender, 5000 ether);
        taxRate = _taxRate;
        taxCollectorAddress = _taxCollectorAddress;
        buyTax = 0;
        sellTax = 0;
    }

    /* ============= 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 _getTombPrice() internal view returns (uint256 _tombPrice) {
        try IOracle(tombOracle).consult(address(this), 1e18) returns (uint144 _price) {
            return uint256(_price);
        } catch {
            revert("Tomb: failed to fetch TOMB price from Oracle");
        }
    }

    function _updateTaxRate(uint256 _tombPrice) internal returns (uint256){
        if (autoCalculateTax) {
            for (uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1); tierId >= 0; --tierId) {
                if (_tombPrice >= 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 setTombOracle(address _tombOracle) public onlyOperatorOrTaxOffice {
        require(_tombOracle != address(0), "oracle address cannot be 0 address");
        tombOracle = _tombOracle;
    }

    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 setBuyTax(uint256 _taxRate) public onlyTaxOffice {
        require(!autoCalculateTax, "auto calculate tax cannot be enabled");
        require(_taxRate < 1000, "tax equal or bigger to 100%");
        buyTax = _taxRate;
    }

    function setSellTax(uint256 _taxRate) public onlyTaxOffice {
        require(!autoCalculateTax, "auto calculate tax cannot be enabled");
        require(_taxRate < 1000, "tax equal or bigger to 100%");
        sellTax = _taxRate;
    }
    
    function setUniswapv2Pair(address _uniswapv2Pair) public onlyOperatorOrTaxOffice {
        require(_uniswapv2Pair != address(0), "uniswap address must be non-zero address");
        uniswapV2Pair = _uniswapv2Pair;
    }

    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 TOMB to a recipient
     * @param recipient_ The address of recipient
     * @param amount_ The amount of TOMB 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 transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        uint256 currentTaxRate = taxRate;
        bool burnTax = false;

        // if (autoCalculateTax) {
        //     uint256 currentTombPrice = _getTombPrice();
        //     currentTaxRate = _updateTaxRate(currentTombPrice);
        //     if (currentTombPrice < burnThreshold) {
        //         burnTax = true;
        //     }
        // }


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

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

        // if (autoCalculateTax) {
        //     uint256 currentTombPrice = _getTombPrice();
        //     currentTaxRate = _updateTaxRate(currentTombPrice);
        //     if (currentTombPrice < 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 = 0;
        uint256 amountAfterTax = 0;
        
        if(sender == uniswapV2Pair){
            taxAmount = amount.mul(buyTax).div(1000);
            amountAfterTax = amount.sub(taxAmount);
        }

        if(recipient == uniswapV2Pair){
            taxAmount = amount.mul(sellTax).div(1000);
            amountAfterTax = amount.sub(taxAmount);
        }

        if ((sender != uniswapV2Pair) && (recipient != uniswapV2Pair)) {
            taxAmount = amount.mul(taxRate).div(1000);
            amountAfterTax = amount.sub(taxAmount);
        }

        // 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 _launcherWallet,
        address _treasuryWallet
    ) external onlyOperator {
        require(!rewardPoolDistributed, "only can distribute once");
        require(_launcherWallet != address(0), "!_launcherWallet");
        require(_treasuryWallet != address(0), "!_treasuryWallet");
        rewardPoolDistributed = true;
        _mint(_launcherWallet, INITIAL_LAUNCH_DISTRIBUTION);
        _mint(_treasuryWallet, INITIAL_TREASURY_WALLET_DISTRIBUTION);
    }

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

Contract Security Audit

Contract ABI

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

60806040526000600660146101000a81548160ff021916908315150217905550670f43fc2c04ee0000600c55604051806101c00160405280600067ffffffffffffffff1681526020016706f05b59d3b2000067ffffffffffffffff168152602001670853a0d2313c000067ffffffffffffffff1681526020016709b6e64a8ec6000067ffffffffffffffff168152602001670b1a2bc2ec50000067ffffffffffffffff168152602001670c7d713b49da000067ffffffffffffffff168152602001670d2f13f7789f000067ffffffffffffffff168152602001670de0b6b3a764000067ffffffffffffffff168152602001670e92596fd629000067ffffffffffffffff168152602001670f43fc2c04ee000067ffffffffffffffff1681526020016710a741a46278000067ffffffffffffffff16815260200167120a871cc002000067ffffffffffffffff16815260200167136dcc951d8c000067ffffffffffffffff1681526020016714d1120d7b16000067ffffffffffffffff16815250600f90600e6200019092919062000b29565b50604051806101c001604052806107d061ffff16815260200161076c61ffff16815260200161070861ffff1681526020016106a461ffff16815260200161064061ffff1681526020016105dc61ffff1681526020016105dc61ffff1681526020016105dc61ffff1681526020016105dc61ffff16815260200161057861ffff16815260200161038461ffff16815260200161019061ffff16815260200160c861ffff168152602001606461ffff16815250601090600e6200025392919062000b87565b503480156200026157600080fd5b506040516200579038038062005790833981810160405260408110156200028757600080fd5b8101908080519060200190929190805190602001909291905050506040518060400160405280600f81526020017f4865726d65732050726f746f636f6c00000000000000000000000000000000008152506040518060400160405280600681526020017f4845524d4553000000000000000000000000000000000000000000000000000081525081600390805190602001906200032692919062000bdf565b5080600490805190602001906200033f92919062000bdf565b506012600560006101000a81548160ff021916908360ff16021790555050506000620003706200066a60201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200041f6200066a60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a36103e8821062000554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620005dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018062005736602e913960400191505060405180910390fd5b620005ed306200067260201b60201c565b506200060a3369010f0cf064dd592000006200085660201b60201c565b8160098190555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a819055506000600b81905550505062000c85565b600033905090565b60006200068462000a3460201b60201c565b80620006dd57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b62000734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018062005764602c913960400191505060405180910390fd5b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615620007f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e2774206265206578636c756465640000000000000081525060200191505060405180910390fd5b6001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200090e6000838362000a9b60201b60201c565b6200092a8160025462000aa060201b620038251790919060201c565b60028190555062000988816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000aa060201b620038251790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662000a7f6200066a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b505050565b60008082840190508381101562000b1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b82805482825590600052602060002090810192821562000b74579160200282015b8281111562000b73578251829067ffffffffffffffff1690559160200191906001019062000b4a565b5b50905062000b83919062000c66565b5090565b82805482825590600052602060002090810192821562000bcc579160200282015b8281111562000bcb578251829061ffff1690559160200191906001019062000ba8565b5b50905062000bdb919062000c66565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000c2257805160ff191683800117855562000c53565b8280016001018555821562000c53579182015b8281111562000c5257825182559160200191906001019062000c35565b5b50905062000c62919062000c66565b5090565b5b8082111562000c8157600081600090555060010162000c67565b5090565b614aa18062000c956000396000f3fe608060405234801561001057600080fd5b50600436106103425760003560e01c806375be5ae1116101b8578063a9059cbb11610104578063dd62ed3e116100a2578063f2fde38b1161007c578063f2fde38b14610fd6578063f4fd47cf1461101a578063f77411031461107e578063ff87fc7c146110b257610342565b8063dd62ed3e14610ee6578063ebca1bd914610f5e578063ee2a953514610fb857610342565b8063c6d69a30116100de578063c6d69a3014610e12578063cc1776d314610e40578063cf011b2614610e5e578063dc1052e214610eb857610342565b8063a9059cbb14610d29578063b87c5a4a14610d8d578063c3bdf61314610dde57610342565b806393995d4b116101715780639662676c1161014b5780639662676c14610c435780639d6b5f2114610c63578063a457c2d714610ca7578063a6431bba14610d0b57610342565b806393995d4b14610b48578063939ba2a414610ba257806395d89b4114610bc057610342565b806375be5ae114610a16578063771a3a1d14610a5a57806379cc679014610a785780638cd09d5014610ac65780638d3cc81814610af45780638da5cb5b14610b1457610342565b806342c6b4f1116102925780635c29908d1161023057806366206ce91161020a57806366206ce91461091f57806369356d471461097057806370a08231146109b4578063715018a614610a0c57610342565b80635c29908d146108b55780635f261dbc146108f757806365bbacd91461091557610342565b80634f6d38d01161026c5780634f6d38d0146107d75780634f7041a5146107f557806354575af414610813578063570ca7351461088157610342565b806342c6b4f1146107415780634456eda21461078357806349bd5a5e146107a357610342565b8063313ce567116102ff5780633e5f13d4116102d95780633e5f13d4146106375780633f07d76a1461066b57806340c10f19146106af57806342966c681461071357610342565b8063313ce567146105585780633758e6ce1461057957806339509351146105d357610342565b806306fdde0314610347578063095ea7b3146103ca578063178a2fef1461042e57806318160ddd1461047257806323b872dd1461049057806329605e7714610514575b600080fd5b61034f6110bc565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038f578082015181840152602081019050610374565b50505050905090810190601f1680156103bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610416600480360360408110156103e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061115e565b60405180821515815260200191505060405180910390f35b6104706004803603602081101561044457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061117c565b005b61047a6112fb565b6040518082815260200191505060405180910390f35b6104fc600480360360608110156104a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611305565b60405180821515815260200191505060405180910390f35b6105566004803603602081101561052a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e4565b005b61056061149f565b604051808260ff16815260200191505060405180910390f35b6105bb6004803603602081101561058f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114b6565b60405180821515815260200191505060405180910390f35b61061f600480360360408110156105e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061168e565b60405180821515815260200191505060405180910390f35b61063f611741565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106ad6004803603602081101561068157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611767565b005b6106fb600480360360408110156106c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611973565b60405180821515815260200191505060405180910390f35b61073f6004803603602081101561072957600080fd5b8101908080359060200190929190505050611a4c565b005b61076d6004803603602081101561075757600080fd5b8101908080359060200190929190505050611a58565b6040518082815260200191505060405180910390f35b61078b611a79565b60405180821515815260200191505060405180910390f35b6107ab611ad8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107df611afe565b6040518082815260200191505060405180910390f35b6107fd611b04565b6040518082815260200191505060405180910390f35b61087f6004803603606081101561082957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b0a565b005b610889611c62565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108e1600480360360208110156108cb57600080fd5b8101908080359060200190929190505050611c8c565b6040518082815260200191505060405180910390f35b6108ff611cad565b6040518082815260200191505060405180910390f35b61091d611cba565b005b6109586004803603604081101561093557600080fd5b81019080803560ff16906020019092919080359060200190929190505050611d9a565b60405180821515815260200191505060405180910390f35b6109b26004803603602081101561098657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fe9565b005b6109f6600480360360208110156109ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612176565b6040518082815260200191505060405180910390f35b610a146121be565b005b610a5860048036036020811015610a2c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061232e565b005b610a626124ad565b6040518082815260200191505060405180910390f35b610ac460048036036040811015610a8e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506124b3565b005b610af260048036036020811015610adc57600080fd5b8101908080359060200190929190505050612567565b005b610afc612711565b60405180821515815260200191505060405180910390f35b610b1c612724565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b8a60048036036020811015610b5e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061274e565b60405180821515815260200191505060405180910390f35b610baa612925565b6040518082815260200191505060405180910390f35b610bc8612932565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c08578082015181840152602081019050610bed565b50505050905090810190601f168015610c355780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c4b6129d4565b60405180821515815260200191505060405180910390f35b610c8f60048036036020811015610c7957600080fd5b81019080803590602001909291905050506129e7565b60405180821515815260200191505060405180910390f35b610cf360048036036040811015610cbd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612ab8565b60405180821515815260200191505060405180910390f35b610d13612b85565b6040518082815260200191505060405180910390f35b610d7560048036036040811015610d3f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612b92565b60405180821515815260200191505060405180910390f35b610dc660048036036040811015610da357600080fd5b81019080803560ff16906020019092919080359060200190929190505050612c22565b60405180821515815260200191505060405180910390f35b610de6612dec565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610e3e60048036036020811015610e2857600080fd5b8101908080359060200190929190505050612e12565b005b610e48612fbc565b6040518082815260200191505060405180910390f35b610ea060048036036020811015610e7457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fc2565b60405180821515815260200191505060405180910390f35b610ee460048036036020811015610ece57600080fd5b8101908080359060200190929190505050612fe2565b005b610f4860048036036040811015610efc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061318c565b6040518082815260200191505060405180910390f35b610fa060048036036020811015610f7457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613213565b60405180821515815260200191505060405180910390f35b610fc0613269565b6040518082815260200191505060405180910390f35b61101860048036036020811015610fec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613276565b005b61107c6004803603604081101561103057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061346b565b005b61108661371f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6110ba613745565b005b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111545780601f1061112957610100808354040283529160200191611154565b820191906000526020600020905b81548152906001019060200180831161113757829003601f168201915b5050505050905090565b600061117261116b6138ad565b84846138b5565b6001905092915050565b611184611a79565b806111dc57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806149f7602c913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806149196028913960400191505060405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b60008060095490506000808214806113665750601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561137b57611376868686613aac565b611389565b61138786868684613d6d565b505b6113d7866113956138ad565b6113d28760405180606001604052806028815260200161487b602891396113c38c6113be6138ad565b61318c565b613fdc9092919063ffffffff16565b6138b5565b6001925050509392505050565b6113ec6138ad565b73ffffffffffffffffffffffffffffffffffffffff1661140a612724565b73ffffffffffffffffffffffffffffffffffffffff1614611493576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61149c81614096565b50565b6000600560009054906101000a900460ff16905090565b60006114c0611a79565b8061151857503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61156d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806149f7602c913960400191505060405180910390fd5b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561162d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e2774206265206578636c756465640000000000000081525060200191505060405180910390fd5b6001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b600061173761169b6138ad565b8461173285600160006116ac6138ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461382590919063ffffffff16565b6138b5565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61176f611a79565b806117c757503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806149f7602c913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806148076026913960400191505060405180910390fd5b7f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a601600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a180600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60003373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a1b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806148f56024913960400191505060405180910390fd5b6000611a2684612176565b9050611a3284846141bb565b6000611a3d85612176565b90508181119250505092915050565b611a5581614382565b50565b600f8181548110611a6557fe5b906000526020600020016000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611abc6138ad565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bb0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806148f56024913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611c2157600080fd5b505af1158015611c35573d6000803e3d6000fd5b505050506040513d6020811015611c4b57600080fd5b810190808051906020019092919050505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60108181548110611c9957fe5b906000526020600020016000915090505481565b683635c9adc5dea0000081565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b6000600d60146101000a81548160ff021916908315150217905550565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b60008360ff161015611ed9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e6465782068617320746f20626520686967686572207468616e203000000081525060200191505060405180910390fd5b611ee1612b85565b8360ff1610611f3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614941602a913960400191505060405180910390fd5b60008360ff161115611f7157600f6001840360ff1681548110611f5a57fe5b90600052602060002001548211611f7057600080fd5b5b611f8c6001611f7e612b85565b61439690919063ffffffff16565b8360ff161015611fc057600f6001840160ff1681548110611fa957fe5b90600052602060002001548210611fbf57600080fd5b5b81600f8460ff1681548110611fd157fe5b90600052602060002001819055506001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806148a3602e913960400191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6121c66138ad565b73ffffffffffffffffffffffffffffffffffffffff166121e4612724565b73ffffffffffffffffffffffffffffffffffffffff161461226d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612336611a79565b8061238e57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6123e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806149f7602c913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061498c6022913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612559576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806148f56024913960400191505060405180910390fd5b6125638282614419565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461262a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600d60149054906101000a900460ff1615612690576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806149ae6024913960400191505060405180910390fd5b6103e88110612707576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b80600b8190555050565b600d60149054906101000a900460ff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000612758611a79565b806127b057503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612805576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806149f7602c913960400191505060405180910390fd5b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166128c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e277420626520696e636c756465640000000000000081525060200191505060405180910390fd5b6000601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b68878678326eac90000081565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156129ca5780601f1061299f576101008083540402835291602001916129ca565b820191906000526020600020905b8154815290600101906020018083116129ad57829003601f168201915b5050505050905090565b600660149054906101000a900460ff1681565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612aac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b81600c81905550919050565b6000612b7b612ac56138ad565b84612b7685604051806060016040528060258152602001614a476025913960016000612aef6138ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613fdc9092919063ffffffff16565b6138b5565b6001905092915050565b6000600f80549050905090565b6000806009549050600080821480612bf35750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c0857612c03338686613aac565b612c16565b612c1433868684613d6d565b505b60019250505092915050565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ce7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b60008360ff161015612d61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e6465782068617320746f20626520686967686572207468616e203000000081525060200191505060405180910390fd5b612d69613269565b8360ff1610612dc3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614941602a913960400191505060405180910390fd5b8160108460ff1681548110612dd457fe5b90600052602060002001819055506001905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ed5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600d60149054906101000a900460ff1615612f3b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806149ae6024913960400191505060405180910390fd5b6127108110612fb2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b8060098190555050565b600b5481565b60116020528060005260406000206000915054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600d60149054906101000a900460ff161561310b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806149ae6024913960400191505060405180910390fd5b6103e88110613182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b80600a8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000601080549050905090565b61327e6138ad565b73ffffffffffffffffffffffffffffffffffffffff1661329c612724565b73ffffffffffffffffffffffffffffffffffffffff1614613325576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156133ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806147996026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613511576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806148f56024913960400191505060405180910390fd5b600660149054906101000a900460ff1615613594576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6f6e6c792063616e2064697374726962757465206f6e6365000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613637576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f215f6c61756e6368657257616c6c65740000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156136da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f215f747265617375727957616c6c65740000000000000000000000000000000081525060200191505060405180910390fd5b6001600660146101000a81548160ff0219169083151502179055506137088268878678326eac9000006141bb565b61371b81683635c9adc5dea000006141bb565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613808576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b6001600d60146101000a81548160ff021916908315150217905550565b6000808284019050838110156138a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561393b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614a236024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806147bf6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613b32576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806149d26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bb8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806147546023913960400191505060405180910390fd5b613bc383838361447b565b613c2e816040518060600160405280602681526020016147e1602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613fdc9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613cc1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461382590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600080600090506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161415613e0d57613df56103e8613de7600a548861448090919063ffffffff16565b61450690919063ffffffff16565b9150613e0a828661439690919063ffffffff16565b90505b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415613ea457613e8c6103e8613e7e600b548861448090919063ffffffff16565b61450690919063ffffffff16565b9150613ea1828661439690919063ffffffff16565b90505b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614158015613f505750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b15613f9657613f7e6103e8613f706009548861448090919063ffffffff16565b61450690919063ffffffff16565b9150613f93828661439690919063ffffffff16565b90505b613fc387600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613aac565b613fce878783613aac565b600192505050949350505050565b6000838311158290614089576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561404e578082015181840152602081019050614033565b50505050905090810190601f16801561407b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561411c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061482d602d913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561425e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61426a6000838361447b565b61427f8160025461382590919063ffffffff16565b6002819055506142d6816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461382590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b61439361438d6138ad565b8261458f565b50565b60008282111561440e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000614458826040518060600160405280602481526020016148d160249139614449866144446138ad565b61318c565b613fdc9092919063ffffffff16565b905061446c836144666138ad565b836138b5565b614476838361458f565b505050565b505050565b6000808314156144935760009050614500565b60008284029050828482816144a457fe5b04146144fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061485a6021913960400191505060405180910390fd5b809150505b92915050565b600080821161457d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161458657fe5b04905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061496b6021913960400191505060405180910390fd5b6146218260008361447b565b61468c81604051806060016040528060228152602001614777602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613fdc9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146e38160025461439690919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72756e69737761702061646472657373206d757374206265206e6f6e2d7a65726f2061646472657373496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f3ce165bf497096999b91260ac953c0723e7714194ce1a0bb7ac229e6925e21d64736f6c634300060c003374617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f6666696365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003037982ac20e561897b88c301a32893bd12ce35

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103425760003560e01c806375be5ae1116101b8578063a9059cbb11610104578063dd62ed3e116100a2578063f2fde38b1161007c578063f2fde38b14610fd6578063f4fd47cf1461101a578063f77411031461107e578063ff87fc7c146110b257610342565b8063dd62ed3e14610ee6578063ebca1bd914610f5e578063ee2a953514610fb857610342565b8063c6d69a30116100de578063c6d69a3014610e12578063cc1776d314610e40578063cf011b2614610e5e578063dc1052e214610eb857610342565b8063a9059cbb14610d29578063b87c5a4a14610d8d578063c3bdf61314610dde57610342565b806393995d4b116101715780639662676c1161014b5780639662676c14610c435780639d6b5f2114610c63578063a457c2d714610ca7578063a6431bba14610d0b57610342565b806393995d4b14610b48578063939ba2a414610ba257806395d89b4114610bc057610342565b806375be5ae114610a16578063771a3a1d14610a5a57806379cc679014610a785780638cd09d5014610ac65780638d3cc81814610af45780638da5cb5b14610b1457610342565b806342c6b4f1116102925780635c29908d1161023057806366206ce91161020a57806366206ce91461091f57806369356d471461097057806370a08231146109b4578063715018a614610a0c57610342565b80635c29908d146108b55780635f261dbc146108f757806365bbacd91461091557610342565b80634f6d38d01161026c5780634f6d38d0146107d75780634f7041a5146107f557806354575af414610813578063570ca7351461088157610342565b806342c6b4f1146107415780634456eda21461078357806349bd5a5e146107a357610342565b8063313ce567116102ff5780633e5f13d4116102d95780633e5f13d4146106375780633f07d76a1461066b57806340c10f19146106af57806342966c681461071357610342565b8063313ce567146105585780633758e6ce1461057957806339509351146105d357610342565b806306fdde0314610347578063095ea7b3146103ca578063178a2fef1461042e57806318160ddd1461047257806323b872dd1461049057806329605e7714610514575b600080fd5b61034f6110bc565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038f578082015181840152602081019050610374565b50505050905090810190601f1680156103bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610416600480360360408110156103e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061115e565b60405180821515815260200191505060405180910390f35b6104706004803603602081101561044457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061117c565b005b61047a6112fb565b6040518082815260200191505060405180910390f35b6104fc600480360360608110156104a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611305565b60405180821515815260200191505060405180910390f35b6105566004803603602081101561052a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e4565b005b61056061149f565b604051808260ff16815260200191505060405180910390f35b6105bb6004803603602081101561058f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114b6565b60405180821515815260200191505060405180910390f35b61061f600480360360408110156105e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061168e565b60405180821515815260200191505060405180910390f35b61063f611741565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106ad6004803603602081101561068157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611767565b005b6106fb600480360360408110156106c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611973565b60405180821515815260200191505060405180910390f35b61073f6004803603602081101561072957600080fd5b8101908080359060200190929190505050611a4c565b005b61076d6004803603602081101561075757600080fd5b8101908080359060200190929190505050611a58565b6040518082815260200191505060405180910390f35b61078b611a79565b60405180821515815260200191505060405180910390f35b6107ab611ad8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107df611afe565b6040518082815260200191505060405180910390f35b6107fd611b04565b6040518082815260200191505060405180910390f35b61087f6004803603606081101561082957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b0a565b005b610889611c62565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108e1600480360360208110156108cb57600080fd5b8101908080359060200190929190505050611c8c565b6040518082815260200191505060405180910390f35b6108ff611cad565b6040518082815260200191505060405180910390f35b61091d611cba565b005b6109586004803603604081101561093557600080fd5b81019080803560ff16906020019092919080359060200190929190505050611d9a565b60405180821515815260200191505060405180910390f35b6109b26004803603602081101561098657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fe9565b005b6109f6600480360360208110156109ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612176565b6040518082815260200191505060405180910390f35b610a146121be565b005b610a5860048036036020811015610a2c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061232e565b005b610a626124ad565b6040518082815260200191505060405180910390f35b610ac460048036036040811015610a8e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506124b3565b005b610af260048036036020811015610adc57600080fd5b8101908080359060200190929190505050612567565b005b610afc612711565b60405180821515815260200191505060405180910390f35b610b1c612724565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b8a60048036036020811015610b5e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061274e565b60405180821515815260200191505060405180910390f35b610baa612925565b6040518082815260200191505060405180910390f35b610bc8612932565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c08578082015181840152602081019050610bed565b50505050905090810190601f168015610c355780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c4b6129d4565b60405180821515815260200191505060405180910390f35b610c8f60048036036020811015610c7957600080fd5b81019080803590602001909291905050506129e7565b60405180821515815260200191505060405180910390f35b610cf360048036036040811015610cbd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612ab8565b60405180821515815260200191505060405180910390f35b610d13612b85565b6040518082815260200191505060405180910390f35b610d7560048036036040811015610d3f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612b92565b60405180821515815260200191505060405180910390f35b610dc660048036036040811015610da357600080fd5b81019080803560ff16906020019092919080359060200190929190505050612c22565b60405180821515815260200191505060405180910390f35b610de6612dec565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610e3e60048036036020811015610e2857600080fd5b8101908080359060200190929190505050612e12565b005b610e48612fbc565b6040518082815260200191505060405180910390f35b610ea060048036036020811015610e7457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fc2565b60405180821515815260200191505060405180910390f35b610ee460048036036020811015610ece57600080fd5b8101908080359060200190929190505050612fe2565b005b610f4860048036036040811015610efc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061318c565b6040518082815260200191505060405180910390f35b610fa060048036036020811015610f7457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613213565b60405180821515815260200191505060405180910390f35b610fc0613269565b6040518082815260200191505060405180910390f35b61101860048036036020811015610fec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613276565b005b61107c6004803603604081101561103057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061346b565b005b61108661371f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6110ba613745565b005b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111545780601f1061112957610100808354040283529160200191611154565b820191906000526020600020905b81548152906001019060200180831161113757829003601f168201915b5050505050905090565b600061117261116b6138ad565b84846138b5565b6001905092915050565b611184611a79565b806111dc57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806149f7602c913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806149196028913960400191505060405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b60008060095490506000808214806113665750601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561137b57611376868686613aac565b611389565b61138786868684613d6d565b505b6113d7866113956138ad565b6113d28760405180606001604052806028815260200161487b602891396113c38c6113be6138ad565b61318c565b613fdc9092919063ffffffff16565b6138b5565b6001925050509392505050565b6113ec6138ad565b73ffffffffffffffffffffffffffffffffffffffff1661140a612724565b73ffffffffffffffffffffffffffffffffffffffff1614611493576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61149c81614096565b50565b6000600560009054906101000a900460ff16905090565b60006114c0611a79565b8061151857503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61156d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806149f7602c913960400191505060405180910390fd5b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561162d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e2774206265206578636c756465640000000000000081525060200191505060405180910390fd5b6001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b600061173761169b6138ad565b8461173285600160006116ac6138ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461382590919063ffffffff16565b6138b5565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61176f611a79565b806117c757503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806149f7602c913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806148076026913960400191505060405180910390fd5b7f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a601600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a180600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60003373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a1b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806148f56024913960400191505060405180910390fd5b6000611a2684612176565b9050611a3284846141bb565b6000611a3d85612176565b90508181119250505092915050565b611a5581614382565b50565b600f8181548110611a6557fe5b906000526020600020016000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611abc6138ad565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bb0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806148f56024913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611c2157600080fd5b505af1158015611c35573d6000803e3d6000fd5b505050506040513d6020811015611c4b57600080fd5b810190808051906020019092919050505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60108181548110611c9957fe5b906000526020600020016000915090505481565b683635c9adc5dea0000081565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b6000600d60146101000a81548160ff021916908315150217905550565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b60008360ff161015611ed9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e6465782068617320746f20626520686967686572207468616e203000000081525060200191505060405180910390fd5b611ee1612b85565b8360ff1610611f3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614941602a913960400191505060405180910390fd5b60008360ff161115611f7157600f6001840360ff1681548110611f5a57fe5b90600052602060002001548211611f7057600080fd5b5b611f8c6001611f7e612b85565b61439690919063ffffffff16565b8360ff161015611fc057600f6001840160ff1681548110611fa957fe5b90600052602060002001548210611fbf57600080fd5b5b81600f8460ff1681548110611fd157fe5b90600052602060002001819055506001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806148a3602e913960400191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6121c66138ad565b73ffffffffffffffffffffffffffffffffffffffff166121e4612724565b73ffffffffffffffffffffffffffffffffffffffff161461226d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612336611a79565b8061238e57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6123e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806149f7602c913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061498c6022913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612559576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806148f56024913960400191505060405180910390fd5b6125638282614419565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461262a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600d60149054906101000a900460ff1615612690576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806149ae6024913960400191505060405180910390fd5b6103e88110612707576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b80600b8190555050565b600d60149054906101000a900460ff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000612758611a79565b806127b057503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612805576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806149f7602c913960400191505060405180910390fd5b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166128c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e277420626520696e636c756465640000000000000081525060200191505060405180910390fd5b6000601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b68878678326eac90000081565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156129ca5780601f1061299f576101008083540402835291602001916129ca565b820191906000526020600020905b8154815290600101906020018083116129ad57829003601f168201915b5050505050905090565b600660149054906101000a900460ff1681565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612aac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b81600c81905550919050565b6000612b7b612ac56138ad565b84612b7685604051806060016040528060258152602001614a476025913960016000612aef6138ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613fdc9092919063ffffffff16565b6138b5565b6001905092915050565b6000600f80549050905090565b6000806009549050600080821480612bf35750601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c0857612c03338686613aac565b612c16565b612c1433868684613d6d565b505b60019250505092915050565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ce7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b60008360ff161015612d61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e6465782068617320746f20626520686967686572207468616e203000000081525060200191505060405180910390fd5b612d69613269565b8360ff1610612dc3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614941602a913960400191505060405180910390fd5b8160108460ff1681548110612dd457fe5b90600052602060002001819055506001905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ed5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600d60149054906101000a900460ff1615612f3b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806149ae6024913960400191505060405180910390fd5b6127108110612fb2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b8060098190555050565b600b5481565b60116020528060005260406000206000915054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600d60149054906101000a900460ff161561310b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806149ae6024913960400191505060405180910390fd5b6103e88110613182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b80600a8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000601080549050905090565b61327e6138ad565b73ffffffffffffffffffffffffffffffffffffffff1661329c612724565b73ffffffffffffffffffffffffffffffffffffffff1614613325576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156133ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806147996026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613511576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806148f56024913960400191505060405180910390fd5b600660149054906101000a900460ff1615613594576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6f6e6c792063616e2064697374726962757465206f6e6365000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613637576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f215f6c61756e6368657257616c6c65740000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156136da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f215f747265617375727957616c6c65740000000000000000000000000000000081525060200191505060405180910390fd5b6001600660146101000a81548160ff0219169083151502179055506137088268878678326eac9000006141bb565b61371b81683635c9adc5dea000006141bb565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613808576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b6001600d60146101000a81548160ff021916908315150217905550565b6000808284019050838110156138a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561393b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614a236024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806147bf6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613b32576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806149d26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bb8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806147546023913960400191505060405180910390fd5b613bc383838361447b565b613c2e816040518060600160405280602681526020016147e1602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613fdc9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613cc1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461382590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600080600090506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161415613e0d57613df56103e8613de7600a548861448090919063ffffffff16565b61450690919063ffffffff16565b9150613e0a828661439690919063ffffffff16565b90505b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415613ea457613e8c6103e8613e7e600b548861448090919063ffffffff16565b61450690919063ffffffff16565b9150613ea1828661439690919063ffffffff16565b90505b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614158015613f505750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b15613f9657613f7e6103e8613f706009548861448090919063ffffffff16565b61450690919063ffffffff16565b9150613f93828661439690919063ffffffff16565b90505b613fc387600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613aac565b613fce878783613aac565b600192505050949350505050565b6000838311158290614089576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561404e578082015181840152602081019050614033565b50505050905090810190601f16801561407b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561411c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061482d602d913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561425e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61426a6000838361447b565b61427f8160025461382590919063ffffffff16565b6002819055506142d6816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461382590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b61439361438d6138ad565b8261458f565b50565b60008282111561440e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000614458826040518060600160405280602481526020016148d160249139614449866144446138ad565b61318c565b613fdc9092919063ffffffff16565b905061446c836144666138ad565b836138b5565b614476838361458f565b505050565b505050565b6000808314156144935760009050614500565b60008284029050828482816144a457fe5b04146144fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061485a6021913960400191505060405180910390fd5b809150505b92915050565b600080821161457d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161458657fe5b04905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061496b6021913960400191505060405180910390fd5b6146218260008361447b565b61468c81604051806060016040528060228152602001614777602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613fdc9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146e38160025461439690919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72756e69737761702061646472657373206d757374206265206e6f6e2d7a65726f2061646472657373496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f3ce165bf497096999b91260ac953c0723e7714194ce1a0bb7ac229e6925e21d64736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003037982ac20e561897b88c301a32893bd12ce35

-----Decoded View---------------
Arg [0] : _taxRate (uint256): 0
Arg [1] : _taxCollectorAddress (address): 0x03037982Ac20E561897b88C301a32893Bd12Ce35

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 00000000000000000000000003037982ac20e561897b88c301a32893bd12ce35


Deployed Bytecode Sourcemap

33635:11417:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23463:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25609:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40148:222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24562:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42379:879;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20908:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24406:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40378:240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26990:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34244:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38881:259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41097:290;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;41395:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34799:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20800:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34744:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34485:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34352:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44862:187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20572:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34940:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33907:73;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38565:99;;;:::i;:::-;;36605:545;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39148:248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24733:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19541:148;;;:::i;:::-;;38672:201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34302:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41486:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39897:239;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34676:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18890:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40626:240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33795:64;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23673:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34044:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37490:135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27711:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36226:115;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41624:747;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37158:324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34574:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39404:240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34396:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35105:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39652:237;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25311:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36472:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36349:115;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19844:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44343:511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34178:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38460:97;;;:::i;:::-;;23463:91;23508:13;23541:5;23534:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23463:91;:::o;25609:169::-;25692:4;25709:39;25718:12;:10;:12::i;:::-;25732:7;25741:6;25709:8;:39::i;:::-;25766:4;25759:11;;25609:169;;;;:::o;40148:222::-;35420:12;:10;:12::i;:::-;:39;;;;35449:10;35436:23;;:9;;;;;;;;;;;:23;;;35420:39;35412:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40274:1:::1;40248:28;;:14;:28;;;;40240:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40348:14;40332:13;;:30;;;;;;;;;;;;;;;;;;40148:222:::0;:::o;24562:108::-;24623:7;24650:12;;24643:19;;24562:108;:::o;42379:879::-;42511:4;42528:22;42553:7;;42528:32;;42571:12;42917:1;42899:14;:19;:48;;;;42922:17;:25;42940:6;42922:25;;;;;;;;;;;;;;;;;;;;;;;;;42899:48;42895:202;;;42964:36;42974:6;42982:9;42993:6;42964:9;:36::i;:::-;42895:202;;;43033:52;43050:6;43058:9;43069:6;43077:7;43033:16;:52::i;:::-;;42895:202;43109:119;43118:6;43126:12;:10;:12::i;:::-;43140:87;43176:6;43140:87;;;;;;;;;;;;;;;;;:31;43150:6;43158:12;:10;:12::i;:::-;43140:9;:31::i;:::-;:35;;:87;;;;;:::i;:::-;43109:8;:119::i;:::-;43246:4;43239:11;;;;42379:879;;;;;:::o;20908:115::-;19121:12;:10;:12::i;:::-;19110:23;;:7;:5;:7::i;:::-;:23;;;19102:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20984:31:::1;21002:12;20984:17;:31::i;:::-;20908:115:::0;:::o;24406:91::-;24455:5;24480:9;;;;;;;;;;;24473:16;;24406:91;:::o;40378:240::-;40460:4;35420:12;:10;:12::i;:::-;:39;;;;35449:10;35436:23;;:9;;;;;;;;;;;:23;;;35420:39;35412:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40486:17:::1;:27;40504:8;40486:27;;;;;;;;;;;;;;;;;;;;;;;;;40485:28;40477:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40584:4;40554:17;:27;40572:8;40554:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;40606:4;40599:11;;40378:240:::0;;;:::o;26990:218::-;27078:4;27095:83;27104:12;:10;:12::i;:::-;27118:7;27127:50;27166:10;27127:11;:25;27139:12;:10;:12::i;:::-;27127:25;;;;;;;;;;;;;;;:34;27153:7;27127:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;27095:8;:83::i;:::-;27196:4;27189:11;;26990:218;;;;:::o;34244:24::-;;;;;;;;;;;;;:::o;38881:259::-;35420:12;:10;:12::i;:::-;:39;;;;35449:10;35436:23;;:9;;;;;;;;;;;:23;;;35420:39;35412:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38995:1:::1;38973:24;;:10;:24;;;;38965:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39056:43;39077:9;;;;;;;;;;;39088:10;39056:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;39122:10;39110:9;;:22;;;;;;;;;;;;;;;;;;38881:259:::0;:::o;41097:290::-;41177:4;20721:10;20708:23;;:9;;;;;;;;;;;:23;;;20700:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41194:21:::1;41218;41228:10;41218:9;:21::i;:::-;41194:45;;41250:26;41256:10;41268:7;41250:5;:26::i;:::-;41287:20;41310:21;41320:10;41310:9;:21::i;:::-;41287:44;;41366:13;41351:12;:28;41344:35;;;;41097:290:::0;;;;:::o;41395:83::-;41452:18;41463:6;41452:10;:18::i;:::-;41395:83;:::o;34799:134::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20800:100::-;20843:4;20883:9;;;;;;;;;;;20867:25;;:12;:10;:12::i;:::-;:25;;;20860:32;;20800:100;:::o;34744:28::-;;;;;;;;;;;;;:::o;34485:38::-;;;;:::o;34352:21::-;;;;:::o;44862:187::-;20721:10;20708:23;;:9;;;;;;;;;;;:23;;;20700:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45012:6:::1;:15;;;45028:3;45033:7;45012:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;44862:187:::0;;;:::o;20572:85::-;20613:7;20640:9;;;;;;;;;;;20633:16;;20572:85;:::o;34940:113::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33907:73::-;33970:10;33907:73;:::o;38565:99::-;35295:10;35282:23;;:9;;;;;;;;;;;:23;;;35274:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38651:5:::1;38632:16;;:24;;;;;;;;;;;;;;;;;;38565:99::o:0;36605:545::-;36690:4;35295:10;35282:23;;:9;;;;;;;;;;;:23;;;35274:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36725:1:::1;36715:6;:11;;;;36707:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;36788:23;:21;:23::i;:::-;36779:6;:32;;;36771:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36882:1;36873:6;:10;;;36869:86;;;36917:13;36940:1;36931:6;:10;36917:25;;;;;;;;;;;;;;;;;;36908:6;:34;36900:43;;;::::0;::::1;;36869:86;36978:30;37006:1;36978:23;:21;:23::i;:::-;:27;;:30;;;;:::i;:::-;36969:6;:39;;;36965:115;;;37042:13;37065:1;37056:6;:10;37042:25;;;;;;;;;;;;;;;;;;37033:6;:34;37025:43;;;::::0;::::1;;36965:115;37114:6;37090:13;37104:6;37090:21;;;;;;;;;;;;;;;;;:30;;;;37138:4;37131:11;;36605:545:::0;;;;:::o;39148:248::-;35295:10;35282:23;;:9;;;;;;;;;;;:23;;;35274:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39282:1:::1;39250:34;;:20;:34;;;;39242:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39368:20;39346:19;;:42;;;;;;;;;;;;;;;;;;39148:248:::0;:::o;24733:127::-;24807:7;24834:9;:18;24844:7;24834:18;;;;;;;;;;;;;;;;24827:25;;24733:127;;;:::o;19541:148::-;19121:12;:10;:12::i;:::-;19110:23;;:7;:5;:7::i;:::-;:23;;;19102:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19648:1:::1;19611:40;;19632:6;;;;;;;;;;;19611:40;;;;;;;;;;;;19679:1;19662:6;;:19;;;;;;;;;;;;;;;;;;19541:148::o:0;38672:201::-;35420:12;:10;:12::i;:::-;:39;;;;35449:10;35436:23;;:9;;;;;;;;;;;:23;;;35420:39;35412:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38789:1:::1;38766:25;;:11;:25;;;;38758:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38854:11;38841:10;;:24;;;;;;;;;;;;;;;;;;38672:201:::0;:::o;34302:22::-;;;;:::o;41486:130::-;20721:10;20708:23;;:9;;;;;;;;;;;:23;;;20700:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41577:31:::1;41592:7;41601:6;41577:14;:31::i;:::-;41486:130:::0;;:::o;39897:239::-;35295:10;35282:23;;:9;;;;;;;;;;;:23;;;35274:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39976:16:::1;;;;;;;;;;;39975:17;39967:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40063:4;40052:8;:15;40044:55;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40120:8;40110:7;:18;;;;39897:239:::0;:::o;34676:28::-;;;;;;;;;;;;;:::o;18890:87::-;18936:7;18963:6;;;;;;;;;;;18956:13;;18890:87;:::o;40626:240::-;40708:4;35420:12;:10;:12::i;:::-;:39;;;;35449:10;35436:23;;:9;;;;;;;;;;;:23;;;35420:39;35412:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40733:17:::1;:27;40751:8;40733:27;;;;;;;;;;;;;;;;;;;;;;;;;40725:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40831:5;40801:17;:27;40819:8;40801:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;40854:4;40847:11;;40626:240:::0;;;:::o;33795:64::-;33849:10;33795:64;:::o;23673:95::-;23720:13;23753:7;23746:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23673:95;:::o;34044:41::-;;;;;;;;;;;;;:::o;37490:135::-;37570:4;35295:10;35282:23;;:9;;;;;;;;;;;:23;;;35274:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37603:14:::1;37587:13;:30;;;;37490:135:::0;;;:::o;27711:269::-;27804:4;27821:129;27830:12;:10;:12::i;:::-;27844:7;27853:96;27892:15;27853:96;;;;;;;;;;;;;;;;;:11;:25;27865:12;:10;:12::i;:::-;27853:25;;;;;;;;;;;;;;;:34;27879:7;27853:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;27821:8;:129::i;:::-;27968:4;27961:11;;27711:269;;;;:::o;36226:115::-;36280:13;36313;:20;;;;36306:27;;36226:115;:::o;41624:747::-;41729:4;41751:22;41776:7;;41751:32;;41794:12;42140:1;42122:14;:19;:52;;;;42145:17;:29;42163:10;42145:29;;;;;;;;;;;;;;;;;;;;;;;;;42122:52;42118:214;;;42191:40;42201:10;42213:9;42224:6;42191:9;:40::i;:::-;42118:214;;;42264:56;42281:10;42293:9;42304:6;42312:7;42264:16;:56::i;:::-;;42118:214;42359:4;42352:11;;;;41624:747;;;;:::o;37158:324::-;37243:4;35295:10;35282:23;;:9;;;;;;;;;;;:23;;;35274:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37278:1:::1;37268:6;:11;;;;37260:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;37341:23;:21;:23::i;:::-;37332:6;:32;;;37324:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37446:6;37422:13;37436:6;37422:21;;;;;;;;;;;;;;;;;:30;;;;37470:4;37463:11;;37158:324:::0;;;;:::o;34574:34::-;;;;;;;;;;;;;:::o;39404:240::-;35295:10;35282:23;;:9;;;;;;;;;;;:23;;;35274:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39483:16:::1;;;;;;;;;;;39482:17;39474:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39570:5;39559:8;:16;39551:56;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;39628:8;39618:7;:18;;;;39404:240:::0;:::o;34396:22::-;;;;:::o;35105:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;39652:237::-;35295:10;35282:23;;:9;;;;;;;;;;;:23;;;35274:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39730:16:::1;;;;;;;;;;;39729:17;39721:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39817:4;39806:8;:15;39798:55;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;39873:8;39864:6;:17;;;;39652:237:::0;:::o;25311:151::-;25400:7;25427:11;:18;25439:5;25427:18;;;;;;;;;;;;;;;:27;25446:7;25427:27;;;;;;;;;;;;;;;;25420:34;;25311:151;;;;:::o;36472:125::-;36538:4;36562:17;:27;36580:8;36562:27;;;;;;;;;;;;;;;;;;;;;;;;;36555:34;;36472:125;;;:::o;36349:115::-;36403:13;36436;:20;;;;36429:27;;36349:115;:::o;19844:244::-;19121:12;:10;:12::i;:::-;19110:23;;:7;:5;:7::i;:::-;:23;;;19102:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19953:1:::1;19933:22;;:8;:22;;;;19925:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20043:8;20014:38;;20035:6;;;;;;;;;;;20014:38;;;;;;;;;;;;20072:8;20063:6;;:17;;;;;;;;;;;;;;;;;;19844:244:::0;:::o;44343:511::-;20721:10;20708:23;;:9;;;;;;;;;;;:23;;;20700:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44486:21:::1;;;;;;;;;;;44485:22;44477:59;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;44582:1;44555:29;;:15;:29;;;;44547:58;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;44651:1;44624:29;;:15;:29;;;;44616:58;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;44709:4;44685:21;;:28;;;;;;;;;;;;;;;;;;44724:51;44730:15;33849:10;44724:5;:51::i;:::-;44786:60;44792:15;33970:10;44786:5;:60::i;:::-;44343:511:::0;;:::o;34178:25::-;;;;;;;;;;;;;:::o;38460:97::-;35295:10;35282:23;;:9;;;;;;;;;;;:23;;;35274:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38545:4:::1;38526:16;;:23;;;;;;;;;;;;;;;;;;38460:97::o:0;9311:179::-;9369:7;9389:9;9405:1;9401;:5;9389:17;;9430:1;9425;:6;;9417:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9481:1;9474:8;;;9311:179;;;;:::o;17425:106::-;17478:15;17513:10;17506:17;;17425:106;:::o;30858:346::-;30977:1;30960:19;;:5;:19;;;;30952:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31058:1;31039:21;;:7;:21;;;;31031:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31142:6;31112:11;:18;31124:5;31112:18;;;;;;;;;;;;;;;:27;31131:7;31112:27;;;;;;;;;;;;;;;:36;;;;31180:7;31164:32;;31173:5;31164:32;;;31189:6;31164:32;;;;;;;;;;;;;;;;;;30858:346;;;:::o;28470:539::-;28594:1;28576:20;;:6;:20;;;;28568:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28678:1;28657:23;;:9;:23;;;;28649:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28733:47;28754:6;28762:9;28773:6;28733:20;:47::i;:::-;28813:71;28835:6;28813:71;;;;;;;;;;;;;;;;;:9;:17;28823:6;28813:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;28793:9;:17;28803:6;28793:17;;;;;;;;;;;;;;;:91;;;;28918:32;28943:6;28918:9;:20;28928:9;28918:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;28895:9;:20;28905:9;28895:20;;;;;;;;;;;;;;;:55;;;;28983:9;28966:35;;28975:6;28966:35;;;28994:6;28966:35;;;;;;;;;;;;;;;;;;28470:539;;;:::o;43266:997::-;43418:4;43435:17;43455:1;43435:21;;43467:22;43527:13;;;;;;;;;;;43517:23;;:6;:23;;;43514:147;;;43568:28;43591:4;43568:18;43579:6;;43568;:10;;:18;;;;:::i;:::-;:22;;:28;;;;:::i;:::-;43556:40;;43628:21;43639:9;43628:6;:10;;:21;;;;:::i;:::-;43611:38;;43514:147;43689:13;;;;;;;;;;;43676:26;;:9;:26;;;43673:151;;;43730:29;43754:4;43730:19;43741:7;;43730:6;:10;;:19;;;;:::i;:::-;:23;;:29;;;;:::i;:::-;43718:41;;43791:21;43802:9;43791:6;:10;;:21;;;;:::i;:::-;43774:38;;43673:151;43851:13;;;;;;;;;;;43841:23;;:6;:23;;;;43840:57;;;;;43883:13;;;;;;;;;;;43870:26;;:9;:26;;;;43840:57;43836:184;;;43926:29;43950:4;43926:19;43937:7;;43926:6;:10;;:19;;;;:::i;:::-;:23;;:29;;;;:::i;:::-;43914:41;;43987:21;43998:9;43987:6;:10;;:21;;;;:::i;:::-;43970:38;;43836:184;44074:49;44084:6;44092:19;;;;;;;;;;;44113:9;44074;:49::i;:::-;44187:44;44197:6;44205:9;44216:14;44187:9;:44::i;:::-;44251:4;44244:11;;;;43266:997;;;;;;:::o;12138:166::-;12224:7;12257:1;12252;:6;;12260:12;12244:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12295:1;12291;:5;12284:12;;12138:166;;;;;:::o;21031:257::-;21132:1;21108:26;;:12;:26;;;;21100:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21232:12;21200:45;;21228:1;21200:45;;;;;;;;;;;;21268:12;21256:9;;:24;;;;;;;;;;;;;;;;;;21031:257;:::o;29291:378::-;29394:1;29375:21;;:7;:21;;;;29367:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29445:49;29474:1;29478:7;29487:6;29445:20;:49::i;:::-;29522:24;29539:6;29522:12;;:16;;:24;;;;:::i;:::-;29507:12;:39;;;;29578:30;29601:6;29578:9;:18;29588:7;29578:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;29557:9;:18;29567:7;29557:18;;;;;;;;;;;;;;;:51;;;;29645:7;29624:37;;29641:1;29624:37;;;29654:6;29624:37;;;;;;;;;;;;;;;;;;29291:378;;:::o;32859:91::-;32915:27;32921:12;:10;:12::i;:::-;32935:6;32915:5;:27::i;:::-;32859:91;:::o;9773:158::-;9831:7;9864:1;9859;:6;;9851:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9922:1;9918;:5;9911:12;;9773:158;;;;:::o;33269:295::-;33346:26;33375:84;33412:6;33375:84;;;;;;;;;;;;;;;;;:32;33385:7;33394:12;:10;:12::i;:::-;33375:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;33346:113;;33472:51;33481:7;33490:12;:10;:12::i;:::-;33504:18;33472:8;:51::i;:::-;33534:22;33540:7;33549:6;33534:5;:22::i;:::-;33269:295;;;:::o;32237:92::-;;;;:::o;10190:220::-;10248:7;10277:1;10272;:6;10268:20;;;10287:1;10280:8;;;;10268:20;10299:9;10315:1;10311;:5;10299:17;;10344:1;10339;10335;:5;;;;;;:10;10327:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10401:1;10394:8;;;10190:220;;;;;:::o;10888:153::-;10946:7;10978:1;10974;:5;10966:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11032:1;11028;:5;;;;;;11021:12;;10888:153;;;;:::o;30002:418::-;30105:1;30086:21;;:7;:21;;;;30078:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30158:49;30179:7;30196:1;30200:6;30158:20;:49::i;:::-;30241:68;30264:6;30241:68;;;;;;;;;;;;;;;;;:9;:18;30251:7;30241:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;30220:9;:18;30230:7;30220:18;;;;;;;;;;;;;;;:89;;;;30335:24;30352:6;30335:12;;:16;;:24;;;;:::i;:::-;30320:12;:39;;;;30401:1;30375:37;;30384:7;30375:37;;;30405:6;30375:37;;;;;;;;;;;;;;;;;;30002:418;;:::o

Swarm Source

ipfs://f3ce165bf497096999b91260ac953c0723e7714194ce1a0bb7ac229e6925e21d
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.