ETH Price: $2,348.12 (+8.12%)

Contract

0x41b723c73Fe13E8f979d5FA80229Ce7f24EbEdB8
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

OnTact (ONTACT) ($0.0312)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer246700872026-03-16 12:33:4712 hrs ago1773664427IN
OnTact: ONTACT Token
0 ETH0.000079182.6129995
Transfer246700852026-03-16 12:33:2312 hrs ago1773664403IN
OnTact: ONTACT Token
0 ETH0.000018150.59904262
Transfer246700762026-03-16 12:31:3512 hrs ago1773664295IN
OnTact: ONTACT Token
0 ETH0.000130062.49147835
Transfer246693702026-03-16 10:09:1114 hrs ago1773655751IN
OnTact: ONTACT Token
0 ETH0.00004961.63686079
Transfer246693492026-03-16 10:04:5914 hrs ago1773655499IN
OnTact: ONTACT Token
0 ETH0.000009880.18944924
Transfer246687272026-03-16 8:00:1116 hrs ago1773648011IN
OnTact: ONTACT Token
0 ETH0.000045571.50406006
Transfer246687012026-03-16 7:54:5916 hrs ago1773647699IN
OnTact: ONTACT Token
0 ETH0.000109022.08842618
Transfer246686832026-03-16 7:51:2317 hrs ago1773647483IN
OnTact: ONTACT Token
0 ETH0.00000270.08939712
Transfer246686742026-03-16 7:49:3517 hrs ago1773647375IN
OnTact: ONTACT Token
0 ETH0.00007821.49846774
Transfer246686632026-03-16 7:47:2317 hrs ago1773647243IN
OnTact: ONTACT Token
0 ETH0.000073022.07969723
Transfer246684012026-03-16 6:54:1117 hrs ago1773644051IN
OnTact: ONTACT Token
0 ETH0.000001320.04362012
Transfer246683932026-03-16 6:52:3517 hrs ago1773643955IN
OnTact: ONTACT Token
0 ETH0.000075351.44356229
Transfer246683572026-03-16 6:45:1118 hrs ago1773643511IN
OnTact: ONTACT Token
0 ETH0.000043881.44831071
Transfer246683382026-03-16 6:41:2318 hrs ago1773643283IN
OnTact: ONTACT Token
0 ETH0.000002280.0437585
Transfer246681332026-03-16 6:00:1118 hrs ago1773640811IN
OnTact: ONTACT Token
0 ETH0.000045941.51622918
Transfer246681182026-03-16 5:57:1118 hrs ago1773640631IN
OnTact: ONTACT Token
0 ETH0.000008060.15444905
Transfer246681182026-03-16 5:57:1118 hrs ago1773640631IN
OnTact: ONTACT Token
0 ETH0.00004711.55444903
Transfer246680942026-03-16 5:52:2318 hrs ago1773640343IN
OnTact: ONTACT Token
0 ETH0.000004380.08398514
Transfer246672772026-03-16 3:08:1121 hrs ago1773630491IN
OnTact: ONTACT Token
0 ETH0.000001220.04027563
Transfer246672692026-03-16 3:06:3521 hrs ago1773630395IN
OnTact: ONTACT Token
0 ETH0.00007531.44251788
Transfer246669982026-03-16 2:12:1122 hrs ago1773627131IN
OnTact: ONTACT Token
0 ETH0.000043661.44092101
Transfer246669832026-03-16 2:09:1122 hrs ago1773626951IN
OnTact: ONTACT Token
0 ETH0.000050361.43481497
Transfer246669722026-03-16 2:06:5922 hrs ago1773626819IN
OnTact: ONTACT Token
0 ETH0.000071482.03640042
Transfer246669592026-03-16 2:04:2322 hrs ago1773626663IN
OnTact: ONTACT Token
0 ETH0.000105842.02761899
Transfer246668712026-03-16 1:46:4723 hrs ago1773625607IN
OnTact: ONTACT Token
0 ETH0.000000880.02933293
VIEW ADVANCED FILTER
Age:24H
Reset Filter

