CRO Price: $0.08 (+0.58%)

Token

Savanna Token (SVN)

Overview

Max Total Supply

221,966,183.479363617117567882 SVN

Holders

12,220 (0.00%)

Market

Price

$0.00 @ 0.007750 CRO (-2.40%)

Onchain Market Cap

$134,955.44

Circulating Supply Market Cap

$73,954.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 SVN

Value
$0.00
0x9d76829813a53ea43c281eebd5b49a508cc1e0ac
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MM Finance is an AMM & DEX on Cronos Chain that offers fee rebates via trade mining with the lowest trading fees on Cronos at 0.17%!

Contract Source Code Verified (Exact Match)

Contract Name:
SavannaToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2022-03-15
*/

// File @openzeppelin/contracts/utils/[email protected]



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/token/ERC20/[email protected]



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/math/[email protected]



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/[email protected]



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/[email protected]



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 @openzeppelin/contracts/access/[email protected]



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 contracts/libraries/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 contracts/libraries/Math.sol


pragma solidity 0.6.12;

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


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

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

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

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

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

    // Tax Tiers
    uint256[] public taxTiersTwaps = [0, 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 SVN ERC-20 contract.
     */
    constructor(uint256 _taxRate, address _taxCollectorAddress) public ERC20("Savanna Token", "SVN") {
        // Mints 4000000 SVN to genesis farm
        require(_taxRate < 10000, "tax equal or bigger to 100%");
        require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address");

        excludeAddress(address(this));

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

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

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

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

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

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

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

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

    function _getSvnPrice() internal view returns (uint256 _svnPrice) {
        try IOracle(oracle).consult(address(this), 1e18) returns (uint144 _price) {
            return uint256(_price);
        } catch {
            revert("Svn: failed to fetch SVN price from Oracle");
        }
    }

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

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

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

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

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

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

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

        return balanceAfter > balanceBefore;
    }

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

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

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

        if (autoCalculateTax) {
            uint256 currentSvnPrice = _getSvnPrice();
            currentTaxRate = _updateTaxRate(currentSvnPrice);
            if (currentSvnPrice < burnThreshold) {
                burnTax = true;
            }
        }


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

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

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

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

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

        return true;
    }
}

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":[{"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":"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":[],"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":"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":"oracle","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":[{"internalType":"uint256","name":"_burnThreshold","type":"uint256"}],"name":"setBurnThreshold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oracle","type":"address"}],"name":"setSvnOracle","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":[],"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":"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"}]

