ETH Price: $2,969.98 (+3.67%)
Gas: 1 Gwei

Token

Orenda Protocol (OREX)
 

Overview

Max Total Supply

1,000,000 OREX

Holders

100

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
123.517356931511543698 OREX

Value
$0.00
0x651F8cf8e07ABC2CFA4eE570B19D56594CEa16AA
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
OrexToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-17
*/

//Orenda Protocol - Multichain DeFi & Insurance Services
//www.or-protocol.io
//SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;

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

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

interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 {
        _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 { }
}


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 () public{
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

contract OrexTokenCore is ERC20("Orenda Protocol", "OREX"), Ownable {
    using SafeMath for uint256;

    address internal _taxer;
    address internal _pool;
    address internal _devfund;
    address internal _daofund;
    uint internal _taxTime;
    uint internal constant _taxRate = 2; //2 percent
    bool internal _lock = true;
    mapping (address => bool) internal _taxWhitelist;
    mapping (address => bool) internal _plan4Whitelist;
    mapping (address => bool) internal _plan5Whitelist;
    mapping (address => bool) internal _unlockWhitelist;

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(msg.sender == owner() || _unlockWhitelist[msg.sender] || !_lock, "Transfer is locking");

        uint256 taxAmount = amount.mul(_taxRate).div(100);
        if (_taxWhitelist[msg.sender] == true || _taxTime > block.timestamp) {
            taxAmount = 0;
        }
        uint256 transferAmount = amount.sub(taxAmount);
        require(balanceOf(msg.sender) >= amount, "insufficient balance.");
        super.transfer(recipient, transferAmount);

        if (taxAmount != 0) {
            super.transfer(_pool, taxAmount.div(2));
            super.transfer(_devfund, taxAmount.div(4));
            super.transfer(_daofund, taxAmount.div(4));
        }
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        require(sender == owner() || _unlockWhitelist[msg.sender] || !_lock, "TransferFrom is locking");

        uint256 taxAmount = amount.mul(_taxRate).div(100);
        if (_taxWhitelist[sender] == true || _taxTime > block.timestamp ) {
            taxAmount = 0;
        }
        uint256 transferAmount = amount.sub(taxAmount);
        require(balanceOf(sender) >= amount, "insufficient balance.");
        super.transferFrom(sender, recipient, transferAmount);
        if (taxAmount != 0) {
            super.transfer(_pool, taxAmount.div(2));
            super.transfer(_devfund, taxAmount.div(4));
            super.transfer(_daofund, taxAmount.div(4));
        }
        return true;
    }
}


contract OrexToken is OrexTokenCore {
    
    event Taxer(address indexed account);

    constructor() public{
        _mint(owner(), 1000000000000000000000000);
        _taxer = owner();
        _pool = address(0x401d6C6fFC28db4c43C0b52E7AF1F8A607576842);
        _devfund = address(0xE58A34f524eEBb396C124B28EE2f41Cf0b77E362);
        _daofund = address(0xE2C707559f0cbB82Ca9bC078E5B6c7522FF1d314);
        _taxTime = block.timestamp + 30 days;
    }

    function burn(uint amount) public {
        require(amount > 0);
        require(balanceOf(msg.sender) >= amount);
        _burn(msg.sender, amount);
    }

    modifier onlyTaxer() {
        require(msg.sender == _taxer, "Only for taxer.");
        _;
    }

    function setTaxer(address account) public onlyTaxer {
        _taxer = account;
        emit Taxer(_taxer);
    }


    function addToTaxWhitelist(address account) public onlyTaxer {
        _taxWhitelist[account] = true;
    }

    function removeFromTaxWhitelist(address account) public onlyTaxer {
        _taxWhitelist[account] = false;
    }
    
    function addToPlan4Whitelist(address account) public onlyOwner {
        _plan4Whitelist[account] = true;
    }

    function removeFromPlan4Whitelist(address account) public onlyOwner {
        _plan4Whitelist[account] = false;
    }
    
    function addToPlan5Whitelist(address account) public onlyOwner {
        _plan5Whitelist[account] = true;
    }

    function removeFromPlan5Whitelist(address account) public onlyOwner {
        _plan5Whitelist[account] = false;
    }
    
    function addToUnlockWhitelist(address account) public onlyOwner {
        _unlockWhitelist[account] = true;
    }

    function removeFromUnlockWhitelist(address account) public onlyOwner {
        _unlockWhitelist[account] = false;
    }

    function taxer() public view returns(address) {
        return _taxer;
    }

    function pool() public view returns(address) {
        return _pool;
    }

    function devfund() public view returns(address) {
        return _devfund;
    }

    function daofund() public view returns(address) {
        return _daofund;
    }

    function taxRate() public view returns(uint256) {
        return _taxRate;
    }

    function isInTaxWhitelist(address account) public view returns(bool) {
        return _taxWhitelist[account];
    }
    
    function isInPlan4Whitelist(address account) public view returns(bool) {
        return _plan4Whitelist[account];
    }
    
    function isInPlan5Whitelist(address account) public view returns(bool) {
        return _plan5Whitelist[account];
    }
    
    function isInUnlockWhitelist(address account) public view returns(bool) {
        return _unlockWhitelist[account];
    }

    function unlock() public onlyOwner {
        _lock = false;
    }

    function getLockStatus() view public returns(bool) {
        return _lock;
    }


}

library Address {

    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}



