ETH Price: $2,289.00 (+1.06%)

Token

Okschain Token (OKS)
 

Overview

Max Total Supply

14,680,424,808.7464 OKS

Holders

7,194 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
169.55747943 OKS

Value
$0.00
0xd7664ef9c11551fd4e3c9867a54666707c13aedc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

OKSCHAIN - is a decentralized financial system for a wide range of consumers, with different interests and requests. The new technology will make handling money easier and more diverse, as well as open the prospects for safe investment to everyone.

IEO Information

IEO Address : https://account.okschain.com/
IEO Start Date : Nov 25, 2019
IEO End Date : Feb 15, 2020
IEO Price : $0.001
Public Sale Allocation : 1240000000 OKS
Country : Estonia
Soft Cap : $4725000
Hard Cap : $12090000
Token Distribution Date : Feb 15, 2020

 

Private Sale Information

Private Sale Token Price : $0.001
Private Sale Allocation : 7130000000 OKS
Seed Sale Token Price : $0.001
Seed Sale Allocation : 5580000000 OKS

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OkschainToken

Compiler Version
v0.5.0+commit.1d4f565a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-02-16
*/

pragma solidity^0.5.0;


/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, 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.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

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

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

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

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

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

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _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 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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);
}

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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public 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 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 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 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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _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 {
        require(account != address(0), "ERC20: mint to the zero address");

        _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 {
        require(account != address(0), "ERC20: burn from the zero address");

        _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 is 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 {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @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.
     *
     * 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 Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev See {ERC20-_burnFrom}.
     */
    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
}

// Dummy contract only used to emit to end-user they are using wrong solc
contract solcChecker {
/* INCOMPATIBLE SOLC: import the following instead: "github.com/oraclize/ethereum-api/oraclizeAPI_0.4.sol" */ function f(bytes calldata x) external;
}

contract OraclizeI {

    address public cbAddress;

    function setProofType(byte _proofType) external;
    function setCustomGasPrice(uint _gasPrice) external;
    function getPrice(string memory _datasource) public returns (uint _dsprice);
    function randomDS_getSessionPubKeyHash() external view returns (bytes32 _sessionKeyHash);
    function getPrice(string memory _datasource, uint _gasLimit) public returns (uint _dsprice);
    function queryN(uint _timestamp, string memory _datasource, bytes memory _argN) public payable returns (bytes32 _id);
    function query(uint _timestamp, string calldata _datasource, string calldata _arg) external payable returns (bytes32 _id);
    function query2(uint _timestamp, string memory _datasource, string memory _arg1, string memory _arg2) public payable returns (bytes32 _id);
    function query_withGasLimit(uint _timestamp, string calldata _datasource, string calldata _arg, uint _gasLimit) external payable returns (bytes32 _id);
    function queryN_withGasLimit(uint _timestamp, string calldata _datasource, bytes calldata _argN, uint _gasLimit) external payable returns (bytes32 _id);
    function query2_withGasLimit(uint _timestamp, string calldata _datasource, string calldata _arg1, string calldata _arg2, uint _gasLimit) external payable returns (bytes32 _id);
}

contract OraclizeAddrResolverI {
    function getAddress() public returns (address _address);
}
/*
Begin solidity-cborutils
https://github.com/smartcontractkit/solidity-cborutils
MIT License
Copyright (c) 2018 SmartContract ChainLink, Ltd.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
library Buffer {

    struct buffer {
        bytes buf;
        uint capacity;
    }

    function init(buffer memory _buf, uint _capacity) internal pure {
        uint capacity = _capacity;
        if (capacity % 32 != 0) {
            capacity += 32 - (capacity % 32);
        }
        _buf.capacity = capacity; // Allocate space for the buffer data
        assembly {
            let ptr := mload(0x40)
            mstore(_buf, ptr)
            mstore(ptr, 0)
            mstore(0x40, add(ptr, capacity))
        }
    }

    function resize(buffer memory _buf, uint _capacity) private pure {
        bytes memory oldbuf = _buf.buf;
        init(_buf, _capacity);
        append(_buf, oldbuf);
    }

    function max(uint _a, uint _b) private pure returns (uint _max) {
        if (_a > _b) {
            return _a;
        }
        return _b;
    }
    /**
      * @dev Appends a byte array to the end of the buffer. Resizes if doing so
      *      would exceed the capacity of the buffer.
      * @param _buf The buffer to append to.
      * @param _data The data to append.
      * @return The original buffer.
      *
      */
    function append(buffer memory _buf, bytes memory _data) internal pure returns (buffer memory _buffer) {
        if (_data.length + _buf.buf.length > _buf.capacity) {
            resize(_buf, max(_buf.capacity, _data.length) * 2);
        }
        uint dest;
        uint src;
        uint len = _data.length;
        assembly {
            let bufptr := mload(_buf) // Memory address of the buffer data
            let buflen := mload(bufptr) // Length of existing buffer data
            dest := add(add(bufptr, buflen), 32) // Start address = buffer address + buffer length + sizeof(buffer length)
            mstore(bufptr, add(buflen, mload(_data))) // Update buffer length
            src := add(_data, 32)
        }
        for(; len >= 32; len -= 32) { // Copy word-length chunks while possible
            assembly {
                mstore(dest, mload(src))
            }
            dest += 32;
            src += 32;
        }
        uint mask = 256 ** (32 - len) - 1; // Copy remaining bytes
        assembly {
            let srcpart := and(mload(src), not(mask))
            let destpart := and(mload(dest), mask)
            mstore(dest, or(destpart, srcpart))
        }
        return _buf;
    }
    /**
      *
      * @dev Appends a byte to the end of the buffer. Resizes if doing so would
      * exceed the capacity of the buffer.
      * @param _buf The buffer to append to.
      * @param _data The data to append.
      * @return The original buffer.
      *
      */
    function append(buffer memory _buf, uint8 _data) internal pure {
        if (_buf.buf.length + 1 > _buf.capacity) {
            resize(_buf, _buf.capacity * 2);
        }
        assembly {
            let bufptr := mload(_buf) // Memory address of the buffer data
            let buflen := mload(bufptr) // Length of existing buffer data
            let dest := add(add(bufptr, buflen), 32) // Address = buffer address + buffer length + sizeof(buffer length)
            mstore8(dest, _data)
            mstore(bufptr, add(buflen, 1)) // Update buffer length
        }
    }
    /**
      *
      * @dev Appends a byte to the end of the buffer. Resizes if doing so would
      * exceed the capacity of the buffer.
      * @param _buf The buffer to append to.
      * @param _data The data to append.
      * @return The original buffer.
      *
      */
    function appendInt(buffer memory _buf, uint _data, uint _len) internal pure returns (buffer memory _buffer) {
        if (_len + _buf.buf.length > _buf.capacity) {
            resize(_buf, max(_buf.capacity, _len) * 2);
        }
        uint mask = 256 ** _len - 1;
        assembly {
            let bufptr := mload(_buf) // Memory address of the buffer data
            let buflen := mload(bufptr) // Length of existing buffer data
            let dest := add(add(bufptr, buflen), _len) // Address = buffer address + buffer length + sizeof(buffer length) + len
            mstore(dest, or(and(mload(dest), not(mask)), _data))
            mstore(bufptr, add(buflen, _len)) // Update buffer length
        }
        return _buf;
    }
}

library CBOR {

    using Buffer for Buffer.buffer;

    uint8 private constant MAJOR_TYPE_INT = 0;
    uint8 private constant MAJOR_TYPE_MAP = 5;
    uint8 private constant MAJOR_TYPE_BYTES = 2;
    uint8 private constant MAJOR_TYPE_ARRAY = 4;
    uint8 private constant MAJOR_TYPE_STRING = 3;
    uint8 private constant MAJOR_TYPE_NEGATIVE_INT = 1;
    uint8 private constant MAJOR_TYPE_CONTENT_FREE = 7;

    function encodeType(Buffer.buffer memory _buf, uint8 _major, uint _value) private pure {
        if (_value <= 23) {
            _buf.append(uint8((_major << 5) | _value));
        } else if (_value <= 0xFF) {
            _buf.append(uint8((_major << 5) | 24));
            _buf.appendInt(_value, 1);
        } else if (_value <= 0xFFFF) {
            _buf.append(uint8((_major << 5) | 25));
            _buf.appendInt(_value, 2);
        } else if (_value <= 0xFFFFFFFF) {
            _buf.append(uint8((_major << 5) | 26));
            _buf.appendInt(_value, 4);
        } else if (_value <= 0xFFFFFFFFFFFFFFFF) {
            _buf.append(uint8((_major << 5) | 27));
            _buf.appendInt(_value, 8);
        }
    }

    function encodeIndefiniteLengthType(Buffer.buffer memory _buf, uint8 _major) private pure {
        _buf.append(uint8((_major << 5) | 31));
    }

    function encodeUInt(Buffer.buffer memory _buf, uint _value) internal pure {
        encodeType(_buf, MAJOR_TYPE_INT, _value);
    }

    function encodeInt(Buffer.buffer memory _buf, int _value) internal pure {
        if (_value >= 0) {
            encodeType(_buf, MAJOR_TYPE_INT, uint(_value));
        } else {
            encodeType(_buf, MAJOR_TYPE_NEGATIVE_INT, uint(-1 - _value));
        }
    }

    function encodeBytes(Buffer.buffer memory _buf, bytes memory _value) internal pure {
        encodeType(_buf, MAJOR_TYPE_BYTES, _value.length);
        _buf.append(_value);
    }

    function encodeString(Buffer.buffer memory _buf, string memory _value) internal pure {
        encodeType(_buf, MAJOR_TYPE_STRING, bytes(_value).length);
        _buf.append(bytes(_value));
    }

    function startArray(Buffer.buffer memory _buf) internal pure {
        encodeIndefiniteLengthType(_buf, MAJOR_TYPE_ARRAY);
    }

    function startMap(Buffer.buffer memory _buf) internal pure {
        encodeIndefiniteLengthType(_buf, MAJOR_TYPE_MAP);
    }

    function endSequence(Buffer.buffer memory _buf) internal pure {
        encodeIndefiniteLengthType(_buf, MAJOR_TYPE_CONTENT_FREE);
    }
}
/*
End solidity-cborutils
*/
contract usingOraclize {

    using CBOR for Buffer.buffer;

    OraclizeI oraclize;
    OraclizeAddrResolverI OAR;

    uint constant day = 60 * 60 * 24;
    uint constant week = 60 * 60 * 24 * 7;
    uint constant month = 60 * 60 * 24 * 30;

    byte constant proofType_NONE = 0x00;
    byte constant proofType_Ledger = 0x30;
    byte constant proofType_Native = 0xF0;
    byte constant proofStorage_IPFS = 0x01;
    byte constant proofType_Android = 0x40;
    byte constant proofType_TLSNotary = 0x10;

    string oraclize_network_name;
    uint8 constant networkID_auto = 0;
    uint8 constant networkID_morden = 2;
    uint8 constant networkID_mainnet = 1;
    uint8 constant networkID_testnet = 2;
    uint8 constant networkID_consensys = 161;

    mapping(bytes32 => bytes32) oraclize_randomDS_args;
    mapping(bytes32 => bool) oraclize_randomDS_sessionKeysHashVerified;

    modifier oraclizeAPI {
        if ((address(OAR) == address(0)) || (getCodeSize(address(OAR)) == 0)) {
            oraclize_setNetwork(networkID_auto);
        }
        if (address(oraclize) != OAR.getAddress()) {
            oraclize = OraclizeI(OAR.getAddress());
        }
        _;
    }

    modifier oraclize_randomDS_proofVerify(bytes32 _queryId, string memory _result, bytes memory _proof) {
        // RandomDS Proof Step 1: The prefix has to match 'LP\x01' (Ledger Proof version 1)
        require((_proof[0] == "L") && (_proof[1] == "P") && (uint8(_proof[2]) == uint8(1)));
        bool proofVerified = oraclize_randomDS_proofVerify__main(_proof, _queryId, bytes(_result), oraclize_getNetworkName());
        require(proofVerified);
        _;
    }

    function oraclize_setNetwork(uint8 _networkID) internal returns (bool _networkSet) {
      _networkID; // NOTE: Silence the warning and remain backwards compatible
      return oraclize_setNetwork();
    }

    function oraclize_setNetworkName(string memory _network_name) internal {
        oraclize_network_name = _network_name;
    }

    function oraclize_getNetworkName() internal view returns (string memory _networkName) {
        return oraclize_network_name;
    }

    function oraclize_setNetwork() internal returns (bool _networkSet) {
        if (getCodeSize(0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed) > 0) { //mainnet
            OAR = OraclizeAddrResolverI(0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed);
            oraclize_setNetworkName("eth_mainnet");
            return true;
        }
        if (getCodeSize(0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1) > 0) { //ropsten testnet
            OAR = OraclizeAddrResolverI(0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1);
            oraclize_setNetworkName("eth_ropsten3");
            return true;
        }
        if (getCodeSize(0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e) > 0) { //kovan testnet
            OAR = OraclizeAddrResolverI(0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e);
            oraclize_setNetworkName("eth_kovan");
            return true;
        }
        if (getCodeSize(0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48) > 0) { //rinkeby testnet
            OAR = OraclizeAddrResolverI(0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48);
            oraclize_setNetworkName("eth_rinkeby");
            return true;
        }
        if (getCodeSize(0xa2998EFD205FB9D4B4963aFb70778D6354ad3A41) > 0) { //goerli testnet
            OAR = OraclizeAddrResolverI(0xa2998EFD205FB9D4B4963aFb70778D6354ad3A41);
            oraclize_setNetworkName("eth_goerli");
            return true;
        }
        if (getCodeSize(0x6f485C8BF6fc43eA212E93BBF8ce046C7f1cb475) > 0) { //ethereum-bridge
            OAR = OraclizeAddrResolverI(0x6f485C8BF6fc43eA212E93BBF8ce046C7f1cb475);
            return true;
        }
        if (getCodeSize(0x20e12A1F859B3FeaE5Fb2A0A32C18F5a65555bBF) > 0) { //ether.camp ide
            OAR = OraclizeAddrResolverI(0x20e12A1F859B3FeaE5Fb2A0A32C18F5a65555bBF);
            return true;
        }
        if (getCodeSize(0x51efaF4c8B3C9AfBD5aB9F4bbC82784Ab6ef8fAA) > 0) { //browser-solidity
            OAR = OraclizeAddrResolverI(0x51efaF4c8B3C9AfBD5aB9F4bbC82784Ab6ef8fAA);
            return true;
        }
        return false;
    }
    /**
     * @dev The following `__callback` functions are just placeholders ideally
     *      meant to be defined in child contract when proofs are used.
     *      The function bodies simply silence compiler warnings.
     */
    function __callback(bytes32 _myid, string memory _result) public {
        __callback(_myid, _result, new bytes(0));
    }

    function __callback(bytes32 _myid, string memory _result, bytes memory _proof) public {
      _myid; _result; _proof;
      oraclize_randomDS_args[bytes32(0)] = bytes32(0);
    }

    function oraclize_getPrice(string memory _datasource) oraclizeAPI internal returns (uint _queryPrice) {
        return oraclize.getPrice(_datasource);
    }

    function oraclize_getPrice(string memory _datasource, uint _gasLimit) oraclizeAPI internal returns (uint _queryPrice) {
        return oraclize.getPrice(_datasource, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string memory _arg) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        return oraclize.query.value(price)(0, _datasource, _arg);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string memory _arg) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        return oraclize.query.value(price)(_timestamp, _datasource, _arg);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string memory _arg, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource,_gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        return oraclize.query_withGasLimit.value(price)(_timestamp, _datasource, _arg, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string memory _arg, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
           return 0; // Unexpectedly high price
        }
        return oraclize.query_withGasLimit.value(price)(0, _datasource, _arg, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string memory _arg1, string memory _arg2) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        return oraclize.query2.value(price)(0, _datasource, _arg1, _arg2);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string memory _arg1, string memory _arg2) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        return oraclize.query2.value(price)(_timestamp, _datasource, _arg1, _arg2);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string memory _arg1, string memory _arg2, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        return oraclize.query2_withGasLimit.value(price)(_timestamp, _datasource, _arg1, _arg2, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string memory _arg1, string memory _arg2, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        return oraclize.query2_withGasLimit.value(price)(0, _datasource, _arg1, _arg2, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string[] memory _argN) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = stra2cbor(_argN);
        return oraclize.queryN.value(price)(0, _datasource, args);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string[] memory _argN) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = stra2cbor(_argN);
        return oraclize.queryN.value(price)(_timestamp, _datasource, args);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string[] memory _argN, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = stra2cbor(_argN);
        return oraclize.queryN_withGasLimit.value(price)(_timestamp, _datasource, args, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string[] memory _argN, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = stra2cbor(_argN);
        return oraclize.queryN_withGasLimit.value(price)(0, _datasource, args, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string[1] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](1);
        dynargs[0] = _args[0];
        return oraclize_query(_datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string[1] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](1);
        dynargs[0] = _args[0];
        return oraclize_query(_timestamp, _datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string[1] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](1);
        dynargs[0] = _args[0];
        return oraclize_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string[1] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](1);
        dynargs[0] = _args[0];
        return oraclize_query(_datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string[2] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return oraclize_query(_datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string[2] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return oraclize_query(_timestamp, _datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string[2] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return oraclize_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string[2] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return oraclize_query(_datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string[3] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return oraclize_query(_datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string[3] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return oraclize_query(_timestamp, _datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string[3] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return oraclize_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string[3] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return oraclize_query(_datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string[4] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return oraclize_query(_datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string[4] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return oraclize_query(_timestamp, _datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string[4] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return oraclize_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string[4] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return oraclize_query(_datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string[5] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return oraclize_query(_datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string[5] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return oraclize_query(_timestamp, _datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, string[5] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return oraclize_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, string[5] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return oraclize_query(_datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, bytes[] memory _argN) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = ba2cbor(_argN);
        return oraclize.queryN.value(price)(0, _datasource, args);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, bytes[] memory _argN) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = ba2cbor(_argN);
        return oraclize.queryN.value(price)(_timestamp, _datasource, args);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, bytes[] memory _argN, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = ba2cbor(_argN);
        return oraclize.queryN_withGasLimit.value(price)(_timestamp, _datasource, args, _gasLimit);
    }

    function oraclize_query(string memory _datasource, bytes[] memory _argN, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        uint price = oraclize.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = ba2cbor(_argN);
        return oraclize.queryN_withGasLimit.value(price)(0, _datasource, args, _gasLimit);
    }

    function oraclize_query(string memory _datasource, bytes[1] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](1);
        dynargs[0] = _args[0];
        return oraclize_query(_datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, bytes[1] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](1);
        dynargs[0] = _args[0];
        return oraclize_query(_timestamp, _datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, bytes[1] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](1);
        dynargs[0] = _args[0];
        return oraclize_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, bytes[1] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](1);
        dynargs[0] = _args[0];
        return oraclize_query(_datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, bytes[2] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return oraclize_query(_datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, bytes[2] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return oraclize_query(_timestamp, _datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, bytes[2] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return oraclize_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, bytes[2] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return oraclize_query(_datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, bytes[3] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return oraclize_query(_datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, bytes[3] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return oraclize_query(_timestamp, _datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, bytes[3] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return oraclize_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, bytes[3] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return oraclize_query(_datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, bytes[4] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return oraclize_query(_datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, bytes[4] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return oraclize_query(_timestamp, _datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, bytes[4] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return oraclize_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, bytes[4] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return oraclize_query(_datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, bytes[5] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return oraclize_query(_datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, bytes[5] memory _args) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return oraclize_query(_timestamp, _datasource, dynargs);
    }

    function oraclize_query(uint _timestamp, string memory _datasource, bytes[5] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return oraclize_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function oraclize_query(string memory _datasource, bytes[5] memory _args, uint _gasLimit) oraclizeAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return oraclize_query(_datasource, dynargs, _gasLimit);
    }

    function oraclize_setProof(byte _proofP) oraclizeAPI internal {
        return oraclize.setProofType(_proofP);
    }


    function oraclize_cbAddress() oraclizeAPI internal returns (address _callbackAddress) {
        return oraclize.cbAddress();
    }

    function getCodeSize(address _addr) view internal returns (uint _size) {
        assembly {
            _size := extcodesize(_addr)
        }
    }

    function oraclize_setCustomGasPrice(uint _gasPrice) oraclizeAPI internal {
        return oraclize.setCustomGasPrice(_gasPrice);
    }

    function oraclize_randomDS_getSessionPubKeyHash() oraclizeAPI internal returns (bytes32 _sessionKeyHash) {
        return oraclize.randomDS_getSessionPubKeyHash();
    }

    function parseAddr(string memory _a) internal pure returns (address _parsedAddress) {
        bytes memory tmp = bytes(_a);
        uint160 iaddr = 0;
        uint160 b1;
        uint160 b2;
        for (uint i = 2; i < 2 + 2 * 20; i += 2) {
            iaddr *= 256;
            b1 = uint160(uint8(tmp[i]));
            b2 = uint160(uint8(tmp[i + 1]));
            if ((b1 >= 97) && (b1 <= 102)) {
                b1 -= 87;
            } else if ((b1 >= 65) && (b1 <= 70)) {
                b1 -= 55;
            } else if ((b1 >= 48) && (b1 <= 57)) {
                b1 -= 48;
            }
            if ((b2 >= 97) && (b2 <= 102)) {
                b2 -= 87;
            } else if ((b2 >= 65) && (b2 <= 70)) {
                b2 -= 55;
            } else if ((b2 >= 48) && (b2 <= 57)) {
                b2 -= 48;
            }
            iaddr += (b1 * 16 + b2);
        }
        return address(iaddr);
    }

    function strCompare(string memory _a, string memory _b) internal pure returns (int _returnCode) {
        bytes memory a = bytes(_a);
        bytes memory b = bytes(_b);
        uint minLength = a.length;
        if (b.length < minLength) {
            minLength = b.length;
        }
        for (uint i = 0; i < minLength; i ++) {
            if (a[i] < b[i]) {
                return -1;
            } else if (a[i] > b[i]) {
                return 1;
            }
        }
        if (a.length < b.length) {
            return -1;
        } else if (a.length > b.length) {
            return 1;
        } else {
            return 0;
        }
    }

    function indexOf(string memory _haystack, string memory _needle) internal pure returns (int _returnCode) {
        bytes memory h = bytes(_haystack);
        bytes memory n = bytes(_needle);
        if (h.length < 1 || n.length < 1 || (n.length > h.length)) {
            return -1;
        } else if (h.length > (2 ** 128 - 1)) {
            return -1;
        } else {
            uint subindex = 0;
            for (uint i = 0; i < h.length; i++) {
                if (h[i] == n[0]) {
                    subindex = 1;
                    while(subindex < n.length && (i + subindex) < h.length && h[i + subindex] == n[subindex]) {
                        subindex++;
                    }
                    if (subindex == n.length) {
                        return int(i);
                    }
                }
            }
            return -1;
        }
    }

    function strConcat(string memory _a, string memory _b) internal pure returns (string memory _concatenatedString) {
        return strConcat(_a, _b, "", "", "");
    }

    function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory _concatenatedString) {
        return strConcat(_a, _b, _c, "", "");
    }

    function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory _concatenatedString) {
        return strConcat(_a, _b, _c, _d, "");
    }

    function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory _concatenatedString) {
        bytes memory _ba = bytes(_a);
        bytes memory _bb = bytes(_b);
        bytes memory _bc = bytes(_c);
        bytes memory _bd = bytes(_d);
        bytes memory _be = bytes(_e);
        string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length);
        bytes memory babcde = bytes(abcde);
        uint k = 0;
        uint i = 0;
        for (i = 0; i < _ba.length; i++) {
            babcde[k++] = _ba[i];
        }
        for (i = 0; i < _bb.length; i++) {
            babcde[k++] = _bb[i];
        }
        for (i = 0; i < _bc.length; i++) {
            babcde[k++] = _bc[i];
        }
        for (i = 0; i < _bd.length; i++) {
            babcde[k++] = _bd[i];
        }
        for (i = 0; i < _be.length; i++) {
            babcde[k++] = _be[i];
        }
        return string(babcde);
    }

    function safeParseInt(string memory _a) internal pure returns (uint _parsedInt) {
        return safeParseInt(_a, 0);
    }

    function safeParseInt(string memory _a, uint _b) internal pure returns (uint _parsedInt) {
        bytes memory bresult = bytes(_a);
        uint mint = 0;
        bool decimals = false;
        for (uint i = 0; i < bresult.length; i++) {
            if ((uint(uint8(bresult[i])) >= 48) && (uint(uint8(bresult[i])) <= 57)) {
                if (decimals) {
                   if (_b == 0) break;
                    else _b--;
                }
                mint *= 10;
                mint += uint(uint8(bresult[i])) - 48;
            } else if (uint(uint8(bresult[i])) == 46) {
                require(!decimals, 'More than one decimal encountered in string!');
                decimals = true;
            } else {
                revert("Non-numeral character encountered in string!");
            }
        }
        if (_b > 0) {
            mint *= 10 ** _b;
        }
        return mint;
    }

    function parseInt(string memory _a) internal pure returns (uint _parsedInt) {
        return parseInt(_a, 0);
    }

    function parseInt(string memory _a, uint _b) internal pure returns (uint _parsedInt) {
        bytes memory bresult = bytes(_a);
        uint mint = 0;
        bool decimals = false;
        for (uint i = 0; i < bresult.length; i++) {
            if ((uint(uint8(bresult[i])) >= 48) && (uint(uint8(bresult[i])) <= 57)) {
                if (decimals) {
                   if (_b == 0) {
                       break;
                   } else {
                       _b--;
                   }
                }
                mint *= 10;
                mint += uint(uint8(bresult[i])) - 48;
            } else if (uint(uint8(bresult[i])) == 46) {
                decimals = true;
            }
        }
        if (_b > 0) {
            mint *= 10 ** _b;
        }
        return mint;
    }

    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len - 1;
        while (_i != 0) {
            bstr[k--] = byte(uint8(48 + _i % 10));
            _i /= 10;
        }
        return string(bstr);
    }

    function stra2cbor(string[] memory _arr) internal pure returns (bytes memory _cborEncoding) {
        safeMemoryCleaner();
        Buffer.buffer memory buf;
        Buffer.init(buf, 1024);
        buf.startArray();
        for (uint i = 0; i < _arr.length; i++) {
            buf.encodeString(_arr[i]);
        }
        buf.endSequence();
        return buf.buf;
    }

    function ba2cbor(bytes[] memory _arr) internal pure returns (bytes memory _cborEncoding) {
        safeMemoryCleaner();
        Buffer.buffer memory buf;
        Buffer.init(buf, 1024);
        buf.startArray();
        for (uint i = 0; i < _arr.length; i++) {
            buf.encodeBytes(_arr[i]);
        }
        buf.endSequence();
        return buf.buf;
    }

    function oraclize_newRandomDSQuery(uint _delay, uint _nbytes, uint _customGasLimit) internal returns (bytes32 _queryId) {
        require((_nbytes > 0) && (_nbytes <= 32));
        _delay *= 10; // Convert from seconds to ledger timer ticks
        bytes memory nbytes = new bytes(1);
        nbytes[0] = byte(uint8(_nbytes));
        bytes memory unonce = new bytes(32);
        bytes memory sessionKeyHash = new bytes(32);
        bytes32 sessionKeyHash_bytes32 = oraclize_randomDS_getSessionPubKeyHash();
        assembly {
            mstore(unonce, 0x20)
            /*
             The following variables can be relaxed.
             Check the relaxed random contract at https://github.com/oraclize/ethereum-examples
             for an idea on how to override and replace commit hash variables.
            */
            mstore(add(unonce, 0x20), xor(blockhash(sub(number, 1)), xor(coinbase, timestamp)))
            mstore(sessionKeyHash, 0x20)
            mstore(add(sessionKeyHash, 0x20), sessionKeyHash_bytes32)
        }
        bytes memory delay = new bytes(32);
        assembly {
            mstore(add(delay, 0x20), _delay)
        }
        bytes memory delay_bytes8 = new bytes(8);
        copyBytes(delay, 24, 8, delay_bytes8, 0);
        bytes[4] memory args = [unonce, nbytes, sessionKeyHash, delay];
        bytes32 queryId = oraclize_query("random", args, _customGasLimit);
        bytes memory delay_bytes8_left = new bytes(8);
        assembly {
            let x := mload(add(delay_bytes8, 0x20))
            mstore8(add(delay_bytes8_left, 0x27), div(x, 0x100000000000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x26), div(x, 0x1000000000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x25), div(x, 0x10000000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x24), div(x, 0x100000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x23), div(x, 0x1000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x22), div(x, 0x10000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x21), div(x, 0x100000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x20), div(x, 0x1000000000000000000000000000000000000000000000000))
        }
        oraclize_randomDS_setCommitment(queryId, keccak256(abi.encodePacked(delay_bytes8_left, args[1], sha256(args[0]), args[2])));
        return queryId;
    }

    function oraclize_randomDS_setCommitment(bytes32 _queryId, bytes32 _commitment) internal {
        oraclize_randomDS_args[_queryId] = _commitment;
    }

    function verifySig(bytes32 _tosignh, bytes memory _dersig, bytes memory _pubkey) internal returns (bool _sigVerified) {
        bool sigok;
        address signer;
        bytes32 sigr;
        bytes32 sigs;
        bytes memory sigr_ = new bytes(32);
        uint offset = 4 + (uint(uint8(_dersig[3])) - 0x20);
        sigr_ = copyBytes(_dersig, offset, 32, sigr_, 0);
        bytes memory sigs_ = new bytes(32);
        offset += 32 + 2;
        sigs_ = copyBytes(_dersig, offset + (uint(uint8(_dersig[offset - 1])) - 0x20), 32, sigs_, 0);
        assembly {
            sigr := mload(add(sigr_, 32))
            sigs := mload(add(sigs_, 32))
        }
        (sigok, signer) = safer_ecrecover(_tosignh, 27, sigr, sigs);
        if (address(uint160(uint256(keccak256(_pubkey)))) == signer) {
            return true;
        } else {
            (sigok, signer) = safer_ecrecover(_tosignh, 28, sigr, sigs);
            return (address(uint160(uint256(keccak256(_pubkey)))) == signer);
        }
    }

    function oraclize_randomDS_proofVerify__sessionKeyValidity(bytes memory _proof, uint _sig2offset) internal returns (bool _proofVerified) {
        bool sigok;
        // Random DS Proof Step 6: Verify the attestation signature, APPKEY1 must sign the sessionKey from the correct ledger app (CODEHASH)
        bytes memory sig2 = new bytes(uint(uint8(_proof[_sig2offset + 1])) + 2);
        copyBytes(_proof, _sig2offset, sig2.length, sig2, 0);
        bytes memory appkey1_pubkey = new bytes(64);
        copyBytes(_proof, 3 + 1, 64, appkey1_pubkey, 0);
        bytes memory tosign2 = new bytes(1 + 65 + 32);
        tosign2[0] = byte(uint8(1)); //role
        copyBytes(_proof, _sig2offset - 65, 65, tosign2, 1);
        bytes memory CODEHASH = hex"fd94fa71bc0ba10d39d464d0d8f465efeef0a2764e3887fcc9df41ded20f505c";
        copyBytes(CODEHASH, 0, 32, tosign2, 1 + 65);
        sigok = verifySig(sha256(tosign2), sig2, appkey1_pubkey);
        if (!sigok) {
            return false;
        }
        // Random DS Proof Step 7: Verify the APPKEY1 provenance (must be signed by Ledger)
        bytes memory LEDGERKEY = hex"7fb956469c5c9b89840d55b43537e66a98dd4811ea0a27224272c2e5622911e8537a2f8e86a46baec82864e98dd01e9ccc2f8bc5dfc9cbe5a91a290498dd96e4";
        bytes memory tosign3 = new bytes(1 + 65);
        tosign3[0] = 0xFE;
        copyBytes(_proof, 3, 65, tosign3, 1);
        bytes memory sig3 = new bytes(uint(uint8(_proof[3 + 65 + 1])) + 2);
        copyBytes(_proof, 3 + 65, sig3.length, sig3, 0);
        sigok = verifySig(sha256(tosign3), sig3, LEDGERKEY);
        return sigok;
    }

    function oraclize_randomDS_proofVerify__returnCode(bytes32 _queryId, string memory _result, bytes memory _proof) internal returns (uint8 _returnCode) {
        // Random DS Proof Step 1: The prefix has to match 'LP\x01' (Ledger Proof version 1)
        if ((_proof[0] != "L") || (_proof[1] != "P") || (uint8(_proof[2]) != uint8(1))) {
            return 1;
        }
        bool proofVerified = oraclize_randomDS_proofVerify__main(_proof, _queryId, bytes(_result), oraclize_getNetworkName());
        if (!proofVerified) {
            return 2;
        }
        return 0;
    }

    function matchBytes32Prefix(bytes32 _content, bytes memory _prefix, uint _nRandomBytes) internal pure returns (bool _matchesPrefix) {
        bool match_ = true;
        require(_prefix.length == _nRandomBytes);
        for (uint256 i = 0; i< _nRandomBytes; i++) {
            if (_content[i] != _prefix[i]) {
                match_ = false;
            }
        }
        return match_;
    }

    function oraclize_randomDS_proofVerify__main(bytes memory _proof, bytes32 _queryId, bytes memory _result, string memory _contextName) internal returns (bool _proofVerified) {
        // Random DS Proof Step 2: The unique keyhash has to match with the sha256 of (context name + _queryId)
        uint ledgerProofLength = 3 + 65 + (uint(uint8(_proof[3 + 65 + 1])) + 2) + 32;
        bytes memory keyhash = new bytes(32);
        copyBytes(_proof, ledgerProofLength, 32, keyhash, 0);
        if (!(keccak256(keyhash) == keccak256(abi.encodePacked(sha256(abi.encodePacked(_contextName, _queryId)))))) {
            return false;
        }
        bytes memory sig1 = new bytes(uint(uint8(_proof[ledgerProofLength + (32 + 8 + 1 + 32) + 1])) + 2);
        copyBytes(_proof, ledgerProofLength + (32 + 8 + 1 + 32), sig1.length, sig1, 0);
        // Random DS Proof Step 3: We assume sig1 is valid (it will be verified during step 5) and we verify if '_result' is the _prefix of sha256(sig1)
        if (!matchBytes32Prefix(sha256(sig1), _result, uint(uint8(_proof[ledgerProofLength + 32 + 8])))) {
            return false;
        }
        // Random DS Proof Step 4: Commitment match verification, keccak256(delay, nbytes, unonce, sessionKeyHash) == commitment in storage.
        // This is to verify that the computed args match with the ones specified in the query.
        bytes memory commitmentSlice1 = new bytes(8 + 1 + 32);
        copyBytes(_proof, ledgerProofLength + 32, 8 + 1 + 32, commitmentSlice1, 0);
        bytes memory sessionPubkey = new bytes(64);
        uint sig2offset = ledgerProofLength + 32 + (8 + 1 + 32) + sig1.length + 65;
        copyBytes(_proof, sig2offset - 64, 64, sessionPubkey, 0);
        bytes32 sessionPubkeyHash = sha256(sessionPubkey);
        if (oraclize_randomDS_args[_queryId] == keccak256(abi.encodePacked(commitmentSlice1, sessionPubkeyHash))) { //unonce, nbytes and sessionKeyHash match
            delete oraclize_randomDS_args[_queryId];
        } else return false;
        // Random DS Proof Step 5: Validity verification for sig1 (keyhash and args signed with the sessionKey)
        bytes memory tosign1 = new bytes(32 + 8 + 1 + 32);
        copyBytes(_proof, ledgerProofLength, 32 + 8 + 1 + 32, tosign1, 0);
        if (!verifySig(sha256(tosign1), sig1, sessionPubkey)) {
            return false;
        }
        // Verify if sessionPubkeyHash was verified already, if not.. let's do it!
        if (!oraclize_randomDS_sessionKeysHashVerified[sessionPubkeyHash]) {
            oraclize_randomDS_sessionKeysHashVerified[sessionPubkeyHash] = oraclize_randomDS_proofVerify__sessionKeyValidity(_proof, sig2offset);
        }
        return oraclize_randomDS_sessionKeysHashVerified[sessionPubkeyHash];
    }
    /*
     The following function has been written by Alex Beregszaszi, use it under the terms of the MIT license
    */
    function copyBytes(bytes memory _from, uint _fromOffset, uint _length, bytes memory _to, uint _toOffset) internal pure returns (bytes memory _copiedBytes) {
        uint minLength = _length + _toOffset;
        require(_to.length >= minLength); // Buffer too small. Should be a better way?
        uint i = 32 + _fromOffset; // NOTE: the offset 32 is added to skip the `size` field of both bytes variables
        uint j = 32 + _toOffset;
        while (i < (32 + _fromOffset + _length)) {
            assembly {
                let tmp := mload(add(_from, i))
                mstore(add(_to, j), tmp)
            }
            i += 32;
            j += 32;
        }
        return _to;
    }
    /*
     The following function has been written by Alex Beregszaszi, use it under the terms of the MIT license
     Duplicate Solidity's ecrecover, but catching the CALL return value
    */
    function safer_ecrecover(bytes32 _hash, uint8 _v, bytes32 _r, bytes32 _s) internal returns (bool _success, address _recoveredAddress) {
        /*
         We do our own memory management here. Solidity uses memory offset
         0x40 to store the current end of memory. We write past it (as
         writes are memory extensions), but don't update the offset so
         Solidity will reuse it. The memory used here is only needed for
         this context.
         FIXME: inline assembly can't access return values
        */
        bool ret;
        address addr;
        assembly {
            let size := mload(0x40)
            mstore(size, _hash)
            mstore(add(size, 32), _v)
            mstore(add(size, 64), _r)
            mstore(add(size, 96), _s)
            ret := call(3000, 1, 0, size, 128, size, 32) // NOTE: we can reuse the request memory because we deal with the return code.
            addr := mload(size)
        }
        return (ret, addr);
    }
    /*
     The following function has been written by Alex Beregszaszi, use it under the terms of the MIT license
    */
    function ecrecovery(bytes32 _hash, bytes memory _sig) internal returns (bool _success, address _recoveredAddress) {
        bytes32 r;
        bytes32 s;
        uint8 v;
        if (_sig.length != 65) {
            return (false, address(0));
        }
        /*
         The signature format is a compact form of:
           {bytes32 r}{bytes32 s}{uint8 v}
         Compact means, uint8 is not padded to 32 bytes.
        */
        assembly {
            r := mload(add(_sig, 32))
            s := mload(add(_sig, 64))
            /*
             Here we are loading the last 32 bytes. We exploit the fact that
             'mload' will pad with zeroes if we overread.
             There is no 'mload8' to do this, but that would be nicer.
            */
            v := byte(0, mload(add(_sig, 96)))
            /*
              Alternative solution:
              'byte' is not working due to the Solidity parser, so lets
              use the second best option, 'and'
              v := and(mload(add(_sig, 65)), 255)
            */
        }
        /*
         albeit non-transactional signatures are not specified by the YP, one would expect it
         to match the YP range of [27, 28]
         geth uses [0, 1] and some clients have followed. This might change, see:
         https://github.com/ethereum/go-ethereum/issues/2053
        */
        if (v < 27) {
            v += 27;
        }
        if (v != 27 && v != 28) {
            return (false, address(0));
        }
        return safer_ecrecover(_hash, v, r, s);
    }

    function safeMemoryCleaner() internal pure {
        assembly {
            let fmem := mload(0x40)
            codecopy(fmem, codesize, sub(msize, fmem))
        }
    }
}

contract OkschainBank is usingOraclize, Ownable {
    using SafeMath for uint256;

    uint256 constant public TIME_AFTER_12_MONTHS = 1613779200; // 20.02.2021

    OkschainToken public token;

    struct Queries {
        address payable seller;
        uint256 tokens;
        uint256 time;
    }
    mapping(bytes32 => Queries) public queries;
    mapping(address => uint256) public tokens_for_sell;

    function () external payable {}

    function sell_tokens() external {
        require(tokens_for_sell[msg.sender] > 0);
        uint256 tokens = tokens_for_sell[msg.sender];
        tokens_for_sell[msg.sender] = 0;
        get_ethusd_price(msg.sender, tokens);
    }

    function set_token_address(address token_address) external onlyOwner {
        token = OkschainToken(token_address);
    }

    function send_ether(
        address payable recipient,
        uint256 tokens
    )
        public
        returns (bool)
    {
        require(msg.sender == address(token));
        get_ethusd_price(recipient, tokens);
        return true;
    }

    function __callback(
        bytes32 _myid,
        string memory _result
    )
        public
    {
        require(msg.sender == oraclize_cbAddress());
        uint256 ethusd_price = string_to_uint(_result);
        uint256 eth_amount = get_eth_value(
            queries[_myid].tokens,
            ethusd_price,
            queries[_myid].time
        );
        if (eth_amount > 0 && address(this).balance >= eth_amount) {
            queries[_myid].seller.transfer(eth_amount);
        } else {
            tokens_for_sell[queries[_myid].seller] =
                tokens_for_sell[queries[_myid].seller].add(
                    queries[_myid].tokens
                );
        }
    }

    function get_ethusd_price
    (
        address payable recipient,
        uint256 tokens
    )
        private
        returns (bool)
    {
        require(address(this).balance > oraclize_getPrice("URL"));
        bytes32 query_id = oraclize_query(
            "URL",
            "json(https://api.pro.coinbase.com/products/ETH-USD/ticker).price"
        );
        queries[query_id].seller = recipient;
        queries[query_id].tokens = tokens;
        queries[query_id].time = block.timestamp;
    }

    function get_eth_value
    (
        uint256 tokens,
        uint256 ethusd_price,
        uint256 time
    )
        private
        pure
        returns (uint256 sell_eth_price)
    {
        uint256 usd_buy_amount = tokens.mul(3).div(10 ** 2);
        uint256 sell_usd_price;
        if (time < TIME_AFTER_12_MONTHS) {
            sell_usd_price = usd_buy_amount.div(2).add(usd_buy_amount);
        } else {
            sell_usd_price = usd_buy_amount.mul(2);
        }
        sell_eth_price = sell_usd_price.div(ethusd_price);
    }

    function string_to_uint
    (
        string memory s
    )
        private
        pure
        returns (uint256 result)
    {
        bytes memory b = bytes(s);
        uint256 i;
        result = 0;
        for (i = 0; i < b.length; i++) {
            uint256 c = uint256(uint8(b[i]));
            if (c >= 48 && c <= 57) {
                result = result * 10 + (c - 48);
            } else {
                break;
            }
        }
    }
}

contract OkschainToken is ERC20Burnable, ERC20Detailed, Ownable {
    using SafeMath for uint256;

    uint256 constant public UNLOCK_TIME = 1600560000; // 20.09.2020
    uint256 constant public STOP_ALL_LOCKS_TIME = 1764547200; // 01.12.2025
    uint256 constant public STOP_SELL_TIME = 1764547200; // 01.12.2025

    uint256 public team_tokens;
    uint256 public marketing_tokens;
    uint256 public reserve_tokens;
    uint256 public seed_tokens;
    uint256 public private_tokens;
    uint256 public public_tokens;

    address public tokens_holder;
    address public team;
    address public marketing;
    address public reserve;

    OkschainBank public bank;

    mapping(address => uint256) public seed_balance;
    mapping(address => uint256) public private_balance;
    mapping(address => uint256) public seed_bonus;
    mapping(address => uint256) public private_bonus;
    mapping(address => bool) public seed_locked;
    mapping(address => bool) public private_locked;
    mapping(address => uint256) public tokens_for_sell;

    modifier only_tokens_holder() {
        require(
            msg.sender == tokens_holder,
            "Sender must be a tokens holder"
        );
        _;
    }

    modifier after_unlock_time() {
        require(
            block.timestamp >= UNLOCK_TIME,
            "The time must be longer than the unlock time"
        );
        _;
    }

    constructor(
        address _tokens_holder,
        address _team,
        address _marketing,
        address _reserve
    )
        public
        ERC20Detailed("Okschain Token", "OKS", 18)
    {
        tokens_holder = _tokens_holder;
        seed_tokens = 5580000000 * (10 ** uint256(decimals()));
        private_tokens = 7130000000 * (10 ** uint256(decimals()));
        public_tokens = 1240000000 * (10 ** uint256(decimals()));
        _mint(tokens_holder, seed_tokens + private_tokens + public_tokens);
        team = _team;
        team_tokens = 1240000000 * (10 ** uint256(decimals()));
        _mint(team, team_tokens);
        marketing = _marketing;
        marketing_tokens = 310000000 * (10 ** uint256(decimals()));
        _mint(marketing, marketing_tokens);
        reserve = _reserve;
        reserve_tokens = 1860000000 * (10 ** uint256(decimals()));
        _mint(reserve, reserve_tokens);
    }

    function transfer_from_bank(
        address recipient,
        uint256 amount
    )
        external
        onlyOwner
    {
        super._transfer(address(bank), recipient, amount);
    }

    function unlock_seed() external after_unlock_time {
        require(
            seed_locked[msg.sender],
            "Tokens must be locked"
        );
        require(
            block.timestamp < STOP_SELL_TIME,
            "The time must be less than the stop sell time"
        );
        seed_locked[msg.sender] = false;
        tokens_for_sell[msg.sender] = tokens_for_sell[msg.sender].add(
            seed_balance[msg.sender].sub(
                get_available_seed_balance(msg.sender)
            )
        );
        seed_balance[msg.sender] = 0;
        tokens_for_sell[msg.sender] = tokens_for_sell[msg.sender].add(
            seed_bonus[msg.sender].sub(
                get_available_seed_bonus(msg.sender)
            )
        );
        seed_bonus[msg.sender] = 0;
    }

    function unlock_private() external after_unlock_time {
        require(
            private_locked[msg.sender],
            "Tokens must be locked"
        );
        require(
            block.timestamp < STOP_SELL_TIME,
            "The time must be less than the stop sell time"
        );
        private_locked[msg.sender] = false;
        tokens_for_sell[msg.sender] = tokens_for_sell[msg.sender].add(
            private_balance[msg.sender].sub(
                get_available_private_balance(msg.sender)
            )
        );
        private_balance[msg.sender] = 0;
        tokens_for_sell[msg.sender] = tokens_for_sell[msg.sender].add(
            private_bonus[msg.sender].sub(
                get_available_private_bonus(msg.sender)
            )
        );
        private_bonus[msg.sender] = 0;
    }

    function burn_seed_tokens() external only_tokens_holder {
        _burn(tokens_holder, seed_tokens);
        seed_tokens = 0;
    }

    function burn_private_tokens() external only_tokens_holder {
        _burn(tokens_holder, private_tokens);
        private_tokens = 0;
    }

    function burn_public_tokens() external only_tokens_holder {
        _burn(tokens_holder, public_tokens);
        public_tokens = 0;
    }

    function set_bank(address payable bank_address) external onlyOwner {
        bank = OkschainBank(bank_address);
    }

    function transfer(
        address recipient,
        uint256 amount
    )
        public
        returns (bool)
    {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    )
        public
        returns (bool)
    {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            msg.sender,
            allowance(sender, msg.sender).sub(amount)
        );
        return true;
    }

    function send_seed_tokens(
        address recipient,
        uint256 amount
    )
        public
        only_tokens_holder
        returns (bool)
    {
        require(
            seed_tokens > 0,
            "Tokens are over or sale is ended"
        );
        seed_balance[recipient] = seed_balance[recipient].add(amount);
        uint256 bonus_amount = amount.mul(2000).div(10000);
        seed_bonus[recipient] = seed_bonus[recipient].add(bonus_amount);
        seed_locked[recipient] = true;
        seed_tokens = seed_tokens.sub(amount).sub(bonus_amount);
        return super.transfer(recipient, amount.add(bonus_amount));
    }

    function send_private_tokens(
        address recipient,
        uint256 amount
    )
        public
        only_tokens_holder
        returns (bool)
    {
        require(
            private_tokens > 0,
            "Tokens are over or sale is ended"
        );
        private_balance[recipient] = private_balance[recipient].add(amount);
        uint256 bonus_amount = amount.mul(1496).div(10000);
        private_bonus[recipient] = private_bonus[recipient].add(bonus_amount);
        private_locked[recipient] = true;
        private_tokens = private_tokens.sub(amount).sub(bonus_amount);
        return super.transfer(recipient, amount.add(bonus_amount));
    }

    function send_public_tokens(
        address recipient,
        uint256 amount
    )
        public
        only_tokens_holder
        returns (bool)
    {
        require(
            public_tokens > 0,
            "Tokens are over or sale is ended"
        );
        public_tokens = public_tokens.sub(amount);
        return super.transfer(recipient, amount);
    }

    function get_available_balance(
        address sender
    )
        public
        view
        returns (uint256)
    {
        uint256 available_balance = balanceOf(sender);
        if (sender == team) {
            available_balance = available_balance.sub(
                team_tokens.sub(
                    get_available_team_balance()
                )
            );
        }
        if (sender == marketing) {
            available_balance = available_balance.sub(
                marketing_tokens.sub(
                    get_available_marketing_balance()
                )
            );
        }
        if (sender == reserve) {
            available_balance = available_balance.sub(
                    reserve_tokens.sub(
                        get_available_reserve_balance()
                    )
            );
        }
        if (seed_locked[sender]) {
            available_balance = available_balance.sub(
                seed_balance[sender].sub(
                    get_available_seed_balance(sender)
                )
            );
            available_balance = available_balance.sub(
                seed_bonus[sender].sub(
                    get_available_seed_bonus(sender)
                )
            );
        }
        if (private_locked[sender]) {
            available_balance = available_balance.sub(
                private_balance[sender].sub(
                    get_available_private_balance(sender)
                )
            );
            available_balance = available_balance.sub(
                private_bonus[sender].sub(
                    get_available_private_bonus(sender)
                )
            );
        }
        available_balance = available_balance.sub(tokens_for_sell[sender]);
        return (available_balance);
    }

    function get_available_team_balance()
        public
        view
        returns (uint256)
    {
        if (block.timestamp < 1605830400) { // 20.11.2020
            return 0;
        } else if (block.timestamp < 1614556800) { // 01.03.2021
            return team_tokens.mul(10).div(100);
        } else if (block.timestamp < 1646092800) { // 01.03.2022
            return team_tokens.mul(20).div(100);
        } else if (block.timestamp < 1669852800) { // 01.12.2022
            return team_tokens.mul(30).div(100);
        } else if (block.timestamp < 1677628800) { // 01.03.2023
            return team_tokens.mul(35).div(100);
        } else if (block.timestamp < 1690848000) { // 01.08.2023
            return team_tokens.mul(40).div(100);
        } else if (block.timestamp < 1706745600) { // 01.02.2024
            return team_tokens.mul(45).div(100);
        } else if (block.timestamp < 1711929600) { // 01.04.2024
            return team_tokens.mul(50).div(100);
        } else if (block.timestamp < 1722470400) { // 01.08.2024
            return team_tokens.mul(55).div(100);
        } else if (block.timestamp < 1727740800) { // 01.10.2024
            return team_tokens.mul(60).div(100);
        } else if (block.timestamp < 1733011200) { // 01.12.2024
            return team_tokens.mul(65).div(100);
        } else if (block.timestamp < 1740787200) { // 01.03.2025
            return team_tokens.mul(70).div(100);
        } else if (block.timestamp < 1751328000) { // 01.07.2025
            return team_tokens.mul(80).div(100);
        } else if (block.timestamp < 1764547200) { // 01.12.2025
            return team_tokens.mul(90).div(100);
        } else {
            return team_tokens;
        }
    }

    function get_available_marketing_balance()
        public
        view
        returns (uint256)
    {
        if (block.timestamp < 1603152000) { // 20.10.2020
            return 0;
        } else if (block.timestamp < 1614556800) { // 01.03.2021
            return marketing_tokens.mul(10).div(100);
        } else if (block.timestamp < 1648771200) { // 01.04.2022
            return marketing_tokens.mul(20).div(100);
        } else if (block.timestamp < 1656633600) { // 01.07.2022
            return marketing_tokens.mul(30).div(100);
        } else if (block.timestamp < 1669852800) { // 01.12.2022
            return marketing_tokens.mul(35).div(100);
        } else if (block.timestamp < 1682899200) { // 01.05.2023
            return marketing_tokens.mul(40).div(100);
        } else if (block.timestamp < 1690848000) { // 01.08.2023
            return marketing_tokens.mul(50).div(100);
        } else if (block.timestamp < 1711929600) { // 01.04.2024
            return marketing_tokens.mul(55).div(100);
        } else if (block.timestamp < 1722470400) { // 01.08.2024
            return marketing_tokens.mul(60).div(100);
        } else if (block.timestamp < 1733011200) { // 01.12.2024
            return marketing_tokens.mul(65).div(100);
        } else if (block.timestamp < 1743465600) { // 01.04.2025
            return marketing_tokens.mul(70).div(100);
        } else if (block.timestamp < 1754006400) { // 01.08.2025
            return marketing_tokens.mul(80).div(100);
        } else if (block.timestamp < 1764547200) { // 01.12.2025
            return marketing_tokens.mul(90).div(100);
        } else {
            return marketing_tokens;
        }
    }

    function get_available_reserve_balance()
        public
        view
        returns (uint256)
    {
        if (block.timestamp < 1608422400) { // 20.12.2020
            return 0;
        } else if (block.timestamp < 1619827200) { // 01.05.2021
            return reserve_tokens.mul(10).div(100);
        } else if (block.timestamp < 1630454400) { // 01.09.2021
            return reserve_tokens.mul(15).div(100);
        } else if (block.timestamp < 1654041600) { // 01.06.2022
            return reserve_tokens.mul(20).div(100);
        } else if (block.timestamp < 1664582400) { // 01.10.2022
            return reserve_tokens.mul(25).div(100);
        } else if (block.timestamp < 1682899200) { // 01.05.2023
            return reserve_tokens.mul(30).div(100);
        } else if (block.timestamp < 1690848000) { // 01.08.2023
            return reserve_tokens.mul(40).div(100);
        } else if (block.timestamp < 1714521600) { // 01.05.2024
            return reserve_tokens.mul(45).div(100);
        } else if (block.timestamp < 1719792000) { // 01.07.2024
            return reserve_tokens.mul(55).div(100);
        } else if (block.timestamp < 1727740800) { // 01.10.2024
            return reserve_tokens.mul(60).div(100);
        } else if (block.timestamp < 1733011200) { // 01.12.2024
            return reserve_tokens.mul(65).div(100);
        } else if (block.timestamp < 1746057600) { // 01.05.2025
            return reserve_tokens.mul(70).div(100);
        } else if (block.timestamp < 1756684800) { // 01.09.2025
            return reserve_tokens.mul(80).div(100);
        } else if (block.timestamp < 1764547200) { // 01.12.2025
            return reserve_tokens.mul(90).div(100);
        } else {
            return reserve_tokens;
        }
    }

    function get_available_seed_balance(
        address sender
    )
        public
        view
        returns (uint256)
    {
        if (block.timestamp < 1592611200) { // 20.06.2020
            return 0;
        } else if (block.timestamp < 1597881600) { // 20.08.2020
            return seed_balance[sender].mul(20).div(100);
        } else if (block.timestamp < 1608422400) { // 20.12.2020
            return seed_balance[sender].mul(30).div(100);
        } else if (block.timestamp < 1617235200) { // 01.04.2021
            return seed_balance[sender].mul(50).div(100);
        } else if (block.timestamp < 1625097600) { // 01.07.2021
            return seed_balance[sender].mul(60).div(100);
        } else if (block.timestamp < 1633046400) { // 01.10.2021
            return seed_balance[sender].mul(70).div(100);
        } else if (block.timestamp < 1638316800) { // 01.12.2021
            return seed_balance[sender].mul(80).div(100);
        } else if (block.timestamp < 1646092800) { // 01.03.2022
            return seed_balance[sender].mul(90).div(100);
        } else if (block.timestamp < 1654041600) { // 01.06.2022
            return seed_balance[sender].mul(95).div(100);
        } else {
            return seed_balance[sender];
        }
    }

    function get_available_private_balance(
        address sender
    )
        public
        view
        returns (uint256)
    {
        if (block.timestamp < 1592611200) { // 20.06.2020
            return 0;
        } else if (block.timestamp < 1580515200) { // 20.07.2020
            return private_balance[sender].mul(15).div(100);
        } else if (block.timestamp < 1603152000) { // 20.10.2020
            return private_balance[sender].mul(25).div(100);
        } else if (block.timestamp < 1608422400) { // 20.12.2020
            return private_balance[sender].mul(35).div(100);
        } else if (block.timestamp < 1617235200) { // 01.04.2021
            return private_balance[sender].mul(45).div(100);
        } else if (block.timestamp < 1619827200) { // 01.05.2021
            return private_balance[sender].mul(55).div(100);
        } else if (block.timestamp < 1627776000) { // 01.08.2021
            return private_balance[sender].mul(65).div(100);
        } else if (block.timestamp < 1638316800) { // 01.12.2021
            return private_balance[sender].mul(75).div(100);
        } else if (block.timestamp < 1646092800) { // 01.03.2022
            return private_balance[sender].mul(85).div(100);
        } else if (block.timestamp < 1656633600) { // 01.07.2022
            return private_balance[sender].mul(90).div(100);
        } else if (block.timestamp < 1664582400) { // 01.10.2022
            return private_balance[sender].mul(95).div(100);
        } else {
            return private_balance[sender];
        }
    }

    function get_available_seed_bonus(
        address sender
    )
        public
        view
        returns (uint256)
    {
        uint256 available_bonus = seed_bonus[sender].div(9);
        if (block.timestamp < 1592611200) { // 20.06.2020
            return 0;
        } else if (block.timestamp < 1597881600) { // 20.08.2020
            return available_bonus;
        } else if (block.timestamp < 1608422400) { // 20.12.2020
            return available_bonus.mul(2);
        } else if (block.timestamp < 1617235200) { // 01.04.2021
            return available_bonus.mul(3);
        } else if (block.timestamp < 1625097600) { // 01.07.2021
            return available_bonus.mul(4);
        } else if (block.timestamp < 1633046400) { // 01.10.2021
            return available_bonus.mul(5);
        } else if (block.timestamp < 1638316800) { // 01.12.2021
            return available_bonus.mul(6);
        } else if (block.timestamp < 1646092800) { // 01.03.2022
            return available_bonus.mul(7);
        } else if (block.timestamp < 1654041600) { // 01.06.2022
            return available_bonus.mul(8);
        } else {
            return seed_bonus[sender];
        }
    }

    function get_available_private_bonus(
        address sender
    )
        public
        view
        returns (uint256)
    {
        uint256 available_bonus = private_bonus[sender].div(11);
        if (block.timestamp < 1592611200) { // 20.06.2020
            return 0;
        } else if (block.timestamp < 1580515200) { // 20.07.2020
            return available_bonus;
        } else if (block.timestamp < 1603152000) { // 20.10.2020
            return available_bonus.mul(2);
        } else if (block.timestamp < 1608422400) { // 20.12.2020
            return available_bonus.mul(3);
        } else if (block.timestamp < 1617235200) { // 01.04.2021
            return available_bonus.mul(4);
        } else if (block.timestamp < 1619827200) { // 01.05.2021
            return available_bonus.mul(5);
        } else if (block.timestamp < 1627776000) { // 01.08.2021
            return available_bonus.mul(6);
        } else if (block.timestamp < 1638316800) { // 01.12.2021
            return available_bonus.mul(7);
        } else if (block.timestamp < 1646092800) { // 01.03.2022
            return available_bonus.mul(8);
        } else if (block.timestamp < 1656633600) { // 01.07.2022
            return available_bonus.mul(9);
        } else if (block.timestamp < 1664582400) { // 01.10.2022
            return available_bonus.mul(10);
        } else {
            return private_bonus[sender];
        }
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    )
        internal
    {
        if (block.timestamp < STOP_ALL_LOCKS_TIME) {
            if (recipient == address(bank)) {
                require(
                    tokens_for_sell[sender] >= amount,
                    "Tokens must be unlocked"
                );
                require(
                    block.timestamp < STOP_SELL_TIME,
                    "The time must be less than the stop sell time"
                );
                require(
                    bank.send_ether(
                        address(uint160(sender)),
                        amount
                    ),
                    "Bank problem"
                );
                tokens_for_sell[sender] = tokens_for_sell[sender].sub(
                    amount
                );
            } else {
                require(
                    amount <= get_available_balance(sender),
                    "No available balance"
                );
            }
        }
        super._transfer(sender, recipient, amount);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"seed_tokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"private_tokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"get_available_team_balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"seed_balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"burn_public_tokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"private_balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"marketing","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unlock_seed","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"burn_seed_tokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"UNLOCK_TIME","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"sender","type":"address"}],"name":"get_available_private_balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"send_public_tokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"STOP_ALL_LOCKS_TIME","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"seed_bonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"public_tokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"reserve_tokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"sender","type":"address"}],"name":"get_available_private_bonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bank","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"seed_locked","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"sender","type":"address"}],"name":"get_available_seed_balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"get_available_marketing_balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"send_seed_tokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"STOP_SELL_TIME","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"team","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unlock_private","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"sender","type":"address"}],"name":"get_available_seed_bonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"marketing_tokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"sender","type":"address"}],"name":"get_available_balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer_from_bank","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokens_holder","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"tokens_for_sell","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"private_locked","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"get_available_reserve_balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"reserve","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"team_tokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"bank_address","type":"address"}],"name":"set_bank","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"burn_private_tokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"private_bonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"send_private_tokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_tokens_holder","type":"address"},{"name":"_team","type":"address"},{"name":"_marketing","type":"address"},{"name":"_reserve","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b5060405160808062003d1f833981018060405260808110156200003357600080fd5b50805160208083015160408085015160609095015181518083018352600e81527f4f6b73636861696e20546f6b656e000000000000000000000000000000000000818601908152835180850190945260038085527f4f4b5300000000000000000000000000000000000000000000000000000000009685019690965281519697949694959294919392601292620000cb929062000508565b508151620000e190600490602085019062000508565b506005805460ff191660ff9290921691909117905550600090506200010e6401000000006200035d810204565b6005805461010060a860020a031916610100600160a060020a03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c8054600160a060020a031916600160a060020a0386161790556200019264010000000062000362810204565b60ff16600a0a64014c980b0002600955620001b564010000000062000362810204565b60ff16600a0a6401a8fb2a8002600a81905550620001e162000362640100000000026401000000009004565b60ff16600a0a6349e8e60002600b819055506200022d600c60009054906101000a9004600160a060020a0316600b54600a5460095401016200036b640100000000026401000000009004565b600d8054600160a060020a031916600160a060020a0385161790556200025b64010000000062000362810204565b60ff16600a0a6349e8e600026006819055600d546200028f91600160a060020a03909116906401000000006200036b810204565b600e8054600160a060020a031916600160a060020a038416179055620002bd64010000000062000362810204565b60ff16600a0a63127a3980026007819055600e54620002f191600160a060020a03909116906401000000006200036b810204565b600f8054600160a060020a031916600160a060020a0383161790556200031f64010000000062000362810204565b60ff16600a0a636edd5900026008819055600f546200035391600160a060020a03909116906401000000006200036b810204565b50505050620005aa565b335b90565b60055460ff1690565b600160a060020a0382161515620003e357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254620004009082640100000000620031996200048c82021704565b600255600160a060020a038216600090815260208190526040902054620004369082640100000000620031996200048c82021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200050157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200054b57805160ff19168380011785556200057b565b828001600101855582156200057b579182015b828111156200057b5782518255916020019190600101906200055e565b50620005899291506200058d565b5090565b6200035f91905b8082111562000589576000815560010162000594565b61376580620005ba6000396000f3fe60806040526004361061029d5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630253040181146102a2578063027c4ed2146102c95780630655949c146102de57806306fdde03146102f3578063095ea7b31461037d5780630aa1d3f3146103ca57806312890153146103fd57806318160ddd146104145780631febcfee1461042957806323b872dd1461045c5780632d3e474a1461049f5780632f8b4b7d146104d0578063313ce567146104e55780633918e59f146105105780633950935114610525578063413198311461055e57806342966c68146105735780634f98fb101461059d5780635406006d146105d057806357fbc940146106095780636c1030671461061e5780636c420036146106515780636f4a48e21461066657806370a082311461067b578063715018a6146106ae57806372918a78146106c357806376cdb03b146106f65780637766fe6a1461070b5780637891df9a1461073e57806379cc67901461077157806382cf5064146107aa57806385cbc926146107bf57806385cde77f1461060957806385f2aef2146107f857806389807b6e1461080d5780638b74730c146108225780638c800d17146108555780638da5cb5b1461086a5780638e8a8d611461087f5780638f32d59b146108b257806393c2c682146108c757806395d89b4114610900578063a457c2d714610915578063a9059cbb1461094e578063ab3e21ca14610987578063b22683fa1461099c578063bc109f9c146109cf578063bd7e700714610a02578063cd3293de14610a17578063d973d49014610a2c578063dacf64e214610a41578063dd62ed3e14610a74578063e023620414610aaf578063eba5d84f14610ac4578063f2fde38b14610af7578063ff6e149214610b2a575b600080fd5b3480156102ae57600080fd5b506102b7610b63565b60408051918252519081900360200190f35b3480156102d557600080fd5b506102b7610b69565b3480156102ea57600080fd5b506102b7610b6f565b3480156102ff57600080fd5b50610308610d9b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561034257818101518382015260200161032a565b50505050905090810190601f16801561036f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038957600080fd5b506103b6600480360360408110156103a057600080fd5b50600160a060020a038135169060200135610e31565b604080519115158252519081900360200190f35b3480156103d657600080fd5b506102b7600480360360208110156103ed57600080fd5b5035600160a060020a0316610e4f565b34801561040957600080fd5b50610412610e61565b005b34801561042057600080fd5b506102b7610ed1565b34801561043557600080fd5b506102b76004803603602081101561044c57600080fd5b5035600160a060020a0316610ed7565b34801561046857600080fd5b506103b66004803603606081101561047f57600080fd5b50600160a060020a03813581169160208101359091169060400135610ee9565b3480156104ab57600080fd5b506104b4610f24565b60408051600160a060020a039092168252519081900360200190f35b3480156104dc57600080fd5b50610412610f33565b3480156104f157600080fd5b506104fa61116d565b6040805160ff9092168252519081900360200190f35b34801561051c57600080fd5b50610412611176565b34801561053157600080fd5b506103b66004803603604081101561054857600080fd5b50600160a060020a0381351690602001356111e6565b34801561056a57600080fd5b506102b761123a565b34801561057f57600080fd5b506104126004803603602081101561059657600080fd5b5035611242565b3480156105a957600080fd5b506102b7600480360360208110156105c057600080fd5b5035600160a060020a0316611256565b3480156105dc57600080fd5b506103b6600480360360408110156105f357600080fd5b50600160a060020a0381351690602001356114f5565b34801561061557600080fd5b506102b76115c9565b34801561062a57600080fd5b506102b76004803603602081101561064157600080fd5b5035600160a060020a03166115d1565b34801561065d57600080fd5b506102b76115e3565b34801561067257600080fd5b506102b76115e9565b34801561068757600080fd5b506102b76004803603602081101561069e57600080fd5b5035600160a060020a03166115ef565b3480156106ba57600080fd5b5061041261160a565b3480156106cf57600080fd5b506102b7600480360360208110156106e657600080fd5b5035600160a060020a03166116b3565b34801561070257600080fd5b506104b4611837565b34801561071757600080fd5b506103b66004803603602081101561072e57600080fd5b5035600160a060020a0316611846565b34801561074a57600080fd5b506102b76004803603602081101561076157600080fd5b5035600160a060020a031661185b565b34801561077d57600080fd5b506104126004803603604081101561079457600080fd5b50600160a060020a038135169060200135611a78565b3480156107b657600080fd5b506102b7611a86565b3480156107cb57600080fd5b506103b6600480360360408110156107e257600080fd5b50600160a060020a038135169060200135611c79565b34801561080457600080fd5b506104b4611e1b565b34801561081957600080fd5b50610412611e2a565b34801561082e57600080fd5b506102b76004803603602081101561084557600080fd5b5035600160a060020a0316612048565b34801561086157600080fd5b506102b761218a565b34801561087657600080fd5b506104b4612190565b34801561088b57600080fd5b506102b7600480360360208110156108a257600080fd5b5035600160a060020a03166121a4565b3480156108be57600080fd5b506103b66123a8565b3480156108d357600080fd5b50610412600480360360408110156108ea57600080fd5b50600160a060020a0381351690602001356123d3565b34801561090c57600080fd5b50610308612436565b34801561092157600080fd5b506103b66004803603604081101561093857600080fd5b50600160a060020a038135169060200135612497565b34801561095a57600080fd5b506103b66004803603604081101561097157600080fd5b50600160a060020a038135169060200135612549565b34801561099357600080fd5b506104b4612556565b3480156109a857600080fd5b506102b7600480360360208110156109bf57600080fd5b5035600160a060020a0316612565565b3480156109db57600080fd5b506103b6600480360360208110156109f257600080fd5b5035600160a060020a0316612577565b348015610a0e57600080fd5b506102b761258c565b348015610a2357600080fd5b506104b46127a6565b348015610a3857600080fd5b506102b76127b5565b348015610a4d57600080fd5b5061041260048036036020811015610a6457600080fd5b5035600160a060020a03166127bb565b348015610a8057600080fd5b506102b760048036036040811015610a9757600080fd5b50600160a060020a0381358116916020013516612836565b348015610abb57600080fd5b50610412612861565b348015610ad057600080fd5b506102b760048036036020811015610ae757600080fd5b5035600160a060020a03166128d1565b348015610b0357600080fd5b5061041260048036036020811015610b1a57600080fd5b5035600160a060020a03166128e3565b348015610b3657600080fd5b506103b660048036036040811015610b4d57600080fd5b50600160a060020a038135169060200135612938565b60095481565b600a5481565b6000635fb70700421015610b8557506000610d98565b63603c2e80421015610bbf57610bb86064610bac600a600654612acd90919063ffffffff16565b9063ffffffff612b6916565b9050610d98565b63621d6200421015610be657610bb86064610bac6014600654612acd90919063ffffffff16565b636387ee80421015610c0d57610bb86064610bac601e600654612acd90919063ffffffff16565b6363fe9580421015610c3457610bb86064610bac6023600654612acd90919063ffffffff16565b6364c84b00421015610c5b57610bb86064610bac6028600654612acd90919063ffffffff16565b6365badf00421015610c8257610bb86064610bac602d600654612acd90919063ffffffff16565b636609f900421015610ca957610bb86064610bac6032600654612acd90919063ffffffff16565b6366aad000421015610cd057610bb86064610bac6037600654612acd90919063ffffffff16565b6366fb3b80421015610cf757610bb86064610bac603c600654612acd90919063ffffffff16565b63674ba700421015610d1e57610bb86064610bac6041600654612acd90919063ffffffff16565b6367c24e00421015610d4557610bb86064610bac6046600654612acd90919063ffffffff16565b6368632500421015610d6c57610bb86064610bac6050600654612acd90919063ffffffff16565b63692cda80421015610d9357610bb86064610bac605a600654612acd90919063ffffffff16565b506006545b90565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e275780601f10610dfc57610100808354040283529160200191610e27565b820191906000526020600020905b815481529060010190602001808311610e0a57829003601f168201915b5050505050905090565b6000610e45610e3e612bab565b8484612baf565b5060015b92915050565b60116020526000908152604090205481565b600c54600160a060020a03163314610eb1576040805160e560020a62461bcd02815260206004820152601e602482015260008051602061371a833981519152604482015290519081900360640190fd5b600c54600b54610eca91600160a060020a031690612d1c565b6000600b55565b60025490565b60126020526000908152604090205481565b6000610ef6848484612e9c565b610f1a8433610f1585610f098933612836565b9063ffffffff61315716565b612baf565b5060019392505050565b600e54600160a060020a031681565b635f669b80421015610fb5576040805160e560020a62461bcd02815260206004820152602c60248201527f5468652074696d65206d757374206265206c6f6e676572207468616e2074686560448201527f20756e6c6f636b2074696d650000000000000000000000000000000000000000606482015290519081900360840190fd5b3360009081526015602052604090205460ff16151561101e576040805160e560020a62461bcd02815260206004820152601560248201527f546f6b656e73206d757374206265206c6f636b65640000000000000000000000604482015290519081900360640190fd5b63692cda80421061109f576040805160e560020a62461bcd02815260206004820152602d60248201527f5468652074696d65206d757374206265206c657373207468616e20746865207360448201527f746f702073656c6c2074696d6500000000000000000000000000000000000000606482015290519081900360840190fd5b336000818152601560205260409020805460ff191690556110ff906110e3906110c79061185b565b336000908152601160205260409020549063ffffffff61315716565b336000908152601760205260409020549063ffffffff61319916565b33600081815260176020908152604080832094909455601190529182209190915561114d906110e39061113190612048565b336000908152601360205260409020549063ffffffff61315716565b336000908152601760209081526040808320939093556013905290812055565b60055460ff1690565b600c54600160a060020a031633146111c6576040805160e560020a62461bcd02815260206004820152601e602482015260008051602061371a833981519152604482015290519081900360640190fd5b600c546009546111df91600160a060020a031690612d1c565b6000600955565b6000610e456111f3612bab565b84610f158560016000611204612bab565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61319916565b635f669b8081565b61125361124d612bab565b82612d1c565b50565b6000635eed518042101561126c575060006114f0565b635e34bf804210156112b057600160a060020a0382166000908152601260205260409020546112a990606490610bac90600f63ffffffff612acd16565b90506114f0565b635f8e28804210156112ed57600160a060020a0382166000908152601260205260409020546112a990606490610bac90601963ffffffff612acd16565b635fde940042101561132a57600160a060020a0382166000908152601260205260409020546112a990606490610bac90602363ffffffff612acd16565b6360650d0042101561136757600160a060020a0382166000908152601260205260409020546112a990606490610bac90602d63ffffffff612acd16565b63608c9a004210156113a457600160a060020a0382166000908152601260205260409020546112a990606490610bac90603763ffffffff612acd16565b636105e4004210156113e157600160a060020a0382166000908152601260205260409020546112a990606490610bac90604163ffffffff612acd16565b6361a6bb0042101561141e57600160a060020a0382166000908152601260205260409020546112a990606490610bac90604b63ffffffff612acd16565b63621d620042101561145b57600160a060020a0382166000908152601260205260409020546112a990606490610bac90605563ffffffff612acd16565b6362be390042101561149857600160a060020a0382166000908152601260205260409020546112a990606490610bac90605a63ffffffff612acd16565b63633783004210156114d557600160a060020a0382166000908152601260205260409020546112a990606490610bac90605f63ffffffff612acd16565b50600160a060020a0381166000908152601260205260409020545b919050565b600c54600090600160a060020a03163314611548576040805160e560020a62461bcd02815260206004820152601e602482015260008051602061371a833981519152604482015290519081900360640190fd5b600b546000106115a2576040805160e560020a62461bcd02815260206004820181905260248201527f546f6b656e7320617265206f766572206f722073616c6520697320656e646564604482015290519081900360640190fd5b600b546115b5908363ffffffff61315716565b600b556115c283836131f6565b9392505050565b63692cda8081565b60136020526000908152604090205481565b600b5481565b60085481565b600160a060020a031660009081526020819052604090205490565b6116126123a8565b1515611656576040805160e560020a62461bcd02815260206004820181905260248201526000805160206136fa833981519152604482015290519081900360640190fd5b6005546040516000916101009004600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36005805474ffffffffffffffffffffffffffffffffffffffff0019169055565b600160a060020a03811660009081526014602052604081205481906116df90600b63ffffffff612b6916565b9050635eed51804210156116f75760009150506114f0565b635e34bf8042101561170a5790506114f0565b635f8e288042101561172f5761172781600263ffffffff612acd16565b9150506114f0565b635fde940042101561174c5761172781600363ffffffff612acd16565b6360650d004210156117695761172781600463ffffffff612acd16565b63608c9a004210156117865761172781600563ffffffff612acd16565b636105e4004210156117a35761172781600663ffffffff612acd16565b6361a6bb004210156117c05761172781600763ffffffff612acd16565b63621d62004210156117dd5761172781600863ffffffff612acd16565b6362be39004210156117fa5761172781600963ffffffff612acd16565b63633783004210156118175761172781600a63ffffffff612acd16565b5050600160a060020a0381166000908152601460205260409020546114f0565b601054600160a060020a031681565b60156020526000908152604090205460ff1681565b6000635eed5180421015611871575060006114f0565b635f3dbd004210156118ae57600160a060020a0382166000908152601160205260409020546112a990606490610bac90601463ffffffff612acd16565b635fde94004210156118eb57600160a060020a0382166000908152601160205260409020546112a990606490610bac90601e63ffffffff612acd16565b6360650d0042101561192857600160a060020a0382166000908152601160205260409020546112a990606490610bac90603263ffffffff612acd16565b6360dd058042101561196557600160a060020a0382166000908152601160205260409020546112a990606490610bac90603c63ffffffff612acd16565b6361564f804210156119a257600160a060020a0382166000908152601160205260409020546112a990606490610bac90604663ffffffff612acd16565b6361a6bb004210156119df57600160a060020a0382166000908152601160205260409020546112a990606490610bac90605063ffffffff612acd16565b63621d6200421015611a1c57600160a060020a0382166000908152601160205260409020546112a990606490610bac90605a63ffffffff612acd16565b636296ac00421015611a5957600160a060020a0382166000908152601160205260409020546112a990606490610bac90605f63ffffffff612acd16565b50600160a060020a0381166000908152601160205260409020546114f0565b611a82828261320a565b5050565b6000635f8e2880421015611a9c57506000610d98565b63603c2e80421015611ac357610bb86064610bac600a600754612acd90919063ffffffff16565b6362464080421015611aea57610bb86064610bac6014600754612acd90919063ffffffff16565b6362be3900421015611b1157610bb86064610bac601e600754612acd90919063ffffffff16565b636387ee80421015611b3857610bb86064610bac6023600754612acd90919063ffffffff16565b63644f0100421015611b5f57610bb86064610bac6028600754612acd90919063ffffffff16565b6364c84b00421015611b8657610bb86064610bac6032600754612acd90919063ffffffff16565b636609f900421015611bad57610bb86064610bac6037600754612acd90919063ffffffff16565b6366aad000421015611bd457610bb86064610bac603c600754612acd90919063ffffffff16565b63674ba700421015611bfb57610bb86064610bac6041600754612acd90919063ffffffff16565b6367eb2c80421015611c2257610bb86064610bac6046600754612acd90919063ffffffff16565b63688c0380421015611c4957610bb86064610bac6050600754612acd90919063ffffffff16565b63692cda80421015611c7057610bb86064610bac605a600754612acd90919063ffffffff16565b50600754610d98565b600c54600090600160a060020a03163314611ccc576040805160e560020a62461bcd02815260206004820152601e602482015260008051602061371a833981519152604482015290519081900360640190fd5b600954600010611d26576040805160e560020a62461bcd02815260206004820181905260248201527f546f6b656e7320617265206f766572206f722073616c6520697320656e646564604482015290519081900360640190fd5b600160a060020a038316600090815260116020526040902054611d4f908363ffffffff61319916565b600160a060020a038416600090815260116020526040812091909155611d83612710610bac856107d063ffffffff612acd16565b600160a060020a038516600090815260136020526040902054909150611daf908263ffffffff61319916565b600160a060020a0385166000908152601360209081526040808320939093556015905220805460ff19166001179055600954611df7908290610f09908663ffffffff61315716565b600955611e1384611e0e858463ffffffff61319916565b6131f6565b949350505050565b600d54600160a060020a031681565b635f669b80421015611eac576040805160e560020a62461bcd02815260206004820152602c60248201527f5468652074696d65206d757374206265206c6f6e676572207468616e2074686560448201527f20756e6c6f636b2074696d650000000000000000000000000000000000000000606482015290519081900360840190fd5b3360009081526016602052604090205460ff161515611f15576040805160e560020a62461bcd02815260206004820152601560248201527f546f6b656e73206d757374206265206c6f636b65640000000000000000000000604482015290519081900360640190fd5b63692cda804210611f96576040805160e560020a62461bcd02815260206004820152602d60248201527f5468652074696d65206d757374206265206c657373207468616e20746865207360448201527f746f702073656c6c2074696d6500000000000000000000000000000000000000606482015290519081900360840190fd5b336000818152601660205260409020805460ff19169055611fda906110e390611fbe90611256565b336000908152601260205260409020549063ffffffff61315716565b336000818152601760209081526040808320949094556012905291822091909155612028906110e39061200c906116b3565b336000908152601460205260409020549063ffffffff61315716565b336000908152601760209081526040808320939093556014905290812055565b600160a060020a038116600090815260136020526040812054819061207490600963ffffffff612b6916565b9050635eed518042101561208c5760009150506114f0565b635f3dbd0042101561209f5790506114f0565b635fde94004210156120bc5761172781600263ffffffff612acd16565b6360650d004210156120d95761172781600363ffffffff612acd16565b6360dd05804210156120f65761172781600463ffffffff612acd16565b6361564f804210156121135761172781600563ffffffff612acd16565b6361a6bb004210156121305761172781600663ffffffff612acd16565b63621d620042101561214d5761172781600763ffffffff612acd16565b636296ac0042101561216a5761172781600863ffffffff612acd16565b5050600160a060020a0381166000908152601360205260409020546114f0565b60075481565b6005546101009004600160a060020a031690565b6000806121b0836115ef565b600d54909150600160a060020a03848116911614156121f6576121f36121e66121d7610b6f565b6006549063ffffffff61315716565b829063ffffffff61315716565b90505b600e54600160a060020a038481169116141561222c576122296121e661221a611a86565b6007549063ffffffff61315716565b90505b600f54600160a060020a03848116911614156122625761225f6121e661225061258c565b6008549063ffffffff61315716565b90505b600160a060020a03831660009081526015602052604090205460ff16156122f0576122b76121e66122928561185b565b600160a060020a0386166000908152601160205260409020549063ffffffff61315716565b90506122ed6121e66122c885612048565b600160a060020a0386166000908152601360205260409020549063ffffffff61315716565b90505b600160a060020a03831660009081526016602052604090205460ff161561237e576123456121e661232085611256565b600160a060020a0386166000908152601260205260409020549063ffffffff61315716565b905061237b6121e6612356856116b3565b600160a060020a0386166000908152601460205260409020549063ffffffff61315716565b90505b600160a060020a0383166000908152601760205260409020546115c290829063ffffffff61315716565b6005546000906101009004600160a060020a03166123c4612bab565b600160a060020a031614905090565b6123db6123a8565b151561241f576040805160e560020a62461bcd02815260206004820181905260248201526000805160206136fa833981519152604482015290519081900360640190fd5b601054611a8290600160a060020a031683836132d7565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e275780601f10610dfc57610100808354040283529160200191610e27565b6000610e456124a4612bab565b84610f1585606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f00000000000000000000000000000000000000000000000000000081525060016000612512612bab565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6134f816565b6000610e45338484612e9c565b600c54600160a060020a031681565b60176020526000908152604090205481565b60166020526000908152604090205460ff1681565b6000635fde94004210156125a257506000610d98565b63608c9a004210156125c957610bb86064610bac600a600854612acd90919063ffffffff16565b63612ec2804210156125f057610bb86064610bac600f600854612acd90919063ffffffff16565b636296ac0042101561261757610bb86064610bac6014600854612acd90919063ffffffff16565b636337830042101561263e57610bb86064610bac6019600854612acd90919063ffffffff16565b63644f010042101561266557610bb86064610bac601e600854612acd90919063ffffffff16565b6364c84b0042101561268c57610bb86064610bac6028600854612acd90919063ffffffff16565b63663186004210156126b357610bb86064610bac602d600854612acd90919063ffffffff16565b636681f1804210156126da57610bb86064610bac6037600854612acd90919063ffffffff16565b6366fb3b8042101561270157610bb86064610bac603c600854612acd90919063ffffffff16565b63674ba70042101561272857610bb86064610bac6041600854612acd90919063ffffffff16565b636812b98042101561274f57610bb86064610bac6046600854612acd90919063ffffffff16565b6368b4e20042101561277657610bb86064610bac6050600854612acd90919063ffffffff16565b63692cda8042101561279d57610bb86064610bac605a600854612acd90919063ffffffff16565b50600854610d98565b600f54600160a060020a031681565b60065481565b6127c36123a8565b1515612807576040805160e560020a62461bcd02815260206004820181905260248201526000805160206136fa833981519152604482015290519081900360640190fd5b6010805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600c54600160a060020a031633146128b1576040805160e560020a62461bcd02815260206004820152601e602482015260008051602061371a833981519152604482015290519081900360640190fd5b600c54600a546128ca91600160a060020a031690612d1c565b6000600a55565b60146020526000908152604090205481565b6128eb6123a8565b151561292f576040805160e560020a62461bcd02815260206004820181905260248201526000805160206136fa833981519152604482015290519081900360640190fd5b61125381613592565b600c54600090600160a060020a0316331461298b576040805160e560020a62461bcd02815260206004820152601e602482015260008051602061371a833981519152604482015290519081900360640190fd5b600a546000106129e5576040805160e560020a62461bcd02815260206004820181905260248201527f546f6b656e7320617265206f766572206f722073616c6520697320656e646564604482015290519081900360640190fd5b600160a060020a038316600090815260126020526040902054612a0e908363ffffffff61319916565b600160a060020a038416600090815260126020526040812091909155612a42612710610bac856105d863ffffffff612acd16565b600160a060020a038516600090815260146020526040902054909150612a6e908263ffffffff61319916565b600160a060020a0385166000908152601460209081526040808320939093556016905220805460ff19166001179055600a54612ab6908290610f09908663ffffffff61315716565b600a55611e1384611e0e858463ffffffff61319916565b6000821515612ade57506000610e49565b828202828482811515612aed57fe5b04146115c2576040805160e560020a62461bcd02815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f7700000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60006115c283836040805190810160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061368c565b3390565b600160a060020a0383161515612c34576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515612cba576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0382161515612da2576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602281527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e6020808301919091527f636500000000000000000000000000000000000000000000000000000000000082840152600160a060020a0385166000908152908190529190912054612e2891839063ffffffff6134f816565b600160a060020a038316600090815260208190526040902055600254612e54908263ffffffff61315716565b600255604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b63692cda8042101561314757601054600160a060020a03838116911614156130e757600160a060020a038316600090815260176020526040902054811115612f2e576040805160e560020a62461bcd02815260206004820152601760248201527f546f6b656e73206d75737420626520756e6c6f636b6564000000000000000000604482015290519081900360640190fd5b63692cda804210612faf576040805160e560020a62461bcd02815260206004820152602d60248201527f5468652074696d65206d757374206265206c657373207468616e20746865207360448201527f746f702073656c6c2074696d6500000000000000000000000000000000000000606482015290519081900360840190fd5b601054604080517f4a225898000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301526024820185905291519190921691634a2258989160448083019260209291908290030181600087803b15801561301e57600080fd5b505af1158015613032573d6000803e3d6000fd5b505050506040513d602081101561304857600080fd5b505115156130a0576040805160e560020a62461bcd02815260206004820152600c60248201527f42616e6b2070726f626c656d0000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0383166000908152601760205260409020546130c9908263ffffffff61315716565b600160a060020a038416600090815260176020526040902055613147565b6130f0836121a4565b811115613147576040805160e560020a62461bcd02815260206004820152601460248201527f4e6f20617661696c61626c652062616c616e6365000000000000000000000000604482015290519081900360640190fd5b6131528383836132d7565b505050565b60006115c283836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506134f8565b6000828201838110156115c2576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610e45613203612bab565b8484612e9c565b6132148282612d1c565b611a8282613220612bab565b610f1584606060405190810160405280602481526020017f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7781526020017f616e6365000000000000000000000000000000000000000000000000000000008152506001600089600160a060020a0316600160a060020a0316815260200190815260200160002060006132b0612bab565b600160a060020a03168152602081019190915260400160002054919063ffffffff6134f816565b600160a060020a038316151561335d576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156133e3576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602681527f45524332303a207472616e7366657220616d6f756e74206578636565647320626020808301919091527f616c616e6365000000000000000000000000000000000000000000000000000082840152600160a060020a038616600090815290819052919091205461346991839063ffffffff6134f816565b600160a060020a03808516600090815260208190526040808220939093559084168152205461349e908263ffffffff61319916565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561358a5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561354f578181015183820152602001613537565b50505050905090810190601f16801561357c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600160a060020a0381161515613618576040805160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600554604051600160a060020a0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360058054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b6000818184116136e15760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360008381101561354f578181015183820152602001613537565b50600083858115156136ef57fe5b049594505050505056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657253656e646572206d757374206265206120746f6b656e7320686f6c6465720000a165627a7a723058203da77f0757f88f66ae477e4ce30e3c7d1a2d7b1b32b015b662ad7d054ab5ea5d00290000000000000000000000007e9e8c73bac7238b9fb2e7a92c4b98aa8249fdcc0000000000000000000000001546672c2dee8b361599208b7f2840a570185763000000000000000000000000e8228f14abc1bd136066d2545e0d7774502f38220000000000000000000000000e7d89b8ca56846922508b7481c8c1552bffdd1f

Deployed Bytecode

0x60806040526004361061029d5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630253040181146102a2578063027c4ed2146102c95780630655949c146102de57806306fdde03146102f3578063095ea7b31461037d5780630aa1d3f3146103ca57806312890153146103fd57806318160ddd146104145780631febcfee1461042957806323b872dd1461045c5780632d3e474a1461049f5780632f8b4b7d146104d0578063313ce567146104e55780633918e59f146105105780633950935114610525578063413198311461055e57806342966c68146105735780634f98fb101461059d5780635406006d146105d057806357fbc940146106095780636c1030671461061e5780636c420036146106515780636f4a48e21461066657806370a082311461067b578063715018a6146106ae57806372918a78146106c357806376cdb03b146106f65780637766fe6a1461070b5780637891df9a1461073e57806379cc67901461077157806382cf5064146107aa57806385cbc926146107bf57806385cde77f1461060957806385f2aef2146107f857806389807b6e1461080d5780638b74730c146108225780638c800d17146108555780638da5cb5b1461086a5780638e8a8d611461087f5780638f32d59b146108b257806393c2c682146108c757806395d89b4114610900578063a457c2d714610915578063a9059cbb1461094e578063ab3e21ca14610987578063b22683fa1461099c578063bc109f9c146109cf578063bd7e700714610a02578063cd3293de14610a17578063d973d49014610a2c578063dacf64e214610a41578063dd62ed3e14610a74578063e023620414610aaf578063eba5d84f14610ac4578063f2fde38b14610af7578063ff6e149214610b2a575b600080fd5b3480156102ae57600080fd5b506102b7610b63565b60408051918252519081900360200190f35b3480156102d557600080fd5b506102b7610b69565b3480156102ea57600080fd5b506102b7610b6f565b3480156102ff57600080fd5b50610308610d9b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561034257818101518382015260200161032a565b50505050905090810190601f16801561036f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038957600080fd5b506103b6600480360360408110156103a057600080fd5b50600160a060020a038135169060200135610e31565b604080519115158252519081900360200190f35b3480156103d657600080fd5b506102b7600480360360208110156103ed57600080fd5b5035600160a060020a0316610e4f565b34801561040957600080fd5b50610412610e61565b005b34801561042057600080fd5b506102b7610ed1565b34801561043557600080fd5b506102b76004803603602081101561044c57600080fd5b5035600160a060020a0316610ed7565b34801561046857600080fd5b506103b66004803603606081101561047f57600080fd5b50600160a060020a03813581169160208101359091169060400135610ee9565b3480156104ab57600080fd5b506104b4610f24565b60408051600160a060020a039092168252519081900360200190f35b3480156104dc57600080fd5b50610412610f33565b3480156104f157600080fd5b506104fa61116d565b6040805160ff9092168252519081900360200190f35b34801561051c57600080fd5b50610412611176565b34801561053157600080fd5b506103b66004803603604081101561054857600080fd5b50600160a060020a0381351690602001356111e6565b34801561056a57600080fd5b506102b761123a565b34801561057f57600080fd5b506104126004803603602081101561059657600080fd5b5035611242565b3480156105a957600080fd5b506102b7600480360360208110156105c057600080fd5b5035600160a060020a0316611256565b3480156105dc57600080fd5b506103b6600480360360408110156105f357600080fd5b50600160a060020a0381351690602001356114f5565b34801561061557600080fd5b506102b76115c9565b34801561062a57600080fd5b506102b76004803603602081101561064157600080fd5b5035600160a060020a03166115d1565b34801561065d57600080fd5b506102b76115e3565b34801561067257600080fd5b506102b76115e9565b34801561068757600080fd5b506102b76004803603602081101561069e57600080fd5b5035600160a060020a03166115ef565b3480156106ba57600080fd5b5061041261160a565b3480156106cf57600080fd5b506102b7600480360360208110156106e657600080fd5b5035600160a060020a03166116b3565b34801561070257600080fd5b506104b4611837565b34801561071757600080fd5b506103b66004803603602081101561072e57600080fd5b5035600160a060020a0316611846565b34801561074a57600080fd5b506102b76004803603602081101561076157600080fd5b5035600160a060020a031661185b565b34801561077d57600080fd5b506104126004803603604081101561079457600080fd5b50600160a060020a038135169060200135611a78565b3480156107b657600080fd5b506102b7611a86565b3480156107cb57600080fd5b506103b6600480360360408110156107e257600080fd5b50600160a060020a038135169060200135611c79565b34801561080457600080fd5b506104b4611e1b565b34801561081957600080fd5b50610412611e2a565b34801561082e57600080fd5b506102b76004803603602081101561084557600080fd5b5035600160a060020a0316612048565b34801561086157600080fd5b506102b761218a565b34801561087657600080fd5b506104b4612190565b34801561088b57600080fd5b506102b7600480360360208110156108a257600080fd5b5035600160a060020a03166121a4565b3480156108be57600080fd5b506103b66123a8565b3480156108d357600080fd5b50610412600480360360408110156108ea57600080fd5b50600160a060020a0381351690602001356123d3565b34801561090c57600080fd5b50610308612436565b34801561092157600080fd5b506103b66004803603604081101561093857600080fd5b50600160a060020a038135169060200135612497565b34801561095a57600080fd5b506103b66004803603604081101561097157600080fd5b50600160a060020a038135169060200135612549565b34801561099357600080fd5b506104b4612556565b3480156109a857600080fd5b506102b7600480360360208110156109bf57600080fd5b5035600160a060020a0316612565565b3480156109db57600080fd5b506103b6600480360360208110156109f257600080fd5b5035600160a060020a0316612577565b348015610a0e57600080fd5b506102b761258c565b348015610a2357600080fd5b506104b46127a6565b348015610a3857600080fd5b506102b76127b5565b348015610a4d57600080fd5b5061041260048036036020811015610a6457600080fd5b5035600160a060020a03166127bb565b348015610a8057600080fd5b506102b760048036036040811015610a9757600080fd5b50600160a060020a0381358116916020013516612836565b348015610abb57600080fd5b50610412612861565b348015610ad057600080fd5b506102b760048036036020811015610ae757600080fd5b5035600160a060020a03166128d1565b348015610b0357600080fd5b5061041260048036036020811015610b1a57600080fd5b5035600160a060020a03166128e3565b348015610b3657600080fd5b506103b660048036036040811015610b4d57600080fd5b50600160a060020a038135169060200135612938565b60095481565b600a5481565b6000635fb70700421015610b8557506000610d98565b63603c2e80421015610bbf57610bb86064610bac600a600654612acd90919063ffffffff16565b9063ffffffff612b6916565b9050610d98565b63621d6200421015610be657610bb86064610bac6014600654612acd90919063ffffffff16565b636387ee80421015610c0d57610bb86064610bac601e600654612acd90919063ffffffff16565b6363fe9580421015610c3457610bb86064610bac6023600654612acd90919063ffffffff16565b6364c84b00421015610c5b57610bb86064610bac6028600654612acd90919063ffffffff16565b6365badf00421015610c8257610bb86064610bac602d600654612acd90919063ffffffff16565b636609f900421015610ca957610bb86064610bac6032600654612acd90919063ffffffff16565b6366aad000421015610cd057610bb86064610bac6037600654612acd90919063ffffffff16565b6366fb3b80421015610cf757610bb86064610bac603c600654612acd90919063ffffffff16565b63674ba700421015610d1e57610bb86064610bac6041600654612acd90919063ffffffff16565b6367c24e00421015610d4557610bb86064610bac6046600654612acd90919063ffffffff16565b6368632500421015610d6c57610bb86064610bac6050600654612acd90919063ffffffff16565b63692cda80421015610d9357610bb86064610bac605a600654612acd90919063ffffffff16565b506006545b90565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e275780601f10610dfc57610100808354040283529160200191610e27565b820191906000526020600020905b815481529060010190602001808311610e0a57829003601f168201915b5050505050905090565b6000610e45610e3e612bab565b8484612baf565b5060015b92915050565b60116020526000908152604090205481565b600c54600160a060020a03163314610eb1576040805160e560020a62461bcd02815260206004820152601e602482015260008051602061371a833981519152604482015290519081900360640190fd5b600c54600b54610eca91600160a060020a031690612d1c565b6000600b55565b60025490565b60126020526000908152604090205481565b6000610ef6848484612e9c565b610f1a8433610f1585610f098933612836565b9063ffffffff61315716565b612baf565b5060019392505050565b600e54600160a060020a031681565b635f669b80421015610fb5576040805160e560020a62461bcd02815260206004820152602c60248201527f5468652074696d65206d757374206265206c6f6e676572207468616e2074686560448201527f20756e6c6f636b2074696d650000000000000000000000000000000000000000606482015290519081900360840190fd5b3360009081526015602052604090205460ff16151561101e576040805160e560020a62461bcd02815260206004820152601560248201527f546f6b656e73206d757374206265206c6f636b65640000000000000000000000604482015290519081900360640190fd5b63692cda80421061109f576040805160e560020a62461bcd02815260206004820152602d60248201527f5468652074696d65206d757374206265206c657373207468616e20746865207360448201527f746f702073656c6c2074696d6500000000000000000000000000000000000000606482015290519081900360840190fd5b336000818152601560205260409020805460ff191690556110ff906110e3906110c79061185b565b336000908152601160205260409020549063ffffffff61315716565b336000908152601760205260409020549063ffffffff61319916565b33600081815260176020908152604080832094909455601190529182209190915561114d906110e39061113190612048565b336000908152601360205260409020549063ffffffff61315716565b336000908152601760209081526040808320939093556013905290812055565b60055460ff1690565b600c54600160a060020a031633146111c6576040805160e560020a62461bcd02815260206004820152601e602482015260008051602061371a833981519152604482015290519081900360640190fd5b600c546009546111df91600160a060020a031690612d1c565b6000600955565b6000610e456111f3612bab565b84610f158560016000611204612bab565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61319916565b635f669b8081565b61125361124d612bab565b82612d1c565b50565b6000635eed518042101561126c575060006114f0565b635e34bf804210156112b057600160a060020a0382166000908152601260205260409020546112a990606490610bac90600f63ffffffff612acd16565b90506114f0565b635f8e28804210156112ed57600160a060020a0382166000908152601260205260409020546112a990606490610bac90601963ffffffff612acd16565b635fde940042101561132a57600160a060020a0382166000908152601260205260409020546112a990606490610bac90602363ffffffff612acd16565b6360650d0042101561136757600160a060020a0382166000908152601260205260409020546112a990606490610bac90602d63ffffffff612acd16565b63608c9a004210156113a457600160a060020a0382166000908152601260205260409020546112a990606490610bac90603763ffffffff612acd16565b636105e4004210156113e157600160a060020a0382166000908152601260205260409020546112a990606490610bac90604163ffffffff612acd16565b6361a6bb0042101561141e57600160a060020a0382166000908152601260205260409020546112a990606490610bac90604b63ffffffff612acd16565b63621d620042101561145b57600160a060020a0382166000908152601260205260409020546112a990606490610bac90605563ffffffff612acd16565b6362be390042101561149857600160a060020a0382166000908152601260205260409020546112a990606490610bac90605a63ffffffff612acd16565b63633783004210156114d557600160a060020a0382166000908152601260205260409020546112a990606490610bac90605f63ffffffff612acd16565b50600160a060020a0381166000908152601260205260409020545b919050565b600c54600090600160a060020a03163314611548576040805160e560020a62461bcd02815260206004820152601e602482015260008051602061371a833981519152604482015290519081900360640190fd5b600b546000106115a2576040805160e560020a62461bcd02815260206004820181905260248201527f546f6b656e7320617265206f766572206f722073616c6520697320656e646564604482015290519081900360640190fd5b600b546115b5908363ffffffff61315716565b600b556115c283836131f6565b9392505050565b63692cda8081565b60136020526000908152604090205481565b600b5481565b60085481565b600160a060020a031660009081526020819052604090205490565b6116126123a8565b1515611656576040805160e560020a62461bcd02815260206004820181905260248201526000805160206136fa833981519152604482015290519081900360640190fd5b6005546040516000916101009004600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36005805474ffffffffffffffffffffffffffffffffffffffff0019169055565b600160a060020a03811660009081526014602052604081205481906116df90600b63ffffffff612b6916565b9050635eed51804210156116f75760009150506114f0565b635e34bf8042101561170a5790506114f0565b635f8e288042101561172f5761172781600263ffffffff612acd16565b9150506114f0565b635fde940042101561174c5761172781600363ffffffff612acd16565b6360650d004210156117695761172781600463ffffffff612acd16565b63608c9a004210156117865761172781600563ffffffff612acd16565b636105e4004210156117a35761172781600663ffffffff612acd16565b6361a6bb004210156117c05761172781600763ffffffff612acd16565b63621d62004210156117dd5761172781600863ffffffff612acd16565b6362be39004210156117fa5761172781600963ffffffff612acd16565b63633783004210156118175761172781600a63ffffffff612acd16565b5050600160a060020a0381166000908152601460205260409020546114f0565b601054600160a060020a031681565b60156020526000908152604090205460ff1681565b6000635eed5180421015611871575060006114f0565b635f3dbd004210156118ae57600160a060020a0382166000908152601160205260409020546112a990606490610bac90601463ffffffff612acd16565b635fde94004210156118eb57600160a060020a0382166000908152601160205260409020546112a990606490610bac90601e63ffffffff612acd16565b6360650d0042101561192857600160a060020a0382166000908152601160205260409020546112a990606490610bac90603263ffffffff612acd16565b6360dd058042101561196557600160a060020a0382166000908152601160205260409020546112a990606490610bac90603c63ffffffff612acd16565b6361564f804210156119a257600160a060020a0382166000908152601160205260409020546112a990606490610bac90604663ffffffff612acd16565b6361a6bb004210156119df57600160a060020a0382166000908152601160205260409020546112a990606490610bac90605063ffffffff612acd16565b63621d6200421015611a1c57600160a060020a0382166000908152601160205260409020546112a990606490610bac90605a63ffffffff612acd16565b636296ac00421015611a5957600160a060020a0382166000908152601160205260409020546112a990606490610bac90605f63ffffffff612acd16565b50600160a060020a0381166000908152601160205260409020546114f0565b611a82828261320a565b5050565b6000635f8e2880421015611a9c57506000610d98565b63603c2e80421015611ac357610bb86064610bac600a600754612acd90919063ffffffff16565b6362464080421015611aea57610bb86064610bac6014600754612acd90919063ffffffff16565b6362be3900421015611b1157610bb86064610bac601e600754612acd90919063ffffffff16565b636387ee80421015611b3857610bb86064610bac6023600754612acd90919063ffffffff16565b63644f0100421015611b5f57610bb86064610bac6028600754612acd90919063ffffffff16565b6364c84b00421015611b8657610bb86064610bac6032600754612acd90919063ffffffff16565b636609f900421015611bad57610bb86064610bac6037600754612acd90919063ffffffff16565b6366aad000421015611bd457610bb86064610bac603c600754612acd90919063ffffffff16565b63674ba700421015611bfb57610bb86064610bac6041600754612acd90919063ffffffff16565b6367eb2c80421015611c2257610bb86064610bac6046600754612acd90919063ffffffff16565b63688c0380421015611c4957610bb86064610bac6050600754612acd90919063ffffffff16565b63692cda80421015611c7057610bb86064610bac605a600754612acd90919063ffffffff16565b50600754610d98565b600c54600090600160a060020a03163314611ccc576040805160e560020a62461bcd02815260206004820152601e602482015260008051602061371a833981519152604482015290519081900360640190fd5b600954600010611d26576040805160e560020a62461bcd02815260206004820181905260248201527f546f6b656e7320617265206f766572206f722073616c6520697320656e646564604482015290519081900360640190fd5b600160a060020a038316600090815260116020526040902054611d4f908363ffffffff61319916565b600160a060020a038416600090815260116020526040812091909155611d83612710610bac856107d063ffffffff612acd16565b600160a060020a038516600090815260136020526040902054909150611daf908263ffffffff61319916565b600160a060020a0385166000908152601360209081526040808320939093556015905220805460ff19166001179055600954611df7908290610f09908663ffffffff61315716565b600955611e1384611e0e858463ffffffff61319916565b6131f6565b949350505050565b600d54600160a060020a031681565b635f669b80421015611eac576040805160e560020a62461bcd02815260206004820152602c60248201527f5468652074696d65206d757374206265206c6f6e676572207468616e2074686560448201527f20756e6c6f636b2074696d650000000000000000000000000000000000000000606482015290519081900360840190fd5b3360009081526016602052604090205460ff161515611f15576040805160e560020a62461bcd02815260206004820152601560248201527f546f6b656e73206d757374206265206c6f636b65640000000000000000000000604482015290519081900360640190fd5b63692cda804210611f96576040805160e560020a62461bcd02815260206004820152602d60248201527f5468652074696d65206d757374206265206c657373207468616e20746865207360448201527f746f702073656c6c2074696d6500000000000000000000000000000000000000606482015290519081900360840190fd5b336000818152601660205260409020805460ff19169055611fda906110e390611fbe90611256565b336000908152601260205260409020549063ffffffff61315716565b336000818152601760209081526040808320949094556012905291822091909155612028906110e39061200c906116b3565b336000908152601460205260409020549063ffffffff61315716565b336000908152601760209081526040808320939093556014905290812055565b600160a060020a038116600090815260136020526040812054819061207490600963ffffffff612b6916565b9050635eed518042101561208c5760009150506114f0565b635f3dbd0042101561209f5790506114f0565b635fde94004210156120bc5761172781600263ffffffff612acd16565b6360650d004210156120d95761172781600363ffffffff612acd16565b6360dd05804210156120f65761172781600463ffffffff612acd16565b6361564f804210156121135761172781600563ffffffff612acd16565b6361a6bb004210156121305761172781600663ffffffff612acd16565b63621d620042101561214d5761172781600763ffffffff612acd16565b636296ac0042101561216a5761172781600863ffffffff612acd16565b5050600160a060020a0381166000908152601360205260409020546114f0565b60075481565b6005546101009004600160a060020a031690565b6000806121b0836115ef565b600d54909150600160a060020a03848116911614156121f6576121f36121e66121d7610b6f565b6006549063ffffffff61315716565b829063ffffffff61315716565b90505b600e54600160a060020a038481169116141561222c576122296121e661221a611a86565b6007549063ffffffff61315716565b90505b600f54600160a060020a03848116911614156122625761225f6121e661225061258c565b6008549063ffffffff61315716565b90505b600160a060020a03831660009081526015602052604090205460ff16156122f0576122b76121e66122928561185b565b600160a060020a0386166000908152601160205260409020549063ffffffff61315716565b90506122ed6121e66122c885612048565b600160a060020a0386166000908152601360205260409020549063ffffffff61315716565b90505b600160a060020a03831660009081526016602052604090205460ff161561237e576123456121e661232085611256565b600160a060020a0386166000908152601260205260409020549063ffffffff61315716565b905061237b6121e6612356856116b3565b600160a060020a0386166000908152601460205260409020549063ffffffff61315716565b90505b600160a060020a0383166000908152601760205260409020546115c290829063ffffffff61315716565b6005546000906101009004600160a060020a03166123c4612bab565b600160a060020a031614905090565b6123db6123a8565b151561241f576040805160e560020a62461bcd02815260206004820181905260248201526000805160206136fa833981519152604482015290519081900360640190fd5b601054611a8290600160a060020a031683836132d7565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e275780601f10610dfc57610100808354040283529160200191610e27565b6000610e456124a4612bab565b84610f1585606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f00000000000000000000000000000000000000000000000000000081525060016000612512612bab565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6134f816565b6000610e45338484612e9c565b600c54600160a060020a031681565b60176020526000908152604090205481565b60166020526000908152604090205460ff1681565b6000635fde94004210156125a257506000610d98565b63608c9a004210156125c957610bb86064610bac600a600854612acd90919063ffffffff16565b63612ec2804210156125f057610bb86064610bac600f600854612acd90919063ffffffff16565b636296ac0042101561261757610bb86064610bac6014600854612acd90919063ffffffff16565b636337830042101561263e57610bb86064610bac6019600854612acd90919063ffffffff16565b63644f010042101561266557610bb86064610bac601e600854612acd90919063ffffffff16565b6364c84b0042101561268c57610bb86064610bac6028600854612acd90919063ffffffff16565b63663186004210156126b357610bb86064610bac602d600854612acd90919063ffffffff16565b636681f1804210156126da57610bb86064610bac6037600854612acd90919063ffffffff16565b6366fb3b8042101561270157610bb86064610bac603c600854612acd90919063ffffffff16565b63674ba70042101561272857610bb86064610bac6041600854612acd90919063ffffffff16565b636812b98042101561274f57610bb86064610bac6046600854612acd90919063ffffffff16565b6368b4e20042101561277657610bb86064610bac6050600854612acd90919063ffffffff16565b63692cda8042101561279d57610bb86064610bac605a600854612acd90919063ffffffff16565b50600854610d98565b600f54600160a060020a031681565b60065481565b6127c36123a8565b1515612807576040805160e560020a62461bcd02815260206004820181905260248201526000805160206136fa833981519152604482015290519081900360640190fd5b6010805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600c54600160a060020a031633146128b1576040805160e560020a62461bcd02815260206004820152601e602482015260008051602061371a833981519152604482015290519081900360640190fd5b600c54600a546128ca91600160a060020a031690612d1c565b6000600a55565b60146020526000908152604090205481565b6128eb6123a8565b151561292f576040805160e560020a62461bcd02815260206004820181905260248201526000805160206136fa833981519152604482015290519081900360640190fd5b61125381613592565b600c54600090600160a060020a0316331461298b576040805160e560020a62461bcd02815260206004820152601e602482015260008051602061371a833981519152604482015290519081900360640190fd5b600a546000106129e5576040805160e560020a62461bcd02815260206004820181905260248201527f546f6b656e7320617265206f766572206f722073616c6520697320656e646564604482015290519081900360640190fd5b600160a060020a038316600090815260126020526040902054612a0e908363ffffffff61319916565b600160a060020a038416600090815260126020526040812091909155612a42612710610bac856105d863ffffffff612acd16565b600160a060020a038516600090815260146020526040902054909150612a6e908263ffffffff61319916565b600160a060020a0385166000908152601460209081526040808320939093556016905220805460ff19166001179055600a54612ab6908290610f09908663ffffffff61315716565b600a55611e1384611e0e858463ffffffff61319916565b6000821515612ade57506000610e49565b828202828482811515612aed57fe5b04146115c2576040805160e560020a62461bcd02815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f7700000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60006115c283836040805190810160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061368c565b3390565b600160a060020a0383161515612c34576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515612cba576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0382161515612da2576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602281527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e6020808301919091527f636500000000000000000000000000000000000000000000000000000000000082840152600160a060020a0385166000908152908190529190912054612e2891839063ffffffff6134f816565b600160a060020a038316600090815260208190526040902055600254612e54908263ffffffff61315716565b600255604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b63692cda8042101561314757601054600160a060020a03838116911614156130e757600160a060020a038316600090815260176020526040902054811115612f2e576040805160e560020a62461bcd02815260206004820152601760248201527f546f6b656e73206d75737420626520756e6c6f636b6564000000000000000000604482015290519081900360640190fd5b63692cda804210612faf576040805160e560020a62461bcd02815260206004820152602d60248201527f5468652074696d65206d757374206265206c657373207468616e20746865207360448201527f746f702073656c6c2074696d6500000000000000000000000000000000000000606482015290519081900360840190fd5b601054604080517f4a225898000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301526024820185905291519190921691634a2258989160448083019260209291908290030181600087803b15801561301e57600080fd5b505af1158015613032573d6000803e3d6000fd5b505050506040513d602081101561304857600080fd5b505115156130a0576040805160e560020a62461bcd02815260206004820152600c60248201527f42616e6b2070726f626c656d0000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0383166000908152601760205260409020546130c9908263ffffffff61315716565b600160a060020a038416600090815260176020526040902055613147565b6130f0836121a4565b811115613147576040805160e560020a62461bcd02815260206004820152601460248201527f4e6f20617661696c61626c652062616c616e6365000000000000000000000000604482015290519081900360640190fd5b6131528383836132d7565b505050565b60006115c283836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506134f8565b6000828201838110156115c2576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610e45613203612bab565b8484612e9c565b6132148282612d1c565b611a8282613220612bab565b610f1584606060405190810160405280602481526020017f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7781526020017f616e6365000000000000000000000000000000000000000000000000000000008152506001600089600160a060020a0316600160a060020a0316815260200190815260200160002060006132b0612bab565b600160a060020a03168152602081019190915260400160002054919063ffffffff6134f816565b600160a060020a038316151561335d576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156133e3576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602681527f45524332303a207472616e7366657220616d6f756e74206578636565647320626020808301919091527f616c616e6365000000000000000000000000000000000000000000000000000082840152600160a060020a038616600090815290819052919091205461346991839063ffffffff6134f816565b600160a060020a03808516600090815260208190526040808220939093559084168152205461349e908263ffffffff61319916565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561358a5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561354f578181015183820152602001613537565b50505050905090810190601f16801561357c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600160a060020a0381161515613618576040805160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600554604051600160a060020a0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360058054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b6000818184116136e15760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360008381101561354f578181015183820152602001613537565b50600083858115156136ef57fe5b049594505050505056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657253656e646572206d757374206265206120746f6b656e7320686f6c6465720000a165627a7a723058203da77f0757f88f66ae477e4ce30e3c7d1a2d7b1b32b015b662ad7d054ab5ea5d0029

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

0000000000000000000000007e9e8c73bac7238b9fb2e7a92c4b98aa8249fdcc0000000000000000000000001546672c2dee8b361599208b7f2840a570185763000000000000000000000000e8228f14abc1bd136066d2545e0d7774502f38220000000000000000000000000e7d89b8ca56846922508b7481c8c1552bffdd1f

-----Decoded View---------------
Arg [0] : _tokens_holder (address): 0x7e9E8c73BaC7238B9FB2E7A92C4b98Aa8249fdcc
Arg [1] : _team (address): 0x1546672C2dEE8B361599208b7F2840a570185763
Arg [2] : _marketing (address): 0xE8228F14abC1bD136066d2545e0D7774502F3822
Arg [3] : _reserve (address): 0x0e7D89b8Ca56846922508B7481C8c1552bFFdd1F

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000007e9e8c73bac7238b9fb2e7a92c4b98aa8249fdcc
Arg [1] : 0000000000000000000000001546672c2dee8b361599208b7f2840a570185763
Arg [2] : 000000000000000000000000e8228f14abc1bd136066d2545e0d7774502f3822
Arg [3] : 0000000000000000000000000e7d89b8ca56846922508b7481c8c1552bffdd1f


Deployed Bytecode Sourcemap

83593:21052:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84026:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84026:26:0;;;;;;;;;;;;;;;;;;;;84059:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84059:29:0;;;;92609:1760;;8:9:-1;5:2;;;30:1;27;20:12;5:2;92609:1760:0;;;;20616:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20616:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;20616:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14255:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14255:152:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14255:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;84288:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84288:47:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;84288:47:0;-1:-1:-1;;;;;84288:47:0;;;88147:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;88147:140:0;;;;;;13276:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13276:91:0;;;;84342:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84342:50:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;84342:50:0;-1:-1:-1;;;;;84342:50:0;;;88634:361;;8:9:-1;5:2;;;30:1;27;20:12;5:2;88634:361:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;88634:361:0;;;;;;;;;;;;;;;;;;84193:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84193:24:0;;;;;;;;-1:-1:-1;;;;;84193:24:0;;;;;;;;;;;;;;86189:811;;8:9:-1;5:2;;;30:1;27;20:12;5:2;86189:811:0;;;;21468:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21468:83:0;;;;;;;;;;;;;;;;;;;;;;;87854:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;87854:134:0;;;;15592:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15592:210:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15592:210:0;;;;;;;;;83699:48;;8:9:-1;5:2;;;30:1;27;20:12;5:2;83699:48:0;;;;21928:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21928:83:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21928:83:0;;;99211:1577;;8:9:-1;5:2;;;30:1;27;20:12;5:2;99211:1577:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;99211:1577:0;-1:-1:-1;;;;;99211:1577:0;;;90360:382;;8:9:-1;5:2;;;30:1;27;20:12;5:2;90360:382:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;90360:382:0;;;;;;;;;83768:56;;8:9:-1;5:2;;;30:1;27;20:12;5:2;83768:56:0;;;;84399:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84399:45:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;84399:45:0;-1:-1:-1;;;;;84399:45:0;;;84095:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84095:28:0;;;;83990:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;83990:29:0;;;;13430:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13430:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13430:110:0;-1:-1:-1;;;;;13430:110:0;;;8256:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8256:140:0;;;;102026:1453;;8:9:-1;5:2;;;30:1;27;20:12;5:2;102026:1453:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;102026:1453:0;-1:-1:-1;;;;;102026:1453:0;;;84255:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84255:24:0;;;;84506:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84506:43:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;84506:43:0;-1:-1:-1;;;;;84506:43:0;;;97912:1291;;8:9:-1;5:2;;;30:1;27;20:12;5:2;97912:1291:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;97912:1291:0;-1:-1:-1;;;;;97912:1291:0;;;22073:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22073:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22073:103:0;;;;;;;;;94377:1714;;8:9:-1;5:2;;;30:1;27;20:12;5:2;94377:1714:0;;;;89003:657;;8:9:-1;5:2;;;30:1;27;20:12;5:2;89003:657:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;89003:657:0;;;;;;;;;84167:19;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84167:19:0;;;;87008:838;;8:9:-1;5:2;;;30:1;27;20:12;5:2;87008:838:0;;;;100796:1222;;8:9:-1;5:2;;;30:1;27;20:12;5:2;100796:1222:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;100796:1222:0;-1:-1:-1;;;;;100796:1222:0;;;83952:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;83952:31:0;;;;7445:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7445:79:0;;;;90750:1851;;8:9:-1;5:2;;;30:1;27;20:12;5:2;90750:1851:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90750:1851:0;-1:-1:-1;;;;;90750:1851:0;;;7811:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7811:94:0;;;;85983:198;;8:9:-1;5:2;;;30:1;27;20:12;5:2;85983:198:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;85983:198:0;;;;;;;;;20818:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20818:87:0;;;;16305:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16305:261:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16305:261:0;;;;;;;;;88422:204;;8:9:-1;5:2;;;30:1;27;20:12;5:2;88422:204:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;88422:204:0;;;;;;;;;84132:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84132:28:0;;;;84609:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84609:50:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;84609:50:0;-1:-1:-1;;;;;84609:50:0;;;84556:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84556:46:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;84556:46:0;-1:-1:-1;;;;;84556:46:0;;;96099:1805;;8:9:-1;5:2;;;30:1;27;20:12;5:2;96099:1805:0;;;;84224:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84224:22:0;;;;83919:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;83919:26:0;;;;88295:119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;88295:119:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;88295:119:0;-1:-1:-1;;;;;88295:119:0;;;13974:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13974:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13974:134:0;;;;;;;;;;;87996:143;;8:9:-1;5:2;;;30:1;27;20:12;5:2;87996:143:0;;;;84451:48;;8:9:-1;5:2;;;30:1;27;20:12;5:2;84451:48:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;84451:48:0;-1:-1:-1;;;;;84451:48:0;;;8551:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8551:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8551:109:0;-1:-1:-1;;;;;8551:109:0;;;89668:684;;8:9:-1;5:2;;;30:1;27;20:12;5:2;89668:684:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;89668:684:0;;;;;;;;;84026:26;;;;:::o;84059:29::-;;;;:::o;92609:1760::-;92695:7;92742:10;92724:15;:28;92720:1642;;;-1:-1:-1;92790:1:0;92783:8;;92720:1642;92831:10;92813:15;:28;92809:1553;;;92879:28;92903:3;92879:19;92895:2;92879:11;;:15;;:19;;;;:::i;:::-;:23;:28;:23;:28;:::i;:::-;92872:35;;;;92809:1553;92947:10;92929:15;:28;92925:1437;;;92995:28;93019:3;92995:19;93011:2;92995:11;;:15;;:19;;;;:::i;92925:1437::-;93063:10;93045:15;:28;93041:1321;;;93111:28;93135:3;93111:19;93127:2;93111:11;;:15;;:19;;;;:::i;93041:1321::-;93179:10;93161:15;:28;93157:1205;;;93227:28;93251:3;93227:19;93243:2;93227:11;;:15;;:19;;;;:::i;93157:1205::-;93295:10;93277:15;:28;93273:1089;;;93343:28;93367:3;93343:19;93359:2;93343:11;;:15;;:19;;;;:::i;93273:1089::-;93411:10;93393:15;:28;93389:973;;;93459:28;93483:3;93459:19;93475:2;93459:11;;:15;;:19;;;;:::i;93389:973::-;93527:10;93509:15;:28;93505:857;;;93575:28;93599:3;93575:19;93591:2;93575:11;;:15;;:19;;;;:::i;93505:857::-;93643:10;93625:15;:28;93621:741;;;93691:28;93715:3;93691:19;93707:2;93691:11;;:15;;:19;;;;:::i;93621:741::-;93759:10;93741:15;:28;93737:625;;;93807:28;93831:3;93807:19;93823:2;93807:11;;:15;;:19;;;;:::i;93737:625::-;93875:10;93857:15;:28;93853:509;;;93923:28;93947:3;93923:19;93939:2;93923:11;;:15;;:19;;;;:::i;93853:509::-;93991:10;93973:15;:28;93969:393;;;94039:28;94063:3;94039:19;94055:2;94039:11;;:15;;:19;;;;:::i;93969:393::-;94107:10;94089:15;:28;94085:277;;;94155:28;94179:3;94155:19;94171:2;94155:11;;:15;;:19;;;;:::i;94085:277::-;94223:10;94205:15;:28;94201:161;;;94271:28;94295:3;94271:19;94287:2;94271:11;;:15;;:19;;;;:::i;94201:161::-;-1:-1:-1;94339:11:0;;94201:161;92609:1760;:::o;20616:83::-;20686:5;20679:12;;;;;;;;-1:-1:-1;;20679:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20653:13;;20679:12;;20686:5;;20679:12;;20686:5;20679:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20616:83;:::o;14255:152::-;14321:4;14338:39;14347:12;:10;:12::i;:::-;14361:7;14370:6;14338:8;:39::i;:::-;-1:-1:-1;14395:4:0;14255:152;;;;;:::o;84288:47::-;;;;;;;;;;;;;:::o;88147:140::-;84745:13;;-1:-1:-1;;;;;84745:13:0;84731:10;:27;84709:107;;;;;-1:-1:-1;;;;;84709:107:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;84709:107:0;;;;;;;;;;;;;;;88222:13;;88237;;88216:35;;-1:-1:-1;;;;;88222:13:0;;88216:5;:35::i;:::-;88278:1;88262:13;:17;88147:140::o;13276:91::-;13347:12;;13276:91;:::o;84342:50::-;;;;;;;;;;;;;:::o;88634:361::-;88775:4;88797:36;88807:6;88815:9;88826:6;88797:9;:36::i;:::-;88844:121;88867:6;88888:10;88913:41;88947:6;88913:29;88923:6;88931:10;88913:9;:29::i;:::-;:33;:41;:33;:41;:::i;:::-;88844:8;:121::i;:::-;-1:-1:-1;88983:4:0;88634:361;;;;;:::o;84193:24::-;;;-1:-1:-1;;;;;84193:24:0;;:::o;86189:811::-;83737:10;84906:15;:30;;84884:124;;;;;-1:-1:-1;;;;;84884:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86284:10;86272:23;;;;:11;:23;;;;;;;;86250:94;;;;;;;-1:-1:-1;;;;;86250:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;83886:10;86377:15;:32;86355:127;;;;;-1:-1:-1;;;;;86355:127:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86505:10;86519:5;86493:23;;;:11;:23;;;;;:31;;-1:-1:-1;;86493:31:0;;;86565:157;;86611:100;;86658:38;;:26;:38::i;:::-;86624:10;86611:24;;;;:12;:24;;;;;;;:100;:28;:100;:::i;:::-;86581:10;86565:27;;;;:15;:27;;;;;;;:157;:31;:157;:::i;:::-;86551:10;86535:27;;;;:15;:27;;;;;;;;:187;;;;86733:12;:24;;;;;:28;;;;86802:153;;86848:96;;86893:36;;:24;:36::i;:::-;86859:10;86848:22;;;;:10;:22;;;;;;;:96;:26;:96;:::i;86802:153::-;86788:10;86772:27;;;;:15;:27;;;;;;;;:183;;;;86966:10;:22;;;;;:26;86189:811::o;21468:83::-;21534:9;;;;21468:83;:::o;87854:134::-;84745:13;;-1:-1:-1;;;;;84745:13:0;84731:10;:27;84709:107;;;;;-1:-1:-1;;;;;84709:107:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;84709:107:0;;;;;;;;;;;;;;;87927:13;;87942:11;;87921:33;;-1:-1:-1;;;;;87927:13:0;;87921:5;:33::i;:::-;87979:1;87965:11;:15;87854:134::o;15592:210::-;15672:4;15689:83;15698:12;:10;:12::i;:::-;15712:7;15721:50;15760:10;15721:11;:25;15733:12;:10;:12::i;:::-;-1:-1:-1;;;;;15721:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15721:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;83699:48::-;83737:10;83699:48;:::o;21928:83::-;21976:27;21982:12;:10;:12::i;:::-;21996:6;21976:5;:27::i;:::-;21928:83;:::o;99211:1577::-;99330:7;99377:10;99359:15;:28;99355:1426;;;-1:-1:-1;99425:1:0;99418:8;;99355:1426;99466:10;99448:15;:28;99444:1337;;;-1:-1:-1;;;;;99514:23:0;;;;;;:15;:23;;;;;;:40;;99550:3;;99514:31;;99542:2;99514:31;:27;:31;:::i;:40::-;99507:47;;;;99444:1337;99594:10;99576:15;:28;99572:1209;;;-1:-1:-1;;;;;99642:23:0;;;;;;:15;:23;;;;;;:40;;99678:3;;99642:31;;99670:2;99642:31;:27;:31;:::i;99572:1209::-;99722:10;99704:15;:28;99700:1081;;;-1:-1:-1;;;;;99770:23:0;;;;;;:15;:23;;;;;;:40;;99806:3;;99770:31;;99798:2;99770:31;:27;:31;:::i;99700:1081::-;99850:10;99832:15;:28;99828:953;;;-1:-1:-1;;;;;99898:23:0;;;;;;:15;:23;;;;;;:40;;99934:3;;99898:31;;99926:2;99898:31;:27;:31;:::i;99828:953::-;99978:10;99960:15;:28;99956:825;;;-1:-1:-1;;;;;100026:23:0;;;;;;:15;:23;;;;;;:40;;100062:3;;100026:31;;100054:2;100026:31;:27;:31;:::i;99956:825::-;100106:10;100088:15;:28;100084:697;;;-1:-1:-1;;;;;100154:23:0;;;;;;:15;:23;;;;;;:40;;100190:3;;100154:31;;100182:2;100154:31;:27;:31;:::i;100084:697::-;100234:10;100216:15;:28;100212:569;;;-1:-1:-1;;;;;100282:23:0;;;;;;:15;:23;;;;;;:40;;100318:3;;100282:31;;100310:2;100282:31;:27;:31;:::i;100212:569::-;100362:10;100344:15;:28;100340:441;;;-1:-1:-1;;;;;100410:23:0;;;;;;:15;:23;;;;;;:40;;100446:3;;100410:31;;100438:2;100410:31;:27;:31;:::i;100340:441::-;100490:10;100472:15;:28;100468:313;;;-1:-1:-1;;;;;100538:23:0;;;;;;:15;:23;;;;;;:40;;100574:3;;100538:31;;100566:2;100538:31;:27;:31;:::i;100468:313::-;100618:10;100600:15;:28;100596:185;;;-1:-1:-1;;;;;100666:23:0;;;;;;:15;:23;;;;;;:40;;100702:3;;100666:31;;100694:2;100666:31;:27;:31;:::i;100596:185::-;-1:-1:-1;;;;;;100746:23:0;;;;;;:15;:23;;;;;;100596:185;99211:1577;;;:::o;90360:382::-;84745:13;;90510:4;;-1:-1:-1;;;;;84745:13:0;84731:10;:27;84709:107;;;;;-1:-1:-1;;;;;84709:107:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;84709:107:0;;;;;;;;;;;;;;;90554:13;;90570:1;-1:-1:-1;90532:99:0;;;;;-1:-1:-1;;;;;90532:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90658:13;;:25;;90676:6;90658:25;:17;:25;:::i;:::-;90642:13;:41;90701:33;90716:9;90727:6;90701:14;:33::i;:::-;90694:40;90360:382;-1:-1:-1;;;90360:382:0:o;83768:56::-;83814:10;83768:56;:::o;84399:45::-;;;;;;;;;;;;;:::o;84095:28::-;;;;:::o;83990:29::-;;;;:::o;13430:110::-;-1:-1:-1;;;;;13514:18:0;13487:7;13514:18;;;;;;;;;;;;13430:110::o;8256:140::-;7657:9;:7;:9::i;:::-;7649:54;;;;;;;-1:-1:-1;;;;;7649:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7649:54:0;;;;;;;;;;;;;;;8339:6;;8318:40;;8355:1;;8339:6;;;-1:-1:-1;;;;;8339:6:0;;8318:40;;8355:1;;8318:40;8369:6;:19;;-1:-1:-1;;8369:19:0;;;8256:140::o;102026:1453::-;-1:-1:-1;;;;;102194:21:0;;102143:7;102194:21;;;:13;:21;;;;;;102143:7;;102194:29;;102220:2;102194:29;:25;:29;:::i;:::-;102168:55;;102256:10;102238:15;:28;102234:1238;;;102304:1;102297:8;;;;;102234:1238;102345:10;102327:15;:28;102323:1149;;;102393:15;-1:-1:-1;102386:22:0;;102323:1149;102448:10;102430:15;:28;102426:1046;;;102496:22;:15;102516:1;102496:22;:19;:22;:::i;:::-;102489:29;;;;;102426:1046;102558:10;102540:15;:28;102536:936;;;102606:22;:15;102626:1;102606:22;:19;:22;:::i;102536:936::-;102668:10;102650:15;:28;102646:826;;;102716:22;:15;102736:1;102716:22;:19;:22;:::i;102646:826::-;102778:10;102760:15;:28;102756:716;;;102826:22;:15;102846:1;102826:22;:19;:22;:::i;102756:716::-;102888:10;102870:15;:28;102866:606;;;102936:22;:15;102956:1;102936:22;:19;:22;:::i;102866:606::-;102998:10;102980:15;:28;102976:496;;;103046:22;:15;103066:1;103046:22;:19;:22;:::i;102976:496::-;103108:10;103090:15;:28;103086:386;;;103156:22;:15;103176:1;103156:22;:19;:22;:::i;103086:386::-;103218:10;103200:15;:28;103196:276;;;103266:22;:15;103286:1;103266:22;:19;:22;:::i;103196:276::-;103328:10;103310:15;:28;103306:166;;;103376:23;:15;103396:2;103376:23;:19;:23;:::i;103306:166::-;-1:-1:-1;;;;;;;103439:21:0;;;;;;:13;:21;;;;;;103432:28;;84255:24;;;-1:-1:-1;;;;;84255:24:0;;:::o;84506:43::-;;;;;;;;;;;;;;;:::o;97912:1291::-;98028:7;98075:10;98057:15;:28;98053:1143;;;-1:-1:-1;98123:1:0;98116:8;;98053:1143;98164:10;98146:15;:28;98142:1054;;;-1:-1:-1;;;;;98212:20:0;;;;;;:12;:20;;;;;;:37;;98245:3;;98212:28;;98237:2;98212:28;:24;:28;:::i;98142:1054::-;98289:10;98271:15;:28;98267:929;;;-1:-1:-1;;;;;98337:20:0;;;;;;:12;:20;;;;;;:37;;98370:3;;98337:28;;98362:2;98337:28;:24;:28;:::i;98267:929::-;98414:10;98396:15;:28;98392:804;;;-1:-1:-1;;;;;98462:20:0;;;;;;:12;:20;;;;;;:37;;98495:3;;98462:28;;98487:2;98462:28;:24;:28;:::i;98392:804::-;98539:10;98521:15;:28;98517:679;;;-1:-1:-1;;;;;98587:20:0;;;;;;:12;:20;;;;;;:37;;98620:3;;98587:28;;98612:2;98587:28;:24;:28;:::i;98517:679::-;98664:10;98646:15;:28;98642:554;;;-1:-1:-1;;;;;98712:20:0;;;;;;:12;:20;;;;;;:37;;98745:3;;98712:28;;98737:2;98712:28;:24;:28;:::i;98642:554::-;98789:10;98771:15;:28;98767:429;;;-1:-1:-1;;;;;98837:20:0;;;;;;:12;:20;;;;;;:37;;98870:3;;98837:28;;98862:2;98837:28;:24;:28;:::i;98767:429::-;98914:10;98896:15;:28;98892:304;;;-1:-1:-1;;;;;98962:20:0;;;;;;:12;:20;;;;;;:37;;98995:3;;98962:28;;98987:2;98962:28;:24;:28;:::i;98892:304::-;99039:10;99021:15;:28;99017:179;;;-1:-1:-1;;;;;99087:20:0;;;;;;:12;:20;;;;;;:37;;99120:3;;99087:28;;99112:2;99087:28;:24;:28;:::i;99017:179::-;-1:-1:-1;;;;;;99164:20:0;;;;;;:12;:20;;;;;;99157:27;;22073:103;22142:26;22152:7;22161:6;22142:9;:26::i;:::-;22073:103;;:::o;94377:1714::-;94468:7;94515:10;94497:15;:28;94493:1591;;;-1:-1:-1;94563:1:0;94556:8;;94493:1591;94604:10;94586:15;:28;94582:1502;;;94652:33;94681:3;94652:24;94673:2;94652:16;;:20;;:24;;;;:::i;94582:1502::-;94725:10;94707:15;:28;94703:1381;;;94773:33;94802:3;94773:24;94794:2;94773:16;;:20;;:24;;;;:::i;94703:1381::-;94846:10;94828:15;:28;94824:1260;;;94894:33;94923:3;94894:24;94915:2;94894:16;;:20;;:24;;;;:::i;94824:1260::-;94967:10;94949:15;:28;94945:1139;;;95015:33;95044:3;95015:24;95036:2;95015:16;;:20;;:24;;;;:::i;94945:1139::-;95088:10;95070:15;:28;95066:1018;;;95136:33;95165:3;95136:24;95157:2;95136:16;;:20;;:24;;;;:::i;95066:1018::-;95209:10;95191:15;:28;95187:897;;;95257:33;95286:3;95257:24;95278:2;95257:16;;:20;;:24;;;;:::i;95187:897::-;95330:10;95312:15;:28;95308:776;;;95378:33;95407:3;95378:24;95399:2;95378:16;;:20;;:24;;;;:::i;95308:776::-;95451:10;95433:15;:28;95429:655;;;95499:33;95528:3;95499:24;95520:2;95499:16;;:20;;:24;;;;:::i;95429:655::-;95572:10;95554:15;:28;95550:534;;;95620:33;95649:3;95620:24;95641:2;95620:16;;:20;;:24;;;;:::i;95550:534::-;95693:10;95675:15;:28;95671:413;;;95741:33;95770:3;95741:24;95762:2;95741:16;;:20;;:24;;;;:::i;95671:413::-;95814:10;95796:15;:28;95792:292;;;95862:33;95891:3;95862:24;95883:2;95862:16;;:20;;:24;;;;:::i;95792:292::-;95935:10;95917:15;:28;95913:171;;;95983:33;96012:3;95983:24;96004:2;95983:16;;:20;;:24;;;;:::i;95913:171::-;-1:-1:-1;96056:16:0;;96049:23;;89003:657;84745:13;;89151:4;;-1:-1:-1;;;;;84745:13:0;84731:10;:27;84709:107;;;;;-1:-1:-1;;;;;84709:107:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;84709:107:0;;;;;;;;;;;;;;;89195:11;;89209:1;-1:-1:-1;89173:97:0;;;;;-1:-1:-1;;;;;89173:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;89307:23:0;;;;;;:12;:23;;;;;;:35;;89335:6;89307:35;:27;:35;:::i;:::-;-1:-1:-1;;;;;89281:23:0;;;;;;:12;:23;;;;;:61;;;;89376:27;89397:5;89376:16;:6;89387:4;89376:16;:10;:16;:::i;:27::-;-1:-1:-1;;;;;89438:21:0;;;;;;:10;:21;;;;;;89353:50;;-1:-1:-1;89438:39:0;;89353:50;89438:39;:25;:39;:::i;:::-;-1:-1:-1;;;;;89414:21:0;;;;;;:10;:21;;;;;;;;:63;;;;89488:11;:22;;;:29;;-1:-1:-1;;89488:29:0;89513:4;89488:29;;;89542:11;;:41;;89570:12;;89542:23;;89558:6;89542:23;:15;:23;:::i;:41::-;89528:11;:55;89601:51;89616:9;89627:24;:6;89638:12;89627:24;:10;:24;:::i;:::-;89601:14;:51::i;:::-;89594:58;89003:657;-1:-1:-1;;;;89003:657:0:o;84167:19::-;;;-1:-1:-1;;;;;84167:19:0;;:::o;87008:838::-;83737:10;84906:15;:30;;84884:124;;;;;-1:-1:-1;;;;;84884:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87109:10;87094:26;;;;:14;:26;;;;;;;;87072:97;;;;;;;-1:-1:-1;;;;;87072:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;83886:10;87202:15;:32;87180:127;;;;;-1:-1:-1;;;;;87180:127:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87333:10;87347:5;87318:26;;;:14;:26;;;;;:34;;-1:-1:-1;;87318:34:0;;;87393:163;;87439:106;;87489:41;;:29;:41::i;:::-;87455:10;87439:27;;;;:15;:27;;;;;;;:106;:31;:106;:::i;87393:163::-;87379:10;87363:27;;;;:15;:27;;;;;;;;:193;;;;87567:15;:27;;;;;:31;;;;87639:159;;87685:102;;87733:39;;:27;:39::i;:::-;87699:10;87685:25;;;;:13;:25;;;;;;;:102;:29;:102;:::i;87639:159::-;87625:10;87609:27;;;;:15;:27;;;;;;;;:189;;;;87809:13;:25;;;;;:29;87008:838::o;100796:1222::-;-1:-1:-1;;;;;100961:18:0;;100910:7;100961:18;;;:10;:18;;;;;;100910:7;;100961:25;;100984:1;100961:25;:22;:25;:::i;:::-;100935:51;;101019:10;101001:15;:28;100997:1014;;;101067:1;101060:8;;;;;100997:1014;101108:10;101090:15;:28;101086:925;;;101156:15;-1:-1:-1;101149:22:0;;101086:925;101211:10;101193:15;:28;101189:822;;;101259:22;:15;101279:1;101259:22;:19;:22;:::i;101189:822::-;101321:10;101303:15;:28;101299:712;;;101369:22;:15;101389:1;101369:22;:19;:22;:::i;101299:712::-;101431:10;101413:15;:28;101409:602;;;101479:22;:15;101499:1;101479:22;:19;:22;:::i;101409:602::-;101541:10;101523:15;:28;101519:492;;;101589:22;:15;101609:1;101589:22;:19;:22;:::i;101519:492::-;101651:10;101633:15;:28;101629:382;;;101699:22;:15;101719:1;101699:22;:19;:22;:::i;101629:382::-;101761:10;101743:15;:28;101739:272;;;101809:22;:15;101829:1;101809:22;:19;:22;:::i;101739:272::-;101871:10;101853:15;:28;101849:162;;;101919:22;:15;101939:1;101919:22;:19;:22;:::i;101849:162::-;-1:-1:-1;;;;;;;101981:18:0;;;;;;:10;:18;;;;;;101974:25;;83952:31;;;;:::o;7445:79::-;7510:6;;;;;-1:-1:-1;;;;;7510:6:0;;7445:79::o;90750:1851::-;90861:7;90886:25;90914:17;90924:6;90914:9;:17::i;:::-;90956:4;;90886:45;;-1:-1:-1;;;;;;90946:14:0;;;90956:4;;90946:14;90942:207;;;90997:140;91037:85;91075:28;:26;:28::i;:::-;91037:11;;;:85;:15;:85;:::i;:::-;90997:17;;:140;:21;:140;:::i;:::-;90977:160;;90942:207;91173:9;;-1:-1:-1;;;;;91163:19:0;;;91173:9;;91163:19;91159:222;;;91219:150;91259:95;91302:33;:31;:33::i;:::-;91259:16;;;:95;:20;:95;:::i;91219:150::-;91199:170;;91159:222;91405:7;;-1:-1:-1;;;;;91395:17:0;;;91405:7;;91395:17;91391:228;;;91449:158;91493:99;91538:31;:29;:31::i;:::-;91493:14;;;:99;:18;:99;:::i;91449:158::-;91429:178;;91391:228;-1:-1:-1;;;;;91633:19:0;;;;;;:11;:19;;;;;;;;91629:413;;;91689:155;91729:100;91776:34;91803:6;91776:26;:34::i;:::-;-1:-1:-1;;;;;91729:20:0;;;;;;:12;:20;;;;;;;:100;:24;:100;:::i;91689:155::-;91669:175;;91879:151;91919:96;91964:32;91989:6;91964:24;:32::i;:::-;-1:-1:-1;;;;;91919:18:0;;;;;;:10;:18;;;;;;;:96;:22;:96;:::i;91879:151::-;91859:171;;91629:413;-1:-1:-1;;;;;92056:22:0;;;;;;:14;:22;;;;;;;;92052:428;;;92115:161;92155:106;92205:37;92235:6;92205:29;:37::i;:::-;-1:-1:-1;;;;;92155:23:0;;;;;;:15;:23;;;;;;;:106;:27;:106;:::i;92115:161::-;92095:181;;92311:157;92351:102;92399:35;92427:6;92399:27;:35::i;:::-;-1:-1:-1;;;;;92351:21:0;;;;;;:13;:21;;;;;;;:102;:25;:102;:::i;92311:157::-;92291:177;;92052:428;-1:-1:-1;;;;;92532:23:0;;;;;;:15;:23;;;;;;92510:46;;:17;;:46;:21;:46;:::i;7811:94::-;7891:6;;7851:4;;7891:6;;;-1:-1:-1;;;;;7891:6:0;7875:12;:10;:12::i;:::-;-1:-1:-1;;;;;7875:22:0;;7868:29;;7811:94;:::o;85983:198::-;7657:9;:7;:9::i;:::-;7649:54;;;;;;;-1:-1:-1;;;;;7649:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7649:54:0;;;;;;;;;;;;;;;86148:4;;86124:49;;-1:-1:-1;;;;;86148:4:0;86155:9;86166:6;86124:15;:49::i;20818:87::-;20890:7;20883:14;;;;;;;;-1:-1:-1;;20883:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20857:13;;20883:14;;20890:7;;20883:14;;20890:7;20883:14;;;;;;;;;;;;;;;;;;;;;;;;16305:261;16390:4;16407:129;16416:12;:10;:12::i;:::-;16430:7;16439:96;16478:15;16439:96;;;;;;;;;;;;;;;;;;;;;;;:11;:25;16451:12;:10;:12::i;:::-;-1:-1:-1;;;;;16439:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16439:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;88422:204::-;88534:4;88556:40;88566:10;88578:9;88589:6;88556:9;:40::i;84132:28::-;;;-1:-1:-1;;;;;84132:28:0;;:::o;84609:50::-;;;;;;;;;;;;;:::o;84556:46::-;;;;;;;;;;;;;;;:::o;96099:1805::-;96188:7;96235:10;96217:15;:28;96213:1684;;;-1:-1:-1;96283:1:0;96276:8;;96213:1684;96324:10;96306:15;:28;96302:1595;;;96372:31;96399:3;96372:22;96391:2;96372:14;;:18;;:22;;;;:::i;96302:1595::-;96443:10;96425:15;:28;96421:1476;;;96491:31;96518:3;96491:22;96510:2;96491:14;;:18;;:22;;;;:::i;96421:1476::-;96562:10;96544:15;:28;96540:1357;;;96610:31;96637:3;96610:22;96629:2;96610:14;;:18;;:22;;;;:::i;96540:1357::-;96681:10;96663:15;:28;96659:1238;;;96729:31;96756:3;96729:22;96748:2;96729:14;;:18;;:22;;;;:::i;96659:1238::-;96800:10;96782:15;:28;96778:1119;;;96848:31;96875:3;96848:22;96867:2;96848:14;;:18;;:22;;;;:::i;96778:1119::-;96919:10;96901:15;:28;96897:1000;;;96967:31;96994:3;96967:22;96986:2;96967:14;;:18;;:22;;;;:::i;96897:1000::-;97038:10;97020:15;:28;97016:881;;;97086:31;97113:3;97086:22;97105:2;97086:14;;:18;;:22;;;;:::i;97016:881::-;97157:10;97139:15;:28;97135:762;;;97205:31;97232:3;97205:22;97224:2;97205:14;;:18;;:22;;;;:::i;97135:762::-;97276:10;97258:15;:28;97254:643;;;97324:31;97351:3;97324:22;97343:2;97324:14;;:18;;:22;;;;:::i;97254:643::-;97395:10;97377:15;:28;97373:524;;;97443:31;97470:3;97443:22;97462:2;97443:14;;:18;;:22;;;;:::i;97373:524::-;97514:10;97496:15;:28;97492:405;;;97562:31;97589:3;97562:22;97581:2;97562:14;;:18;;:22;;;;:::i;97492:405::-;97633:10;97615:15;:28;97611:286;;;97681:31;97708:3;97681:22;97700:2;97681:14;;:18;;:22;;;;:::i;97611:286::-;97752:10;97734:15;:28;97730:167;;;97800:31;97827:3;97800:22;97819:2;97800:14;;:18;;:22;;;;:::i;97730:167::-;-1:-1:-1;97871:14:0;;97864:21;;84224:22;;;-1:-1:-1;;;;;84224:22:0;;:::o;83919:26::-;;;;:::o;88295:119::-;7657:9;:7;:9::i;:::-;7649:54;;;;;;;-1:-1:-1;;;;;7649:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7649:54:0;;;;;;;;;;;;;;;88373:4;:33;;-1:-1:-1;;88373:33:0;-1:-1:-1;;;;;88373:33:0;;;;;;;;;;88295:119::o;13974:134::-;-1:-1:-1;;;;;14073:18:0;;;14046:7;14073:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13974:134::o;87996:143::-;84745:13;;-1:-1:-1;;;;;84745:13:0;84731:10;:27;84709:107;;;;;-1:-1:-1;;;;;84709:107:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;84709:107:0;;;;;;;;;;;;;;;88072:13;;88087:14;;88066:36;;-1:-1:-1;;;;;88072:13:0;;88066:5;:36::i;:::-;88130:1;88113:14;:18;87996:143::o;84451:48::-;;;;;;;;;;;;;:::o;8551:109::-;7657:9;:7;:9::i;:::-;7649:54;;;;;;;-1:-1:-1;;;;;7649:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7649:54:0;;;;;;;;;;;;;;;8624:28;8643:8;8624:18;:28::i;89668:684::-;84745:13;;89819:4;;-1:-1:-1;;;;;84745:13:0;84731:10;:27;84709:107;;;;;-1:-1:-1;;;;;84709:107:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;84709:107:0;;;;;;;;;;;;;;;89863:14;;89880:1;-1:-1:-1;89841:100:0;;;;;-1:-1:-1;;;;;89841:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;89981:26:0;;;;;;:15;:26;;;;;;:38;;90012:6;89981:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;89952:26:0;;;;;;:15;:26;;;;;:67;;;;90053:27;90074:5;90053:16;:6;90064:4;90053:16;:10;:16;:::i;:27::-;-1:-1:-1;;;;;90118:24:0;;;;;;:13;:24;;;;;;90030:50;;-1:-1:-1;90118:42:0;;90030:50;90118:42;:28;:42;:::i;:::-;-1:-1:-1;;;;;90091:24:0;;;;;;:13;:24;;;;;;;;:69;;;;90171:14;:25;;;:32;;-1:-1:-1;;90171:32:0;90199:4;90171:32;;;90231:14;;:44;;90262:12;;90231:26;;90250:6;90231:26;:18;:26;:::i;:44::-;90214:14;:61;90293:51;90308:9;90319:24;:6;90330:12;90319:24;:10;:24;:::i;2232:471::-;2290:7;2535:6;;2531:47;;;-1:-1:-1;2565:1:0;2558:8;;2531:47;2602:5;;;2606:1;2602;:5;2626;;;;;;;;:10;2618:56;;;;;-1:-1:-1;;;;;2618:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3171:132;3229:7;3256:39;3260:1;3263;3256:39;;;;;;;;;;;;;;;;;;:3;:39::i;6236:98::-;6316:10;6236:98;:::o;19236:338::-;-1:-1:-1;;;;;19330:19:0;;;;19322:68;;;;;-1:-1:-1;;;;;19322:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19409:21:0;;;;19401:68;;;;;-1:-1:-1;;;;;19401:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19482:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19534:32;;;;;;;;;;;;;;;;;19236:338;;;:::o;18448:348::-;-1:-1:-1;;;;;18524:21:0;;;;18516:67;;;;;-1:-1:-1;;;;;18516:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18617:68;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18617:18:0;;-1:-1:-1;18617:18:0;;;;;;;;;;;;:68;;18640:6;;18617:68;:22;:68;:::i;:::-;-1:-1:-1;;;;;18596:18:0;;:9;:18;;;;;;;;;;:89;18711:12;;:24;;18728:6;18711:24;:16;:24;:::i;:::-;18696:12;:39;18751:37;;;;;;;;18777:1;;-1:-1:-1;;;;;18751:37:0;;;;;;;;;;;;18448:348;;:::o;103487:1155::-;83814:10;103629:15;:37;103625:957;;;103708:4;;-1:-1:-1;;;;;103687:26:0;;;103708:4;;103687:26;103683:888;;;-1:-1:-1;;;;;103764:23:0;;;;;;:15;:23;;;;;;:33;-1:-1:-1;103764:33:0;103734:130;;;;;-1:-1:-1;;;;;103734:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;83886:10;103913:15;:32;103883:151;;;;;-1:-1:-1;;;;;103883:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104083:4;;:122;;;;;;-1:-1:-1;;;;;104083:122:0;;;;;;;;;;;;;;;:4;;;;;:15;;:122;;;;;;;;;;;;;;:4;;:122;;;5:2:-1;;;;30:1;27;20:12;5:2;104083:122:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;104083:122:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;104083:122:0;104053:208;;;;;;;-1:-1:-1;;;;;104053:208:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;104306:23:0;;;;;;:15;:23;;;;;;:75;;104356:6;104306:75;:27;:75;:::i;:::-;-1:-1:-1;;;;;104280:23:0;;;;;;:15;:23;;;;;:101;103683:888;;;104462:29;104484:6;104462:21;:29::i;:::-;104452:39;;;104422:133;;;;;-1:-1:-1;;;;;104422:133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;104592:42;104608:6;104616:9;104627:6;104592:15;:42::i;:::-;103487:1155;;;:::o;1316:136::-;1374:7;1401:43;1405:1;1408;1401:43;;;;;;;;;;;;;;;;;;:3;:43::i;860:181::-;918:7;950:5;;;974:6;;;;966:46;;;;;-1:-1:-1;;;;;966:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;13753:158;13822:4;13839:42;13849:12;:10;:12::i;:::-;13863:9;13874:6;13839:9;:42::i;19760:232::-;19832:22;19838:7;19847:6;19832:5;:22::i;:::-;19865:119;19874:7;19883:12;:10;:12::i;:::-;19897:86;19936:6;19897:86;;;;;;;;;;;;;;;;;;;;;;;:11;:20;19909:7;-1:-1:-1;;;;;19897:20:0;-1:-1:-1;;;;;19897:20:0;;;;;;;;;;;;:34;19918:12;:10;:12::i;:::-;-1:-1:-1;;;;;19897:34:0;;;;;;;;;;;;-1:-1:-1;19897:34:0;;;:86;;:38;:86;:::i;17056:471::-;-1:-1:-1;;;;;17154:20:0;;;;17146:70;;;;;-1:-1:-1;;;;;17146:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17235:23:0;;;;17227:71;;;;;-1:-1:-1;;;;;17227:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17331;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17331:17:0;;-1:-1:-1;17331:17:0;;;;;;;;;;;;:71;;17353:6;;17331:71;:21;:71;:::i;:::-;-1:-1:-1;;;;;17311:17:0;;;:9;:17;;;;;;;;;;;:91;;;;17436:20;;;;;;;:32;;17461:6;17436:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;17413:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;17484:35;;;;;;;17413:20;;17484:35;;;;;;;;;;;;;17056:471;;;:::o;1789:192::-;1875:7;1911:12;1903:6;;;;1895:29;;;;-1:-1:-1;;;;;1895:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1895:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1947:5:0;;;1789:192::o;8766:229::-;-1:-1:-1;;;;;8840:22:0;;;;8832:73;;;;;-1:-1:-1;;;;;8832:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8942:6;;8921:38;;-1:-1:-1;;;;;8921:38:0;;;;8942:6;;;;;8921:38;;;;;8970:6;:17;;-1:-1:-1;;;;;8970:17:0;;;;;-1:-1:-1;;8970:17:0;;;;;;;;;8766:229::o;3833:345::-;3919:7;4021:12;4014:5;;;4006:28;;;;-1:-1:-1;;;;;4006:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;4006:28:0;;4045:9;4061:1;4057;:5;;;;;;;;;3833:345;-1:-1:-1;;;;;3833:345:0:o

Swarm Source

bzzr://3da77f0757f88f66ae477e4ce30e3c7d1a2d7b1b32b015b662ad7d054ab5ea5d
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.