BNB Price: $695.44 (-2.04%)
Gas: 1 GWei
 

Overview

Max Total Supply

900,000,000AQF

Holders

2,833 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
BSC: Validator Set
Balance
5 AQF

Value
$0.00
0x0000000000000000000000000000000000001000
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

AI QUANTUM FINANCE is a technology company that researches and develops technology models especially quantum algorithms and artificial intelligence.


Update? Click here to update the token ICO / general information

Contract Source Code Verified (Exact Match)

Contract Name:
AQFToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : AQF.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./supports/SupportToken.sol";

contract AQFToken is ERC20, Ownable, SupportToken {
    constructor() ERC20("AI QUANTUM FINANCE", "AQF") {
        _mint(msg.sender, 900000000 * 10 ** decimals());
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (enableWhiteListBot) {
            if (isContract(from) && !whiteListAddressBot[from]) {
                revert("ERC20: contract from is not whitelist");
            }
            if (isContract(to) && !whiteListAddressBot[to]) {
                revert("ERC20: contract to is not whitelist");
            }
        }
        require(amount > 0, "ERC20: require amount greater than 0");
        require(
            blackListWallet[from] == false,
            "ERC20: address from is blacklist"
        );
        require(blackListWallet[to] == false, "ERC20: address to is blacklist");
        if (isEnable == true && from != address(0)) {
            uint256 amountIn = checkTransfer(from);
            if (balanceOf(from) < amountIn + amount) {
                revert(
                    "ERC20: Some available balance has been unlock gradually"
                );
            }
        }
        super._beforeTokenTransfer(from, to, amount);
    }
}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 4 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 5 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 6 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 7 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 8 of 9 : IToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IToken {
    function getITransferInvestment(
        address account
    ) external view returns (uint256);

    function getITransferAirdrop(
        address account
    ) external view returns (uint256);
}

File 9 of 9 : SupportToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import {IToken} from "../interfaces/IToken.sol";