contract Staking is Ownable {

    using SafeMath for uint256;
    using SafeERC20 for OrexToken;
    using Address for address;

    OrexToken public token;
    
    // annual yield period
    uint256 private constant DURATION = 365 days;
    uint256 private constant MINIMUM_AMOUNT = 1e18;
    //uint256 public _poolAmount = 0;
    bool public haveStarted = false;
    //uint256 public _totalTokenBalance;
    
    uint256 public _plan1RewardLimit = 70000e18;
    uint256 public _plan2RewardLimit = 55000e18;
    uint256 public _plan3RewardLimit = 45000e18;
    uint256 public _plan4RewardLimit = 60000e18;
    uint256 public _plan5RewardLimit = 20000e18;
    uint256 public _plan1RewardAmount = 0;
    uint256 public _plan2RewardAmount = 0;
    uint256 public _plan3RewardAmount = 0;
    uint256 public _plan4RewardAmount = 0;
    uint256 public _plan5RewardAmount = 0;

    mapping(address => uint256) private _stakerTokenBalance;
    mapping(address => uint256) public _stakerRewardRate;
    mapping(address => uint256) public _stakerStakingPlan;
    mapping(address => uint256) public _stakerWithdrawFeeRate;
    mapping(address => uint256) public _stakerStakingTime;
    mapping(address => uint256) public _stakerTokenRewardsClaimed;

    event Stake(address indexed from, uint amount);
    event Withdraw(address indexed to, uint amount);
    event Claim(address indexed to, uint amount);
    event StartStaking(bool haveStarted);

    constructor(address _token) public{
        token = OrexToken(_token);
    }


    function stake(uint plan, uint amount) public shouldStarted {
        
        require(_stakerStakingPlan[msg.sender] == 0, "Withdraw your current plan.");
        require(!address(msg.sender).isContract(), "Please use your individual account.");
        require(amount >= MINIMUM_AMOUNT, "Should stake at least 1 Token.");
        
        _stakerStakingTime[msg.sender] = block.timestamp;
        _stakerStakingPlan[msg.sender] = plan;

        updateRewards(msg.sender);
        
        token.safeTransferFrom(msg.sender, address(this), amount);
       // _totalTokenBalance = _totalTokenBalance.add(amount);
        _stakerTokenBalance[msg.sender] = _stakerTokenBalance[msg.sender].add(amount);
        
        emit Stake(msg.sender, amount);
    }

    function withdraw(uint amount) public shouldStarted {
        
        require(amount <= _stakerTokenBalance[msg.sender] && _stakerTokenBalance[msg.sender] > 0, "Bad withdraw.");
        
        if(_stakerStakingPlan[msg.sender] == 4 || _stakerStakingPlan[msg.sender] == 5){
            require(block.timestamp >= _stakerStakingTime[msg.sender] + 30 days, "Early withdrawal available after 30 days");
        }
        
        claim();
        
        _stakerTokenBalance[msg.sender] = _stakerTokenBalance[msg.sender].sub(amount);
        _stakerTokenRewardsClaimed[msg.sender] = 0;
        _stakerStakingPlan[msg.sender] = 0;


        if(_stakerWithdrawFeeRate[msg.sender] > 0){
            uint256 _burnedAmount = amount.mul(_stakerWithdrawFeeRate[msg.sender]).div(100);
            amount = amount.sub(_burnedAmount);
            token.burn(_burnedAmount);
        }
        
        token.safeTransfer(msg.sender, amount);
        
        emit Withdraw(msg.sender, amount);
    }
    
    // Withdraw without caring about rewards. EMERGENCY ONLY.
    function emergencyWithdraw(uint amount) public shouldStarted {
        require(amount <= _stakerTokenBalance[msg.sender] && _stakerTokenBalance[msg.sender] > 0, "Bad withdraw.");
        
        if(_stakerStakingPlan[msg.sender] == 4 || _stakerStakingPlan[msg.sender] == 5){
            require(block.timestamp >= _stakerStakingTime[msg.sender] + 30 days, "Early withdrawal available after 30 days");
        }
        
        updateRewards(msg.sender);
        
        _stakerTokenBalance[msg.sender] = _stakerTokenBalance[msg.sender].sub(amount);
        _stakerTokenRewardsClaimed[msg.sender] = 0;
        _stakerStakingPlan[msg.sender] = 0;


        if(_stakerWithdrawFeeRate[msg.sender] > 0){
            uint256 _burnedAmount = amount.mul(_stakerWithdrawFeeRate[msg.sender]).div(100);
            amount = amount.sub(_burnedAmount);
            token.burn(_burnedAmount);
        }
        
        token.safeTransfer(msg.sender, amount);
        
        emit Withdraw(msg.sender, amount);
    }

    function claim() public shouldStarted {
        
        uint pending = getTotalRewardsAmount(msg.sender);
        
        updateRewards(msg.sender);

        if(pending > 0 && token.balanceOf(address(this)) > 0){

            if(_stakerStakingPlan[msg.sender] == 1){
                
            require(_plan1RewardLimit >= _plan1RewardAmount, "Reward Limit 70,000 Tokens");
             _plan1RewardAmount = _plan1RewardAmount.add(pending);
          
        } else if(_stakerStakingPlan[msg.sender] == 2){

            require(_plan2RewardLimit >= _plan2RewardAmount, "Reward Limit 55,000 Tokens");
             _plan2RewardAmount = _plan2RewardAmount.add(pending);
            
        } else if(_stakerStakingPlan[msg.sender] == 3){
    
           require(_plan3RewardLimit >= _plan3RewardAmount, "Reward Limit 45,000 Tokens");
            _plan3RewardAmount = _plan3RewardAmount.add(pending);
            
        } else if(_stakerStakingPlan[msg.sender] == 4){

           require(_plan4RewardLimit >= _plan4RewardAmount, "Reward Limit 60,000 Tokens");
            _plan4RewardAmount = _plan4RewardAmount.add(pending);
           
            
        } else if(_stakerStakingPlan[msg.sender] == 5){

           require(_plan5RewardLimit >= _plan5RewardAmount, "Reward Limit 20,000 Tokens");
           _plan5RewardAmount = _plan5RewardAmount.add(pending);
            
        }
        
        token.safeTransfer(msg.sender, getTotalRewardsAmount(msg.sender));
        
       
        _stakerTokenRewardsClaimed[msg.sender] = _stakerTokenRewardsClaimed[msg.sender].add(pending);
        
        
        emit Claim(msg.sender, pending);

        }
        
        
    }

    modifier shouldStarted() {
        require(haveStarted == true, "Have not started.");
        _;
    }

    function getRewardsAmountPerSeconds(address account) public view returns(uint256) {
        return balanceOf(account).mul(_stakerRewardRate[msg.sender]).div(100)
                .div(DURATION);
    }
    
    function balanceOf(address account) public view returns(uint256) {
        return _stakerTokenBalance[account];
    }
    
    function getTotalRewardsAmount(address account) public view returns (uint256) {
   
        return block.timestamp.sub(_stakerStakingTime[account]).mul(getRewardsAmountPerSeconds(account)).sub(_stakerTokenRewardsClaimed[account]);
    }


    function updateRewards(address account) internal {
        
        if(_stakerStakingPlan[msg.sender] == 1){

            _stakerRewardRate[msg.sender] = 40;

            if(block.timestamp < _stakerStakingTime[msg.sender] + 60 days){
                 _stakerWithdrawFeeRate[msg.sender] = 6;
            } else {
                _stakerWithdrawFeeRate[msg.sender] = 0;
            }

        } else if(_stakerStakingPlan[msg.sender] == 2){

            _stakerRewardRate[msg.sender] = 69;

            if(block.timestamp < _stakerStakingTime[msg.sender] + 120 days){
                 _stakerWithdrawFeeRate[msg.sender] = 12;
            } else {
                _stakerWithdrawFeeRate[msg.sender] = 0;
            }
            
        } else if(_stakerStakingPlan[msg.sender] == 3){

            _stakerRewardRate[msg.sender] = 81;

            if(block.timestamp < _stakerStakingTime[msg.sender] + 240 days){
                 _stakerWithdrawFeeRate[msg.sender] = 24;
            } else {
                _stakerWithdrawFeeRate[msg.sender] = 0;
            }
            
        } else if(_stakerStakingPlan[msg.sender] == 4 &&  token.isInPlan4Whitelist(msg.sender)){

            _stakerRewardRate[msg.sender] = 75;
            _stakerWithdrawFeeRate[msg.sender] = 0;
            
            
        } else if(_stakerStakingPlan[msg.sender] == 5 &&  token.isInPlan5Whitelist(msg.sender) ){

            _stakerRewardRate[msg.sender] = 40;
            _stakerWithdrawFeeRate[msg.sender] = 0;
            
        }

        
    }

    function startStaking() external onlyOwner {
        updateRewards(address(0));
        haveStarted = true;
        emit StartStaking(haveStarted);
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Taxer","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":"account","type":"address"}],"name":"addToPlan4Whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToPlan5Whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToTaxWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToUnlockWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"daofund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devfund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLockStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isInPlan4Whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isInPlan5Whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isInTaxWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isInUnlockWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromPlan4Whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromPlan5Whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromTaxWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromUnlockWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setTaxer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600b60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600f81526020017f4f72656e64612050726f746f636f6c00000000000000000000000000000000008152506040518060400160405280600481526020017f4f524558000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000b1929190620005c4565b508060049080519060200190620000ca929190620005c4565b506012600560006101000a81548160ff021916908360ff16021790555050506000620000fb6200032660201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001c5620001ae6200032e60201b60201c565b69d3c21bcecceda10000006200035860201b60201c565b620001d56200032e60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073401d6c6ffc28db4c43c0b52e7af1f8a607576842600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e58a34f524eebb396c124b28ee2f41cf0b77e362600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e2c707559f0cbb82ca9bc078e5b6c7522ff1d314600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062278d004201600a819055506200066a565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000410600083836200053660201b60201c565b6200042c816002546200053b60201b620027681790919060201c565b6002819055506200048a816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200053b60201b620027681790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600080828401905083811015620005ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200060757805160ff191683800117855562000638565b8280016001018555821562000638579182015b82811115620006375782518255916020019190600101906200061a565b5b5090506200064791906200064b565b5090565b5b80821115620006665760008160009055506001016200064c565b5090565b6133d1806200067a6000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c80638237150f11610125578063a9059cbb116100ad578063d470ecee1161007c578063d470ecee14610a4b578063dd62ed3e14610a8f578063f2fde38b14610b07578063f3f18c5214610b4b578063f91e8fc714610b8f57610211565b8063a9059cbb146108ef578063a9211c8914610953578063b1be06ee14610997578063c4e5334e146109f157610211565b80639ae8ad45116100f45780639ae8ad45146107d9578063a457c2d7146107f9578063a69df4b51461085d578063a6e92f1314610867578063a6fe32d3146108ab57610211565b80638237150f146106aa5780638d8f1e67146106ee5780638da5cb5b1461072257806395d89b411461075657610211565b80632d04b7f1116101a857806342966c681161017757806342966c68146105a25780634931b541146105d057806370a082311461062a578063715018a614610682578063771a3a1d1461068c57610211565b80632d04b7f1146104a5578063313ce567146104e9578063395093511461050a57806340a825311461056e57610211565b806316f0115b116101e457806316f0115b1461039b57806317c81c1d146103cf57806318160ddd1461040357806323b872dd1461042157610211565b806306fdde0314610216578063095ea7b314610299578063097a9bb9146102fd5780630d2f0b2e14610357575b600080fd5b61021e610bd3565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561025e578082015181840152602081019050610243565b50505050905090810190601f16801561028b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e5600480360360408110156102af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c75565b60405180821515815260200191505060405180910390f35b61033f6004803603602081101561031357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c93565b60405180821515815260200191505060405180910390f35b6103996004803603602081101561036d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ce9565b005b6103a3610e55565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103d7610e7f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61040b610ea9565b6040518082815260200191505060405180910390f35b61048d6004803603606081101561043757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eb3565b60405180821515815260200191505060405180910390f35b6104e7600480360360208110156104bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d5565b005b6104f16112fa565b604051808260ff16815260200191505060405180910390f35b6105566004803603604081101561052057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611311565b60405180821515815260200191505060405180910390f35b6105766113c4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105ce600480360360208110156105b857600080fd5b81019080803590602001909291905050506113ee565b005b610612600480360360208110156105e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141d565b60405180821515815260200191505060405180910390f35b61066c6004803603602081101561064057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611473565b6040518082815260200191505060405180910390f35b61068a6114bb565b005b610694611646565b6040518082815260200191505060405180910390f35b6106ec600480360360208110156106c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061164f565b005b6106f6611774565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61072a61179e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61075e6117c8565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561079e578082015181840152602081019050610783565b50505050905090810190601f1680156107cb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107e161186a565b60405180821515815260200191505060405180910390f35b6108456004803603604081101561080f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611881565b60405180821515815260200191505060405180910390f35b61086561194e565b005b6108a96004803603602081101561087d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a35565b005b6108ed600480360360208110156108c157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b5a565b005b61093b6004803603604081101561090557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c78565b60405180821515815260200191505060405180910390f35b6109956004803603602081101561096957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f98565b005b6109d9600480360360208110156109ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120bd565b60405180821515815260200191505060405180910390f35b610a3360048036036020811015610a0757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612113565b60405180821515815260200191505060405180910390f35b610a8d60048036036020811015610a6157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612169565b005b610af160048036036040811015610aa557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612287565b6040518082815260200191505060405180910390f35b610b4960048036036020811015610b1d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061230e565b005b610b8d60048036036020811015610b6157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061251e565b005b610bd160048036036020811015610ba557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612643565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c6b5780601f10610c4057610100808354040283529160200191610c6b565b820191906000526020600020905b815481529060010190602001808311610c4e57829003601f168201915b5050505050905090565b6000610c89610c826127f0565b84846127f8565b6001905092915050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff9bec51e827621855d418db1b9f2c3853b2055dfa05ae64738889a644b82052060405160405180910390a250565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600254905090565b6000610ebd61179e565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610f3f5750600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80610f575750600b60009054906101000a900460ff16155b610fc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f5472616e7366657246726f6d206973206c6f636b696e6700000000000000000081525060200191505060405180910390fd5b6000610ff26064610fe46002866129ef90919063ffffffff16565b612a7590919063ffffffff16565b905060011515600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151480611054575042600a54115b1561105e57600090505b60006110738285612abf90919063ffffffff16565b90508361107f87611473565b10156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f696e73756666696369656e742062616c616e63652e000000000000000000000081525060200191505060405180910390fd5b6110fe868683612b09565b50600082146111c857611146600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611141600285612a7590919063ffffffff16565b612be2565b50611186600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611181600485612a7590919063ffffffff16565b612be2565b506111c6600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166111c1600485612a7590919063ffffffff16565b612be2565b505b6001925050509392505050565b6111dd6127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900460ff16905090565b60006113ba61131e6127f0565b846113b5856001600061132f6127f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461276890919063ffffffff16565b6127f8565b6001905092915050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081116113fb57600080fd5b8061140533611473565b101561141057600080fd5b61141a3382612c00565b50565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114c36127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611585576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006002905090565b6116576127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611719576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118605780601f1061183557610100808354040283529160200191611860565b820191906000526020600020905b81548152906001019060200180831161184357829003601f168201915b5050505050905090565b6000600b60009054906101000a900460ff16905090565b600061194461188e6127f0565b8461193f8560405180606001604052806025815260200161337760259139600160006118b86127f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc49092919063ffffffff16565b6127f8565b6001905092915050565b6119566127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b611a3d6127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000611c8261179e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611d045750600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611d1c5750600b60009054906101000a900460ff16155b611d8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5472616e73666572206973206c6f636b696e670000000000000000000000000081525060200191505060405180910390fd5b6000611db76064611da96002866129ef90919063ffffffff16565b612a7590919063ffffffff16565b905060011515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151480611e19575042600a54115b15611e2357600090505b6000611e388285612abf90919063ffffffff16565b905083611e4433611473565b1015611eb8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f696e73756666696369656e742062616c616e63652e000000000000000000000081525060200191505060405180910390fd5b611ec28582612be2565b5060008214611f8c57611f0a600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611f05600285612a7590919063ffffffff16565b612be2565b50611f4a600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611f45600485612a7590919063ffffffff16565b612be2565b50611f8a600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611f85600485612a7590919063ffffffff16565b612be2565b505b60019250505092915050565b611fa06127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612062576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6123166127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561245e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806132566026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6125266127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61264b6127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461270d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000808284019050838110156127e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561287e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806133536024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612904576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061327c6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600080831415612a025760009050612a6f565b6000828402905082848281612a1357fe5b0414612a6a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806132c46021913960400191505060405180910390fd5b809150505b92915050565b6000612ab783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e84565b905092915050565b6000612b0183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612dc4565b905092915050565b6000612b16848484612f4a565b612bd784612b226127f0565b612bd2856040518060600160405280602881526020016132e560289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612b886127f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc49092919063ffffffff16565b6127f8565b600190509392505050565b6000612bf6612bef6127f0565b8484612f4a565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061330d6021913960400191505060405180910390fd5b612c928260008361320b565b612cfd81604051806060016040528060228152602001613234602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc49092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d5481600254612abf90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000838311158290612e71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e36578082015181840152602081019050612e1b565b50505050905090810190601f168015612e635780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290612f30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ef5578082015181840152602081019050612eda565b50505050905090810190601f168015612f225780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612f3c57fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fd0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061332e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613056576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806132116023913960400191505060405180910390fd5b61306183838361320b565b6130cc8160405180606001604052806026815260200161329e602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc49092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061315f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461276890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bac9fa7db518082d99e9eddb87b0129383dcd1b74577e49ceb4314d52ebc15d764736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c80638237150f11610125578063a9059cbb116100ad578063d470ecee1161007c578063d470ecee14610a4b578063dd62ed3e14610a8f578063f2fde38b14610b07578063f3f18c5214610b4b578063f91e8fc714610b8f57610211565b8063a9059cbb146108ef578063a9211c8914610953578063b1be06ee14610997578063c4e5334e146109f157610211565b80639ae8ad45116100f45780639ae8ad45146107d9578063a457c2d7146107f9578063a69df4b51461085d578063a6e92f1314610867578063a6fe32d3146108ab57610211565b80638237150f146106aa5780638d8f1e67146106ee5780638da5cb5b1461072257806395d89b411461075657610211565b80632d04b7f1116101a857806342966c681161017757806342966c68146105a25780634931b541146105d057806370a082311461062a578063715018a614610682578063771a3a1d1461068c57610211565b80632d04b7f1146104a5578063313ce567146104e9578063395093511461050a57806340a825311461056e57610211565b806316f0115b116101e457806316f0115b1461039b57806317c81c1d146103cf57806318160ddd1461040357806323b872dd1461042157610211565b806306fdde0314610216578063095ea7b314610299578063097a9bb9146102fd5780630d2f0b2e14610357575b600080fd5b61021e610bd3565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561025e578082015181840152602081019050610243565b50505050905090810190601f16801561028b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e5600480360360408110156102af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c75565b60405180821515815260200191505060405180910390f35b61033f6004803603602081101561031357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c93565b60405180821515815260200191505060405180910390f35b6103996004803603602081101561036d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ce9565b005b6103a3610e55565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103d7610e7f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61040b610ea9565b6040518082815260200191505060405180910390f35b61048d6004803603606081101561043757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eb3565b60405180821515815260200191505060405180910390f35b6104e7600480360360208110156104bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d5565b005b6104f16112fa565b604051808260ff16815260200191505060405180910390f35b6105566004803603604081101561052057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611311565b60405180821515815260200191505060405180910390f35b6105766113c4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105ce600480360360208110156105b857600080fd5b81019080803590602001909291905050506113ee565b005b610612600480360360208110156105e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141d565b60405180821515815260200191505060405180910390f35b61066c6004803603602081101561064057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611473565b6040518082815260200191505060405180910390f35b61068a6114bb565b005b610694611646565b6040518082815260200191505060405180910390f35b6106ec600480360360208110156106c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061164f565b005b6106f6611774565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61072a61179e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61075e6117c8565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561079e578082015181840152602081019050610783565b50505050905090810190601f1680156107cb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107e161186a565b60405180821515815260200191505060405180910390f35b6108456004803603604081101561080f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611881565b60405180821515815260200191505060405180910390f35b61086561194e565b005b6108a96004803603602081101561087d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a35565b005b6108ed600480360360208110156108c157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b5a565b005b61093b6004803603604081101561090557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c78565b60405180821515815260200191505060405180910390f35b6109956004803603602081101561096957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f98565b005b6109d9600480360360208110156109ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120bd565b60405180821515815260200191505060405180910390f35b610a3360048036036020811015610a0757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612113565b60405180821515815260200191505060405180910390f35b610a8d60048036036020811015610a6157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612169565b005b610af160048036036040811015610aa557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612287565b6040518082815260200191505060405180910390f35b610b4960048036036020811015610b1d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061230e565b005b610b8d60048036036020811015610b6157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061251e565b005b610bd160048036036020811015610ba557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612643565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c6b5780601f10610c4057610100808354040283529160200191610c6b565b820191906000526020600020905b815481529060010190602001808311610c4e57829003601f168201915b5050505050905090565b6000610c89610c826127f0565b84846127f8565b6001905092915050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff9bec51e827621855d418db1b9f2c3853b2055dfa05ae64738889a644b82052060405160405180910390a250565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600254905090565b6000610ebd61179e565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610f3f5750600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80610f575750600b60009054906101000a900460ff16155b610fc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f5472616e7366657246726f6d206973206c6f636b696e6700000000000000000081525060200191505060405180910390fd5b6000610ff26064610fe46002866129ef90919063ffffffff16565b612a7590919063ffffffff16565b905060011515600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151480611054575042600a54115b1561105e57600090505b60006110738285612abf90919063ffffffff16565b90508361107f87611473565b10156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f696e73756666696369656e742062616c616e63652e000000000000000000000081525060200191505060405180910390fd5b6110fe868683612b09565b50600082146111c857611146600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611141600285612a7590919063ffffffff16565b612be2565b50611186600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611181600485612a7590919063ffffffff16565b612be2565b506111c6600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166111c1600485612a7590919063ffffffff16565b612be2565b505b6001925050509392505050565b6111dd6127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900460ff16905090565b60006113ba61131e6127f0565b846113b5856001600061132f6127f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461276890919063ffffffff16565b6127f8565b6001905092915050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081116113fb57600080fd5b8061140533611473565b101561141057600080fd5b61141a3382612c00565b50565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114c36127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611585576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006002905090565b6116576127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611719576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118605780601f1061183557610100808354040283529160200191611860565b820191906000526020600020905b81548152906001019060200180831161184357829003601f168201915b5050505050905090565b6000600b60009054906101000a900460ff16905090565b600061194461188e6127f0565b8461193f8560405180606001604052806025815260200161337760259139600160006118b86127f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc49092919063ffffffff16565b6127f8565b6001905092915050565b6119566127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b611a3d6127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000611c8261179e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611d045750600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611d1c5750600b60009054906101000a900460ff16155b611d8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5472616e73666572206973206c6f636b696e670000000000000000000000000081525060200191505060405180910390fd5b6000611db76064611da96002866129ef90919063ffffffff16565b612a7590919063ffffffff16565b905060011515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151480611e19575042600a54115b15611e2357600090505b6000611e388285612abf90919063ffffffff16565b905083611e4433611473565b1015611eb8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f696e73756666696369656e742062616c616e63652e000000000000000000000081525060200191505060405180910390fd5b611ec28582612be2565b5060008214611f8c57611f0a600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611f05600285612a7590919063ffffffff16565b612be2565b50611f4a600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611f45600485612a7590919063ffffffff16565b612be2565b50611f8a600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611f85600485612a7590919063ffffffff16565b612be2565b505b60019250505092915050565b611fa06127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612062576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f6e6c7920666f722074617865722e000000000000000000000000000000000081525060200191505060405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6123166127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561245e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806132566026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6125266127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61264b6127f0565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461270d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000808284019050838110156127e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561287e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806133536024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612904576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061327c6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600080831415612a025760009050612a6f565b6000828402905082848281612a1357fe5b0414612a6a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806132c46021913960400191505060405180910390fd5b809150505b92915050565b6000612ab783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e84565b905092915050565b6000612b0183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612dc4565b905092915050565b6000612b16848484612f4a565b612bd784612b226127f0565b612bd2856040518060600160405280602881526020016132e560289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612b886127f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc49092919063ffffffff16565b6127f8565b600190509392505050565b6000612bf6612bef6127f0565b8484612f4a565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061330d6021913960400191505060405180910390fd5b612c928260008361320b565b612cfd81604051806060016040528060228152602001613234602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc49092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d5481600254612abf90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000838311158290612e71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e36578082015181840152602081019050612e1b565b50505050905090810190601f168015612e635780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290612f30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ef5578082015181840152602081019050612eda565b50505050905090810190601f168015612f225780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612f3c57fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fd0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061332e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613056576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806132116023913960400191505060405180910390fd5b61306183838361320b565b6130cc8160405180606001604052806026815260200161329e602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc49092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061315f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461276890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bac9fa7db518082d99e9eddb87b0129383dcd1b74577e49ceb4314d52ebc15d764736f6c634300060c0033

Deployed Bytecode Sourcemap

21533:3003:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8798:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10904:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24108:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22280:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23492:76;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23406:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;9873:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20703:821;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22771:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;9725:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12285:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23666:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22005:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23975:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;10036:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18765:148;;;:::i;:::-;;23756:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23023:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23576:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18123:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;9000:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24447:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;13006:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24372:67;;;:::i;:::-;;23154:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19897:798;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22902:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24241:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23846:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22406:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10606:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19068:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22650:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23277:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8798:83;8835:13;8868:5;8861:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8798:83;:::o;10904:169::-;10987:4;11004:39;11013:12;:10;:12::i;:::-;11027:7;11036:6;11004:8;:39::i;:::-;11061:4;11054:11;;10904:169;;;;:::o;24108:121::-;24173:4;24197:15;:24;24213:7;24197:24;;;;;;;;;;;;;;;;;;;;;;;;;24190:31;;24108:121;;;:::o;22280:116::-;22226:6;;;;;;;;;;;22212:20;;:10;:20;;;22204:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22352:7:::1;22343:6;;:16;;;;;;;;;;;;;;;;;;22381:6;;;;;;;;;;;22375:13;;;;;;;;;;;;22280:116:::0;:::o;23492:76::-;23528:7;23555:5;;;;;;;;;;;23548:12;;23492:76;:::o;23406:78::-;23443:7;23470:6;;;;;;;;;;;23463:13;;23406:78;:::o;9873:100::-;9926:7;9953:12;;9946:19;;9873:100;:::o;20703:821::-;20801:4;20836:7;:5;:7::i;:::-;20826:17;;:6;:17;;;:49;;;;20847:16;:28;20864:10;20847:28;;;;;;;;;;;;;;;;;;;;;;;;;20826:49;:59;;;;20880:5;;;;;;;;;;;20879:6;20826:59;20818:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20926:17;20946:29;20971:3;20946:20;19615:1;20946:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;20926:49;;21015:4;20990:29;;:13;:21;21004:6;20990:21;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;:59;;;;21034:15;21023:8;;:26;20990:59;20986:106;;;21079:1;21067:13;;20986:106;21102:22;21127:21;21138:9;21127:6;:10;;:21;;;;:::i;:::-;21102:46;;21188:6;21167:17;21177:6;21167:9;:17::i;:::-;:27;;21159:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21231:53;21250:6;21258:9;21269:14;21231:18;:53::i;:::-;;21312:1;21299:9;:14;21295:200;;21330:39;21345:5;;;;;;;;;;;21352:16;21366:1;21352:9;:13;;:16;;;;:::i;:::-;21330:14;:39::i;:::-;;21384:42;21399:8;;;;;;;;;;;21409:16;21423:1;21409:9;:13;;:16;;;;:::i;:::-;21384:14;:42::i;:::-;;21441;21456:8;;;;;;;;;;;21466:16;21480:1;21466:9;:13;;:16;;;;:::i;:::-;21441:14;:42::i;:::-;;21295:200;21512:4;21505:11;;;;20703:821;;;;;:::o;22771:119::-;18345:12;:10;:12::i;:::-;18335:22;;:6;;;;;;;;;;;:22;;;18327:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22877:5:::1;22850:15;:24;22866:7;22850:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;22771:119:::0;:::o;9725:83::-;9766:5;9791:9;;;;;;;;;;;9784:16;;9725:83;:::o;12285:218::-;12373:4;12390:83;12399:12;:10;:12::i;:::-;12413:7;12422:50;12461:10;12422:11;:25;12434:12;:10;:12::i;:::-;12422:25;;;;;;;;;;;;;;;:34;12448:7;12422:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;12390:8;:83::i;:::-;12491:4;12484:11;;12285:218;;;;:::o;23666:82::-;23705:7;23732:8;;;;;;;;;;;23725:15;;23666:82;:::o;22005:159::-;22067:1;22058:6;:10;22050:19;;;;;;22113:6;22088:21;22098:10;22088:9;:21::i;:::-;:31;;22080:40;;;;;;22131:25;22137:10;22149:6;22131:5;:25::i;:::-;22005:159;:::o;23975:121::-;24040:4;24064:15;:24;24080:7;24064:24;;;;;;;;;;;;;;;;;;;;;;;;;24057:31;;23975:121;;;:::o;10036:119::-;10102:7;10129:9;:18;10139:7;10129:18;;;;;;;;;;;;;;;;10122:25;;10036:119;;;:::o;18765:148::-;18345:12;:10;:12::i;:::-;18335:22;;:6;;;;;;;;;;;:22;;;18327:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18872:1:::1;18835:40;;18856:6;;;;;;;;;;;18835:40;;;;;;;;;;;;18903:1;18886:6;;:19;;;;;;;;;;;;;;;;;;18765:148::o:0;23756:82::-;23795:7;19615:1;23815:15;;23756:82;:::o;23023:119::-;18345:12;:10;:12::i;:::-;18335:22;;:6;;;;;;;;;;;:22;;;18327:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23129:5:::1;23102:15;:24;23118:7;23102:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;23023:119:::0;:::o;23576:82::-;23615:7;23642:8;;;;;;;;;;;23635:15;;23576:82;:::o;18123:79::-;18161:7;18188:6;;;;;;;;;;;18181:13;;18123:79;:::o;9000:87::-;9039:13;9072:7;9065:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000:87;:::o;24447:82::-;24492:4;24516:5;;;;;;;;;;;24509:12;;24447:82;:::o;13006:269::-;13099:4;13116:129;13125:12;:10;:12::i;:::-;13139:7;13148:96;13187:15;13148:96;;;;;;;;;;;;;;;;;:11;:25;13160:12;:10;:12::i;:::-;13148:25;;;;;;;;;;;;;;;:34;13174:7;13148:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;13116:8;:129::i;:::-;13263:4;13256:11;;13006:269;;;;:::o;24372:67::-;18345:12;:10;:12::i;:::-;18335:22;;:6;;;;;;;;;;;:22;;;18327:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24426:5:::1;24418;;:13;;;;;;;;;;;;;;;;;;24372:67::o:0;23154:115::-;18345:12;:10;:12::i;:::-;18335:22;;:6;;;;;;;;;;;:22;;;18327:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23257:4:::1;23229:16;:25;23246:7;23229:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;23154:115:::0;:::o;22523:::-;22226:6;;;;;;;;;;;22212:20;;:10;:20;;;22204:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22625:5:::1;22600:13;:22;22614:7;22600:22;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;22523:115:::0;:::o;19897:798::-;19975:4;20014:7;:5;:7::i;:::-;20000:21;;:10;:21;;;:53;;;;20025:16;:28;20042:10;20025:28;;;;;;;;;;;;;;;;;;;;;;;;;20000:53;:63;;;;20058:5;;;;;;;;;;;20057:6;20000:63;19992:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20100:17;20120:29;20145:3;20120:20;19615:1;20120:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;20100:49;;20193:4;20164:33;;:13;:25;20178:10;20164:25;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;:63;;;;20212:15;20201:8;;:26;20164:63;20160:109;;;20256:1;20244:13;;20160:109;20279:22;20304:21;20315:9;20304:6;:10;;:21;;;;:::i;:::-;20279:46;;20369:6;20344:21;20354:10;20344:9;:21::i;:::-;:31;;20336:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20412:41;20427:9;20438:14;20412;:41::i;:::-;;20483:1;20470:9;:14;20466:200;;20501:39;20516:5;;;;;;;;;;;20523:16;20537:1;20523:9;:13;;:16;;;;:::i;:::-;20501:14;:39::i;:::-;;20555:42;20570:8;;;;;;;;;;;20580:16;20594:1;20580:9;:13;;:16;;;;:::i;:::-;20555:14;:42::i;:::-;;20612;20627:8;;;;;;;;;;;20637:16;20651:1;20637:9;:13;;:16;;;;:::i;:::-;20612:14;:42::i;:::-;;20466:200;20683:4;20676:11;;;;19897:798;;;;:::o;22902:113::-;18345:12;:10;:12::i;:::-;18335:22;;:6;;;;;;;;;;;:22;;;18327:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23003:4:::1;22976:15;:24;22992:7;22976:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;22902:113:::0;:::o;24241:123::-;24307:4;24331:16;:25;24348:7;24331:25;;;;;;;;;;;;;;;;;;;;;;;;;24324:32;;24241:123;;;:::o;23846:117::-;23909:4;23933:13;:22;23947:7;23933:22;;;;;;;;;;;;;;;;;;;;;;;;;23926:29;;23846:117;;;:::o;22406:109::-;22226:6;;;;;;;;;;;22212:20;;:10;:20;;;22204:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22503:4:::1;22478:13;:22;22492:7;22478:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22406:109:::0;:::o;10606:151::-;10695:7;10722:11;:18;10734:5;10722:18;;;;;;;;;;;;;;;:27;10741:7;10722:27;;;;;;;;;;;;;;;;10715:34;;10606:151;;;;:::o;19068:244::-;18345:12;:10;:12::i;:::-;18335:22;;:6;;;;;;;;;;;:22;;;18327:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19177:1:::1;19157:22;;:8;:22;;;;19149:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19267:8;19238:38;;19259:6;;;;;;;;;;;19238:38;;;;;;;;;;;;19296:8;19287:6;;:17;;;;;;;;;;;;;;;;;;19068:244:::0;:::o;22650:113::-;18345:12;:10;:12::i;:::-;18335:22;;:6;;;;;;;;;;;:22;;;18327:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22751:4:::1;22724:15;:24;22740:7;22724:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;22650:113:::0;:::o;23277:121::-;18345:12;:10;:12::i;:::-;18335:22;;:6;;;;;;;;;;;:22;;;18327:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23385:5:::1;23357:16;:25;23374:7;23357:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;23277:121:::0;:::o;3431:181::-;3489:7;3509:9;3525:1;3521;:5;3509:17;;3550:1;3545;:6;;3537:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3603:1;3596:8;;;3431:181;;;;:::o;173:106::-;226:15;261:10;254:17;;173:106;:::o;16153:346::-;16272:1;16255:19;;:5;:19;;;;16247:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16353:1;16334:21;;:7;:21;;;;16326:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16437:6;16407:11;:18;16419:5;16407:18;;;;;;;;;;;;;;;:27;16426:7;16407:27;;;;;;;;;;;;;;;:36;;;;16475:7;16459:32;;16468:5;16459:32;;;16484:6;16459:32;;;;;;;;;;;;;;;;;;16153:346;;;:::o;4785:471::-;4843:7;5093:1;5088;:6;5084:47;;;5118:1;5111:8;;;;5084:47;5143:9;5159:1;5155;:5;5143:17;;5188:1;5183;5179;:5;;;;;;:10;5171:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5247:1;5240:8;;;4785:471;;;;;:::o;5732:132::-;5790:7;5817:39;5821:1;5824;5817:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5810:46;;5732:132;;;;:::o;3895:136::-;3953:7;3980:43;3984:1;3987;3980:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3973:50;;3895:136;;;;:::o;11555:321::-;11661:4;11678:36;11688:6;11696:9;11707:6;11678:9;:36::i;:::-;11725:121;11734:6;11742:12;:10;:12::i;:::-;11756:89;11794:6;11756:89;;;;;;;;;;;;;;;;;:11;:19;11768:6;11756:19;;;;;;;;;;;;;;;:33;11776:12;:10;:12::i;:::-;11756:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;11725:8;:121::i;:::-;11864:4;11857:11;;11555:321;;;;;:::o;10368:175::-;10454:4;10471:42;10481:12;:10;:12::i;:::-;10495:9;10506:6;10471:9;:42::i;:::-;10531:4;10524:11;;10368:175;;;;:::o;15297:418::-;15400:1;15381:21;;:7;:21;;;;15373:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15453:49;15474:7;15491:1;15495:6;15453:20;:49::i;:::-;15536:68;15559:6;15536:68;;;;;;;;;;;;;;;;;:9;:18;15546:7;15536:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;15515:9;:18;15525:7;15515:18;;;;;;;;;;;;;;;:89;;;;15630:24;15647:6;15630:12;;:16;;:24;;;;:::i;:::-;15615:12;:39;;;;15696:1;15670:37;;15679:7;15670:37;;;15700:6;15670:37;;;;;;;;;;;;;;;;;;15297:418;;:::o;4334:192::-;4420:7;4453:1;4448;:6;;4456:12;4440:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4480:9;4496:1;4492;:5;4480:17;;4517:1;4510:8;;;4334:192;;;;;:::o;6360:278::-;6446:7;6478:1;6474;:5;6481:12;6466:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6505:9;6521:1;6517;:5;;;;;;6505:17;;6629:1;6622:8;;;6360:278;;;;;:::o;13765:539::-;13889:1;13871:20;;:6;:20;;;;13863:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13973:1;13952:23;;:9;:23;;;;13944:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14028:47;14049:6;14057:9;14068:6;14028:20;:47::i;:::-;14108:71;14130:6;14108:71;;;;;;;;;;;;;;;;;:9;:17;14118:6;14108:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;14088:9;:17;14098:6;14088:17;;;;;;;;;;;;;;;:91;;;;14213:32;14238:6;14213:9;:20;14223:9;14213:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;14190:9;:20;14200:9;14190:20;;;;;;;;;;;;;;;:55;;;;14278:9;14261:35;;14270:6;14261:35;;;14289:6;14261:35;;;;;;;;;;;;;;;;;;13765:539;;;:::o;17524:92::-;;;;:::o

Swarm Source

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

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