Advanced mode:
Parent Transaction Hash Method Block
From
To

There are no matching entries

Update your filters to view other transactions

View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x23874164...ee6a3A300
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
OnTact

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 7: OnTact.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "./ERC20.sol";
import "./ITokenLock.sol";

contract OnTact is ERC20 {
    constructor(address unlock00, address unlock01, address unlock02, address unlock03, address unlock04, address unlock05, address unlock06) ERC20("OnTact", "ONTACT") {
        require(ITokenLock(unlock00).getReceiverIndex() == 0, "0 CA address is incorrect");
        require(ITokenLock(unlock01).getReceiverIndex() == 1, "1 CA address is incorrect");
        require(ITokenLock(unlock02).getReceiverIndex() == 2, "2 CA address is incorrect");
        require(ITokenLock(unlock03).getReceiverIndex() == 3, "3 CA address is incorrect");
        require(ITokenLock(unlock04).getReceiverIndex() == 4, "4 CA address is incorrect");
        require(ITokenLock(unlock05).getReceiverIndex() == 5, "5 CA address is incorrect");
        require(ITokenLock(unlock06).getReceiverIndex() == 6, "6 CA address is incorrect");

        _mint(unlock00, 18000000000000000);
        _mint(unlock01, 27000000000000000);
        _mint(unlock02, 45000000000000000);
        _mint(unlock03, 159000000000000000);
        _mint(unlock04, 3000000000000000);
        _mint(unlock05, 30000000000000000);
        _mint(unlock06, 18000000000000000);
    }
}
	
	
	
	
	

File 2 of 7: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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 3 of 7: draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 4 of 7: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./IERC20Metadata.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./draft-IERC6093.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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 8. To change this, you should override
 * this function so it returns a different value.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 8;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        require(to != address(this), "You cannot send to this address.");
        
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        require(to != address(this), "You cannot send to this address.");

        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 5 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 6 of 7: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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 7 of 7: ITokenLock.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

