ETH Price: $2,416.87 (-0.03%)

Token

Stobox Technologies Common Stock (STBX)
 

Overview

Max Total Supply

10,000,000 STBX

Holders

51 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Filtered by Token Holder
drogbaba.eth
Balance
2,574 STBX

Value
$0.00
0x7c86a99624f3988b31065e8349a93db86c3c1ac2
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Stobox is a FinTech company that provides technology tools to streamline all operations with securities such as raising capital, secondary trading, investor relations, and makes capital markets more accessible and transparent.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
STBXToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : STBX.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.4.22 <0.8.0;

import "openzeppelin-solidity/contracts/token/ERC20/IERC20.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/utils/EnumerableSet.sol";

import "./Roles.sol";

/**
 * @title STBX | Stobox Technologies Common Stock
 * @author Stobox Technologies Inc.
 * @dev STBX ERC20 Token | This contract is opt for digital securities management.
 */
 
contract STBXToken is IERC20, Roles {
    using SafeMath for uint256;

    using EnumerableSet for EnumerableSet.AddressSet;

    struct TransferLimit {
        uint256 transferLimit;
        uint256 lastTransferLimitTimestamp;
        uint256 allowedToTransfer;
    }

    struct TransactionCountLimit {
        uint256 transactionCountLimit;
        uint256 lastTransactionCountLimitTimestamp;
        uint256 leftTransactionCountLimit;
    }

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => TransferLimit) private _transferLimits;
    mapping(address => TransactionCountLimit) private _transactionCountLimits;

    uint256 private _defaultTransferLimit;
    uint256 private _defaultTransactionCountLimit;
    uint256 private _totalSupply;
    uint256 private _kDecimals;
    uint256 private _k;

    string private _name;
    string private _symbol;

    uint8 private _decimals;

    bool public _isDisabledWitelist;
    bool public _isEnabledTransactionCount;

    EnumerableSet.AddressSet private _whitelist;
    EnumerableSet.AddressSet private _frozenlist;

    // Modifiers

    modifier onlyWhitelisted(address _account) {
        if (_isDisabledWitelist) {
            require(
                _whitelist.contains(_account),
                "STBX: not whitelisted address."
            );
        }
        _;
    }

    modifier onlyWithUnfrozenFunds(address _account) {
        require(
            _frozenlist.contains(_account) == false,
            "STBX: funds are frozen."
        );
        _;
    }

    /**
     * @notice STBXToken simply implements a ERC20 token.
     */
    constructor() public Roles(msg.sender) {
        _name = "Stobox Technologies Common Stock";
        _symbol = "STBX";
        _decimals = 0;
        _kDecimals = 18;
        _k = 10**_kDecimals;
        _defaultTransferLimit = 0;
        _defaultTransactionCountLimit = 0;

        _mint(msg.sender, 10000000);
        _whitelist.add(msg.sender);
    }

    // External functions

    /**
     * @notice Enable or disable the whitelist.
     * @param _value Flag that enables or disables the whitelist.
     */
    function toggleOpenWhitelist(bool _value) external onlySuperAdmin {
        _isDisabledWitelist = _value;
    }

    /**
     * @notice Enable or disable the transactions limit.
     * @param _value Flag that enables or disables the transactions limit.
     */
    function toggleOpenTransactionCount(bool _value) external onlySuperAdmin {
        _isEnabledTransactionCount = _value;
    }

    /**
     * @notice Add an address to the whitelist.
     * @param _address Address to add to the whitelist.
     */
    function addAddressToWhitelist(address _address) external onlyWhitelister {
        _whitelist.add(_address);
        _frozenlist.remove(_address);
    }

    /**
     * @notice Remove an address from the whitelist.
     * @param _address Address to remove from the whitelist.
     */
    function removeAddressFromWhitelist(address _address)
        external
        onlyWhitelister
    {
        _whitelist.remove(_address);
        _frozenlist.add(_address);
    }

    /**
     * @notice Freeze all funds at the address.
     * @param _account Account at which to freeze funds.
     */
    function freezeFunds(address _account) external onlyFreezer {
        _frozenlist.add(_account);
    }

    /**
     * @notice Unfreeze all funds at the address.
     * @param _account Account at which to unfreeze funds.
     */
    function unfreezeFunds(address _account) external onlyFreezer {
        _frozenlist.remove(_account);
    }

    /**
     * @notice Minting of new tokens to the address.
     * @param _account Account where to mint tokens.
     * @param _amount Amount of tokens to mint.
     */
    function mint(address _account, uint256 _amount)
        external
        onlySuperAdmin
        onlyWhitelisted(_account)
    {
        _mint(_account, _getNormilizedValue(_amount));
    }

    /**
     * @notice Burning of tokens from the address.
     * @param _account Account where to burn tokens.
     * @param _amount Amount of tokens to burn.
     *
     * Calling conditions:
     *
     * - balance of `_account` must be grater or equal than `_amount`.
     */
    function burn(address _account, uint256 _amount) external onlySuperAdmin {
        require(balanceOf(_account) >= _amount, "STBX: balance too low");
        _burn(_account, _getNormilizedValue(_amount));
    }

    /**
     * @notice Transfer funds from one address to another.
     * @param _from Address from which to transfer funds.
     * @param _where Address where to transfer funds.
     * @param _amount Amount to transfer.
     *
     * Requirements:
     *
     * - balance of `_from` must be greater or equal to `_amount`.
     */
    function transferFunds(
        address _from,
        address _where,
        uint256 _amount
    ) external onlyTransporter onlyWhitelisted(_where) returns (bool) {
        require(balanceOf(_from) >= _amount, "STBX: not enough tokens");

        _transfer(_from, _where, _getNormilizedValue(_amount));

        return true;
    }

    /**
     * @notice Stock split or merge (consolidation).
     * @param _x The count of shares before split.
     * @param _y The count of shares after split.
     * @dev 1-2: one share turns into two. 3-2: three shares turns into two.
     *
     * Requirements:
     *
     * - `_x` must not be equal to `_y`.
     * - `_x` and `_y` must be greater than 0.
     */
      /**
    function splitOrMerge(uint256 _x, uint256 _y) external onlySuperAdmin {
        require(_x != _y, "STBX: _x must not be equal to _y");
        require(_x > 0, "STBX: _x must be greater than 0");
        require(_y > 0, "STBX: _y must be greater than 0");

        _split(_x, _y);
    }
    */

    /**
     * @notice Set transfer limit for address.
     * @param _account Address where to set transfer limit.
     * @param _transferLimit Daily transfer limit for an `_account`.
     */
    function setTransferLimit(address _account, uint256 _transferLimit)
        external
        onlyLimiter
    {
        _transferLimits[_account].transferLimit = _transferLimit;
        _transferLimits[_account].allowedToTransfer = _transferLimit;
        _transferLimits[_account].lastTransferLimitTimestamp = block.timestamp;
    }

    /**
     * @notice Set transaction count limit for address.
     * @param _account Address where to set transaction count limit.
     * @param _transactionCountLimit Daily transfer limit for an `_account`.
     */
    function setTransactionCountLimit(
        address _account,
        uint256 _transactionCountLimit
    ) external onlyLimiter {
        _transactionCountLimits[_account]
            .transactionCountLimit = _transactionCountLimit;
        _transactionCountLimits[_account]
            .leftTransactionCountLimit = _transactionCountLimit;
        _transactionCountLimits[_account]
            .lastTransactionCountLimitTimestamp = block.timestamp;
    }

    // External view functions

    /**
     * @notice Checking if the address is whitelisted.
     * @param _address Address to check in the whitelist.
     * @return Is the address in the whitelist.
     */
    function isWhitelistedAddress(address _address)
        external
        view
        returns (bool)
    {
        return _whitelist.contains(_address);
    }

    /**
     * @notice Checking if the funds are frozen.
     * @param _account Address to check.
     * @return Is the funds are frozen.
     */
    function isFrozenFunds(address _account) external view returns (bool) {
        return _frozenlist.contains(_account);
    }

    /**
     * @notice Get main coefficient.
     * @return Coefficient.
     */
    function getK() external view returns (uint256) {
        return _k;
    }

    // Public functions

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

    /**
     * @notice Returns the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @notice Returns the number of decimals used to get its user representation.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @notice Returns the amount of tokens in existence.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply.mul(_k).div(10**_kDecimals);
    }

    /**
     * @notice Returns the amount of tokens owned by `_account`.
     * @param _account Account to check balance.
     */
    function balanceOf(address _account)
        public
        view
        override
        returns (uint256)
    {
        return _balances[_account].mul(_k).div(10**_kDecimals);
    }

    /**
     * @notice Returns transfer limit for `_account`.
     * Can be defaul value or personally assigned to the `_account` value.
     * @param _account Account to get transfer limit.
     */
    function getTransferLimit(address _account) public view returns (uint256) {
        if (_transferLimits[_account].transferLimit > 0) {
            return _transferLimits[_account].transferLimit;
        }

        return _defaultTransferLimit;
    }

    /**
     * @notice Get the number of tokens that can be transferred today
     * by `_account`. Can be 0 in 2 cases:
     * a) `_updateTransferLimit` function not called yet;
     * b) transfer limit was set to 0 by limiter.
     * @param _account Account to get amount allowed to transfer today.
     */
    function getAllowedToTransfer(address _account)
        public
        view
        returns (uint256)
    {
        return _transferLimits[_account].allowedToTransfer;
    }

    /**
     * @notice Returns transaction count limit for `_account`.
     * Can be default value or personally assigned to the `_account` value.
     * @param _account Account to get transfer limit.
     */
    function getTransactionCountLimit(address _account)
        public
        view
        returns (uint256)
    {
        if (_transactionCountLimits[_account].transactionCountLimit > 0) {
            return _transactionCountLimits[_account].transactionCountLimit;
        }

        return _defaultTransactionCountLimit;
    }

    /**
     * @notice Get the number of transactions that can be transferred today
     * by `_account`. Can be 0 in 2 cases:
     * a) `_updateTransferLimit` function not called yet;
     * b) transfer limit was set to 0 by limiter.
     * @param _account Account to get amount allowed to transfer today.
     */
    function getLeftTransactionCountLimit(address _account)
        public
        view
        returns (uint256)
    {
        return _transactionCountLimits[_account].leftTransactionCountLimit;
    }

    /**
     * @notice Moves `_amount` tokens from the caller's account to `_recipient`.
     * Emits a {Transfer} event.
     * @param _recipient Recipient of the tokens.
     * @param _amount Amount tokens to move.
     * @return A boolean value indicating whether the operation succeeded.
     */
    function transfer(address _recipient, uint256 _amount)
        public
        virtual
        override
        onlyWhitelisted(msg.sender)
        onlyWhitelisted(_recipient)
        onlyWithUnfrozenFunds(msg.sender)
        returns (bool)
    {
        _updateTransferLimit(msg.sender, _amount);
        _updateTransactionCountLimit(_recipient);
        _updateTransactionCountLimit(msg.sender);
        _transfer(msg.sender, _recipient, _getNormilizedValue(_amount));

        return true;
    }

    /**
     * @notice the remaining number of tokens that `_spender` will be
     * allowed to spend on behalf of `_owner` through {transferFrom}. This is
     * zero by default.
     * @param _owner Owner of tokens.
     * @param _spender Spender of tokens.
     */
    function allowance(address _owner, address _spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[_owner][_spender].mul(_k).div(10**_kDecimals);
    }

    /**
     * @notice Sets `_amount` as the allowance of `_spender` over the caller's tokens.
     * Emits an {Approval} event.
     * @param _spender Spender of the tokens.
     * @param _amount Amount of tokens to set as the allowance.
     * @return A boolean value indicating whether the operation succeeded.
     */
    function approve(address _spender, uint256 _amount)
        public
        virtual
        override
        onlyWhitelisted(msg.sender)
        onlyWhitelisted(_spender)
        onlyWithUnfrozenFunds(msg.sender)
        returns (bool)
    {
        _approve(msg.sender, _spender, _getNormilizedValue(_amount));

        return true;
    }

    /**
     * @notice Moves `_amount` tokens from `_sender` to `_recipient` using the
     * allowance mechanism. `_amount` is then deducted from the caller's
     * allowance.
     * Emits a {Transfer} event.
     * @param _sender Spender of tokens.
     * @param _recipient Recipient of tokens.
     * @param _amount Amount of tokens to transfer.
     * @return A boolean value indicating whether the operation succeeded.
     *
     * Requirements:
     *
     * - `_amount` must be less or equal allowance for the `_sender`.
     */
    function transferFrom(
        address _sender,
        address _recipient,
        uint256 _amount
    )
        public
        virtual
        override
        onlyWhitelisted(_sender)
        onlyWhitelisted(_recipient)
        onlyWithUnfrozenFunds(_sender)
        returns (bool)
    {
        _updateTransferLimit(_sender, _amount);
        _updateTransactionCountLimit(_sender);
        _updateTransactionCountLimit(_recipient);
        _transfer(_sender, _recipient, _getNormilizedValue(_amount));
        _approve(
            _sender,
            msg.sender,
            _allowances[_sender][msg.sender].sub(
                _getNormilizedValue(_amount),
                "STBX: transfer amount exceeds allowance"
            )
        );

        return true;
    }

    /**
     * @notice Increase allowance for the `_spender`.
     * @param _spender Spender of tokens.
     * @param _addedValue Value to add to the allowance for the `_spender`.
     * @return A boolean value indicating whether the operation succeeded.
     */
    function increaseAllowance(address _spender, uint256 _addedValue)
        public
        virtual
        onlyWhitelisted(msg.sender)
        onlyWhitelisted(_spender)
        onlyWithUnfrozenFunds(msg.sender)
        returns (bool)
    {
        _approve(
            msg.sender,
            _spender,
            _allowances[msg.sender][_spender].add(
                _getNormilizedValue(_addedValue)
            )
        );

        return true;
    }

    /**
     * @notice Decrease allowance for the `_spender`.
     * @param _spender Spender of tokens.
     * @param _subtractedValue Value to substruct from the allowance for the `_spender`.
     * @return A boolean value indicating whether the operation succeeded.
     *
     * Requirements:
     *
     * - result of substruction must be greater or equal to 0.
     */
    function decreaseAllowance(address _spender, uint256 _subtractedValue)
        public
        virtual
        onlyWhitelisted(msg.sender)
        onlyWhitelisted(_spender)
        onlyWithUnfrozenFunds(msg.sender)
        returns (bool)
    {
        _approve(
            msg.sender,
            _spender,
            _allowances[msg.sender][_spender].sub(
                _getNormilizedValue(_subtractedValue),
                "STBX: decreased allowance below zero"
            )
        );

        return true;
    }

    // Internal functions

    /**
     * @notice Moves tokens `_amount` from `_sender` to `_recipient`.
     * Emits a {Transfer} event.
     * @param _sender Sender of tokens.
     * @param _recipient Recipient of tokens.
     * @param _amount Amount of tokens to transfer.
     *
     * Requirements:
     *
     * - `_sender` cannot be the zero address.
     * - `_recipient` cannot be the zero address.
     * - `_sender` must have a balance of at least `_amount`.
     */
    function _transfer(
        address _sender,
        address _recipient,
        uint256 _amount
    ) internal virtual {
        require(_sender != address(0), "STBX: transfer from the zero address");
        require(_recipient != address(0), "STBX: transfer to the zero address");

        _beforeTokenTransfer(_sender, _recipient, _amount);

        _balances[_sender] = _balances[_sender].sub(
            _amount,
            "STBX: transfer amount exceeds balance"
        );
        _balances[_recipient] = _balances[_recipient].add(_amount);

        emit Transfer(_sender, _recipient, _amount);
    }

    /** @notice Creates `_amount` tokens and assigns them to `_account`, increasing
     * the total supply.
     * Emits a {Transfer} event with `_from` set to the zero address.
     * @param _account Account where to mint tokens.
     * @param _amount Amount of tokens to mint.
     *
     * Requirements:
     *
     * - `_account` cannot be the zero address.
     */
    function _mint(address _account, uint256 _amount) internal virtual {
        require(_account != address(0), "STBX: mint to the zero address");

        _beforeTokenTransfer(address(0), _account, _amount);

        _totalSupply = _totalSupply.add(_amount);
        _balances[_account] = _balances[_account].add(_amount);

        emit Transfer(address(0), _account, _amount);
    }

    /**
     * @notice Destroys `_amount` tokens from `_account`, reducing the
     * total supply.
     * Emits a {Transfer} event with `_to` set to the zero address.
     * @param _account Account where to burn tokens.
     * @param _amount Amount of tokens to burn.
     *
     * Requirements:
     *
     * - `_account` cannot be the zero address.
     * - `_amount` must have at least `amount` tokens.
     */
    function _burn(address _account, uint256 _amount) internal virtual {
        require(_account != address(0), "STBX: burn from the zero address");

        _beforeTokenTransfer(_account, address(0), _amount);

        _balances[_account] = _balances[_account].sub(
            _amount,
            "STBX: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(_amount);

        emit Transfer(_account, address(0), _amount);
    }

    /**
     * @notice Sets `_amount` as the allowance of `_spender` over the `_owner` s tokens.
     * Emits an {Approval} event.
     * @param _owner Owner of the tokens.
     * @param _spender Spender of the tokens.
     * @param _amount Amount of tokens to set as the allowance.
     *
     * Requirements:
     *
     * - `_owner` cannot be the zero address.
     * - `_spender` cannot be the zero address.
     */
    function _approve(
        address _owner,
        address _spender,
        uint256 _amount
    ) internal virtual {
        require(_owner != address(0), "STBX: approve from the zero address");
        require(_spender != address(0), "STBX: approve to the zero address");

        _allowances[_owner][_spender] = _amount;

        emit Approval(_owner, _spender, _amount);
    }

    /**
     * @notice Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     * @param _from The address from which tokens will be moved.
     * @param _to The address where tokens will be moved.
     * @param _amount Amount of tokens that will be moved.
     *
     * Calling conditions:
     *
     * - when `_from` and `_to` are both non-zero, `_amount` of ``_from``'s tokens
     * will be to transferred to `_to`.
     * - when `_from` is zero, `_amount` tokens will be minted for `_to`.
     * - when `_to` is zero, `_amount` of ``_from``'s tokens will be burned.
     * - `_from` and `_to` are never both zero.
     */
    function _beforeTokenTransfer(
        address _from,
        address _to,
        uint256 _amount
    ) internal virtual {}

    // Private functions

    /**
     * @notice Changes the global multiplier during stock splits and consolidations.
     * @param _x First coefficient.
     * @param _y Second coefficient.
     */
    function _split(uint256 _x, uint256 _y) private {
        _k = _k.mul(_y.mul(10**_kDecimals).div(_x));
        _k = _k.div(10**18);
    }

    /**
     * @notice Getting normalized value depends on coefficient.
     * @param _value Value to normilize.
     * @return Normilized value.
     */
    function _getNormilizedValue(uint256 _value)
        private
        view
        returns (uint256)
    {
        return _value.mul(10**_kDecimals).div(_k);
    }

    /**
     * @notice Update transfer limit for `_account` before each operation with
     * tokens.
     * @param _account Account to update transfer limit if needed.
     * @param _amount Amount to substruct from transfer limit after updating.
     */
    function _updateTransferLimit(address _account, uint256 _amount) private {
        if (
            _transferLimits[_account].lastTransferLimitTimestamp + 1 days <
            block.timestamp
        ) {
            _transferLimits[_account].lastTransferLimitTimestamp = block
                .timestamp;

            if (_transferLimits[_account].transferLimit > 0) {
                _transferLimits[_account].allowedToTransfer = _transferLimits[
                    _account
                ]
                    .transferLimit;
            } else {
                _transferLimits[_account]
                    .allowedToTransfer = _defaultTransferLimit;
            }
        }

        _transferLimits[_account].allowedToTransfer = _transferLimits[_account]
            .allowedToTransfer
            .sub(_amount, "STBX: transfer exceeds your transfer limit");
    }

    /**
     * @notice Update transaction count limit for `_account` before each operation with
     * tokens.
     * @param _account Account to update transaction count limit if needed.
     */
    function _updateTransactionCountLimit(address _account) private {
        if (_isEnabledTransactionCount) {
            if (
                _transactionCountLimits[_account]
                    .lastTransactionCountLimitTimestamp +
                    1 days <
                block.timestamp
            ) {
                _transactionCountLimits[_account]
                    .lastTransactionCountLimitTimestamp = block.timestamp;

                if (
                    _transactionCountLimits[_account].transactionCountLimit > 0
                ) {
                    _transactionCountLimits[_account]
                        .leftTransactionCountLimit = _transactionCountLimits[
                        _account
                    ]
                        .transactionCountLimit;
                } else {
                    _transactionCountLimits[_account]
                        .leftTransactionCountLimit = _defaultTransactionCountLimit;
                }
            }

            _transactionCountLimits[_account]
                .leftTransactionCountLimit = _transactionCountLimits[_account]
                .leftTransactionCountLimit
                .sub(1, "STBX: transfer exceeds your transaction count limit");
        }
    }
}