670f43fc2c04ee0000600a819055610240604052600060809081526706f05b59d3b2000060a052670853a0d2313c000060c0526709b6e64a8ec6000060e052670b1a2bc2ec50000061010052670c7d713b49da000061012052670d2f13f7789f000061014052670de0b6b3a764000061016052670e92596fd6290000610180526101a0919091526710a741a4627800006101c05267120a871cc00200006101e05267136dcc951d8c0000610200526714d1120d7b16000061022052620000ca90600c90600e6200064b565b50604080516101c0810182526107d0815261076c6020820152610708918101919091526106a4606082015261064060808201526105dc60a0820181905260c0820181905260e0820181905261010082015261057861012082015261038461014082015261019061016082015260c861018082015260646101a08201526200015690600d90600e620006a6565b503480156200016457600080fd5b5060405162002caa38038062002caa833981810160405260408110156200018a57600080fd5b508051602091820151604080518082018252600d81526c29b0bb30b73730902a37b5b2b760991b818601908152825180840190935260038084526229ab2760e91b968401969096528151949593949193620001e892909190620006ea565b508051620001fe906004906020840190620006ea565b50506005805460ff191660121790555060006200021a620003b2565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200027a620003b2565b600680546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a361271082106200031d576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b6001600160a01b038116620003645760405162461bcd60e51b815260040180806020018281038252602e81526020018062002c50602e913960400191505060405180910390fd5b6200036f30620003b6565b5062000387336a034f086f3b33b684000000620004ad565b600991909155600b80546001600160a01b0319166001600160a01b0390921691909117905562000774565b3390565b6000620003c2620005bc565b80620003d857506008546001600160a01b031633145b620004155760405162461bcd60e51b815260040180806020018281038252602c81526020018062002c7e602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff161562000484576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff1916600190811790915590565b6001600160a01b03821662000509576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200051760008383620005e4565b6200053381600254620005e960201b6200171e1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620005669183906200171e620005e9821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6006546000906001600160a01b0316620005d5620003b2565b6001600160a01b031614905090565b505050565b60008282018381101562000644576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b82805482825590600052602060002090810192821562000694579160200282015b828111156200069457825182906001600160401b03169055916020019190600101906200066c565b50620006a29291506200075d565b5090565b82805482825590600052602060002090810192821562000694579160200282015b8281111562000694578251829061ffff16905591602001919060010190620006c7565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200072d57805160ff191683800117855562000694565b8280016001018555821562000694579182015b828111156200069457825182559160200191906001019062000740565b5b80821115620006a257600081556001016200075e565b6124cc80620007846000396000f3fe608060405234801561001057600080fd5b50600436106102695760003560e01c8063715018a611610151578063a9059cbb116100c3578063cf3d55f011610087578063cf3d55f0146106e2578063dd62ed3e14610708578063ebca1bd914610736578063ee2a95351461075c578063f2fde38b14610764578063ff87fc7c1461078a57610269565b8063a9059cbb14610645578063b87c5a4a14610671578063c3bdf61314610697578063c6d69a301461069f578063cf011b26146106bc57610269565b80638da5cb5b116101155780638da5cb5b146105be57806393995d4b146105c657806395d89b41146105ec5780639d6b5f21146105f4578063a457c2d714610611578063a6431bba1461063d57610269565b8063715018a614610572578063771a3a1d1461057a57806379cc6790146105825780637dc0d1d0146105ae5780638d3cc818146105b657610269565b806340c10f19116101ea578063570ca735116101ae578063570ca735146104d35780635c29908d146104db57806365bbacd9146104f857806366206ce91461050057806369356d471461052657806370a082311461054c57610269565b806340c10f191461045d57806342966c681461048957806342c6b4f1146104a65780634456eda2146104c35780634f6d38d0146104cb57610269565b8063313ce56711610231578063313ce567146103a35780633758e6ce146103c157806339509351146103e75780633e5f13d4146104135780633f07d76a1461043757610269565b806306fdde031461026e578063095ea7b3146102eb57806318160ddd1461032b57806323b872dd1461034557806329605e771461037b575b600080fd5b610276610792565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103176004803603604081101561030157600080fd5b506001600160a01b038135169060200135610829565b604080519115158252519081900360200190f35b610333610847565b60408051918252519081900360200190f35b6103176004803603606081101561035b57600080fd5b506001600160a01b0381358116916020810135909116906040013561084d565b6103a16004803603602081101561039157600080fd5b50356001600160a01b0316610928565b005b6103ab6109a8565b6040805160ff9092168252519081900360200190f35b610317600480360360208110156103d757600080fd5b50356001600160a01b03166109b1565b610317600480360360408110156103fd57600080fd5b506001600160a01b038135169060200135610aa6565b61041b610af4565b604080516001600160a01b039092168252519081900360200190f35b6103a16004803603602081101561044d57600080fd5b50356001600160a01b0316610b03565b6103176004803603604081101561047357600080fd5b506001600160a01b038135169060200135610c0a565b6103a16004803603602081101561049f57600080fd5b5035610c84565b610333600480360360208110156104bc57600080fd5b5035610c8d565b610317610cab565b610333610cd1565b61041b610cd7565b610333600480360360208110156104f157600080fd5b5035610ce6565b6103a1610cf3565b6103176004803603604081101561051657600080fd5b5060ff8135169060200135610d4f565b6103a16004803603602081101561053c57600080fd5b50356001600160a01b0316610e85565b6103336004803603602081101561056257600080fd5b50356001600160a01b0316610f39565b6103a1610f54565b610333611018565b6103a16004803603604081101561059857600080fd5b506001600160a01b03813516906020013561101e565b61041b611075565b610317611084565b61041b611094565b610317600480360360208110156105dc57600080fd5b50356001600160a01b03166110a8565b610276611194565b6103176004803603602081101561060a57600080fd5b50356111f5565b6103176004803603604081101561062757600080fd5b506001600160a01b03813516906020013561124e565b6103336112b6565b6103176004803603604081101561065b57600080fd5b506001600160a01b0381351690602001356112bc565b6103176004803603604081101561068757600080fd5b5060ff81351690602001356112d0565b61041b611379565b6103a1600480360360208110156106b557600080fd5b5035611388565b610317600480360360208110156106d257600080fd5b50356001600160a01b0316611479565b6103a1600480360360208110156106f857600080fd5b50356001600160a01b031661148e565b6103336004803603604081101561071e57600080fd5b506001600160a01b038135811691602001351661154d565b6103176004803603602081101561074c57600080fd5b50356001600160a01b0316611578565b610333611596565b6103a16004803603602081101561077a57600080fd5b50356001600160a01b031661159c565b6103a16116bc565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561081e5780601f106107f35761010080835404028352916020019161081e565b820191906000526020600020905b81548152906001019060200180831161080157829003601f168201915b505050505090505b90565b600061083d61083661177f565b8484611783565b5060015b92915050565b60025490565b600b5460009081908190600160a01b900460ff161561088e57600061087061186f565b905061087b81611943565b9250600a5481101561088c57600191505b505b8115806108b357506001600160a01b0386166000908152600e602052604090205460ff165b156108c8576108c3868686611a51565b6108d6565b6108d486868684611bac565b505b61091c866108e261177f565b610917876040518060600160405280602881526020016122a4602891396109108c61090b61177f565b61154d565b9190611c25565b611783565b50600195945050505050565b61093061177f565b6001600160a01b0316610941611094565b6001600160a01b03161461099c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6109a581611cbc565b50565b60055460ff1690565b60006109bb610cab565b806109d057506008546001600160a01b031633145b610a0b5760405162461bcd60e51b815260040180806020018281038252602c8152602001806123f8602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610a79576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b600061083d610ab361177f565b846109178560016000610ac461177f565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061171e565b6008546001600160a01b031681565b610b0b610cab565b80610b2057506008546001600160a01b031633145b610b5b5760405162461bcd60e51b815260040180806020018281038252602c8152602001806123f8602c913960400191505060405180910390fd5b6001600160a01b038116610ba05760405162461bcd60e51b81526004018080602001828103825260268152602001806122306026913960400191505060405180910390fd5b600854604080516001600160a01b039283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b03163314610c565760405162461bcd60e51b815260040180806020018281038252602481526020018061231e6024913960400191505060405180910390fd5b6000610c6184610f39565b9050610c6d8484611d59565b6000610c7885610f39565b91909111949350505050565b6109a581611e49565b600c8181548110610c9a57fe5b600091825260209091200154905081565b6006546000906001600160a01b0316610cc261177f565b6001600160a01b031614905090565b600a5481565b6006546001600160a01b031690565b600d8181548110610c9a57fe5b6008546001600160a01b03163314610d40576040805162461bcd60e51b815260206004820152601c60248201526000805160206121ea833981519152604482015290519081900360640190fd5b600b805460ff60a01b19169055565b6008546000906001600160a01b03163314610d9f576040805162461bcd60e51b815260206004820152601c60248201526000805160206121ea833981519152604482015290519081900360640190fd5b610da76112b6565b8360ff1610610de75760405162461bcd60e51b815260040180806020018281038252602a815260200180612342602a913960400191505060405180910390fd5b60ff831615610e1957600c6001840360ff1681548110610e0357fe5b90600052602060002001548211610e1957600080fd5b610e2c6001610e266112b6565b90611e5a565b8360ff161015610e5f57600c8360010160ff1681548110610e4957fe5b90600052602060002001548210610e5f57600080fd5b81600c8460ff1681548110610e7057fe5b60009182526020909120015550600192915050565b6008546001600160a01b03163314610ed2576040805162461bcd60e51b815260206004820152601c60248201526000805160206121ea833981519152604482015290519081900360640190fd5b6001600160a01b038116610f175760405162461bcd60e51b815260040180806020018281038252602e8152602001806122cc602e913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b610f5c61177f565b6001600160a01b0316610f6d611094565b6001600160a01b031614610fc8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60095481565b6006546001600160a01b031633146110675760405162461bcd60e51b815260040180806020018281038252602481526020018061231e6024913960400191505060405180910390fd5b6110718282611eb7565b5050565b6007546001600160a01b031681565b600b54600160a01b900460ff1681565b60055461010090046001600160a01b031690565b60006110b2610cab565b806110c757506008546001600160a01b031633145b6111025760405162461bcd60e51b815260040180806020018281038252602c8152602001806123f8602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1661116f576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561081e5780601f106107f35761010080835404028352916020019161081e565b6008546000906001600160a01b03163314611245576040805162461bcd60e51b815260206004820152601c60248201526000805160206121ea833981519152604482015290519081900360640190fd5b600a9190915590565b600061083d61125b61177f565b8461091785604051806060016040528060258152602001612472602591396001600061128561177f565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611c25565b600c5490565b600061083d6112c961177f565b8484611a51565b6008546000906001600160a01b03163314611320576040805162461bcd60e51b815260206004820152601c60248201526000805160206121ea833981519152604482015290519081900360640190fd5b611328611596565b8360ff16106113685760405162461bcd60e51b815260040180806020018281038252602a815260200180612342602a913960400191505060405180910390fd5b81600d8460ff1681548110610e7057fe5b600b546001600160a01b031681565b6008546001600160a01b031633146113d5576040805162461bcd60e51b815260206004820152601c60248201526000805160206121ea833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff161561141e5760405162461bcd60e51b81526004018080602001828103825260248152602001806123af6024913960400191505060405180910390fd5b6127108110611474576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b600e6020526000908152604090205460ff1681565b611496610cab565b806114ab57506008546001600160a01b031633145b6114e65760405162461bcd60e51b815260040180806020018281038252602c8152602001806123f8602c913960400191505060405180910390fd5b6001600160a01b03811661152b5760405162461bcd60e51b815260040180806020018281038252602281526020018061238d6022913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5490565b6115a461177f565b6001600160a01b03166115b5611094565b6001600160a01b031614611610576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166116555760405162461bcd60e51b81526004018080602001828103825260268152602001806121a26026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6008546001600160a01b03163314611709576040805162461bcd60e51b815260206004820152601c60248201526000805160206121ea833981519152604482015290519081900360640190fd5b600b805460ff60a01b1916600160a01b179055565b600082820183811015611778576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166117c85760405162461bcd60e51b81526004018080602001828103825260248152602001806124246024913960400191505060405180910390fd5b6001600160a01b03821661180d5760405162461bcd60e51b81526004018080602001828103825260228152602001806121c86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60075460408051633ddac95360e01b8152306004820152670de0b6b3a7640000602482015290516000926001600160a01b031691633ddac953916044808301926020929190829003018186803b1580156118c857600080fd5b505afa9250505080156118ed57506040513d60208110156118e857600080fd5b505160015b6119285760405162461bcd60e51b815260040180806020018281038252602a815260200180612448602a913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff169050610826565b600b54600090600160a01b900460ff1615610aa157600061197060016119676112b6565b60ff1690611f05565b90505b600c8160ff168154811061198357fe5b90600052602060002001548310611a4857612710600d8260ff16815481106119a757fe5b906000526020600020015410611a04576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff1681548110611a1457fe5b9060005260206000200154600981905550600d8160ff1681548110611a3557fe5b9060005260206000200154915050610aa1565b60001901611973565b6001600160a01b038316611a965760405162461bcd60e51b81526004018080602001828103825260258152602001806123d36025913960400191505060405180910390fd5b6001600160a01b038216611adb5760405162461bcd60e51b815260040180806020018281038252602381526020018061215d6023913960400191505060405180910390fd5b611ae6838383611f00565b611b238160405180606001604052806026815260200161220a602691396001600160a01b0386166000908152602081905260409020549190611c25565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611b52908261171e565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080611bd0612710611bca60095487611f4790919063ffffffff16565b90611fa0565b90506000611bde8583611e5a565b90508315611bf557611bf08783611eb7565b611c0d565b600b54611c0d9088906001600160a01b031684611a51565b611c18878783611a51565b5060019695505050505050565b60008184841115611cb45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c79578181015183820152602001611c61565b50505050905090810190601f168015611ca65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038116611d015760405162461bcd60e51b815260040180806020018281038252602d815260200180612256602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216611db4576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611dc060008383611f00565b600254611dcd908261171e565b6002556001600160a01b038216600090815260208190526040902054611df3908261171e565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6109a5611e5461177f565b82612007565b600082821115611eb1576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000611ee2826040518060600160405280602481526020016122fa602491396109108661090b61177f565b9050611ef683611ef061177f565b83611783565b611f008383612007565b505050565b600061177883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612103565b600082611f5657506000610841565b82820282848281611f6357fe5b04146117785760405162461bcd60e51b81526004018080602001828103825260218152602001806122836021913960400191505060405180910390fd5b6000808211611ff6576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381611fff57fe5b049392505050565b6001600160a01b03821661204c5760405162461bcd60e51b815260040180806020018281038252602181526020018061236c6021913960400191505060405180910390fd5b61205882600083611f00565b61209581604051806060016040528060228152602001612180602291396001600160a01b0385166000908152602081905260409020549190611c25565b6001600160a01b0383166000908152602081905260409020556002546120bb9082611e5a565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff1611158290611cb45760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c79578181015183820152602001611c6156fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737353766e3a206661696c656420746f2066657463682053564e2070726963652066726f6d204f7261636c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fd34e5ee8d86cd89a93596b916098aa152f9a482cacd6b82b50319f8c35e237464736f6c634300060c003374617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f66666963650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bc0161de7c000d943199006a31890a3b9058345e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102695760003560e01c8063715018a611610151578063a9059cbb116100c3578063cf3d55f011610087578063cf3d55f0146106e2578063dd62ed3e14610708578063ebca1bd914610736578063ee2a95351461075c578063f2fde38b14610764578063ff87fc7c1461078a57610269565b8063a9059cbb14610645578063b87c5a4a14610671578063c3bdf61314610697578063c6d69a301461069f578063cf011b26146106bc57610269565b80638da5cb5b116101155780638da5cb5b146105be57806393995d4b146105c657806395d89b41146105ec5780639d6b5f21146105f4578063a457c2d714610611578063a6431bba1461063d57610269565b8063715018a614610572578063771a3a1d1461057a57806379cc6790146105825780637dc0d1d0146105ae5780638d3cc818146105b657610269565b806340c10f19116101ea578063570ca735116101ae578063570ca735146104d35780635c29908d146104db57806365bbacd9146104f857806366206ce91461050057806369356d471461052657806370a082311461054c57610269565b806340c10f191461045d57806342966c681461048957806342c6b4f1146104a65780634456eda2146104c35780634f6d38d0146104cb57610269565b8063313ce56711610231578063313ce567146103a35780633758e6ce146103c157806339509351146103e75780633e5f13d4146104135780633f07d76a1461043757610269565b806306fdde031461026e578063095ea7b3146102eb57806318160ddd1461032b57806323b872dd1461034557806329605e771461037b575b600080fd5b610276610792565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103176004803603604081101561030157600080fd5b506001600160a01b038135169060200135610829565b604080519115158252519081900360200190f35b610333610847565b60408051918252519081900360200190f35b6103176004803603606081101561035b57600080fd5b506001600160a01b0381358116916020810135909116906040013561084d565b6103a16004803603602081101561039157600080fd5b50356001600160a01b0316610928565b005b6103ab6109a8565b6040805160ff9092168252519081900360200190f35b610317600480360360208110156103d757600080fd5b50356001600160a01b03166109b1565b610317600480360360408110156103fd57600080fd5b506001600160a01b038135169060200135610aa6565b61041b610af4565b604080516001600160a01b039092168252519081900360200190f35b6103a16004803603602081101561044d57600080fd5b50356001600160a01b0316610b03565b6103176004803603604081101561047357600080fd5b506001600160a01b038135169060200135610c0a565b6103a16004803603602081101561049f57600080fd5b5035610c84565b610333600480360360208110156104bc57600080fd5b5035610c8d565b610317610cab565b610333610cd1565b61041b610cd7565b610333600480360360208110156104f157600080fd5b5035610ce6565b6103a1610cf3565b6103176004803603604081101561051657600080fd5b5060ff8135169060200135610d4f565b6103a16004803603602081101561053c57600080fd5b50356001600160a01b0316610e85565b6103336004803603602081101561056257600080fd5b50356001600160a01b0316610f39565b6103a1610f54565b610333611018565b6103a16004803603604081101561059857600080fd5b506001600160a01b03813516906020013561101e565b61041b611075565b610317611084565b61041b611094565b610317600480360360208110156105dc57600080fd5b50356001600160a01b03166110a8565b610276611194565b6103176004803603602081101561060a57600080fd5b50356111f5565b6103176004803603604081101561062757600080fd5b506001600160a01b03813516906020013561124e565b6103336112b6565b6103176004803603604081101561065b57600080fd5b506001600160a01b0381351690602001356112bc565b6103176004803603604081101561068757600080fd5b5060ff81351690602001356112d0565b61041b611379565b6103a1600480360360208110156106b557600080fd5b5035611388565b610317600480360360208110156106d257600080fd5b50356001600160a01b0316611479565b6103a1600480360360208110156106f857600080fd5b50356001600160a01b031661148e565b6103336004803603604081101561071e57600080fd5b506001600160a01b038135811691602001351661154d565b6103176004803603602081101561074c57600080fd5b50356001600160a01b0316611578565b610333611596565b6103a16004803603602081101561077a57600080fd5b50356001600160a01b031661159c565b6103a16116bc565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561081e5780601f106107f35761010080835404028352916020019161081e565b820191906000526020600020905b81548152906001019060200180831161080157829003601f168201915b505050505090505b90565b600061083d61083661177f565b8484611783565b5060015b92915050565b60025490565b600b5460009081908190600160a01b900460ff161561088e57600061087061186f565b905061087b81611943565b9250600a5481101561088c57600191505b505b8115806108b357506001600160a01b0386166000908152600e602052604090205460ff165b156108c8576108c3868686611a51565b6108d6565b6108d486868684611bac565b505b61091c866108e261177f565b610917876040518060600160405280602881526020016122a4602891396109108c61090b61177f565b61154d565b9190611c25565b611783565b50600195945050505050565b61093061177f565b6001600160a01b0316610941611094565b6001600160a01b03161461099c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6109a581611cbc565b50565b60055460ff1690565b60006109bb610cab565b806109d057506008546001600160a01b031633145b610a0b5760405162461bcd60e51b815260040180806020018281038252602c8152602001806123f8602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610a79576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b600061083d610ab361177f565b846109178560016000610ac461177f565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061171e565b6008546001600160a01b031681565b610b0b610cab565b80610b2057506008546001600160a01b031633145b610b5b5760405162461bcd60e51b815260040180806020018281038252602c8152602001806123f8602c913960400191505060405180910390fd5b6001600160a01b038116610ba05760405162461bcd60e51b81526004018080602001828103825260268152602001806122306026913960400191505060405180910390fd5b600854604080516001600160a01b039283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b03163314610c565760405162461bcd60e51b815260040180806020018281038252602481526020018061231e6024913960400191505060405180910390fd5b6000610c6184610f39565b9050610c6d8484611d59565b6000610c7885610f39565b91909111949350505050565b6109a581611e49565b600c8181548110610c9a57fe5b600091825260209091200154905081565b6006546000906001600160a01b0316610cc261177f565b6001600160a01b031614905090565b600a5481565b6006546001600160a01b031690565b600d8181548110610c9a57fe5b6008546001600160a01b03163314610d40576040805162461bcd60e51b815260206004820152601c60248201526000805160206121ea833981519152604482015290519081900360640190fd5b600b805460ff60a01b19169055565b6008546000906001600160a01b03163314610d9f576040805162461bcd60e51b815260206004820152601c60248201526000805160206121ea833981519152604482015290519081900360640190fd5b610da76112b6565b8360ff1610610de75760405162461bcd60e51b815260040180806020018281038252602a815260200180612342602a913960400191505060405180910390fd5b60ff831615610e1957600c6001840360ff1681548110610e0357fe5b90600052602060002001548211610e1957600080fd5b610e2c6001610e266112b6565b90611e5a565b8360ff161015610e5f57600c8360010160ff1681548110610e4957fe5b90600052602060002001548210610e5f57600080fd5b81600c8460ff1681548110610e7057fe5b60009182526020909120015550600192915050565b6008546001600160a01b03163314610ed2576040805162461bcd60e51b815260206004820152601c60248201526000805160206121ea833981519152604482015290519081900360640190fd5b6001600160a01b038116610f175760405162461bcd60e51b815260040180806020018281038252602e8152602001806122cc602e913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b610f5c61177f565b6001600160a01b0316610f6d611094565b6001600160a01b031614610fc8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60095481565b6006546001600160a01b031633146110675760405162461bcd60e51b815260040180806020018281038252602481526020018061231e6024913960400191505060405180910390fd5b6110718282611eb7565b5050565b6007546001600160a01b031681565b600b54600160a01b900460ff1681565b60055461010090046001600160a01b031690565b60006110b2610cab565b806110c757506008546001600160a01b031633145b6111025760405162461bcd60e51b815260040180806020018281038252602c8152602001806123f8602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1661116f576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561081e5780601f106107f35761010080835404028352916020019161081e565b6008546000906001600160a01b03163314611245576040805162461bcd60e51b815260206004820152601c60248201526000805160206121ea833981519152604482015290519081900360640190fd5b600a9190915590565b600061083d61125b61177f565b8461091785604051806060016040528060258152602001612472602591396001600061128561177f565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611c25565b600c5490565b600061083d6112c961177f565b8484611a51565b6008546000906001600160a01b03163314611320576040805162461bcd60e51b815260206004820152601c60248201526000805160206121ea833981519152604482015290519081900360640190fd5b611328611596565b8360ff16106113685760405162461bcd60e51b815260040180806020018281038252602a815260200180612342602a913960400191505060405180910390fd5b81600d8460ff1681548110610e7057fe5b600b546001600160a01b031681565b6008546001600160a01b031633146113d5576040805162461bcd60e51b815260206004820152601c60248201526000805160206121ea833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff161561141e5760405162461bcd60e51b81526004018080602001828103825260248152602001806123af6024913960400191505060405180910390fd5b6127108110611474576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b600e6020526000908152604090205460ff1681565b611496610cab565b806114ab57506008546001600160a01b031633145b6114e65760405162461bcd60e51b815260040180806020018281038252602c8152602001806123f8602c913960400191505060405180910390fd5b6001600160a01b03811661152b5760405162461bcd60e51b815260040180806020018281038252602281526020018061238d6022913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5490565b6115a461177f565b6001600160a01b03166115b5611094565b6001600160a01b031614611610576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166116555760405162461bcd60e51b81526004018080602001828103825260268152602001806121a26026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6008546001600160a01b03163314611709576040805162461bcd60e51b815260206004820152601c60248201526000805160206121ea833981519152604482015290519081900360640190fd5b600b805460ff60a01b1916600160a01b179055565b600082820183811015611778576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166117c85760405162461bcd60e51b81526004018080602001828103825260248152602001806124246024913960400191505060405180910390fd5b6001600160a01b03821661180d5760405162461bcd60e51b81526004018080602001828103825260228152602001806121c86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60075460408051633ddac95360e01b8152306004820152670de0b6b3a7640000602482015290516000926001600160a01b031691633ddac953916044808301926020929190829003018186803b1580156118c857600080fd5b505afa9250505080156118ed57506040513d60208110156118e857600080fd5b505160015b6119285760405162461bcd60e51b815260040180806020018281038252602a815260200180612448602a913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff169050610826565b600b54600090600160a01b900460ff1615610aa157600061197060016119676112b6565b60ff1690611f05565b90505b600c8160ff168154811061198357fe5b90600052602060002001548310611a4857612710600d8260ff16815481106119a757fe5b906000526020600020015410611a04576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff1681548110611a1457fe5b9060005260206000200154600981905550600d8160ff1681548110611a3557fe5b9060005260206000200154915050610aa1565b60001901611973565b6001600160a01b038316611a965760405162461bcd60e51b81526004018080602001828103825260258152602001806123d36025913960400191505060405180910390fd5b6001600160a01b038216611adb5760405162461bcd60e51b815260040180806020018281038252602381526020018061215d6023913960400191505060405180910390fd5b611ae6838383611f00565b611b238160405180606001604052806026815260200161220a602691396001600160a01b0386166000908152602081905260409020549190611c25565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611b52908261171e565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080611bd0612710611bca60095487611f4790919063ffffffff16565b90611fa0565b90506000611bde8583611e5a565b90508315611bf557611bf08783611eb7565b611c0d565b600b54611c0d9088906001600160a01b031684611a51565b611c18878783611a51565b5060019695505050505050565b60008184841115611cb45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c79578181015183820152602001611c61565b50505050905090810190601f168015611ca65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038116611d015760405162461bcd60e51b815260040180806020018281038252602d815260200180612256602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216611db4576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611dc060008383611f00565b600254611dcd908261171e565b6002556001600160a01b038216600090815260208190526040902054611df3908261171e565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6109a5611e5461177f565b82612007565b600082821115611eb1576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000611ee2826040518060600160405280602481526020016122fa602491396109108661090b61177f565b9050611ef683611ef061177f565b83611783565b611f008383612007565b505050565b600061177883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612103565b600082611f5657506000610841565b82820282848281611f6357fe5b04146117785760405162461bcd60e51b81526004018080602001828103825260218152602001806122836021913960400191505060405180910390fd5b6000808211611ff6576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381611fff57fe5b049392505050565b6001600160a01b03821661204c5760405162461bcd60e51b815260040180806020018281038252602181526020018061236c6021913960400191505060405180910390fd5b61205882600083611f00565b61209581604051806060016040528060228152602001612180602291396001600160a01b0385166000908152602081905260409020549190611c25565b6001600160a01b0383166000908152602081905260409020556002546120bb9082611e5a565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff1611158290611cb45760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c79578181015183820152602001611c6156fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737353766e3a206661696c656420746f2066657463682053564e2070726963652066726f6d204f7261636c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fd34e5ee8d86cd89a93596b916098aa152f9a482cacd6b82b50319f8c35e237464736f6c634300060c0033

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

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bc0161de7c000d943199006a31890a3b9058345e

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

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 000000000000000000000000bc0161de7c000d943199006a31890a3b9058345e