abstract contract SupportToken is Ownable {
    mapping(address => bool) public blackListWallet;
    mapping(address => bool) public whiteListAddressBot;

    bool public enableWhiteListBot = false;
    bool public isEnable = true;
    address public investmentContract;
    address public airdropContract;

    event SetInvestmentContract(address newAddress, address oldAddress);
    event SetAirdropContract(address newAddress, address oldAddress);

    /**
	Set enable whitelist bot
	*/
    function setEnableWhiteListBot(bool _result) public onlyOwner {
        enableWhiteListBot = _result;
    }

    /**
	Set enable check Investment , Airdrop contract
	*/
    function setEnable(bool _result) public onlyOwner {
        isEnable = _result;
    }

    /**
	Set blacklist wallet can not transfer token
	*/
    function setBlackListWallet(
        address[] memory _address,
        bool result
    ) public onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            blackListWallet[_address[i]] = result;
        }
    }

    /**
	Set whitelist bot can transfer token
	*/
    function setWhiteListAddressBot(
        address[] memory _address,
        bool result
    ) public onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            whiteListAddressBot[_address[i]] = result;
        }
    }

    /**
	Clear unknown token
	*/
    function clearUnknownToken(address _tokenAddress) public onlyOwner {
        uint256 contractBalance = IERC20(_tokenAddress).balanceOf(
            address(this)
        );
        IERC20(_tokenAddress).transfer(address(msg.sender), contractBalance);
    }

    /**
	Check address is contract
	*/
    function isContract(address account) internal view returns (bool) {
        return Address.isContract(account);
    }

    /**
	set is investment contract
	*/
    function setInvestmentContract(
        address _investmentContract
    ) public onlyOwner {
        emit SetInvestmentContract(_investmentContract, investmentContract);
        investmentContract = _investmentContract;
    }

    /**
	set is airdrop contract
	*/
    function setAirdropContract(address _airdropContract) public onlyOwner {
        emit SetAirdropContract(_airdropContract, airdropContract);
        airdropContract = _airdropContract;
    }

    /**
     * @dev Withdraw Token to an address, revert if it fails.
     * @param recipient recipient of the transfer
     */
    function clearToken(
        address recipient,
        address token,
        uint256 amount
    ) public onlyOwner {
        IERC20(token).transfer(recipient, amount);
    }

    function checkTransfer(address account) public view returns (uint256) {
        uint256 amount = 0;
        if (investmentContract != address(0)) {
            amount += IToken(investmentContract).getITransferInvestment(
                account
            );
        }
        if (airdropContract != address(0)) {
            amount += IToken(airdropContract).getITransferAirdrop(account);
        }
        return amount;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":false,"internalType":"address","name":"newAddress","type":"address"},{"indexed":false,"internalType":"address","name":"oldAddress","type":"address"}],"name":"SetAirdropContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"},{"indexed":false,"internalType":"address","name":"oldAddress","type":"address"}],"name":"SetInvestmentContract","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":"airdropContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blackListWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"checkTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"clearToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"clearUnknownToken","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":[],"name":"enableWhiteListBot","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":[],"name":"investmentContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_airdropContract","type":"address"}],"name":"setAirdropContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"bool","name":"result","type":"bool"}],"name":"setBlackListWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_result","type":"bool"}],"name":"setEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_result","type":"bool"}],"name":"setEnableWhiteListBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_investmentContract","type":"address"}],"name":"setInvestmentContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"bool","name":"result","type":"bool"}],"name":"setWhiteListAddressBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListAddressBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526000600860006101000a81548160ff0219169083151502179055506001600860016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280601281526020017f4149205155414e54554d2046494e414e434500000000000000000000000000008152506040518060400160405280600381526020017f41514600000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000cc92919062000a3f565b508060049080519060200190620000e592919062000a3f565b50505062000108620000fc6200014e60201b60201c565b6200015660201b60201c565b62000148336200011d6200021c60201b60201c565b600a6200012b919062000c89565b6335a4e9006200013c919062000cda565b6200022560201b60201c565b620012bc565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000298576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028f9062000d9c565b60405180910390fd5b620002ac600083836200039e60201b60201c565b8060026000828254620002c0919062000dbe565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000317919062000dbe565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200037e919062000e2c565b60405180910390a36200039a600083836200076b60201b60201c565b5050565b600860009054906101000a900460ff16156200050b57620003c5836200077060201b60201c565b80156200041c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156200045f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004569062000ebf565b60405180910390fd5b62000470826200077060201b60201c565b8015620004c75750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156200050a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005019062000f57565b60405180910390fd5b5b6000811162000551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005489062000fef565b60405180910390fd5b60001515600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514620005e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005de9062001061565b60405180910390fd5b60001515600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146200067d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200067490620010d3565b60405180910390fd5b60011515600860019054906101000a900460ff161515148015620006ce5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156200074e576000620006e7846200078f60201b60201c565b90508181620006f7919062000dbe565b6200070885620009cf60201b60201c565b10156200074c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000743906200116b565b60405180910390fd5b505b6200076683838362000a1760201b620011271760201c565b505050565b505050565b6000620007888262000a1c60201b6200112c1760201c565b9050919050565b60008060009050600073ffffffffffffffffffffffffffffffffffffffff16600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008ae57600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321f66377846040518263ffffffff1660e01b81526004016200084a9190620011d2565b60206040518083038186803b1580156200086357600080fd5b505afa15801562000878573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200089e919062001225565b81620008ab919062000dbe565b90505b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620009c657600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637deb44a2846040518263ffffffff1660e01b8152600401620009629190620011d2565b60206040518083038186803b1580156200097b57600080fd5b505afa15801562000990573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009b6919062001225565b81620009c3919062000dbe565b90505b80915050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805462000a4d9062001286565b90600052602060002090601f01602090048101928262000a71576000855562000abd565b82601f1062000a8c57805160ff191683800117855562000abd565b8280016001018555821562000abd579182015b8281111562000abc57825182559160200191906001019062000a9f565b5b50905062000acc919062000ad0565b5090565b5b8082111562000aeb57600081600090555060010162000ad1565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000b7d5780860481111562000b555762000b5462000aef565b5b600185161562000b655780820291505b808102905062000b758562000b1e565b945062000b35565b94509492505050565b60008262000b98576001905062000c6b565b8162000ba8576000905062000c6b565b816001811462000bc1576002811462000bcc5762000c02565b600191505062000c6b565b60ff84111562000be15762000be062000aef565b5b8360020a91508482111562000bfb5762000bfa62000aef565b5b5062000c6b565b5060208310610133831016604e8410600b841016171562000c3c5782820a90508381111562000c365762000c3562000aef565b5b62000c6b565b62000c4b848484600162000b2b565b9250905081840481111562000c655762000c6462000aef565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000c968262000c72565b915062000ca38362000c7c565b925062000cd27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b86565b905092915050565b600062000ce78262000c72565b915062000cf48362000c72565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d305762000d2f62000aef565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d84601f8362000d3b565b915062000d918262000d4c565b602082019050919050565b6000602082019050818103600083015262000db78162000d75565b9050919050565b600062000dcb8262000c72565b915062000dd88362000c72565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e105762000e0f62000aef565b5b828201905092915050565b62000e268162000c72565b82525050565b600060208201905062000e43600083018462000e1b565b92915050565b7f45524332303a20636f6e74726163742066726f6d206973206e6f74207768697460008201527f656c697374000000000000000000000000000000000000000000000000000000602082015250565b600062000ea760258362000d3b565b915062000eb48262000e49565b604082019050919050565b6000602082019050818103600083015262000eda8162000e98565b9050919050565b7f45524332303a20636f6e747261637420746f206973206e6f742077686974656c60008201527f6973740000000000000000000000000000000000000000000000000000000000602082015250565b600062000f3f60238362000d3b565b915062000f4c8262000ee1565b604082019050919050565b6000602082019050818103600083015262000f728162000f30565b9050919050565b7f45524332303a207265717569726520616d6f756e74206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b600062000fd760248362000d3b565b915062000fe48262000f79565b604082019050919050565b600060208201905081810360008301526200100a8162000fc8565b9050919050565b7f45524332303a20616464726573732066726f6d20697320626c61636b6c697374600082015250565b60006200104960208362000d3b565b9150620010568262001011565b602082019050919050565b600060208201905081810360008301526200107c816200103a565b9050919050565b7f45524332303a206164647265737320746f20697320626c61636b6c6973740000600082015250565b6000620010bb601e8362000d3b565b9150620010c88262001083565b602082019050919050565b60006020820190508181036000830152620010ee81620010ac565b9050919050565b7f45524332303a20536f6d6520617661696c61626c652062616c616e636520686160008201527f73206265656e20756e6c6f636b206772616475616c6c79000000000000000000602082015250565b60006200115360378362000d3b565b91506200116082620010f5565b604082019050919050565b60006020820190508181036000830152620011868162001144565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011ba826200118d565b9050919050565b620011cc81620011ad565b82525050565b6000602082019050620011e96000830184620011c1565b92915050565b600080fd5b620011ff8162000c72565b81146200120b57600080fd5b50565b6000815190506200121f81620011f4565b92915050565b6000602082840312156200123e576200123d620011ef565b5b60006200124e848285016200120e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200129f57607f821691505b60208210811415620012b657620012b562001257565b5b50919050565b612a9280620012cc6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80637726bed311610104578063ab2be726116100a2578063d5597fae11610071578063d5597fae1461052e578063dd62ed3e1461055e578063f2fde38b1461058e578063fd2bf99e146105aa576101cf565b8063ab2be726146104bc578063b94e0a09146104da578063cb4156aa146104f6578063ccbe764a14610512576101cf565b806395d89b41116100de57806395d89b411461040e578063a457c2d71461042c578063a77c1b081461045c578063a9059cbb1461048c576101cf565b80637726bed3146103b85780638436a664146103d45780638da5cb5b146103f0576101cf565b806337e429be1161017157806357d813c11161014b57806357d813c1146103445780636f0115381461036257806370a082311461037e578063715018a6146103ae576101cf565b806337e429be146102da57806339509351146102f65780634bb77d6814610326576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd146102705780632cbffc1f146102a0578063313ce567146102bc576101cf565b806306fdde03146101d4578063095ea7b3146101f25780630ca1429a14610222575b600080fd5b6101dc6105c8565b6040516101e99190611baa565b60405180910390f35b61020c60048036038101906102079190611c74565b61065a565b6040516102199190611ccf565b60405180910390f35b61023c60048036038101906102379190611cea565b61067d565b6040516102499190611ccf565b60405180910390f35b61025a61069d565b6040516102679190611d26565b60405180910390f35b61028a60048036038101906102859190611d41565b6106a7565b6040516102979190611ccf565b60405180910390f35b6102ba60048036038101906102b59190611f08565b6106d6565b005b6102c4610773565b6040516102d19190611f80565b60405180910390f35b6102f460048036038101906102ef9190611cea565b61077c565b005b610310600480360381019061030b9190611c74565b6108a3565b60405161031d9190611ccf565b60405180910390f35b61032e6108da565b60405161033b9190611ccf565b60405180910390f35b61034c6108ed565b6040516103599190611ccf565b60405180910390f35b61037c60048036038101906103779190611cea565b610900565b005b61039860048036038101906103939190611cea565b6109a7565b6040516103a59190611d26565b60405180910390f35b6103b66109ef565b005b6103d260048036038101906103cd9190611f9b565b610a03565b005b6103ee60048036038101906103e99190611f08565b610a28565b005b6103f8610ac5565b6040516104059190611fd7565b60405180910390f35b610416610aef565b6040516104239190611baa565b60405180910390f35b61044660048036038101906104419190611c74565b610b81565b6040516104539190611ccf565b60405180910390f35b61047660048036038101906104719190611cea565b610bf8565b6040516104839190611d26565b60405180910390f35b6104a660048036038101906104a19190611c74565b610e26565b6040516104b39190611ccf565b60405180910390f35b6104c4610e49565b6040516104d19190611fd7565b60405180910390f35b6104f460048036038101906104ef9190611f9b565b610e6f565b005b610510600480360381019061050b9190611cea565b610e94565b005b61052c60048036038101906105279190611d41565b610f3b565b005b61054860048036038101906105439190611cea565b610fd6565b6040516105559190611ccf565b60405180910390f35b61057860048036038101906105739190611ff2565b610ff6565b6040516105859190611d26565b60405180910390f35b6105a860048036038101906105a39190611cea565b61107d565b005b6105b2611101565b6040516105bf9190611fd7565b60405180910390f35b6060600380546105d790612061565b80601f016020809104026020016040519081016040528092919081815260200182805461060390612061565b80156106505780601f1061062557610100808354040283529160200191610650565b820191906000526020600020905b81548152906001019060200180831161063357829003601f168201915b5050505050905090565b60008061066561114f565b9050610672818585611157565b600191505092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6000806106b261114f565b90506106bf858285611322565b6106ca8585856113ae565b60019150509392505050565b6106de61162f565b60005b825181101561076e57816006600085848151811061070257610701612093565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610766906120f1565b9150506106e1565b505050565b60006012905090565b61078461162f565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107bf9190611fd7565b60206040518083038186803b1580156107d757600080fd5b505afa1580156107eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080f919061214f565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161084c92919061217c565b602060405180830381600087803b15801561086657600080fd5b505af115801561087a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089e91906121ba565b505050565b6000806108ae61114f565b90506108cf8185856108c08589610ff6565b6108ca91906121e7565b611157565b600191505092915050565b600860019054906101000a900460ff1681565b600860009054906101000a900460ff1681565b61090861162f565b7f339981a65b303b07ceead87a30d5f2eaceb669d6df65d7ed5561ab779498a29481600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405161095b92919061223d565b60405180910390a180600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109f761162f565b610a0160006116ad565b565b610a0b61162f565b80600860016101000a81548160ff02191690831515021790555050565b610a3061162f565b60005b8251811015610ac0578160076000858481518110610a5457610a53612093565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ab8906120f1565b915050610a33565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610afe90612061565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2a90612061565b8015610b775780601f10610b4c57610100808354040283529160200191610b77565b820191906000526020600020905b815481529060010190602001808311610b5a57829003601f168201915b5050505050905090565b600080610b8c61114f565b90506000610b9a8286610ff6565b905083811015610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd6906122d8565b60405180910390fd5b610bec8286868403611157565b60019250505092915050565b60008060009050600073ffffffffffffffffffffffffffffffffffffffff16600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d0e57600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321f66377846040518263ffffffff1660e01b8152600401610cb09190611fd7565b60206040518083038186803b158015610cc857600080fd5b505afa158015610cdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d00919061214f565b81610d0b91906121e7565b90505b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e1d57600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637deb44a2846040518263ffffffff1660e01b8152600401610dbf9190611fd7565b60206040518083038186803b158015610dd757600080fd5b505afa158015610deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0f919061214f565b81610e1a91906121e7565b90505b80915050919050565b600080610e3161114f565b9050610e3e8185856113ae565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e7761162f565b80600860006101000a81548160ff02191690831515021790555050565b610e9c61162f565b7fcbe8ba6fd97d6e1533b348d03bd4d4995f0219cae952ea2aabf16d88034a204181600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051610eef92919061223d565b60405180910390a180600860026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610f4361162f565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401610f7e92919061217c565b602060405180830381600087803b158015610f9857600080fd5b505af1158015610fac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd091906121ba565b50505050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61108561162f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec9061236a565b60405180910390fd5b6110fe816116ad565b50565b600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be906123fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e9061248e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113159190611d26565b60405180910390a3505050565b600061132e8484610ff6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113a8578181101561139a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611391906124fa565b60405180910390fd5b6113a78484848403611157565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561141e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114159061258c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114859061261e565b60405180910390fd5b611499838383611773565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561151f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611516906126b0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115b291906121e7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116169190611d26565b60405180910390a3611629848484611afa565b50505050565b61163761114f565b73ffffffffffffffffffffffffffffffffffffffff16611655610ac5565b73ffffffffffffffffffffffffffffffffffffffff16146116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a29061271c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600860009054906101000a900460ff16156118c75761179183611aff565b80156117e75750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e906127ae565b60405180910390fd5b61183082611aff565b80156118865750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90612840565b60405180910390fd5b5b6000811161190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906128d2565b60405180910390fd5b60001515600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461199d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119949061293e565b60405180910390fd5b60001515600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a27906129aa565b60405180910390fd5b60011515600860019054906101000a900460ff161515148015611a805750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611aea576000611a9084610bf8565b90508181611a9e91906121e7565b611aa7856109a7565b1015611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf90612a3c565b60405180910390fd5b505b611af5838383611127565b505050565b505050565b6000611b0a8261112c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b4b578082015181840152602081019050611b30565b83811115611b5a576000848401525b50505050565b6000601f19601f8301169050919050565b6000611b7c82611b11565b611b868185611b1c565b9350611b96818560208601611b2d565b611b9f81611b60565b840191505092915050565b60006020820190508181036000830152611bc48184611b71565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c0b82611be0565b9050919050565b611c1b81611c00565b8114611c2657600080fd5b50565b600081359050611c3881611c12565b92915050565b6000819050919050565b611c5181611c3e565b8114611c5c57600080fd5b50565b600081359050611c6e81611c48565b92915050565b60008060408385031215611c8b57611c8a611bd6565b5b6000611c9985828601611c29565b9250506020611caa85828601611c5f565b9150509250929050565b60008115159050919050565b611cc981611cb4565b82525050565b6000602082019050611ce46000830184611cc0565b92915050565b600060208284031215611d0057611cff611bd6565b5b6000611d0e84828501611c29565b91505092915050565b611d2081611c3e565b82525050565b6000602082019050611d3b6000830184611d17565b92915050565b600080600060608486031215611d5a57611d59611bd6565b5b6000611d6886828701611c29565b9350506020611d7986828701611c29565b9250506040611d8a86828701611c5f565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611dd182611b60565b810181811067ffffffffffffffff82111715611df057611def611d99565b5b80604052505050565b6000611e03611bcc565b9050611e0f8282611dc8565b919050565b600067ffffffffffffffff821115611e2f57611e2e611d99565b5b602082029050602081019050919050565b600080fd5b6000611e58611e5384611e14565b611df9565b90508083825260208201905060208402830185811115611e7b57611e7a611e40565b5b835b81811015611ea45780611e908882611c29565b845260208401935050602081019050611e7d565b5050509392505050565b600082601f830112611ec357611ec2611d94565b5b8135611ed3848260208601611e45565b91505092915050565b611ee581611cb4565b8114611ef057600080fd5b50565b600081359050611f0281611edc565b92915050565b60008060408385031215611f1f57611f1e611bd6565b5b600083013567ffffffffffffffff811115611f3d57611f3c611bdb565b5b611f4985828601611eae565b9250506020611f5a85828601611ef3565b9150509250929050565b600060ff82169050919050565b611f7a81611f64565b82525050565b6000602082019050611f956000830184611f71565b92915050565b600060208284031215611fb157611fb0611bd6565b5b6000611fbf84828501611ef3565b91505092915050565b611fd181611c00565b82525050565b6000602082019050611fec6000830184611fc8565b92915050565b6000806040838503121561200957612008611bd6565b5b600061201785828601611c29565b925050602061202885828601611c29565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061207957607f821691505b6020821081141561208d5761208c612032565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120fc82611c3e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561212f5761212e6120c2565b5b600182019050919050565b60008151905061214981611c48565b92915050565b60006020828403121561216557612164611bd6565b5b60006121738482850161213a565b91505092915050565b60006040820190506121916000830185611fc8565b61219e6020830184611d17565b9392505050565b6000815190506121b481611edc565b92915050565b6000602082840312156121d0576121cf611bd6565b5b60006121de848285016121a5565b91505092915050565b60006121f282611c3e565b91506121fd83611c3e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612232576122316120c2565b5b828201905092915050565b60006040820190506122526000830185611fc8565b61225f6020830184611fc8565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006122c2602583611b1c565b91506122cd82612266565b604082019050919050565b600060208201905081810360008301526122f1816122b5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612354602683611b1c565b915061235f826122f8565b604082019050919050565b6000602082019050818103600083015261238381612347565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006123e6602483611b1c565b91506123f18261238a565b604082019050919050565b60006020820190508181036000830152612415816123d9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612478602283611b1c565b91506124838261241c565b604082019050919050565b600060208201905081810360008301526124a78161246b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006124e4601d83611b1c565b91506124ef826124ae565b602082019050919050565b60006020820190508181036000830152612513816124d7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612576602583611b1c565b91506125818261251a565b604082019050919050565b600060208201905081810360008301526125a581612569565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612608602383611b1c565b9150612613826125ac565b604082019050919050565b60006020820190508181036000830152612637816125fb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061269a602683611b1c565b91506126a58261263e565b604082019050919050565b600060208201905081810360008301526126c98161268d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612706602083611b1c565b9150612711826126d0565b602082019050919050565b60006020820190508181036000830152612735816126f9565b9050919050565b7f45524332303a20636f6e74726163742066726f6d206973206e6f74207768697460008201527f656c697374000000000000000000000000000000000000000000000000000000602082015250565b6000612798602583611b1c565b91506127a38261273c565b604082019050919050565b600060208201905081810360008301526127c78161278b565b9050919050565b7f45524332303a20636f6e747261637420746f206973206e6f742077686974656c60008201527f6973740000000000000000000000000000000000000000000000000000000000602082015250565b600061282a602383611b1c565b9150612835826127ce565b604082019050919050565b600060208201905081810360008301526128598161281d565b9050919050565b7f45524332303a207265717569726520616d6f756e74206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b60006128bc602483611b1c565b91506128c782612860565b604082019050919050565b600060208201905081810360008301526128eb816128af565b9050919050565b7f45524332303a20616464726573732066726f6d20697320626c61636b6c697374600082015250565b6000612928602083611b1c565b9150612933826128f2565b602082019050919050565b600060208201905081810360008301526129578161291b565b9050919050565b7f45524332303a206164647265737320746f20697320626c61636b6c6973740000600082015250565b6000612994601e83611b1c565b915061299f8261295e565b602082019050919050565b600060208201905081810360008301526129c381612987565b9050919050565b7f45524332303a20536f6d6520617661696c61626c652062616c616e636520686160008201527f73206265656e20756e6c6f636b206772616475616c6c79000000000000000000602082015250565b6000612a26603783611b1c565b9150612a31826129ca565b604082019050919050565b60006020820190508181036000830152612a5581612a19565b905091905056fea26469706673582212204ffa7d889cf97623d7e5658c978246f1552c482453086e5e5fd805e1b7a6973464736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80637726bed311610104578063ab2be726116100a2578063d5597fae11610071578063d5597fae1461052e578063dd62ed3e1461055e578063f2fde38b1461058e578063fd2bf99e146105aa576101cf565b8063ab2be726146104bc578063b94e0a09146104da578063cb4156aa146104f6578063ccbe764a14610512576101cf565b806395d89b41116100de57806395d89b411461040e578063a457c2d71461042c578063a77c1b081461045c578063a9059cbb1461048c576101cf565b80637726bed3146103b85780638436a664146103d45780638da5cb5b146103f0576101cf565b806337e429be1161017157806357d813c11161014b57806357d813c1146103445780636f0115381461036257806370a082311461037e578063715018a6146103ae576101cf565b806337e429be146102da57806339509351146102f65780634bb77d6814610326576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd146102705780632cbffc1f146102a0578063313ce567146102bc576101cf565b806306fdde03146101d4578063095ea7b3146101f25780630ca1429a14610222575b600080fd5b6101dc6105c8565b6040516101e99190611baa565b60405180910390f35b61020c60048036038101906102079190611c74565b61065a565b6040516102199190611ccf565b60405180910390f35b61023c60048036038101906102379190611cea565b61067d565b6040516102499190611ccf565b60405180910390f35b61025a61069d565b6040516102679190611d26565b60405180910390f35b61028a60048036038101906102859190611d41565b6106a7565b6040516102979190611ccf565b60405180910390f35b6102ba60048036038101906102b59190611f08565b6106d6565b005b6102c4610773565b6040516102d19190611f80565b60405180910390f35b6102f460048036038101906102ef9190611cea565b61077c565b005b610310600480360381019061030b9190611c74565b6108a3565b60405161031d9190611ccf565b60405180910390f35b61032e6108da565b60405161033b9190611ccf565b60405180910390f35b61034c6108ed565b6040516103599190611ccf565b60405180910390f35b61037c60048036038101906103779190611cea565b610900565b005b61039860048036038101906103939190611cea565b6109a7565b6040516103a59190611d26565b60405180910390f35b6103b66109ef565b005b6103d260048036038101906103cd9190611f9b565b610a03565b005b6103ee60048036038101906103e99190611f08565b610a28565b005b6103f8610ac5565b6040516104059190611fd7565b60405180910390f35b610416610aef565b6040516104239190611baa565b60405180910390f35b61044660048036038101906104419190611c74565b610b81565b6040516104539190611ccf565b60405180910390f35b61047660048036038101906104719190611cea565b610bf8565b6040516104839190611d26565b60405180910390f35b6104a660048036038101906104a19190611c74565b610e26565b6040516104b39190611ccf565b60405180910390f35b6104c4610e49565b6040516104d19190611fd7565b60405180910390f35b6104f460048036038101906104ef9190611f9b565b610e6f565b005b610510600480360381019061050b9190611cea565b610e94565b005b61052c60048036038101906105279190611d41565b610f3b565b005b61054860048036038101906105439190611cea565b610fd6565b6040516105559190611ccf565b60405180910390f35b61057860048036038101906105739190611ff2565b610ff6565b6040516105859190611d26565b60405180910390f35b6105a860048036038101906105a39190611cea565b61107d565b005b6105b2611101565b6040516105bf9190611fd7565b60405180910390f35b6060600380546105d790612061565b80601f016020809104026020016040519081016040528092919081815260200182805461060390612061565b80156106505780601f1061062557610100808354040283529160200191610650565b820191906000526020600020905b81548152906001019060200180831161063357829003601f168201915b5050505050905090565b60008061066561114f565b9050610672818585611157565b600191505092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6000806106b261114f565b90506106bf858285611322565b6106ca8585856113ae565b60019150509392505050565b6106de61162f565b60005b825181101561076e57816006600085848151811061070257610701612093565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610766906120f1565b9150506106e1565b505050565b60006012905090565b61078461162f565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107bf9190611fd7565b60206040518083038186803b1580156107d757600080fd5b505afa1580156107eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080f919061214f565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161084c92919061217c565b602060405180830381600087803b15801561086657600080fd5b505af115801561087a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089e91906121ba565b505050565b6000806108ae61114f565b90506108cf8185856108c08589610ff6565b6108ca91906121e7565b611157565b600191505092915050565b600860019054906101000a900460ff1681565b600860009054906101000a900460ff1681565b61090861162f565b7f339981a65b303b07ceead87a30d5f2eaceb669d6df65d7ed5561ab779498a29481600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405161095b92919061223d565b60405180910390a180600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109f761162f565b610a0160006116ad565b565b610a0b61162f565b80600860016101000a81548160ff02191690831515021790555050565b610a3061162f565b60005b8251811015610ac0578160076000858481518110610a5457610a53612093565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ab8906120f1565b915050610a33565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610afe90612061565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2a90612061565b8015610b775780601f10610b4c57610100808354040283529160200191610b77565b820191906000526020600020905b815481529060010190602001808311610b5a57829003601f168201915b5050505050905090565b600080610b8c61114f565b90506000610b9a8286610ff6565b905083811015610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd6906122d8565b60405180910390fd5b610bec8286868403611157565b60019250505092915050565b60008060009050600073ffffffffffffffffffffffffffffffffffffffff16600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d0e57600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321f66377846040518263ffffffff1660e01b8152600401610cb09190611fd7565b60206040518083038186803b158015610cc857600080fd5b505afa158015610cdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d00919061214f565b81610d0b91906121e7565b90505b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e1d57600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637deb44a2846040518263ffffffff1660e01b8152600401610dbf9190611fd7565b60206040518083038186803b158015610dd757600080fd5b505afa158015610deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0f919061214f565b81610e1a91906121e7565b90505b80915050919050565b600080610e3161114f565b9050610e3e8185856113ae565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e7761162f565b80600860006101000a81548160ff02191690831515021790555050565b610e9c61162f565b7fcbe8ba6fd97d6e1533b348d03bd4d4995f0219cae952ea2aabf16d88034a204181600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051610eef92919061223d565b60405180910390a180600860026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610f4361162f565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401610f7e92919061217c565b602060405180830381600087803b158015610f9857600080fd5b505af1158015610fac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd091906121ba565b50505050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61108561162f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec9061236a565b60405180910390fd5b6110fe816116ad565b50565b600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be906123fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e9061248e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113159190611d26565b60405180910390a3505050565b600061132e8484610ff6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113a8578181101561139a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611391906124fa565b60405180910390fd5b6113a78484848403611157565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561141e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114159061258c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114859061261e565b60405180910390fd5b611499838383611773565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561151f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611516906126b0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115b291906121e7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116169190611d26565b60405180910390a3611629848484611afa565b50505050565b61163761114f565b73ffffffffffffffffffffffffffffffffffffffff16611655610ac5565b73ffffffffffffffffffffffffffffffffffffffff16146116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a29061271c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600860009054906101000a900460ff16156118c75761179183611aff565b80156117e75750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e906127ae565b60405180910390fd5b61183082611aff565b80156118865750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90612840565b60405180910390fd5b5b6000811161190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906128d2565b60405180910390fd5b60001515600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461199d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119949061293e565b60405180910390fd5b60001515600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a27906129aa565b60405180910390fd5b60011515600860019054906101000a900460ff161515148015611a805750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611aea576000611a9084610bf8565b90508181611a9e91906121e7565b611aa7856109a7565b1015611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf90612a3c565b60405180910390fd5b505b611af5838383611127565b505050565b505050565b6000611b0a8261112c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b4b578082015181840152602081019050611b30565b83811115611b5a576000848401525b50505050565b6000601f19601f8301169050919050565b6000611b7c82611b11565b611b868185611b1c565b9350611b96818560208601611b2d565b611b9f81611b60565b840191505092915050565b60006020820190508181036000830152611bc48184611b71565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c0b82611be0565b9050919050565b611c1b81611c00565b8114611c2657600080fd5b50565b600081359050611c3881611c12565b92915050565b6000819050919050565b611c5181611c3e565b8114611c5c57600080fd5b50565b600081359050611c6e81611c48565b92915050565b60008060408385031215611c8b57611c8a611bd6565b5b6000611c9985828601611c29565b9250506020611caa85828601611c5f565b9150509250929050565b60008115159050919050565b611cc981611cb4565b82525050565b6000602082019050611ce46000830184611cc0565b92915050565b600060208284031215611d0057611cff611bd6565b5b6000611d0e84828501611c29565b91505092915050565b611d2081611c3e565b82525050565b6000602082019050611d3b6000830184611d17565b92915050565b600080600060608486031215611d5a57611d59611bd6565b5b6000611d6886828701611c29565b9350506020611d7986828701611c29565b9250506040611d8a86828701611c5f565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611dd182611b60565b810181811067ffffffffffffffff82111715611df057611def611d99565b5b80604052505050565b6000611e03611bcc565b9050611e0f8282611dc8565b919050565b600067ffffffffffffffff821115611e2f57611e2e611d99565b5b602082029050602081019050919050565b600080fd5b6000611e58611e5384611e14565b611df9565b90508083825260208201905060208402830185811115611e7b57611e7a611e40565b5b835b81811015611ea45780611e908882611c29565b845260208401935050602081019050611e7d565b5050509392505050565b600082601f830112611ec357611ec2611d94565b5b8135611ed3848260208601611e45565b91505092915050565b611ee581611cb4565b8114611ef057600080fd5b50565b600081359050611f0281611edc565b92915050565b60008060408385031215611f1f57611f1e611bd6565b5b600083013567ffffffffffffffff811115611f3d57611f3c611bdb565b5b611f4985828601611eae565b9250506020611f5a85828601611ef3565b9150509250929050565b600060ff82169050919050565b611f7a81611f64565b82525050565b6000602082019050611f956000830184611f71565b92915050565b600060208284031215611fb157611fb0611bd6565b5b6000611fbf84828501611ef3565b91505092915050565b611fd181611c00565b82525050565b6000602082019050611fec6000830184611fc8565b92915050565b6000806040838503121561200957612008611bd6565b5b600061201785828601611c29565b925050602061202885828601611c29565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061207957607f821691505b6020821081141561208d5761208c612032565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120fc82611c3e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561212f5761212e6120c2565b5b600182019050919050565b60008151905061214981611c48565b92915050565b60006020828403121561216557612164611bd6565b5b60006121738482850161213a565b91505092915050565b60006040820190506121916000830185611fc8565b61219e6020830184611d17565b9392505050565b6000815190506121b481611edc565b92915050565b6000602082840312156121d0576121cf611bd6565b5b60006121de848285016121a5565b91505092915050565b60006121f282611c3e565b91506121fd83611c3e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612232576122316120c2565b5b828201905092915050565b60006040820190506122526000830185611fc8565b61225f6020830184611fc8565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006122c2602583611b1c565b91506122cd82612266565b604082019050919050565b600060208201905081810360008301526122f1816122b5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612354602683611b1c565b915061235f826122f8565b604082019050919050565b6000602082019050818103600083015261238381612347565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006123e6602483611b1c565b91506123f18261238a565b604082019050919050565b60006020820190508181036000830152612415816123d9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612478602283611b1c565b91506124838261241c565b604082019050919050565b600060208201905081810360008301526124a78161246b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006124e4601d83611b1c565b91506124ef826124ae565b602082019050919050565b60006020820190508181036000830152612513816124d7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612576602583611b1c565b91506125818261251a565b604082019050919050565b600060208201905081810360008301526125a581612569565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612608602383611b1c565b9150612613826125ac565b604082019050919050565b60006020820190508181036000830152612637816125fb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061269a602683611b1c565b91506126a58261263e565b604082019050919050565b600060208201905081810360008301526126c98161268d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612706602083611b1c565b9150612711826126d0565b602082019050919050565b60006020820190508181036000830152612735816126f9565b9050919050565b7f45524332303a20636f6e74726163742066726f6d206973206e6f74207768697460008201527f656c697374000000000000000000000000000000000000000000000000000000602082015250565b6000612798602583611b1c565b91506127a38261273c565b604082019050919050565b600060208201905081810360008301526127c78161278b565b9050919050565b7f45524332303a20636f6e747261637420746f206973206e6f742077686974656c60008201527f6973740000000000000000000000000000000000000000000000000000000000602082015250565b600061282a602383611b1c565b9150612835826127ce565b604082019050919050565b600060208201905081810360008301526128598161281d565b9050919050565b7f45524332303a207265717569726520616d6f756e74206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b60006128bc602483611b1c565b91506128c782612860565b604082019050919050565b600060208201905081810360008301526128eb816128af565b9050919050565b7f45524332303a20616464726573732066726f6d20697320626c61636b6c697374600082015250565b6000612928602083611b1c565b9150612933826128f2565b602082019050919050565b600060208201905081810360008301526129578161291b565b9050919050565b7f45524332303a206164647265737320746f20697320626c61636b6c6973740000600082015250565b6000612994601e83611b1c565b915061299f8261295e565b602082019050919050565b600060208201905081810360008301526129c381612987565b9050919050565b7f45524332303a20536f6d6520617661696c61626c652062616c616e636520686160008201527f73206265656e20756e6c6f636b206772616475616c6c79000000000000000000602082015250565b6000612a26603783611b1c565b9150612a31826129ca565b604082019050919050565b60006020820190508181036000830152612a5581612a19565b905091905056fea26469706673582212204ffa7d889cf97623d7e5658c978246f1552c482453086e5e5fd805e1b7a6973464736f6c63430008090033

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.