interface ITokenLock {
    function setERC20(address tokenAddress) external ;
    function unLock() external;
    function getReceiverIndex() external view returns (uint256);
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"unlock00","type":"address"},{"internalType":"address","name":"unlock01","type":"address"},{"internalType":"address","name":"unlock02","type":"address"},{"internalType":"address","name":"unlock03","type":"address"},{"internalType":"address","name":"unlock04","type":"address"},{"internalType":"address","name":"unlock05","type":"address"},{"internalType":"address","name":"unlock06","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

0x608060405234801562000010575f80fd5b50604051620021383803806200213883398181016040528101906200003691906200098a565b6040518060400160405280600681526020017f4f6e5461637400000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4f4e5441435400000000000000000000000000000000000000000000000000008152508160039081620000b3919062000c9c565b508060049081620000c5919062000c9c565b5050505f8773ffffffffffffffffffffffffffffffffffffffff16634377fe756040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000113573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000139919062000daf565b146200017c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001739062000e3d565b60405180910390fd5b60018673ffffffffffffffffffffffffffffffffffffffff16634377fe756040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001ee919062000daf565b1462000231576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002289062000eab565b60405180910390fd5b60028573ffffffffffffffffffffffffffffffffffffffff16634377fe756040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a3919062000daf565b14620002e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002dd9062000f19565b60405180910390fd5b60038473ffffffffffffffffffffffffffffffffffffffff16634377fe756040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000332573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000358919062000daf565b146200039b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003929062000f87565b60405180910390fd5b60048373ffffffffffffffffffffffffffffffffffffffff16634377fe756040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003e7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200040d919062000daf565b1462000450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004479062000ff5565b60405180910390fd5b60058273ffffffffffffffffffffffffffffffffffffffff16634377fe756040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200049c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620004c2919062000daf565b1462000505576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004fc9062001063565b60405180910390fd5b60068173ffffffffffffffffffffffffffffffffffffffff16634377fe756040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000551573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000577919062000daf565b14620005ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b190620010d1565b60405180910390fd5b620005d387663ff2e795f500006200067760201b60201c565b620005ec86665fec5b60ef80006200067760201b60201c565b6200060585669fdf42f6e480006200067760201b60201c565b6200061f84670234e1a8574980006200067760201b60201c565b6200063883660aa87bee5380006200067760201b60201c565b6200065182666a94d74f4300006200067760201b60201c565b6200066a81663ff2e795f500006200067760201b60201c565b50505050505050620011eb565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006ea575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620006e1919062001102565b60405180910390fd5b620006fd5f83836200070160201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000755578060025f8282546200074891906200114a565b9250508190555062000826565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620007e1578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620007d89392919062001195565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200086f578060025f8282540392505081905550620008b9565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009189190620011d0565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620009548262000929565b9050919050565b620009668162000948565b811462000971575f80fd5b50565b5f8151905062000984816200095b565b92915050565b5f805f805f805f60e0888a031215620009a857620009a762000925565b5b5f620009b78a828b0162000974565b9750506020620009ca8a828b0162000974565b9650506040620009dd8a828b0162000974565b9550506060620009f08a828b0162000974565b945050608062000a038a828b0162000974565b93505060a062000a168a828b0162000974565b92505060c062000a298a828b0162000974565b91505092959891949750929550565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000ab457607f821691505b60208210810362000aca5762000ac962000a6f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000b2e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000af1565b62000b3a868362000af1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000b8462000b7e62000b788462000b52565b62000b5b565b62000b52565b9050919050565b5f819050919050565b62000b9f8362000b64565b62000bb762000bae8262000b8b565b84845462000afd565b825550505050565b5f90565b62000bcd62000bbf565b62000bda81848462000b94565b505050565b5b8181101562000c015762000bf55f8262000bc3565b60018101905062000be0565b5050565b601f82111562000c505762000c1a8162000ad0565b62000c258462000ae2565b8101602085101562000c35578190505b62000c4d62000c448562000ae2565b83018262000bdf565b50505b505050565b5f82821c905092915050565b5f62000c725f198460080262000c55565b1980831691505092915050565b5f62000c8c838362000c61565b9150826002028217905092915050565b62000ca78262000a38565b67ffffffffffffffff81111562000cc35762000cc262000a42565b5b62000ccf825462000a9c565b62000cdc82828562000c05565b5f60209050601f83116001811462000d12575f841562000cfd578287015190505b62000d09858262000c7f565b86555062000d78565b601f19841662000d228662000ad0565b5f5b8281101562000d4b5784890151825560018201915060208501945060208101905062000d24565b8683101562000d6b578489015162000d67601f89168262000c61565b8355505b6001600288020188555050505b505050505050565b62000d8b8162000b52565b811462000d96575f80fd5b50565b5f8151905062000da98162000d80565b92915050565b5f6020828403121562000dc75762000dc662000925565b5b5f62000dd68482850162000d99565b91505092915050565b5f82825260208201905092915050565b7f30204341206164647265737320697320696e636f7272656374000000000000005f82015250565b5f62000e2560198362000ddf565b915062000e328262000def565b602082019050919050565b5f6020820190508181035f83015262000e568162000e17565b9050919050565b7f31204341206164647265737320697320696e636f7272656374000000000000005f82015250565b5f62000e9360198362000ddf565b915062000ea08262000e5d565b602082019050919050565b5f6020820190508181035f83015262000ec48162000e85565b9050919050565b7f32204341206164647265737320697320696e636f7272656374000000000000005f82015250565b5f62000f0160198362000ddf565b915062000f0e8262000ecb565b602082019050919050565b5f6020820190508181035f83015262000f328162000ef3565b9050919050565b7f33204341206164647265737320697320696e636f7272656374000000000000005f82015250565b5f62000f6f60198362000ddf565b915062000f7c8262000f39565b602082019050919050565b5f6020820190508181035f83015262000fa08162000f61565b9050919050565b7f34204341206164647265737320697320696e636f7272656374000000000000005f82015250565b5f62000fdd60198362000ddf565b915062000fea8262000fa7565b602082019050919050565b5f6020820190508181035f8301526200100e8162000fcf565b9050919050565b7f35204341206164647265737320697320696e636f7272656374000000000000005f82015250565b5f6200104b60198362000ddf565b9150620010588262001015565b602082019050919050565b5f6020820190508181035f8301526200107c816200103d565b9050919050565b7f36204341206164647265737320697320696e636f7272656374000000000000005f82015250565b5f620010b960198362000ddf565b9150620010c68262001083565b602082019050919050565b5f6020820190508181035f830152620010ea81620010ab565b9050919050565b620010fc8162000948565b82525050565b5f602082019050620011175f830184620010f1565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620011568262000b52565b9150620011638362000b52565b92508282019050808211156200117e576200117d6200111d565b5b92915050565b6200118f8162000b52565b82525050565b5f606082019050620011aa5f830186620010f1565b620011b9602083018562001184565b620011c8604083018462001184565b949350505050565b5f602082019050620011e55f83018462001184565b92915050565b610f3f80620011f95f395ff3fe608060405234801561000f575f80fd5b5060043610610091575f3560e01c8063313ce56711610064578063313ce5671461013157806370a082311461014f57806395d89b411461017f578063a9059cbb1461019d578063dd62ed3e146101cd57610091565b806306fdde0314610095578063095ea7b3146100b357806318160ddd146100e357806323b872dd14610101575b5f80fd5b61009d6101fd565b6040516100aa9190610b50565b60405180910390f35b6100cd60048036038101906100c89190610c01565b61028d565b6040516100da9190610c59565b60405180910390f35b6100eb6102af565b6040516100f89190610c81565b60405180910390f35b61011b60048036038101906101169190610c9a565b6102b8565b6040516101289190610c59565b60405180910390f35b610139610354565b6040516101469190610d05565b60405180910390f35b61016960048036038101906101649190610d1e565b61035c565b6040516101769190610c81565b60405180910390f35b6101876103a1565b6040516101949190610b50565b60405180910390f35b6101b760048036038101906101b29190610c01565b610431565b6040516101c49190610c59565b60405180910390f35b6101e760048036038101906101e29190610d49565b6104c1565b6040516101f49190610c81565b60405180910390f35b60606003805461020c90610db4565b80601f016020809104026020016040519081016040528092919081815260200182805461023890610db4565b80156102835780601f1061025a57610100808354040283529160200191610283565b820191905f5260205f20905b81548152906001019060200180831161026657829003601f168201915b5050505050905090565b5f80610297610543565b90506102a481858561054a565b600191505092915050565b5f600254905090565b5f3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031e90610e2e565b60405180910390fd5b5f610330610543565b905061033d85828561055c565b6103488585856105ee565b60019150509392505050565b5f6008905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546103b090610db4565b80601f01602080910402602001604051908101604052809291908181526020018280546103dc90610db4565b80156104275780601f106103fe57610100808354040283529160200191610427565b820191905f5260205f20905b81548152906001019060200180831161040a57829003601f168201915b5050505050905090565b5f3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036104a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049790610e2e565b60405180910390fd5b5f6104a9610543565b90506104b68185856105ee565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61055783838360016106de565b505050565b5f61056784846104c1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105e857818110156105d9578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016105d093929190610e5b565b60405180910390fd5b6105e784848484035f6106de565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361065e575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106559190610e90565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106ce575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106c59190610e90565b60405180910390fd5b6106d98383836108ad565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361074e575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016107459190610e90565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107be575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107b59190610e90565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156108a7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161089e9190610c81565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108fd578060025f8282546108f19190610ed6565b925050819055506109cb565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610986578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161097d93929190610e5b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a12578060025f8282540392505081905550610a5c565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ab99190610c81565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610afd578082015181840152602081019050610ae2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610b2282610ac6565b610b2c8185610ad0565b9350610b3c818560208601610ae0565b610b4581610b08565b840191505092915050565b5f6020820190508181035f830152610b688184610b18565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b9d82610b74565b9050919050565b610bad81610b93565b8114610bb7575f80fd5b50565b5f81359050610bc881610ba4565b92915050565b5f819050919050565b610be081610bce565b8114610bea575f80fd5b50565b5f81359050610bfb81610bd7565b92915050565b5f8060408385031215610c1757610c16610b70565b5b5f610c2485828601610bba565b9250506020610c3585828601610bed565b9150509250929050565b5f8115159050919050565b610c5381610c3f565b82525050565b5f602082019050610c6c5f830184610c4a565b92915050565b610c7b81610bce565b82525050565b5f602082019050610c945f830184610c72565b92915050565b5f805f60608486031215610cb157610cb0610b70565b5b5f610cbe86828701610bba565b9350506020610ccf86828701610bba565b9250506040610ce086828701610bed565b9150509250925092565b5f60ff82169050919050565b610cff81610cea565b82525050565b5f602082019050610d185f830184610cf6565b92915050565b5f60208284031215610d3357610d32610b70565b5b5f610d4084828501610bba565b91505092915050565b5f8060408385031215610d5f57610d5e610b70565b5b5f610d6c85828601610bba565b9250506020610d7d85828601610bba565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610dcb57607f821691505b602082108103610dde57610ddd610d87565b5b50919050565b7f596f752063616e6e6f742073656e6420746f207468697320616464726573732e5f82015250565b5f610e18602083610ad0565b9150610e2382610de4565b602082019050919050565b5f6020820190508181035f830152610e4581610e0c565b9050919050565b610e5581610b93565b82525050565b5f606082019050610e6e5f830186610e4c565b610e7b6020830185610c72565b610e886040830184610c72565b949350505050565b5f602082019050610ea35f830184610e4c565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610ee082610bce565b9150610eeb83610bce565b9250828201905080821115610f0357610f02610ea9565b5b9291505056fea2646970667358221220ebdd2a2a19dbcbef5c10dd48d3dac051a59798756af5c24ab823690b2bbdf8a064736f6c634300081400330000000000000000000000003e44213019c4e07bd86782891ff7e9f77c9ae906000000000000000000000000fc23c809034ab688be247008e2d89e50069676c00000000000000000000000000f5ca3cffb05f41b673178b7619d6cd744709a30000000000000000000000000305b4ef4264476c73ae29706806e9addb2e53616000000000000000000000000c79c965cc9a7b509ea046a3724092d737bbbc35f0000000000000000000000005070d3afa2cab30b88b813551f7931e52fafd591000000000000000000000000166eafa6e3a1ff7b0cb0bd4703bc92868cbce141

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610091575f3560e01c8063313ce56711610064578063313ce5671461013157806370a082311461014f57806395d89b411461017f578063a9059cbb1461019d578063dd62ed3e146101cd57610091565b806306fdde0314610095578063095ea7b3146100b357806318160ddd146100e357806323b872dd14610101575b5f80fd5b61009d6101fd565b6040516100aa9190610b50565b60405180910390f35b6100cd60048036038101906100c89190610c01565b61028d565b6040516100da9190610c59565b60405180910390f35b6100eb6102af565b6040516100f89190610c81565b60405180910390f35b61011b60048036038101906101169190610c9a565b6102b8565b6040516101289190610c59565b60405180910390f35b610139610354565b6040516101469190610d05565b60405180910390f35b61016960048036038101906101649190610d1e565b61035c565b6040516101769190610c81565b60405180910390f35b6101876103a1565b6040516101949190610b50565b60405180910390f35b6101b760048036038101906101b29190610c01565b610431565b6040516101c49190610c59565b60405180910390f35b6101e760048036038101906101e29190610d49565b6104c1565b6040516101f49190610c81565b60405180910390f35b60606003805461020c90610db4565b80601f016020809104026020016040519081016040528092919081815260200182805461023890610db4565b80156102835780601f1061025a57610100808354040283529160200191610283565b820191905f5260205f20905b81548152906001019060200180831161026657829003601f168201915b5050505050905090565b5f80610297610543565b90506102a481858561054a565b600191505092915050565b5f600254905090565b5f3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031e90610e2e565b60405180910390fd5b5f610330610543565b905061033d85828561055c565b6103488585856105ee565b60019150509392505050565b5f6008905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546103b090610db4565b80601f01602080910402602001604051908101604052809291908181526020018280546103dc90610db4565b80156104275780601f106103fe57610100808354040283529160200191610427565b820191905f5260205f20905b81548152906001019060200180831161040a57829003601f168201915b5050505050905090565b5f3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036104a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049790610e2e565b60405180910390fd5b5f6104a9610543565b90506104b68185856105ee565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61055783838360016106de565b505050565b5f61056784846104c1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105e857818110156105d9578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016105d093929190610e5b565b60405180910390fd5b6105e784848484035f6106de565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361065e575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106559190610e90565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106ce575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106c59190610e90565b60405180910390fd5b6106d98383836108ad565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361074e575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016107459190610e90565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107be575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107b59190610e90565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156108a7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161089e9190610c81565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108fd578060025f8282546108f19190610ed6565b925050819055506109cb565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610986578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161097d93929190610e5b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a12578060025f8282540392505081905550610a5c565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ab99190610c81565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610afd578082015181840152602081019050610ae2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610b2282610ac6565b610b2c8185610ad0565b9350610b3c818560208601610ae0565b610b4581610b08565b840191505092915050565b5f6020820190508181035f830152610b688184610b18565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b9d82610b74565b9050919050565b610bad81610b93565b8114610bb7575f80fd5b50565b5f81359050610bc881610ba4565b92915050565b5f819050919050565b610be081610bce565b8114610bea575f80fd5b50565b5f81359050610bfb81610bd7565b92915050565b5f8060408385031215610c1757610c16610b70565b5b5f610c2485828601610bba565b9250506020610c3585828601610bed565b9150509250929050565b5f8115159050919050565b610c5381610c3f565b82525050565b5f602082019050610c6c5f830184610c4a565b92915050565b610c7b81610bce565b82525050565b5f602082019050610c945f830184610c72565b92915050565b5f805f60608486031215610cb157610cb0610b70565b5b5f610cbe86828701610bba565b9350506020610ccf86828701610bba565b9250506040610ce086828701610bed565b9150509250925092565b5f60ff82169050919050565b610cff81610cea565b82525050565b5f602082019050610d185f830184610cf6565b92915050565b5f60208284031215610d3357610d32610b70565b5b5f610d4084828501610bba565b91505092915050565b5f8060408385031215610d5f57610d5e610b70565b5b5f610d6c85828601610bba565b9250506020610d7d85828601610bba565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610dcb57607f821691505b602082108103610dde57610ddd610d87565b5b50919050565b7f596f752063616e6e6f742073656e6420746f207468697320616464726573732e5f82015250565b5f610e18602083610ad0565b9150610e2382610de4565b602082019050919050565b5f6020820190508181035f830152610e4581610e0c565b9050919050565b610e5581610b93565b82525050565b5f606082019050610e6e5f830186610e4c565b610e7b6020830185610c72565b610e886040830184610c72565b949350505050565b5f602082019050610ea35f830184610e4c565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610ee082610bce565b9150610eeb83610bce565b9250828201905080821115610f0357610f02610ea9565b5b9291505056fea2646970667358221220ebdd2a2a19dbcbef5c10dd48d3dac051a59798756af5c24ab823690b2bbdf8a064736f6c63430008140033

Deployed Bytecode Sourcemap

108:1157:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2037:89:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4338:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3106:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5084:319;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2965:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3261:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2239:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3572:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3891:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2037:89;2082:13;2114:5;2107:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2037:89;:::o;4338:186::-;4411:4;4427:13;4443:12;:10;:12::i;:::-;4427:28;;4465:31;4474:5;4481:7;4490:5;4465:8;:31::i;:::-;4513:4;4506:11;;;4338:186;;;;:::o;3106:97::-;3158:7;3184:12;;3177:19;;3106:97;:::o;5084:319::-;5171:4;5209;5195:19;;:2;:19;;;5187:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5262:15;5280:12;:10;:12::i;:::-;5262:30;;5302:37;5318:4;5324:7;5333:5;5302:15;:37::i;:::-;5349:26;5359:4;5365:2;5369:5;5349:9;:26::i;:::-;5392:4;5385:11;;;5084:319;;;;;:::o;2965:81::-;3014:5;3038:1;3031:8;;2965:81;:::o;3261:116::-;3326:7;3352:9;:18;3362:7;3352:18;;;;;;;;;;;;;;;;3345:25;;3261:116;;;:::o;2239:93::-;2286:13;2318:7;2311:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2239:93;:::o;3572:261::-;3641:4;3679;3665:19;;:2;:19;;;3657:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;3740:13;3756:12;:10;:12::i;:::-;3740:28;;3778:27;3788:5;3795:2;3799:5;3778:9;:27::i;:::-;3822:4;3815:11;;;3572:261;;;;:::o;3891:140::-;3971:7;3997:11;:18;4009:5;3997:18;;;;;;;;;;;;;;;:27;4016:7;3997:27;;;;;;;;;;;;;;;;3990:34;;3891:140;;;;:::o;656:96:0:-;709:7;735:10;728:17;;656:96;:::o;9109:128:1:-;9193:37;9202:5;9209:7;9218:5;9225:4;9193:8;:37::i;:::-;9109:128;;;:::o;10783:477::-;10882:24;10909:25;10919:5;10926:7;10909:9;:25::i;:::-;10882:52;;10968:17;10948:16;:37;10944:310;;11024:5;11005:16;:24;11001:130;;;11083:7;11092:16;11110:5;11056:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;11001:130;11172:57;11181:5;11188:7;11216:5;11197:16;:24;11223:5;11172:8;:57::i;:::-;10944:310;10872:388;10783:477;;;:::o;5776:300::-;5875:1;5859:18;;:4;:18;;;5855:86;;5927:1;5900:30;;;;;;;;;;;:::i;:::-;;;;;;;;5855:86;5968:1;5954:16;;:2;:16;;;5950:86;;6022:1;5993:32;;;;;;;;;;;:::i;:::-;;;;;;;;5950:86;6045:24;6053:4;6059:2;6063:5;6045:7;:24::i;:::-;5776:300;;;:::o;10069:432::-;10198:1;10181:19;;:5;:19;;;10177:89;;10252:1;10223:32;;;;;;;;;;;:::i;:::-;;;;;;;;10177:89;10298:1;10279:21;;:7;:21;;;10275:90;;10351:1;10323:31;;;;;;;;;;;:::i;:::-;;;;;;;;10275:90;10404:5;10374:11;:18;10386:5;10374:18;;;;;;;;;;;;;;;:27;10393:7;10374:27;;;;;;;;;;;;;;;:35;;;;10423:9;10419:76;;;10469:7;10453:31;;10462:5;10453:31;;;10478:5;10453:31;;;;;;:::i;:::-;;;;;;;;10419:76;10069:432;;;;:::o;6391:1107::-;6496:1;6480:18;;:4;:18;;;6476:540;;6632:5;6616:12;;:21;;;;;;;:::i;:::-;;;;;;;;6476:540;;;6668:19;6690:9;:15;6700:4;6690:15;;;;;;;;;;;;;;;;6668:37;;6737:5;6723:11;:19;6719:115;;;6794:4;6800:11;6813:5;6769:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6719:115;6986:5;6972:11;:19;6954:9;:15;6964:4;6954:15;;;;;;;;;;;;;;;:37;;;;6654:362;6476:540;7044:1;7030:16;;:2;:16;;;7026:425;;7209:5;7193:12;;:21;;;;;;;;;;;7026:425;;;7421:5;7404:9;:13;7414:2;7404:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;7026:425;7481:2;7466:25;;7475:4;7466:25;;;7485:5;7466:25;;;;;;:::i;:::-;;;;;;;;6391:1107;;;:::o;7:99:7:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:474::-;5256:6;5264;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5566:2;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5537:118;5188:474;;;;;:::o;5668:180::-;5716:77;5713:1;5706:88;5813:4;5810:1;5803:15;5837:4;5834:1;5827:15;5854:320;5898:6;5935:1;5929:4;5925:12;5915:22;;5982:1;5976:4;5972:12;6003:18;5993:81;;6059:4;6051:6;6047:17;6037:27;;5993:81;6121:2;6113:6;6110:14;6090:18;6087:38;6084:84;;6140:18;;:::i;:::-;6084:84;5905:269;5854:320;;;:::o;6180:182::-;6320:34;6316:1;6308:6;6304:14;6297:58;6180:182;:::o;6368:366::-;6510:3;6531:67;6595:2;6590:3;6531:67;:::i;:::-;6524:74;;6607:93;6696:3;6607:93;:::i;:::-;6725:2;6720:3;6716:12;6709:19;;6368:366;;;:::o;6740:419::-;6906:4;6944:2;6933:9;6929:18;6921:26;;6993:9;6987:4;6983:20;6979:1;6968:9;6964:17;6957:47;7021:131;7147:4;7021:131;:::i;:::-;7013:139;;6740:419;;;:::o;7165:118::-;7252:24;7270:5;7252:24;:::i;:::-;7247:3;7240:37;7165:118;;:::o;7289:442::-;7438:4;7476:2;7465:9;7461:18;7453:26;;7489:71;7557:1;7546:9;7542:17;7533:6;7489:71;:::i;:::-;7570:72;7638:2;7627:9;7623:18;7614:6;7570:72;:::i;:::-;7652;7720:2;7709:9;7705:18;7696:6;7652:72;:::i;:::-;7289:442;;;;;;:::o;7737:222::-;7830:4;7868:2;7857:9;7853:18;7845:26;;7881:71;7949:1;7938:9;7934:17;7925:6;7881:71;:::i;:::-;7737:222;;;;:::o;7965:180::-;8013:77;8010:1;8003:88;8110:4;8107:1;8100:15;8134:4;8131:1;8124:15;8151:191;8191:3;8210:20;8228:1;8210:20;:::i;:::-;8205:25;;8244:20;8262:1;8244:20;:::i;:::-;8239:25;;8287:1;8284;8280:9;8273:16;;8308:3;8305:1;8302:10;8299:36;;;8315:18;;:::i;:::-;8299:36;8151:191;;;;:::o

Swarm Source

ipfs://ebdd2a2a19dbcbef5c10dd48d3dac051a59798756af5c24ab823690b2bbdf8a0

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

‘ttogttog’ is a Biz to Earn (B2E) platform that combines an incentive-based token ecosystem with a business platform to encourage active participation and contribution from users. ttogttog is a Social Networking Business Card Platform that combines digital name cards and social networking.

Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.