Deployed Bytecode Sourcemap

33429:8171:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13461:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15607:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15607:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;14560:108;;;:::i;:::-;;;;;;;;;;;;;;;;40088:848;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40088:848:0;;;;;;;;;;;;;;;;;:::i;26618:115::-;;;;;;;;;;;;;;;;-1:-1:-1;26618:115:0;-1:-1:-1;;;;;26618:115:0;;:::i;:::-;;14404:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38844:240;;;;;;;;;;;;;;;;-1:-1:-1;38844:240:0;-1:-1:-1;;;;;38844:240:0;;:::i;16988:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16988:218:0;;;;;;;;:::i;33698:24::-;;;:::i;:::-;;;;-1:-1:-1;;;;;33698:24:0;;;;;;;;;;;;;;38073:259;;;;;;;;;;;;;;;;-1:-1:-1;38073:259:0;-1:-1:-1;;;;;38073:259:0;;:::i;39561:290::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39561:290:0;;;;;;;;:::i;39859:83::-;;;;;;;;;;;;;;;;-1:-1:-1;39859:83:0;;:::i;34089:134::-;;;;;;;;;;;;;;;;-1:-1:-1;34089:134:0;;:::i;26510:100::-;;;:::i;33843:38::-;;;:::i;26282:85::-;;;:::i;34230:113::-;;;;;;;;;;;;;;;;-1:-1:-1;34230:113:0;;:::i;37774:99::-;;;:::i;35824:545::-;;;;;;;;;;;;;;;;-1:-1:-1;35824:545:0;;;;;;;;;:::i;38340:248::-;;;;;;;;;;;;;;;;-1:-1:-1;38340:248:0;-1:-1:-1;;;;;38340:248:0;;:::i;14731:127::-;;;;;;;;;;;;;;;;-1:-1:-1;14731:127:0;-1:-1:-1;;;;;14731:127:0;;:::i;25345:148::-;;;:::i;33756:22::-;;;:::i;39950:130::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39950:130:0;;;;;;;;:::i;33636:21::-;;;:::i;34034:28::-;;;:::i;24694:87::-;;;:::i;39092:240::-;;;;;;;;;;;;;;;;-1:-1:-1;39092:240:0;-1:-1:-1;;;;;39092:240:0;;:::i;13671:95::-;;;:::i;36709:135::-;;;;;;;;;;;;;;;;-1:-1:-1;36709:135:0;;:::i;17709:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17709:269:0;;;;;;;;:::i;35445:115::-;;;:::i;15071:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15071:175:0;;;;;;;;:::i;36377:324::-;;;;;;;;;;;;;;;;-1:-1:-1;36377:324:0;;;;;;;;;:::i;33932:34::-;;;:::i;38596:240::-;;;;;;;;;;;;;;;;-1:-1:-1;38596:240:0;;:::i;34395:49::-;;;;;;;;;;;;;;;;-1:-1:-1;34395:49:0;-1:-1:-1;;;;;34395:49:0;;:::i;37881:184::-;;;;;;;;;;;;;;;;-1:-1:-1;37881:184:0;-1:-1:-1;;;;;37881:184:0;;:::i;15309:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15309:151:0;;;;;;;;;;:::i;35691:125::-;;;;;;;;;;;;;;;;-1:-1:-1;35691:125:0;-1:-1:-1;;;;;35691:125:0;;:::i;35568:115::-;;;:::i;25648:244::-;;;;;;;;;;;;;;;;-1:-1:-1;25648:244:0;-1:-1:-1;;;;;25648:244:0;;:::i;37669:97::-;;;:::i;13461:91::-;13539:5;13532:12;;;;;;;;-1:-1:-1;;13532:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13506:13;;13532:12;;13539:5;;13532:12;;13539:5;13532:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13461:91;;:::o;15607:169::-;15690:4;15707:39;15716:12;:10;:12::i;:::-;15730:7;15739:6;15707:8;:39::i;:::-;-1:-1:-1;15764:4:0;15607:169;;;;;:::o;14560:108::-;14648:12;;14560:108;:::o;40088:848::-;40311:16;;40220:4;;;;;;-1:-1:-1;;;40311:16:0;;;;40307:252;;;40344:23;40370:14;:12;:14::i;:::-;40344:40;;40416:31;40431:15;40416:14;:31::i;:::-;40399:48;;40484:13;;40466:15;:31;40462:86;;;40528:4;40518:14;;40462:86;40307:252;;40577:19;;;:48;;-1:-1:-1;;;;;;40600:25:0;;;;;;:17;:25;;;;;;;;40577:48;40573:202;;;40642:36;40652:6;40660:9;40671:6;40642:9;:36::i;:::-;40573:202;;;40711:52;40728:6;40736:9;40747:6;40755:7;40711:16;:52::i;:::-;;40573:202;40787:119;40796:6;40804:12;:10;:12::i;:::-;40818:87;40854:6;40818:87;;;;;;;;;;;;;;;;;:31;40828:6;40836:12;:10;:12::i;:::-;40818:9;:31::i;:::-;:35;:87;:35;:87::i;:::-;40787:8;:119::i;:::-;-1:-1:-1;40924:4:0;;40088:848;-1:-1:-1;;;;;40088:848:0:o;26618:115::-;24925:12;:10;:12::i;:::-;-1:-1:-1;;;;;24914:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;24914:23:0;;24906:68;;;;;-1:-1:-1;;;24906:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26694:31:::1;26712:12;26694:17;:31::i;:::-;26618:115:::0;:::o;14404:91::-;14478:9;;;;14404:91;:::o;38844:240::-;38926:4;34710:12;:10;:12::i;:::-;:39;;;-1:-1:-1;34726:9:0;;-1:-1:-1;;;;;34726:9:0;34739:10;34726:23;34710:39;34702:96;;;;-1:-1:-1;;;34702:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38952:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;38951:28;38943:66;;;::::0;;-1:-1:-1;;;38943:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;39020:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;:34;;-1:-1:-1;;39020:34:0::1;39050:4;39020:34:::0;;::::1;::::0;;;34809:1:::1;38844:240:::0;;;:::o;16988:218::-;17076:4;17093:83;17102:12;:10;:12::i;:::-;17116:7;17125:50;17164:10;17125:11;:25;17137:12;:10;:12::i;:::-;-1:-1:-1;;;;;17125:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17125:25:0;;;:34;;;;;;;;;;;:38;:50::i;33698:24::-;;;-1:-1:-1;;;;;33698:24:0;;:::o;38073:259::-;34710:12;:10;:12::i;:::-;:39;;;-1:-1:-1;34726:9:0;;-1:-1:-1;;;;;34726:9:0;34739:10;34726:23;34710:39;34702:96;;;;-1:-1:-1;;;34702:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38165:24:0;::::1;38157:75;;;;-1:-1:-1::0;;;38157:75:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38269:9;::::0;38248:43:::1;::::0;;-1:-1:-1;;;;;38269:9:0;;::::1;38248:43:::0;;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;38302:9;:22:::0;;-1:-1:-1;;;;;;38302:22:0::1;-1:-1:-1::0;;;;;38302:22:0;;;::::1;::::0;;;::::1;::::0;;38073:259::o;39561:290::-;26418:9;;39641:4;;-1:-1:-1;;;;;26418:9:0;26431:10;26418:23;26410:72;;;;-1:-1:-1;;;26410:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39658:21:::1;39682;39692:10;39682:9;:21::i;:::-;39658:45;;39714:26;39720:10;39732:7;39714:5;:26::i;:::-;39751:20;39774:21;39784:10;39774:9;:21::i;:::-;39815:28:::0;;;::::1;::::0;39561:290;-1:-1:-1;;;;39561:290:0:o;39859:83::-;39916:18;39927:6;39916:10;:18::i;34089:134::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34089:134:0;:::o;26510:100::-;26593:9;;26553:4;;-1:-1:-1;;;;;26593:9:0;26577:12;:10;:12::i;:::-;-1:-1:-1;;;;;26577:25:0;;26570:32;;26510:100;:::o;33843:38::-;;;;:::o;26282:85::-;26350:9;;-1:-1:-1;;;;;26350:9:0;26282:85;:::o;34230:113::-;;;;;;;;;;37774:99;34572:9;;-1:-1:-1;;;;;34572:9:0;34585:10;34572:23;34564:64;;;;;-1:-1:-1;;;34564:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34564:64:0;;;;;;;;;;;;;;;37841:16:::1;:24:::0;;-1:-1:-1;;;;37841:24:0::1;::::0;;37774:99::o;35824:545::-;34572:9;;35909:4;;-1:-1:-1;;;;;34572:9:0;34585:10;34572:23;34564:64;;;;;-1:-1:-1;;;34564:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34564:64:0;;;;;;;;;;;;;;;36007:23:::1;:21;:23::i;:::-;35998:6;:32;;;35990:87;;;;-1:-1:-1::0;;;35990:87:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36092:10;::::0;::::1;::::0;36088:86:::1;;36136:13;36159:1;36150:6;:10;36136:25;;;;;;;;;;;;;;;;;;36127:6;:34;36119:43;;;::::0;::::1;;36197:30;36225:1;36197:23;:21;:23::i;:::-;:27:::0;::::1;:30::i;:::-;36188:6;:39;;;36184:115;;;36261:13;36275:6;36284:1;36275:10;36261:25;;;;;;;;;;;;;;;;;;36252:6;:34;36244:43;;;::::0;::::1;;36333:6;36309:13;36323:6;36309:21;;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:30:::0;-1:-1:-1;36357:4:0::1;35824:545:::0;;;;:::o;38340:248::-;34572:9;;-1:-1:-1;;;;;34572:9:0;34585:10;34572:23;34564:64;;;;;-1:-1:-1;;;34564:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34564:64:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38442:34:0;::::1;38434:93;;;;-1:-1:-1::0;;;38434:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38538:19;:42:::0;;-1:-1:-1;;;;;;38538:42:0::1;-1:-1:-1::0;;;;;38538:42:0;;;::::1;::::0;;;::::1;::::0;;38340:248::o;14731:127::-;-1:-1:-1;;;;;14832:18:0;14805:7;14832:18;;;;;;;;;;;;14731:127::o;25345:148::-;24925:12;:10;:12::i;:::-;-1:-1:-1;;;;;24914:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;24914:23:0;;24906:68;;;;;-1:-1:-1;;;24906:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25436:6:::1;::::0;25415:40:::1;::::0;25452:1:::1;::::0;25436:6:::1;::::0;::::1;-1:-1:-1::0;;;;;25436:6:0::1;::::0;25415:40:::1;::::0;25452:1;;25415:40:::1;25466:6;:19:::0;;-1:-1:-1;;;;;;25466:19:0::1;::::0;;25345:148::o;33756:22::-;;;;:::o;39950:130::-;26418:9;;-1:-1:-1;;;;;26418:9:0;26431:10;26418:23;26410:72;;;;-1:-1:-1;;;26410:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40041:31:::1;40056:7;40065:6;40041:14;:31::i;:::-;39950:130:::0;;:::o;33636:21::-;;;-1:-1:-1;;;;;33636:21:0;;:::o;34034:28::-;;;-1:-1:-1;;;34034:28:0;;;;;:::o;24694:87::-;24767:6;;;;;-1:-1:-1;;;;;24767:6:0;;24694:87::o;39092:240::-;39174:4;34710:12;:10;:12::i;:::-;:39;;;-1:-1:-1;34726:9:0;;-1:-1:-1;;;;;34726:9:0;34739:10;34726:23;34710:39;34702:96;;;;-1:-1:-1;;;34702:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39199:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;39191:65;;;::::0;;-1:-1:-1;;;39191:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;39267:27:0::1;39297:5;39267:27:::0;;;:17:::1;:27;::::0;;;;:35;;-1:-1:-1;;39267:35:0::1;::::0;;-1:-1:-1;;39092:240:0:o;13671:95::-;13751:7;13744:14;;;;;;;;-1:-1:-1;;13744:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13718:13;;13744:14;;13751:7;;13744:14;;13751:7;13744:14;;;;;;;;;;;;;;;;;;;;;;;;36709:135;34572:9;;36789:4;;-1:-1:-1;;;;;34572:9:0;34585:10;34572:23;34564:64;;;;;-1:-1:-1;;;34564:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34564:64:0;;;;;;;;;;;;;;;36806:13:::1;:30:::0;;;;36709:135;:::o;17709:269::-;17802:4;17819:129;17828:12;:10;:12::i;:::-;17842:7;17851:96;17890:15;17851:96;;;;;;;;;;;;;;;;;:11;:25;17863:12;:10;:12::i;:::-;-1:-1:-1;;;;;17851:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17851:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;35445:115::-;35532:13;:20;35445:115;:::o;15071:175::-;15157:4;15174:42;15184:12;:10;:12::i;:::-;15198:9;15209:6;15174:9;:42::i;36377:324::-;34572:9;;36462:4;;-1:-1:-1;;;;;34572:9:0;34585:10;34572:23;34564:64;;;;;-1:-1:-1;;;34564:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34564:64:0;;;;;;;;;;;;;;;36560:23:::1;:21;:23::i;:::-;36551:6;:32;;;36543:87;;;;-1:-1:-1::0;;;36543:87:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36665:6;36641:13;36655:6;36641:21;;;;;;;;;33932:34:::0;;;-1:-1:-1;;;;;33932:34:0;;:::o;38596:240::-;34572:9;;-1:-1:-1;;;;;34572:9:0;34585:10;34572:23;34564:64;;;;;-1:-1:-1;;;34564:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34564:64:0;;;;;;;;;;;;;;;38675:16:::1;::::0;-1:-1:-1;;;38675:16:0;::::1;;;38674:17;38666:66;;;;-1:-1:-1::0;;;38666:66:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38762:5;38751:8;:16;38743:56;;;::::0;;-1:-1:-1;;;38743:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38810:7;:18:::0;38596:240::o;34395:49::-;;;;;;;;;;;;;;;:::o;37881:184::-;34710:12;:10;:12::i;:::-;:39;;;-1:-1:-1;34726:9:0;;-1:-1:-1;;;;;34726:9:0;34739:10;34726:23;34710:39;34702:96;;;;-1:-1:-1;;;34702:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37970:21:0;::::1;37962:68;;;;-1:-1:-1::0;;;37962:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38041:6;:16:::0;;-1:-1:-1;;;;;;38041:16:0::1;-1:-1:-1::0;;;;;38041:16:0;;;::::1;::::0;;;::::1;::::0;;37881:184::o;15309:151::-;-1:-1:-1;;;;;15425:18:0;;;15398:7;15425:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15309:151::o;35691:125::-;-1:-1:-1;;;;;35781:27:0;35757:4;35781:27;;;:17;:27;;;;;;;;;35691:125::o;35568:115::-;35655:13;:20;35568:115;:::o;25648:244::-;24925:12;:10;:12::i;:::-;-1:-1:-1;;;;;24914:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;24914:23:0;;24906:68;;;;;-1:-1:-1;;;24906:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25737:22:0;::::1;25729:73;;;;-1:-1:-1::0;;;25729:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25839:6;::::0;25818:38:::1;::::0;-1:-1:-1;;;;;25818:38:0;;::::1;::::0;25839:6:::1;::::0;::::1;;::::0;25818:38:::1;::::0;;;::::1;25867:6;:17:::0;;-1:-1:-1;;;;;25867:17:0;;::::1;;;-1:-1:-1::0;;;;;;25867:17:0;;::::1;::::0;;;::::1;::::0;;25648:244::o;37669:97::-;34572:9;;-1:-1:-1;;;;;34572:9:0;34585:10;34572:23;34564:64;;;;;-1:-1:-1;;;34564:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34564:64:0;;;;;;;;;;;;;;;37735:16:::1;:23:::0;;-1:-1:-1;;;;37735:23:0::1;-1:-1:-1::0;;;37735:23:0::1;::::0;;37669:97::o;6620:179::-;6678:7;6710:5;;;6734:6;;;;6726:46;;;;;-1:-1:-1;;;6726:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6790:1;6620:179;-1:-1:-1;;;6620:179:0:o;642:106::-;730:10;642:106;:::o;20856:346::-;-1:-1:-1;;;;;20958:19:0;;20950:68;;;;-1:-1:-1;;;20950:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21037:21:0;;21029:68;;;;-1:-1:-1;;;21029:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21110:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21162:32;;;;;;;;;;;;;;;;;20856:346;;;:::o;36852:293::-;36941:6;;36933:44;;;-1:-1:-1;;;36933:44:0;;36965:4;36933:44;;;;36972:4;36933:44;;;;;;36899:17;;-1:-1:-1;;;;;36941:6:0;;36933:23;;:44;;;;;;;;;;;;;;36941:6;36933:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36933:44:0;;;36929:209;;37074:52;;-1:-1:-1;;;37074:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36929:209;37025:15;;;-1:-1:-1;37018:22:0;;37153:508;37237:16;;37214:7;;-1:-1:-1;;;37237:16:0;;;;37233:421;;;37275:12;37290:37;37325:1;37296:23;:21;:23::i;:::-;37290:34;;;;:37::i;:::-;37275:52;;37270:373;37388:13;37402:6;37388:21;;;;;;;;;;;;;;;;;;37375:9;:34;37371:257;;37466:5;37442:13;37456:6;37442:21;;;;;;;;;;;;;;;;;;:29;37434:69;;;;;-1:-1:-1;;;37434:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37536:13;37550:6;37536:21;;;;;;;;;;;;;;;;;;37526:7;:31;;;;37587:13;37601:6;37587:21;;;;;;;;;;;;;;;;;;37580:28;;;;;37371:257;-1:-1:-1;;37342:8:0;37270:373;;18468:539;-1:-1:-1;;;;;18574:20:0;;18566:70;;;;-1:-1:-1;;;18566:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18655:23:0;;18647:71;;;;-1:-1:-1;;;18647:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18731:47;18752:6;18760:9;18771:6;18731:20;:47::i;:::-;18811:71;18833:6;18811:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18811:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18791:17:0;;;:9;:17;;;;;;;;;;;:91;;;;18916:20;;;;;;;:32;;18941:6;18916:24;:32::i;:::-;-1:-1:-1;;;;;18893:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;18964:35;;;;;;;18893:20;;18964:35;;;;;;;;;;;;;18468:539;;;:::o;40944:653::-;41096:4;41113:17;41133:30;41157:5;41133:19;41144:7;;41133:6;:10;;:19;;;;:::i;:::-;:23;;:30::i;:::-;41113:50;-1:-1:-1;41174:22:0;41199:21;:6;41113:50;41199:10;:21::i;:::-;41174:46;;41236:7;41233:225;;;41285:33;41300:6;41308:9;41285:14;:33::i;:::-;41233:225;;;41415:19;;41397:49;;41407:6;;-1:-1:-1;;;;;41415:19:0;41436:9;41397;:49::i;:::-;41521:44;41531:6;41539:9;41550:14;41521:9;:44::i;:::-;-1:-1:-1;41585:4:0;;40944:653;-1:-1:-1;;;;;;40944:653:0:o;9447:166::-;9533:7;9569:12;9561:6;;;;9553:29;;;;-1:-1:-1;;;9553:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9600:5:0;;;9447:166::o;26741:257::-;-1:-1:-1;;;;;26818:26:0;;26810:84;;;;-1:-1:-1;;;26810:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26910:45;;-1:-1:-1;;;;;26910:45:0;;;26938:1;;26910:45;;26938:1;;26910:45;26966:9;:24;;-1:-1:-1;;;;;;26966:24:0;-1:-1:-1;;;;;26966:24:0;;;;;;;;;;26741:257::o;19289:378::-;-1:-1:-1;;;;;19373:21:0;;19365:65;;;;;-1:-1:-1;;;19365:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19443:49;19472:1;19476:7;19485:6;19443:20;:49::i;:::-;19520:12;;:24;;19537:6;19520:16;:24::i;:::-;19505:12;:39;-1:-1:-1;;;;;19576:18:0;;:9;:18;;;;;;;;;;;:30;;19599:6;19576:22;:30::i;:::-;-1:-1:-1;;;;;19555:18:0;;:9;:18;;;;;;;;;;;:51;;;;19622:37;;;;;;;19555:18;;:9;;19622:37;;;;;;;;;;19289:378;;:::o;22863:91::-;22919:27;22925:12;:10;:12::i;:::-;22939:6;22919:5;:27::i;7082:158::-;7140:7;7173:1;7168;:6;;7160:49;;;;;-1:-1:-1;;;7160:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7227:5:0;;;7082:158::o;23273:295::-;23350:26;23379:84;23416:6;23379:84;;;;;;;;;;;;;;;;;:32;23389:7;23398:12;:10;:12::i;23379:84::-;23350:113;;23476:51;23485:7;23494:12;:10;:12::i;:::-;23508:18;23476:8;:51::i;:::-;23538:22;23544:7;23553:6;23538:5;:22::i;:::-;23273:295;;;:::o;29147:130::-;29201:5;29226:43;29230:1;29233;29226:43;;;;;;;;;;;;;;;;;:3;:43::i;7499:220::-;7557:7;7581:6;7577:20;;-1:-1:-1;7596:1:0;7589:8;;7577:20;7620:5;;;7624:1;7620;:5;:1;7644:5;;;;;:10;7636:56;;;;-1:-1:-1;;;7636:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8197:153;8255:7;8287:1;8283;:5;8275:44;;;;;-1:-1:-1;;;8275:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8341:1;8337;:5;;;;;;;8197:153;-1:-1:-1;;;8197:153:0:o;20000:418::-;-1:-1:-1;;;;;20084:21:0;;20076:67;;;;-1:-1:-1;;;20076:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20156:49;20177:7;20194:1;20198:6;20156:20;:49::i;:::-;20239:68;20262:6;20239:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20239:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;20218:18:0;;:9;:18;;;;;;;;;;:89;20333:12;;:24;;20350:6;20333:16;:24::i;:::-;20318:12;:39;20373:37;;;;;;;;20399:1;;-1:-1:-1;;;;;20373:37:0;;;;;;;;;;;;20000:418;;:::o;29580:184::-;29662:5;29693:1;29688:6;;:1;:6;;;;29696:12;29680:29;;;;;-1:-1:-1;;;29680:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://fd34e5ee8d86cd89a93596b916098aa152f9a482cacd6b82b50319f8c35e2374
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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