File 2 of 9 : Roles.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.4.22 <0.8.0;

import "openzeppelin-solidity/contracts/access/AccessControl.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";

/**
 * @title STBX | Stobox Technologies Common Stock
 * @author Stobox Technologies Inc.
 * @dev STBX ERC20 Token | This contract is opt for digital securities management.
 */

contract Roles is Ownable, AccessControl {
    bytes32 public constant WHITELISTER_ROLE = keccak256("WHITELISTER_ROLE");
    bytes32 public constant FREEZER_ROLE = keccak256("FREEZER_ROLE");
    bytes32 public constant TRANSPORTER_ROLE = keccak256("TRANSPORTER_ROLE");
    bytes32 public constant VOTER_ROLE = keccak256("VOTER_ROLE");
    bytes32 public constant LIMITER_ROLE = keccak256("LIMITER_ROLE");

    /**
     * @notice Add `_address` to the super admin role as a member.
     * @param _address Address to aad to the super admin role as a member.
     */
    constructor(address _address) public {
        _setupRole(DEFAULT_ADMIN_ROLE, _address);

        _setRoleAdmin(WHITELISTER_ROLE, DEFAULT_ADMIN_ROLE);
        _setRoleAdmin(FREEZER_ROLE, DEFAULT_ADMIN_ROLE);
        _setRoleAdmin(TRANSPORTER_ROLE, DEFAULT_ADMIN_ROLE);
        _setRoleAdmin(VOTER_ROLE, DEFAULT_ADMIN_ROLE);
        _setRoleAdmin(LIMITER_ROLE, DEFAULT_ADMIN_ROLE);
    }

    // Modifiers
    modifier onlySuperAdmin() {
        require(isSuperAdmin(msg.sender), "Restricted to super admins.");
        _;
    }

    modifier onlyWhitelister() {
        require(isWhitelister(msg.sender), "Restricted to whitelisters.");
        _;
    }

    modifier onlyFreezer() {
        require(isFreezer(msg.sender), "Restricted to freezers.");
        _;
    }

    modifier onlyTransporter() {
        require(isTransporter(msg.sender), "Restricted to transporters.");
        _;
    }

    modifier onlyVoter() {
        require(isVoter(msg.sender), "Restricted to voters.");
        _;
    }

    modifier onlyLimiter() {
        require(isLimiter(msg.sender), "Restricted to limiters.");
        _;
    }

    // External functions

    /**
     * @notice Add the super admin role for the address.
     * @param _address Address for assigning the super admin role.
     */
    function addSuperAdmin(address _address) external onlySuperAdmin {
        _assignRole(_address, DEFAULT_ADMIN_ROLE);
    }

    /**
     * @notice Add the whitelister role for the address.
     * @param _address Address for assigning the whitelister role.
     */
    function addWhitelister(address _address) external onlySuperAdmin {
        _assignRole(_address, WHITELISTER_ROLE);
    }

    /**
     * @notice Add the freezer role for the address.
     * @param _address Address for assigning the freezer role.
     */
    function addFreezer(address _address) external onlySuperAdmin {
        _assignRole(_address, FREEZER_ROLE);
    }

    /**
     * @notice Add the transporter role for the address.
     * @param _address Address for assigning the transporter role.
     */
    function addTransporter(address _address) external onlySuperAdmin {
        _assignRole(_address, TRANSPORTER_ROLE);
    }

    /**
     * @notice Add the voter role for the address.
     * @param _address Address for assigning the voter role.
     */
    function addVoter(address _address) external onlySuperAdmin {
        _assignRole(_address, VOTER_ROLE);
    }

    /**
     * @notice Add the limiter role for the address.
     * @param _address Address for assigning the limiter role.
     */
    function addLimiter(address _address) external onlySuperAdmin {
        _assignRole(_address, LIMITER_ROLE);
    }

    /**
     * @notice Renouncement of supera dmin role.
     */
    function renounceSuperAdmin() external onlySuperAdmin {
        renounceRole(DEFAULT_ADMIN_ROLE, msg.sender);
    }

    /**
     * @notice Remove the whitelister role for the address.
     * @param _address Address for removing the whitelister role.
     */
    function removeWhitelister(address _address) external onlySuperAdmin {
        _removeRole(_address, WHITELISTER_ROLE);
    }

    /**
     * @notice Remove the freezer role for the address.
     * @param _address Address for removing the freezer role.
     */
    function removeFreezer(address _address) external onlySuperAdmin {
        _removeRole(_address, FREEZER_ROLE);
    }

    /**
     * @notice Remove the transporter role for the address.
     * @param _address Address for removing the transporter role.
     */
    function removeTransporter(address _address) external onlySuperAdmin {
        _removeRole(_address, TRANSPORTER_ROLE);
    }

    /**
     * @notice Remove the voter role for the address.
     * @param _address Address for removing the voter role.
     */
    function removeVoter(address _address) external onlySuperAdmin {
        _removeRole(_address, VOTER_ROLE);
    }

    /**
     * @notice Remove the limiter role for the address.
     * @param _address Address for removing the limiter role.
     */
    function removeLimiter(address _address) external onlySuperAdmin {
        _removeRole(_address, LIMITER_ROLE);
    }

    // Public functions

    /**
     * @notice Checks if the address is assigned the super admin role.
     * @param _address Address for checking.
     */
    function isSuperAdmin(address _address) public view virtual returns (bool) {
        return hasRole(DEFAULT_ADMIN_ROLE, _address);
    }

    /**
     * @notice Checks if the address is assigned the whitelister role.
     * @param _address Address for checking.
     */
    function isWhitelister(address _address)
        public
        view
        virtual
        returns (bool)
    {
        return hasRole(WHITELISTER_ROLE, _address);
    }

    /**
     * @notice Checks if the address is assigned the freezer role.
     * @param _address Address for checking.
     */
    function isFreezer(address _address) public view virtual returns (bool) {
        return hasRole(FREEZER_ROLE, _address);
    }

    /**
     * @notice Checks if the address is assigned the transporter role.
     * @param _address Address for checking.
     */
    function isTransporter(address _address)
        public
        view
        virtual
        returns (bool)
    {
        return hasRole(TRANSPORTER_ROLE, _address);
    }

    /**
     * @notice Checks if the address is assigned the voter role.
     * @param _address Address for checking.
     */
    function isVoter(address _address) public view virtual returns (bool) {
        return hasRole(VOTER_ROLE, _address);
    }

    /**
     * @notice Checks if the address is assigned the limiter role.
     * @param _address Address for checking.
     */
    function isLimiter(address _address) public view virtual returns (bool) {
        return hasRole(LIMITER_ROLE, _address);
    }

    // Private functions

    /**
     * @notice Add the `_role` for the `_address`.
     * @param _role Role to assigning for the `_address`.
     * @param _address Address for assigning the `_role`.
     */
    function _assignRole(address _address, bytes32 _role) private {
        grantRole(_role, _address);
    }

    /**
     * @notice Remove the `_role` from the `_address`.
     * @param _role Role to removing from the `_address`.
     * @param _address Address for removing the `_role`.
     */
    function _removeRole(address _address, bytes32 _role) private {
        revokeRole(_role, _address);
    }
}

File 3 of 9 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../utils/EnumerableSet.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 4 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

File 5 of 9 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

File 7 of 9 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 8 of 9 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

File 9 of 9 : EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREEZER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIMITER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANSPORTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VOTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELISTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isDisabledWitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isEnabledTransactionCount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addAddressToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addFreezer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addLimiter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addSuperAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addTransporter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addVoter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addWhitelister","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"freezeFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getAllowedToTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getLeftTransactionCountLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getTransactionCountLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getTransferLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isFreezer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isFrozenFunds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isLimiter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isSuperAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isTransporter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isVoter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelistedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelister","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeAddressFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFreezer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeLimiter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeTransporter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeVoter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeWhitelister","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceSuperAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_transactionCountLimit","type":"uint256"}],"name":"setTransactionCountLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_transferLimit","type":"uint256"}],"name":"setTransferLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"toggleOpenTransactionCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"toggleOpenWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_where","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferFunds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"unfreezeFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5033600062000025620002f560201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620000d86000801b82620002fd60201b60201c565b6200010d7f8619cecd8b9e095ab43867f5b69d492180450fe862e6b50bfbfb24b75dd84c8a6000801b6200031360201b60201c565b620001427f92de27771f92d6942691d73358b3a4673e4880de8356f8f2cf452be87e02d3636000801b6200031360201b60201c565b620001777fddaa901e2fe3bda354fe0ede2785152d5c109282a613fe024a056a3e66c41bb36000801b6200031360201b60201c565b620001ac7f72c3eec1760bf69946625c2d4fb8e44e2c806345041960b434674fb9ab3976cf6000801b6200031360201b60201c565b620001e17ff7b34cf87af24ce01c1aff9f518b133989851466d994e0016fc14651fa02826c6000801b6200031360201b60201c565b506040518060400160405280602081526020017f53746f626f7820546563686e6f6c6f6769657320436f6d6d6f6e2053746f636b815250600b90805190602001906200022f9291906200075e565b506040518060400160405280600481526020017f5354425800000000000000000000000000000000000000000000000000000000815250600c90805190602001906200027d9291906200075e565b506000600d60006101000a81548160ff021916908360ff1602179055506012600981905550600954600a0a600a8190555060006006819055506000600781905550620002d333629896806200037760201b60201c565b620002ee33600e6200055760201b620040711790919060201c565b5062000804565b600033905090565b6200030f82826200058f60201b60201c565b5050565b806001600084815260200190815260200160002060020154837fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a48060016000848152602001908152602001600020600201819055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200041b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206d696e7420746f20746865207a65726f2061646472657373000081525060200191505060405180910390fd5b6200042f600083836200063360201b60201c565b6200044b816008546200063860201b620040a11790919060201c565b600881905550620004aa81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200063860201b620040a11790919060201c565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600062000587836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620006c160201b60201c565b905092915050565b620005be81600160008581526020019081526020016000206000016200055760201b620040711790919060201c565b156200062f57620005d4620002f560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b505050565b600080828401905083811015620006b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000620006d583836200073b60201b60201c565b6200073057826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000735565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007a157805160ff1916838001178555620007d2565b82800160010185558215620007d2579182015b82811115620007d1578251825591602001919060010190620007b4565b5b509050620007e19190620007e5565b5090565b5b8082111562000800576000816000905550600101620007e6565b5090565b6157a280620008146000396000f3fe608060405234801561001057600080fd5b50600436106103db5760003560e01c80637359ae761161020a578063a7771ee311610125578063ca15c873116100b8578063eaf9144a11610087578063eaf9144a146114eb578063ee39e7a01461152f578063f0b6e33f1461154d578063f2fde38b1461159b578063f4ab9adf146115df576103db565b8063ca15c87314611389578063d547741f146113cb578063dd62ed3e14611419578063df7f453b14611491576103db565b8063b39755a0116100f4578063b39755a0146112b3578063b3de4214146112e3578063b702204914611301578063c54467b314611345576103db565b8063a7771ee314611193578063a9059cbb146111ed578063a94015c814611251578063b3292ff01461126f576103db565b806391d148541161019d578063a10ba4171161016c578063a10ba41714611073578063a217fddf146110cd578063a2e92b67146110eb578063a457c2d71461112f576103db565b806391d1485414610efa57806395d89b4114610f5e5780639dc29fac14610fe15780639e4791b41461102f576103db565b806382c3f79c116101d957806382c3f79c14610ddc57806386c1ff6814610e205780638da5cb5b14610e645780639010d07c14610e98576103db565b80637359ae7614610cb65780637b9417c814610d0e5780637c51a57d14610d525780637d0c269f14610d82576103db565b806336568abe116102fa578063540c68721161028d5780636c65fd6a1161025c5780636c65fd6a14610bac57806370a0823114610c06578063711444ea14610c5e578063715018a614610cac576103db565b8063540c687214610a84578063570618e114610adc5780635edf9e6114610afa5780635fae057614610b52576103db565b806340c10f19116102c957806340c10f19146109ca578063416edaa014610a185780634eabbe7714610a22578063526606c914610a40576103db565b806336568abe146108b4578063371ab45e1461090257806339509351146109225780633dd4890614610986576103db565b8063248a9ca3116103725780632f2ff15d116103415780632f2ff15d146107a757806330129e60146107f5578063313ce56714610839578063349701791461085a576103db565b8063248a9ca314610683578063286dd3f5146106c55780632acd2000146107095780632b8109d51461074d576103db565b806318160ddd116103ae57806318160ddd1461056957806318dd330b1461058757806323b872dd146105df57806323fe66fb14610663576103db565b806306a85f0f146103e057806306fdde03146103fe578063095ea7b3146104815780631501bf03146104e5575b600080fd5b6103e8611623565b6040518082815260200191505060405180910390f35b610406611647565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561044657808201518184015260208101905061042b565b50505050905090810190601f1680156104735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104cd6004803603604081101561049757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116e9565b60405180821515815260200191505060405180910390f35b610551600480360360608110156104fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118d3565b60405180821515815260200191505060405180910390f35b610571611a8a565b6040518082815260200191505060405180910390f35b6105c96004803603602081101561059d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611abf565b6040518082815260200191505060405180910390f35b61064b600480360360608110156105f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b60565b60405180821515815260200191505060405180910390f35b61066b611e22565b60405180821515815260200191505060405180910390f35b6106af6004803603602081101561069957600080fd5b8101908080359060200190929190505050611e35565b6040518082815260200191505060405180910390f35b610707600480360360208110156106db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e55565b005b61074b6004803603602081101561071f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611efd565b005b61078f6004803603602081101561076357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fa5565b60405180821515815260200191505060405180910390f35b6107f3600480360360408110156107bd57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fd8565b005b6108376004803603602081101561080b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612062565b005b61084161210a565b604051808260ff16815260200191505060405180910390f35b61089c6004803603602081101561087057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612121565b60405180821515815260200191505060405180910390f35b610900600480360360408110156108ca57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612154565b005b61090a6121ed565b60405180821515815260200191505060405180910390f35b61096e6004803603604081101561093857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612200565b60405180821515815260200191505060405180910390f35b6109c86004803603602081101561099c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612478565b005b610a16600480360360408110156109e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612520565b005b610a2061264f565b005b610a2a6126d9565b6040518082815260200191505060405180910390f35b610a8260048036036020811015610a5657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126fd565b005b610ac660048036036020811015610a9a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127a5565b6040518082815260200191505060405180910390f35b610ae46127f1565b6040518082815260200191505060405180910390f35b610b3c60048036036020811015610b1057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612815565b6040518082815260200191505060405180910390f35b610b9460048036036020811015610b6857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128b6565b60405180821515815260200191505060405180910390f35b610bee60048036036020811015610bc257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128d3565b60405180821515815260200191505060405180910390f35b610c4860048036036020811015610c1c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612906565b6040518082815260200191505060405180910390f35b610caa60048036036040811015610c7457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061297a565b005b610cb4612ace565b005b610cf860048036036020811015610ccc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c3b565b6040518082815260200191505060405180910390f35b610d5060048036036020811015610d2457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c87565b005b610d8060048036036020811015610d6857600080fd5b81019080803515159060200190929190505050612d2f565b005b610dc460048036036020811015610d9857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dc7565b60405180821515815260200191505060405180910390f35b610e1e60048036036020811015610df257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dfa565b005b610e6260048036036020811015610e3657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612ea2565b005b610e6c612f4a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ece60048036036040811015610eae57600080fd5b810190808035906020019092919080359060200190929190505050612f73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610f4660048036036040811015610f1057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fa5565b60405180821515815260200191505060405180910390f35b610f66612fd7565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fa6578082015181840152602081019050610f8b565b50505050905090810190601f168015610fd35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61102d60048036036040811015610ff757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613079565b005b6110716004803603602081101561104557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613188565b005b6110b56004803603602081101561108957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061321b565b60405180821515815260200191505060405180910390f35b6110d5613238565b6040518082815260200191505060405180910390f35b61112d6004803603602081101561110157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061323f565b005b61117b6004803603604081101561114557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506132e7565b60405180821515815260200191505060405180910390f35b6111d5600480360360208110156111a957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613579565b60405180821515815260200191505060405180910390f35b6112396004803603604081101561120357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506135ac565b60405180821515815260200191505060405180910390f35b6112596137b2565b6040518082815260200191505060405180910390f35b6112b16004803603602081101561128557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506137d6565b005b6112e1600480360360208110156112c957600080fd5b81019080803515159060200190929190505050613861565b005b6112eb6138f9565b6040518082815260200191505060405180910390f35b6113436004803603602081101561131757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061391d565b005b6113876004803603602081101561135b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506139c5565b005b6113b56004803603602081101561139f57600080fd5b8101908080359060200190929190505050613a58565b6040518082815260200191505060405180910390f35b611417600480360360408110156113e157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613a7f565b005b61147b6004803603604081101561142f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613b09565b6040518082815260200191505060405180910390f35b6114d3600480360360208110156114a757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613bbb565b60405180821515815260200191505060405180910390f35b61152d6004803603602081101561150157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613bd1565b005b611537613c79565b6040518082815260200191505060405180910390f35b6115996004803603604081101561156357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613c83565b005b6115dd600480360360208110156115b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613dd7565b005b611621600480360360208110156115f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613fc9565b005b7f92de27771f92d6942691d73358b3a4673e4880de8356f8f2cf452be87e02d36381565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116df5780601f106116b4576101008083540402835291602001916116df565b820191906000526020600020905b8154815290600101906020018083116116c257829003601f168201915b5050505050905090565b600033600d60019054906101000a900460ff16156117885761171581600e61412990919063ffffffff16565b611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b83600d60019054906101000a900460ff1615611825576117b281600e61412990919063ffffffff16565b611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b336000151561183e82601061412990919063ffffffff16565b1515146118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f535442583a2066756e6473206172652066726f7a656e2e00000000000000000081525060200191505060405180910390fd5b6118c633876118c188614159565b61418e565b6001935050505092915050565b60006118de33611fa5565b611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f207472616e73706f72746572732e000000000081525060200191505060405180910390fd5b82600d60019054906101000a900460ff16156119ed5761197a81600e61412990919063ffffffff16565b6119ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b826119f786612906565b1015611a6b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f535442583a206e6f7420656e6f75676820746f6b656e7300000000000000000081525060200191505060405180910390fd5b611a7e8585611a7986614159565b614385565b60019150509392505050565b6000611aba600954600a0a611aac600a5460085461464a90919063ffffffff16565b6146d090919063ffffffff16565b905090565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541115611b5557600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050611b5b565b60075490505b919050565b600083600d60019054906101000a900460ff1615611bff57611b8c81600e61412990919063ffffffff16565b611bfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b83600d60019054906101000a900460ff1615611c9c57611c2981600e61412990919063ffffffff16565b611c9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b8560001515611cb582601061412990919063ffffffff16565b151514611d2a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f535442583a2066756e6473206172652066726f7a656e2e00000000000000000081525060200191505060405180910390fd5b611d348786614759565b611d3d876149cc565b611d46866149cc565b611d598787611d5488614159565b614385565b611e148733611e0f611d6a89614159565b60405180606001604052806027815260200161568a60279139600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614c559092919063ffffffff16565b61418e565b600193505050509392505050565b600d60019054906101000a900460ff1681565b600060016000838152602001908152602001600020600201549050919050565b611e5e33612dc7565b611ed0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2077686974656c6973746572732e000000000081525060200191505060405180910390fd5b611ee481600e614d0f90919063ffffffff16565b50611ef981601061407190919063ffffffff16565b5050565b611f0633613bbb565b611f78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b611fa2817f92de27771f92d6942691d73358b3a4673e4880de8356f8f2cf452be87e02d363614d3f565b50565b6000611fd17fddaa901e2fe3bda354fe0ede2785152d5c109282a613fe024a056a3e66c41bb383612fa5565b9050919050565b611fff6001600084815260200190815260200160002060020154611ffa614d4d565b612fa5565b612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615520602f913960400191505060405180910390fd5b61205e8282614d55565b5050565b61206b33613bbb565b6120dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b612107817ff7b34cf87af24ce01c1aff9f518b133989851466d994e0016fc14651fa02826c614d3f565b50565b6000600d60009054906101000a900460ff16905090565b600061214d7ff7b34cf87af24ce01c1aff9f518b133989851466d994e0016fc14651fa02826c83612fa5565b9050919050565b61215c614d4d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061573e602f913960400191505060405180910390fd5b6121e98282614de9565b5050565b600d60029054906101000a900460ff1681565b600033600d60019054906101000a900460ff161561229f5761222c81600e61412990919063ffffffff16565b61229e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b83600d60019054906101000a900460ff161561233c576122c981600e61412990919063ffffffff16565b61233b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b336000151561235582601061412990919063ffffffff16565b1515146123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f535442583a2066756e6473206172652066726f7a656e2e00000000000000000081525060200191505060405180910390fd5b61246b33876124666123db89614159565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a190919063ffffffff16565b61418e565b6001935050505092915050565b61248133613bbb565b6124f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b61251d817fddaa901e2fe3bda354fe0ede2785152d5c109282a613fe024a056a3e66c41bb3614d3f565b50565b61252933613bbb565b61259b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b81600d60019054906101000a900460ff1615612638576125c581600e61412990919063ffffffff16565b612637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b61264a8361264584614159565b614e7d565b505050565b61265833613bbb565b6126ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b6126d76000801b33612154565b565b7fddaa901e2fe3bda354fe0ede2785152d5c109282a613fe024a056a3e66c41bb381565b61270633613bbb565b612778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b6127a2817f92de27771f92d6942691d73358b3a4673e4880de8356f8f2cf452be87e02d363615046565b50565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b7f8619cecd8b9e095ab43867f5b69d492180450fe862e6b50bfbfb24b75dd84c8a81565b600080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411156128ab57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015490506128b1565b60065490505b919050565b60006128cc82600e61412990919063ffffffff16565b9050919050565b60006128ff7f92de27771f92d6942691d73358b3a4673e4880de8356f8f2cf452be87e02d36383612fa5565b9050919050565b6000612973600954600a0a612965600a54600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461464a90919063ffffffff16565b6146d090919063ffffffff16565b9050919050565b61298333612121565b6129f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f5265737472696374656420746f206c696d69746572732e00000000000000000081525060200191505060405180910390fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555042600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055505050565b612ad6614d4d565b73ffffffffffffffffffffffffffffffffffffffff16612af4612f4a565b73ffffffffffffffffffffffffffffffffffffffff1614612b7d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b612c9033612dc7565b612d02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2077686974656c6973746572732e000000000081525060200191505060405180910390fd5b612d1681600e61407190919063ffffffff16565b50612d2b816010614d0f90919063ffffffff16565b5050565b612d3833613bbb565b612daa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b6000612df37f8619cecd8b9e095ab43867f5b69d492180450fe862e6b50bfbfb24b75dd84c8a83612fa5565b9050919050565b612e0333613bbb565b612e75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b612e9f817f8619cecd8b9e095ab43867f5b69d492180450fe862e6b50bfbfb24b75dd84c8a614d3f565b50565b612eab33613bbb565b612f1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b612f47817f72c3eec1760bf69946625c2d4fb8e44e2c806345041960b434674fb9ab3976cf614d3f565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000612f9d826001600086815260200190815260200160002060000161505490919063ffffffff16565b905092915050565b6000612fcf826001600086815260200190815260200160002060000161412990919063ffffffff16565b905092915050565b6060600c8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561306f5780601f106130445761010080835404028352916020019161306f565b820191906000526020600020905b81548152906001019060200180831161305257829003601f168201915b5050505050905090565b61308233613bbb565b6130f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b806130fe83612906565b1015613172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f535442583a2062616c616e636520746f6f206c6f77000000000000000000000081525060200191505060405180910390fd5b6131848261317f83614159565b61506e565b5050565b613191336128d3565b613203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f5265737472696374656420746f20667265657a6572732e00000000000000000081525060200191505060405180910390fd5b613217816010614d0f90919063ffffffff16565b5050565b600061323182601061412990919063ffffffff16565b9050919050565b6000801b81565b61324833613bbb565b6132ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b6132e4817ff7b34cf87af24ce01c1aff9f518b133989851466d994e0016fc14651fa02826c615046565b50565b600033600d60019054906101000a900460ff16156133865761331381600e61412990919063ffffffff16565b613385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b83600d60019054906101000a900460ff1615613423576133b081600e61412990919063ffffffff16565b613422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b336000151561343c82601061412990919063ffffffff16565b1515146134b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f535442583a2066756e6473206172652066726f7a656e2e00000000000000000081525060200191505060405180910390fd5b61356c33876135676134c289614159565b60405180606001604052806024815260200161564460249139600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614c559092919063ffffffff16565b61418e565b6001935050505092915050565b60006135a57f72c3eec1760bf69946625c2d4fb8e44e2c806345041960b434674fb9ab3976cf83612fa5565b9050919050565b600033600d60019054906101000a900460ff161561364b576135d881600e61412990919063ffffffff16565b61364a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b83600d60019054906101000a900460ff16156136e85761367581600e61412990919063ffffffff16565b6136e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b336000151561370182601061412990919063ffffffff16565b151514613776576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f535442583a2066756e6473206172652066726f7a656e2e00000000000000000081525060200191505060405180910390fd5b6137803386614759565b613789866149cc565b613792336149cc565b6137a533876137a088614159565b614385565b6001935050505092915050565b7f72c3eec1760bf69946625c2d4fb8e44e2c806345041960b434674fb9ab3976cf81565b6137df33613bbb565b613851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b61385e816000801b615046565b50565b61386a33613bbb565b6138dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b7ff7b34cf87af24ce01c1aff9f518b133989851466d994e0016fc14651fa02826c81565b61392633613bbb565b613998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b6139c2817fddaa901e2fe3bda354fe0ede2785152d5c109282a613fe024a056a3e66c41bb3615046565b50565b6139ce336128d3565b613a40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f5265737472696374656420746f20667265657a6572732e00000000000000000081525060200191505060405180910390fd5b613a5481601061407190919063ffffffff16565b5050565b6000613a7860016000848152602001908152602001600020600001615251565b9050919050565b613aa66001600084815260200190815260200160002060020154613aa1614d4d565b612fa5565b613afb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806155f36030913960400191505060405180910390fd5b613b058282614de9565b5050565b6000613bb3600954600a0a613ba5600a54600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461464a90919063ffffffff16565b6146d090919063ffffffff16565b905092915050565b6000613bca6000801b83612fa5565b9050919050565b613bda33613bbb565b613c4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b613c76817f8619cecd8b9e095ab43867f5b69d492180450fe862e6b50bfbfb24b75dd84c8a615046565b50565b6000600a54905090565b613c8c33612121565b613cfe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f5265737472696374656420746f206c696d69746572732e00000000000000000081525060200191505060405180910390fd5b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555042600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055505050565b613ddf614d4d565b73ffffffffffffffffffffffffffffffffffffffff16613dfd612f4a565b73ffffffffffffffffffffffffffffffffffffffff1614613e86576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613f0c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806155826026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b613fd233613bbb565b614044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b61406e817f72c3eec1760bf69946625c2d4fb8e44e2c806345041960b434674fb9ab3976cf615046565b50565b6000614099836000018373ffffffffffffffffffffffffffffffffffffffff1660001b615266565b905092915050565b60008082840190508381101561411f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000614151836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6152d6565b905092915050565b6000614187600a54614179600954600a0a8561464a90919063ffffffff16565b6146d090919063ffffffff16565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614214576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806156f76023913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561429a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806155a86021913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561440b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061571a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614491576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806156686022913960400191505060405180910390fd5b61449c8383836152f9565b614508816040518060600160405280602581526020016156d260259139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614c559092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061459d81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a190919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008083141561465d57600090506146ca565b600082840290508284828161466e57fe5b04146146c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806156b16021913960400191505060405180910390fd5b809150505b92915050565b6000808211614747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161475057fe5b04905092915050565b4262015180600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101540110156149135742600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411156148c857600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550614912565b600654600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201819055505b5b614982816040518060600160405280602a81526020016155c9602a9139600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154614c559092919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201819055505050565b600d60029054906101000a900460ff1615614c52574262015180600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154011015614b9b5742600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541115614b5057600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550614b9a565b600754600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201819055505b5b614c0b600160405180606001604052806033815260200161554f60339139600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154614c559092919063ffffffff16565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201819055505b50565b6000838311158290614d02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614cc7578082015181840152602081019050614cac565b50505050905090810190601f168015614cf45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b6000614d37836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6152fe565b905092915050565b614d498183613a7f565b5050565b600033905090565b614d7d816001600085815260200190815260200160002060000161407190919063ffffffff16565b15614de557614d8a614d4d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b614e118160016000858152602001908152602001600020600001614d0f90919063ffffffff16565b15614e7957614e1e614d4d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614f20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206d696e7420746f20746865207a65726f2061646472657373000081525060200191505060405180910390fd5b614f2c600083836152f9565b614f41816008546140a190919063ffffffff16565b600881905550614f9981600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a190919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6150508183611fd8565b5050565b600061506383600001836153e6565b60001c905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415615111576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f535442583a206275726e2066726f6d20746865207a65726f206164647265737381525060200191505060405180910390fd5b61511d826000836152f9565b6151898160405180606001604052806021815260200161562360219139600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614c559092919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151e18160085461546990919063ffffffff16565b600881905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600061525f826000016154ec565b9050919050565b600061527283836152d6565b6152cb5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506152d0565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b600080836001016000848152602001908152602001600020549050600081146153da576000600182039050600060018660000180549050039050600086600001828154811061534957fe5b906000526020600020015490508087600001848154811061536657fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061539e57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506153e0565b60009150505b92915050565b600081836000018054905011615447576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154fe6022913960400191505060405180910390fd5b82600001828154811061545657fe5b9060005260206000200154905092915050565b6000828211156154e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b60008160000180549050905091905056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74535442583a207472616e73666572206578636565647320796f7572207472616e73616374696f6e20636f756e74206c696d69744f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373535442583a20617070726f766520746f20746865207a65726f2061646472657373535442583a207472616e73666572206578636565647320796f7572207472616e73666572206c696d6974416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65535442583a206275726e20616d6f756e7420657863656564732062616c616e6365535442583a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f535442583a207472616e7366657220746f20746865207a65726f2061646472657373535442583a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77535442583a207472616e7366657220616d6f756e7420657863656564732062616c616e6365535442583a20617070726f76652066726f6d20746865207a65726f2061646472657373535442583a207472616e736665722066726f6d20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220908babcda6d2b2d2287319bc076c818fbe062def19ac068620ec22b027f7b78264736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103db5760003560e01c80637359ae761161020a578063a7771ee311610125578063ca15c873116100b8578063eaf9144a11610087578063eaf9144a146114eb578063ee39e7a01461152f578063f0b6e33f1461154d578063f2fde38b1461159b578063f4ab9adf146115df576103db565b8063ca15c87314611389578063d547741f146113cb578063dd62ed3e14611419578063df7f453b14611491576103db565b8063b39755a0116100f4578063b39755a0146112b3578063b3de4214146112e3578063b702204914611301578063c54467b314611345576103db565b8063a7771ee314611193578063a9059cbb146111ed578063a94015c814611251578063b3292ff01461126f576103db565b806391d148541161019d578063a10ba4171161016c578063a10ba41714611073578063a217fddf146110cd578063a2e92b67146110eb578063a457c2d71461112f576103db565b806391d1485414610efa57806395d89b4114610f5e5780639dc29fac14610fe15780639e4791b41461102f576103db565b806382c3f79c116101d957806382c3f79c14610ddc57806386c1ff6814610e205780638da5cb5b14610e645780639010d07c14610e98576103db565b80637359ae7614610cb65780637b9417c814610d0e5780637c51a57d14610d525780637d0c269f14610d82576103db565b806336568abe116102fa578063540c68721161028d5780636c65fd6a1161025c5780636c65fd6a14610bac57806370a0823114610c06578063711444ea14610c5e578063715018a614610cac576103db565b8063540c687214610a84578063570618e114610adc5780635edf9e6114610afa5780635fae057614610b52576103db565b806340c10f19116102c957806340c10f19146109ca578063416edaa014610a185780634eabbe7714610a22578063526606c914610a40576103db565b806336568abe146108b4578063371ab45e1461090257806339509351146109225780633dd4890614610986576103db565b8063248a9ca3116103725780632f2ff15d116103415780632f2ff15d146107a757806330129e60146107f5578063313ce56714610839578063349701791461085a576103db565b8063248a9ca314610683578063286dd3f5146106c55780632acd2000146107095780632b8109d51461074d576103db565b806318160ddd116103ae57806318160ddd1461056957806318dd330b1461058757806323b872dd146105df57806323fe66fb14610663576103db565b806306a85f0f146103e057806306fdde03146103fe578063095ea7b3146104815780631501bf03146104e5575b600080fd5b6103e8611623565b6040518082815260200191505060405180910390f35b610406611647565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561044657808201518184015260208101905061042b565b50505050905090810190601f1680156104735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104cd6004803603604081101561049757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116e9565b60405180821515815260200191505060405180910390f35b610551600480360360608110156104fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118d3565b60405180821515815260200191505060405180910390f35b610571611a8a565b6040518082815260200191505060405180910390f35b6105c96004803603602081101561059d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611abf565b6040518082815260200191505060405180910390f35b61064b600480360360608110156105f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b60565b60405180821515815260200191505060405180910390f35b61066b611e22565b60405180821515815260200191505060405180910390f35b6106af6004803603602081101561069957600080fd5b8101908080359060200190929190505050611e35565b6040518082815260200191505060405180910390f35b610707600480360360208110156106db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e55565b005b61074b6004803603602081101561071f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611efd565b005b61078f6004803603602081101561076357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fa5565b60405180821515815260200191505060405180910390f35b6107f3600480360360408110156107bd57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fd8565b005b6108376004803603602081101561080b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612062565b005b61084161210a565b604051808260ff16815260200191505060405180910390f35b61089c6004803603602081101561087057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612121565b60405180821515815260200191505060405180910390f35b610900600480360360408110156108ca57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612154565b005b61090a6121ed565b60405180821515815260200191505060405180910390f35b61096e6004803603604081101561093857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612200565b60405180821515815260200191505060405180910390f35b6109c86004803603602081101561099c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612478565b005b610a16600480360360408110156109e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612520565b005b610a2061264f565b005b610a2a6126d9565b6040518082815260200191505060405180910390f35b610a8260048036036020811015610a5657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126fd565b005b610ac660048036036020811015610a9a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127a5565b6040518082815260200191505060405180910390f35b610ae46127f1565b6040518082815260200191505060405180910390f35b610b3c60048036036020811015610b1057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612815565b6040518082815260200191505060405180910390f35b610b9460048036036020811015610b6857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128b6565b60405180821515815260200191505060405180910390f35b610bee60048036036020811015610bc257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128d3565b60405180821515815260200191505060405180910390f35b610c4860048036036020811015610c1c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612906565b6040518082815260200191505060405180910390f35b610caa60048036036040811015610c7457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061297a565b005b610cb4612ace565b005b610cf860048036036020811015610ccc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c3b565b6040518082815260200191505060405180910390f35b610d5060048036036020811015610d2457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c87565b005b610d8060048036036020811015610d6857600080fd5b81019080803515159060200190929190505050612d2f565b005b610dc460048036036020811015610d9857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dc7565b60405180821515815260200191505060405180910390f35b610e1e60048036036020811015610df257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dfa565b005b610e6260048036036020811015610e3657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612ea2565b005b610e6c612f4a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ece60048036036040811015610eae57600080fd5b810190808035906020019092919080359060200190929190505050612f73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610f4660048036036040811015610f1057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fa5565b60405180821515815260200191505060405180910390f35b610f66612fd7565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fa6578082015181840152602081019050610f8b565b50505050905090810190601f168015610fd35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61102d60048036036040811015610ff757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613079565b005b6110716004803603602081101561104557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613188565b005b6110b56004803603602081101561108957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061321b565b60405180821515815260200191505060405180910390f35b6110d5613238565b6040518082815260200191505060405180910390f35b61112d6004803603602081101561110157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061323f565b005b61117b6004803603604081101561114557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506132e7565b60405180821515815260200191505060405180910390f35b6111d5600480360360208110156111a957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613579565b60405180821515815260200191505060405180910390f35b6112396004803603604081101561120357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506135ac565b60405180821515815260200191505060405180910390f35b6112596137b2565b6040518082815260200191505060405180910390f35b6112b16004803603602081101561128557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506137d6565b005b6112e1600480360360208110156112c957600080fd5b81019080803515159060200190929190505050613861565b005b6112eb6138f9565b6040518082815260200191505060405180910390f35b6113436004803603602081101561131757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061391d565b005b6113876004803603602081101561135b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506139c5565b005b6113b56004803603602081101561139f57600080fd5b8101908080359060200190929190505050613a58565b6040518082815260200191505060405180910390f35b611417600480360360408110156113e157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613a7f565b005b61147b6004803603604081101561142f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613b09565b6040518082815260200191505060405180910390f35b6114d3600480360360208110156114a757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613bbb565b60405180821515815260200191505060405180910390f35b61152d6004803603602081101561150157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613bd1565b005b611537613c79565b6040518082815260200191505060405180910390f35b6115996004803603604081101561156357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613c83565b005b6115dd600480360360208110156115b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613dd7565b005b611621600480360360208110156115f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613fc9565b005b7f92de27771f92d6942691d73358b3a4673e4880de8356f8f2cf452be87e02d36381565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116df5780601f106116b4576101008083540402835291602001916116df565b820191906000526020600020905b8154815290600101906020018083116116c257829003601f168201915b5050505050905090565b600033600d60019054906101000a900460ff16156117885761171581600e61412990919063ffffffff16565b611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b83600d60019054906101000a900460ff1615611825576117b281600e61412990919063ffffffff16565b611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b336000151561183e82601061412990919063ffffffff16565b1515146118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f535442583a2066756e6473206172652066726f7a656e2e00000000000000000081525060200191505060405180910390fd5b6118c633876118c188614159565b61418e565b6001935050505092915050565b60006118de33611fa5565b611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f207472616e73706f72746572732e000000000081525060200191505060405180910390fd5b82600d60019054906101000a900460ff16156119ed5761197a81600e61412990919063ffffffff16565b6119ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b826119f786612906565b1015611a6b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f535442583a206e6f7420656e6f75676820746f6b656e7300000000000000000081525060200191505060405180910390fd5b611a7e8585611a7986614159565b614385565b60019150509392505050565b6000611aba600954600a0a611aac600a5460085461464a90919063ffffffff16565b6146d090919063ffffffff16565b905090565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541115611b5557600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050611b5b565b60075490505b919050565b600083600d60019054906101000a900460ff1615611bff57611b8c81600e61412990919063ffffffff16565b611bfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b83600d60019054906101000a900460ff1615611c9c57611c2981600e61412990919063ffffffff16565b611c9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b8560001515611cb582601061412990919063ffffffff16565b151514611d2a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f535442583a2066756e6473206172652066726f7a656e2e00000000000000000081525060200191505060405180910390fd5b611d348786614759565b611d3d876149cc565b611d46866149cc565b611d598787611d5488614159565b614385565b611e148733611e0f611d6a89614159565b60405180606001604052806027815260200161568a60279139600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614c559092919063ffffffff16565b61418e565b600193505050509392505050565b600d60019054906101000a900460ff1681565b600060016000838152602001908152602001600020600201549050919050565b611e5e33612dc7565b611ed0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2077686974656c6973746572732e000000000081525060200191505060405180910390fd5b611ee481600e614d0f90919063ffffffff16565b50611ef981601061407190919063ffffffff16565b5050565b611f0633613bbb565b611f78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b611fa2817f92de27771f92d6942691d73358b3a4673e4880de8356f8f2cf452be87e02d363614d3f565b50565b6000611fd17fddaa901e2fe3bda354fe0ede2785152d5c109282a613fe024a056a3e66c41bb383612fa5565b9050919050565b611fff6001600084815260200190815260200160002060020154611ffa614d4d565b612fa5565b612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615520602f913960400191505060405180910390fd5b61205e8282614d55565b5050565b61206b33613bbb565b6120dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b612107817ff7b34cf87af24ce01c1aff9f518b133989851466d994e0016fc14651fa02826c614d3f565b50565b6000600d60009054906101000a900460ff16905090565b600061214d7ff7b34cf87af24ce01c1aff9f518b133989851466d994e0016fc14651fa02826c83612fa5565b9050919050565b61215c614d4d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061573e602f913960400191505060405180910390fd5b6121e98282614de9565b5050565b600d60029054906101000a900460ff1681565b600033600d60019054906101000a900460ff161561229f5761222c81600e61412990919063ffffffff16565b61229e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b83600d60019054906101000a900460ff161561233c576122c981600e61412990919063ffffffff16565b61233b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b336000151561235582601061412990919063ffffffff16565b1515146123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f535442583a2066756e6473206172652066726f7a656e2e00000000000000000081525060200191505060405180910390fd5b61246b33876124666123db89614159565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a190919063ffffffff16565b61418e565b6001935050505092915050565b61248133613bbb565b6124f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b61251d817fddaa901e2fe3bda354fe0ede2785152d5c109282a613fe024a056a3e66c41bb3614d3f565b50565b61252933613bbb565b61259b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b81600d60019054906101000a900460ff1615612638576125c581600e61412990919063ffffffff16565b612637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b61264a8361264584614159565b614e7d565b505050565b61265833613bbb565b6126ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b6126d76000801b33612154565b565b7fddaa901e2fe3bda354fe0ede2785152d5c109282a613fe024a056a3e66c41bb381565b61270633613bbb565b612778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b6127a2817f92de27771f92d6942691d73358b3a4673e4880de8356f8f2cf452be87e02d363615046565b50565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b7f8619cecd8b9e095ab43867f5b69d492180450fe862e6b50bfbfb24b75dd84c8a81565b600080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411156128ab57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015490506128b1565b60065490505b919050565b60006128cc82600e61412990919063ffffffff16565b9050919050565b60006128ff7f92de27771f92d6942691d73358b3a4673e4880de8356f8f2cf452be87e02d36383612fa5565b9050919050565b6000612973600954600a0a612965600a54600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461464a90919063ffffffff16565b6146d090919063ffffffff16565b9050919050565b61298333612121565b6129f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f5265737472696374656420746f206c696d69746572732e00000000000000000081525060200191505060405180910390fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555042600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055505050565b612ad6614d4d565b73ffffffffffffffffffffffffffffffffffffffff16612af4612f4a565b73ffffffffffffffffffffffffffffffffffffffff1614612b7d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b612c9033612dc7565b612d02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2077686974656c6973746572732e000000000081525060200191505060405180910390fd5b612d1681600e61407190919063ffffffff16565b50612d2b816010614d0f90919063ffffffff16565b5050565b612d3833613bbb565b612daa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b6000612df37f8619cecd8b9e095ab43867f5b69d492180450fe862e6b50bfbfb24b75dd84c8a83612fa5565b9050919050565b612e0333613bbb565b612e75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b612e9f817f8619cecd8b9e095ab43867f5b69d492180450fe862e6b50bfbfb24b75dd84c8a614d3f565b50565b612eab33613bbb565b612f1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b612f47817f72c3eec1760bf69946625c2d4fb8e44e2c806345041960b434674fb9ab3976cf614d3f565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000612f9d826001600086815260200190815260200160002060000161505490919063ffffffff16565b905092915050565b6000612fcf826001600086815260200190815260200160002060000161412990919063ffffffff16565b905092915050565b6060600c8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561306f5780601f106130445761010080835404028352916020019161306f565b820191906000526020600020905b81548152906001019060200180831161305257829003601f168201915b5050505050905090565b61308233613bbb565b6130f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b806130fe83612906565b1015613172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f535442583a2062616c616e636520746f6f206c6f77000000000000000000000081525060200191505060405180910390fd5b6131848261317f83614159565b61506e565b5050565b613191336128d3565b613203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f5265737472696374656420746f20667265657a6572732e00000000000000000081525060200191505060405180910390fd5b613217816010614d0f90919063ffffffff16565b5050565b600061323182601061412990919063ffffffff16565b9050919050565b6000801b81565b61324833613bbb565b6132ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b6132e4817ff7b34cf87af24ce01c1aff9f518b133989851466d994e0016fc14651fa02826c615046565b50565b600033600d60019054906101000a900460ff16156133865761331381600e61412990919063ffffffff16565b613385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b83600d60019054906101000a900460ff1615613423576133b081600e61412990919063ffffffff16565b613422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b336000151561343c82601061412990919063ffffffff16565b1515146134b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f535442583a2066756e6473206172652066726f7a656e2e00000000000000000081525060200191505060405180910390fd5b61356c33876135676134c289614159565b60405180606001604052806024815260200161564460249139600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614c559092919063ffffffff16565b61418e565b6001935050505092915050565b60006135a57f72c3eec1760bf69946625c2d4fb8e44e2c806345041960b434674fb9ab3976cf83612fa5565b9050919050565b600033600d60019054906101000a900460ff161561364b576135d881600e61412990919063ffffffff16565b61364a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b83600d60019054906101000a900460ff16156136e85761367581600e61412990919063ffffffff16565b6136e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206e6f742077686974656c697374656420616464726573732e000081525060200191505060405180910390fd5b5b336000151561370182601061412990919063ffffffff16565b151514613776576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f535442583a2066756e6473206172652066726f7a656e2e00000000000000000081525060200191505060405180910390fd5b6137803386614759565b613789866149cc565b613792336149cc565b6137a533876137a088614159565b614385565b6001935050505092915050565b7f72c3eec1760bf69946625c2d4fb8e44e2c806345041960b434674fb9ab3976cf81565b6137df33613bbb565b613851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b61385e816000801b615046565b50565b61386a33613bbb565b6138dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b7ff7b34cf87af24ce01c1aff9f518b133989851466d994e0016fc14651fa02826c81565b61392633613bbb565b613998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b6139c2817fddaa901e2fe3bda354fe0ede2785152d5c109282a613fe024a056a3e66c41bb3615046565b50565b6139ce336128d3565b613a40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f5265737472696374656420746f20667265657a6572732e00000000000000000081525060200191505060405180910390fd5b613a5481601061407190919063ffffffff16565b5050565b6000613a7860016000848152602001908152602001600020600001615251565b9050919050565b613aa66001600084815260200190815260200160002060020154613aa1614d4d565b612fa5565b613afb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806155f36030913960400191505060405180910390fd5b613b058282614de9565b5050565b6000613bb3600954600a0a613ba5600a54600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461464a90919063ffffffff16565b6146d090919063ffffffff16565b905092915050565b6000613bca6000801b83612fa5565b9050919050565b613bda33613bbb565b613c4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b613c76817f8619cecd8b9e095ab43867f5b69d492180450fe862e6b50bfbfb24b75dd84c8a615046565b50565b6000600a54905090565b613c8c33612121565b613cfe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f5265737472696374656420746f206c696d69746572732e00000000000000000081525060200191505060405180910390fd5b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555042600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055505050565b613ddf614d4d565b73ffffffffffffffffffffffffffffffffffffffff16613dfd612f4a565b73ffffffffffffffffffffffffffffffffffffffff1614613e86576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613f0c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806155826026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b613fd233613bbb565b614044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5265737472696374656420746f2073757065722061646d696e732e000000000081525060200191505060405180910390fd5b61406e817f72c3eec1760bf69946625c2d4fb8e44e2c806345041960b434674fb9ab3976cf615046565b50565b6000614099836000018373ffffffffffffffffffffffffffffffffffffffff1660001b615266565b905092915050565b60008082840190508381101561411f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000614151836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6152d6565b905092915050565b6000614187600a54614179600954600a0a8561464a90919063ffffffff16565b6146d090919063ffffffff16565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614214576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806156f76023913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561429a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806155a86021913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561440b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061571a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614491576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806156686022913960400191505060405180910390fd5b61449c8383836152f9565b614508816040518060600160405280602581526020016156d260259139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614c559092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061459d81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a190919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008083141561465d57600090506146ca565b600082840290508284828161466e57fe5b04146146c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806156b16021913960400191505060405180910390fd5b809150505b92915050565b6000808211614747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161475057fe5b04905092915050565b4262015180600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101540110156149135742600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411156148c857600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550614912565b600654600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201819055505b5b614982816040518060600160405280602a81526020016155c9602a9139600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154614c559092919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201819055505050565b600d60029054906101000a900460ff1615614c52574262015180600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154011015614b9b5742600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541115614b5057600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550614b9a565b600754600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201819055505b5b614c0b600160405180606001604052806033815260200161554f60339139600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154614c559092919063ffffffff16565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201819055505b50565b6000838311158290614d02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614cc7578082015181840152602081019050614cac565b50505050905090810190601f168015614cf45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b6000614d37836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6152fe565b905092915050565b614d498183613a7f565b5050565b600033905090565b614d7d816001600085815260200190815260200160002060000161407190919063ffffffff16565b15614de557614d8a614d4d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b614e118160016000858152602001908152602001600020600001614d0f90919063ffffffff16565b15614e7957614e1e614d4d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614f20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f535442583a206d696e7420746f20746865207a65726f2061646472657373000081525060200191505060405180910390fd5b614f2c600083836152f9565b614f41816008546140a190919063ffffffff16565b600881905550614f9981600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a190919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6150508183611fd8565b5050565b600061506383600001836153e6565b60001c905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415615111576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f535442583a206275726e2066726f6d20746865207a65726f206164647265737381525060200191505060405180910390fd5b61511d826000836152f9565b6151898160405180606001604052806021815260200161562360219139600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614c559092919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151e18160085461546990919063ffffffff16565b600881905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600061525f826000016154ec565b9050919050565b600061527283836152d6565b6152cb5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506152d0565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b600080836001016000848152602001908152602001600020549050600081146153da576000600182039050600060018660000180549050039050600086600001828154811061534957fe5b906000526020600020015490508087600001848154811061536657fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061539e57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506153e0565b60009150505b92915050565b600081836000018054905011615447576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154fe6022913960400191505060405180910390fd5b82600001828154811061545657fe5b9060005260206000200154905092915050565b6000828211156154e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b60008160000180549050905091905056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74535442583a207472616e73666572206578636565647320796f7572207472616e73616374696f6e20636f756e74206c696d69744f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373535442583a20617070726f766520746f20746865207a65726f2061646472657373535442583a207472616e73666572206578636565647320796f7572207472616e73666572206c696d6974416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65535442583a206275726e20616d6f756e7420657863656564732062616c616e6365535442583a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f535442583a207472616e7366657220746f20746865207a65726f2061646472657373535442583a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77535442583a207472616e7366657220616d6f756e7420657863656564732062616c616e6365535442583a20617070726f76652066726f6d20746865207a65726f2061646472657373535442583a207472616e736665722066726f6d20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220908babcda6d2b2d2287319bc076c818fbe062def19ac068620ec22b027f7b78264736f6c634300060c0033

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.