ETH Price: $3,361.21 (-1.62%)
Gas: 7 Gwei

Token

BossMoves (BSMV)
 

Overview

Max Total Supply

1,000,000,000 BSMV

Holders

99

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
1,056,241.70388878 BSMV

Value
$0.00
0x285d7b3C4Db8C27C9DfDb08D1808Df205f76866B
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TaxableTeamToken

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 2 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. 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.
 *
 * 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}.
     *
     * 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 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 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 3 of 7 : 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 4 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 5 of 7 : 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 6 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

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

File 7 of 7 : Token.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract TaxableTeamToken is ERC20, Ownable {
    using SafeMath for uint256;
    uint256 private _upperLimmitOfTaxPercentage = 1000;
    mapping(address => bool) public isExcludedFromFee;
    mapping(address => bool) public restrictedUser;
    address public feeWallet;
    uint256 public tax;

    constructor(
        uint256 supply,
        uint256 _tax,
        address owner,
        address _feeWallet
    ) ERC20("BossMoves", "BSMV") {
        require(
            supply > 0,
            "[Validation] inital supply should be greater than 0"
        );
        require(
            owner != feeWallet,
            "[Validation] fee wallet and owner wallet cannot be same."
        );
        require(
            _feeWallet != address(0),
            "Fees address can not be zero address"
        );
        owner = owner;
        tax = _tax;
        feeWallet = _feeWallet;
        isExcludedFromFee[feeWallet]=true;
        isExcludedFromFee[owner] = true;
        isExcludedFromFee[address(this)] = true;
        _mint(owner, supply * 10 ** decimals());
    }

    function percent(
        uint256 amount,
        uint256 fraction
    ) public pure virtual returns (uint256) {
        return ((amount).mul(fraction)).div(10000);
    }

    function decimals() public view virtual override returns (uint8) {
        return 8;
    }

    function setFeeWallet(address _feeWallet) public onlyOwner {
        require(
            _feeWallet != address(0),
            "Fees address can not be zero address"
        );
        isExcludedFromFee[feeWallet]=true;
        feeWallet = _feeWallet;
    }
 
    function setTax(uint256 percentage) public onlyOwner {
        require(
            _upperLimmitOfTaxPercentage >= percentage,
            "Limit exceed(can not set more than 10 percent)"
        );
        tax = percentage;
    }
    
    function excludeFromFee(address[] calldata account) public onlyOwner {
        for (uint256 i = 0; i < account.length; i++) {
            isExcludedFromFee[account[i]] = true;
        }
    }

    function includeInFee(address[] calldata account) public onlyOwner {
        for (uint256 i = 0; i < account.length; i++) {
            isExcludedFromFee[account[i]] = false;
        }
    }

    function restrictUser(address[] calldata account) public onlyOwner {
        for (uint256 i = 0; i < account.length; i++) {
            restrictedUser[account[i]] = true;
        }
    }

    function removeFromRestrictedUser(
        address[] calldata account
    ) public onlyOwner {
        for (uint256 i = 0; i < account.length; i++) {
            restrictedUser[account[i]] = false;
        }
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        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 = balanceOf(from);
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        require(
            !(restrictedUser[from] || restrictedUser[to]),
            "account is restricted for transfer"
        );
        if (isExcludedFromFee[from] || from==owner()) {
            super._transfer(from, to, amount);
        } else {
            uint256 taxAmount = percent(amount, tax);
            super._transfer(from, feeWallet, taxAmount);
            super._transfer(from, to, amount - taxAmount);
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"_tax","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"_feeWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"fraction","type":"uint256"}],"name":"percent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"}],"name":"removeFromRestrictedUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"}],"name":"restrictUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"restrictedUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_feeWallet","type":"address"}],"name":"setFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60806040526103e86006553480156200001757600080fd5b5060405162001856380380620018568339810160408190526200003a9162000493565b6040805180820182526009815268426f73734d6f76657360b81b6020808301918252835180850190945260048452632129a6ab60e11b9084015281519192916200008791600391620003d0565b5080516200009d906004906020840190620003d0565b505050620000ba620000b4620002b760201b60201c565b620002bb565b60008411620001365760405162461bcd60e51b815260206004820152603360248201527f5b56616c69646174696f6e5d20696e6974616c20737570706c792073686f756c60448201527f642062652067726561746572207468616e20300000000000000000000000000060648201526084015b60405180910390fd5b6009546001600160a01b0390811690831603620001bc5760405162461bcd60e51b815260206004820152603860248201527f5b56616c69646174696f6e5d206665652077616c6c657420616e64206f776e6560448201527f722077616c6c65742063616e6e6f742062652073616d652e000000000000000060648201526084016200012d565b6001600160a01b038116620002205760405162461bcd60e51b8152602060048201526024808201527f4665657320616464726573732063616e206e6f74206265207a65726f206164646044820152637265737360e01b60648201526084016200012d565b600a839055600980546001600160a01b0319166001600160a01b03838116918217909255600090815260076020526040808220805460ff1990811660019081179092559386168352818320805485168217905530835291208054909216179055620002ad826200028e600890565b6200029b90600a620005f3565b620002a790876200060b565b6200030d565b5050505062000684565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003655760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200012d565b80600260008282546200037991906200062d565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b828054620003de9062000648565b90600052602060002090601f0160209004810192826200040257600085556200044d565b82601f106200041d57805160ff19168380011785556200044d565b828001600101855582156200044d579182015b828111156200044d57825182559160200191906001019062000430565b506200045b9291506200045f565b5090565b5b808211156200045b576000815560010162000460565b80516001600160a01b03811681146200048e57600080fd5b919050565b60008060008060808587031215620004aa57600080fd5b8451935060208501519250620004c36040860162000476565b9150620004d36060860162000476565b905092959194509250565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000535578160001904821115620005195762000519620004de565b808516156200052757918102915b93841c9390800290620004f9565b509250929050565b6000826200054e57506001620005ed565b816200055d57506000620005ed565b81600181146200057657600281146200058157620005a1565b6001915050620005ed565b60ff841115620005955762000595620004de565b50506001821b620005ed565b5060208310610133831016604e8410600b8410161715620005c6575081810a620005ed565b620005d28383620004f4565b8060001904821115620005e957620005e9620004de565b0290505b92915050565b60006200060460ff8416836200053d565b9392505050565b6000816000190483118215151615620006285762000628620004de565b500290565b60008219821115620006435762000643620004de565b500190565b600181811c908216806200065d57607f821691505b6020821081036200067e57634e487b7160e01b600052602260045260246000fd5b50919050565b6111c280620006946000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80635342acb4116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610347578063dd62ed3e1461035a578063f25f4b561461036d578063f2fde38b1461038057600080fd5b806395d89b411461032357806399c8d5561461032b578063a457c2d71461033457600080fd5b80635342acb41461028457806370a08231146102a7578063715018a6146102d057806371b9189c146102d85780638da5cb5b146102eb57806390d49b9d1461031057600080fd5b80632e5bb6ff116101305780632e5bb6ff14610206578063313ce5671461021957806339509351146102285780633f5dc9591461023b57806342318e3d1461024e578063497372ec1461026157600080fd5b8063024022f71461017857806306fdde031461018d578063095ea7b3146101ab57806318160ddd146101ce57806323b872dd146101e05780632842fd2d146101f3575b600080fd5b61018b610186366004610dfa565b610393565b005b610195610412565b6040516101a29190610e6f565b60405180910390f35b6101be6101b9366004610ee0565b6104a4565b60405190151581526020016101a2565b6002545b6040519081526020016101a2565b6101be6101ee366004610f0a565b6104bc565b61018b610201366004610dfa565b6104e0565b61018b610214366004610f46565b61055a565b604051600881526020016101a2565b6101be610236366004610ee0565b6105d5565b61018b610249366004610dfa565b6105f7565b6101d261025c366004610f5f565b610671565b6101be61026f366004610f81565b60086020526000908152604090205460ff1681565b6101be610292366004610f81565b60076020526000908152604090205460ff1681565b6101d26102b5366004610f81565b6001600160a01b031660009081526020819052604090205490565b61018b610690565b61018b6102e6366004610dfa565b6106a4565b6005546001600160a01b03165b6040516001600160a01b0390911681526020016101a2565b61018b61031e366004610f81565b61071e565b6101956107c8565b6101d2600a5481565b6101be610342366004610ee0565b6107d7565b6101be610355366004610ee0565b610852565b6101d2610368366004610f9c565b610860565b6009546102f8906001600160a01b031681565b61018b61038e366004610f81565b61088b565b61039b610904565b60005b8181101561040d576000600760008585858181106103be576103be610fcf565b90506020020160208101906103d39190610f81565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061040581610ffb565b91505061039e565b505050565b60606003805461042190611014565b80601f016020809104026020016040519081016040528092919081815260200182805461044d90611014565b801561049a5780601f1061046f5761010080835404028352916020019161049a565b820191906000526020600020905b81548152906001019060200180831161047d57829003601f168201915b5050505050905090565b6000336104b281858561095e565b5060019392505050565b6000336104ca858285610a82565b6104d5858585610afc565b506001949350505050565b6104e8610904565b60005b8181101561040d5760006008600085858581811061050b5761050b610fcf565b90506020020160208101906105209190610f81565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061055281610ffb565b9150506104eb565b610562610904565b8060065410156105d05760405162461bcd60e51b815260206004820152602e60248201527f4c696d6974206578636565642863616e206e6f7420736574206d6f726520746860448201526d616e2031302070657263656e742960901b60648201526084015b60405180910390fd5b600a55565b6000336104b28185856105e88383610860565b6105f2919061104e565b61095e565b6105ff610904565b60005b8181101561040d5760016008600085858581811061062257610622610fcf565b90506020020160208101906106379190610f81565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061066981610ffb565b915050610602565b60006106896127106106838585610ca5565b90610cb1565b9392505050565b610698610904565b6106a26000610cbd565b565b6106ac610904565b60005b8181101561040d576001600760008585858181106106cf576106cf610fcf565b90506020020160208101906106e49190610f81565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061071681610ffb565b9150506106af565b610726610904565b6001600160a01b0381166107885760405162461bcd60e51b8152602060048201526024808201527f4665657320616464726573732063616e206e6f74206265207a65726f206164646044820152637265737360e01b60648201526084016105c7565b600980546001600160a01b039081166000908152600760205260409020805460ff19166001179055815492166001600160a01b0319909216919091179055565b60606004805461042190611014565b600033816107e58286610860565b9050838110156108455760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105c7565b6104d5828686840361095e565b6000336104b2818585610afc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610893610904565b6001600160a01b0381166108f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c7565b61090181610cbd565b50565b6005546001600160a01b031633146106a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105c7565b6001600160a01b0383166109c05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105c7565b6001600160a01b038216610a215760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105c7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a8e8484610860565b90506000198114610af65781811015610ae95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105c7565b610af6848484840361095e565b50505050565b6001600160a01b038316610b225760405162461bcd60e51b81526004016105c790611066565b6001600160a01b038216610b485760405162461bcd60e51b81526004016105c7906110ab565b6001600160a01b03831660009081526020819052604090205481811015610b815760405162461bcd60e51b81526004016105c7906110ee565b6001600160a01b03841660009081526008602052604090205460ff1680610bc057506001600160a01b03831660009081526008602052604090205460ff165b15610c185760405162461bcd60e51b815260206004820152602260248201527f6163636f756e74206973207265737472696374656420666f72207472616e736660448201526132b960f11b60648201526084016105c7565b6001600160a01b03841660009081526007602052604090205460ff1680610c4c57506005546001600160a01b038581169116145b15610c6157610c5c848484610d0f565b610af6565b6000610c6f83600a54610671565b600954909150610c8a9086906001600160a01b031683610d0f565b610c9e8585610c998487611134565b610d0f565b5050505050565b6000610689828461114b565b6000610689828461116a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610d355760405162461bcd60e51b81526004016105c790611066565b6001600160a01b038216610d5b5760405162461bcd60e51b81526004016105c7906110ab565b6001600160a01b03831660009081526020819052604090205481811015610d945760405162461bcd60e51b81526004016105c7906110ee565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610af6565b60008060208385031215610e0d57600080fd5b823567ffffffffffffffff80821115610e2557600080fd5b818501915085601f830112610e3957600080fd5b813581811115610e4857600080fd5b8660208260051b8501011115610e5d57600080fd5b60209290920196919550909350505050565b600060208083528351808285015260005b81811015610e9c57858101830151858201604001528201610e80565b81811115610eae576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610edb57600080fd5b919050565b60008060408385031215610ef357600080fd5b610efc83610ec4565b946020939093013593505050565b600080600060608486031215610f1f57600080fd5b610f2884610ec4565b9250610f3660208501610ec4565b9150604084013590509250925092565b600060208284031215610f5857600080fd5b5035919050565b60008060408385031215610f7257600080fd5b50508035926020909101359150565b600060208284031215610f9357600080fd5b61068982610ec4565b60008060408385031215610faf57600080fd5b610fb883610ec4565b9150610fc660208401610ec4565b90509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161100d5761100d610fe5565b5060010190565b600181811c9082168061102857607f821691505b60208210810361104857634e487b7160e01b600052602260045260246000fd5b50919050565b6000821982111561106157611061610fe5565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60008282101561114657611146610fe5565b500390565b600081600019048311821515161561116557611165610fe5565b500290565b60008261118757634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212205d7adc48933fdaf04c89f8c4966cd18c71d7f009696a6ca02fde2f59e3dc120064736f6c634300080e0033000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000ab0c0ad9eaec76f795d0ac03d9c75b30869a89ab00000000000000000000000025b2348567b13097db1212dfe13bfeaf2b4d3a9f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80635342acb4116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610347578063dd62ed3e1461035a578063f25f4b561461036d578063f2fde38b1461038057600080fd5b806395d89b411461032357806399c8d5561461032b578063a457c2d71461033457600080fd5b80635342acb41461028457806370a08231146102a7578063715018a6146102d057806371b9189c146102d85780638da5cb5b146102eb57806390d49b9d1461031057600080fd5b80632e5bb6ff116101305780632e5bb6ff14610206578063313ce5671461021957806339509351146102285780633f5dc9591461023b57806342318e3d1461024e578063497372ec1461026157600080fd5b8063024022f71461017857806306fdde031461018d578063095ea7b3146101ab57806318160ddd146101ce57806323b872dd146101e05780632842fd2d146101f3575b600080fd5b61018b610186366004610dfa565b610393565b005b610195610412565b6040516101a29190610e6f565b60405180910390f35b6101be6101b9366004610ee0565b6104a4565b60405190151581526020016101a2565b6002545b6040519081526020016101a2565b6101be6101ee366004610f0a565b6104bc565b61018b610201366004610dfa565b6104e0565b61018b610214366004610f46565b61055a565b604051600881526020016101a2565b6101be610236366004610ee0565b6105d5565b61018b610249366004610dfa565b6105f7565b6101d261025c366004610f5f565b610671565b6101be61026f366004610f81565b60086020526000908152604090205460ff1681565b6101be610292366004610f81565b60076020526000908152604090205460ff1681565b6101d26102b5366004610f81565b6001600160a01b031660009081526020819052604090205490565b61018b610690565b61018b6102e6366004610dfa565b6106a4565b6005546001600160a01b03165b6040516001600160a01b0390911681526020016101a2565b61018b61031e366004610f81565b61071e565b6101956107c8565b6101d2600a5481565b6101be610342366004610ee0565b6107d7565b6101be610355366004610ee0565b610852565b6101d2610368366004610f9c565b610860565b6009546102f8906001600160a01b031681565b61018b61038e366004610f81565b61088b565b61039b610904565b60005b8181101561040d576000600760008585858181106103be576103be610fcf565b90506020020160208101906103d39190610f81565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061040581610ffb565b91505061039e565b505050565b60606003805461042190611014565b80601f016020809104026020016040519081016040528092919081815260200182805461044d90611014565b801561049a5780601f1061046f5761010080835404028352916020019161049a565b820191906000526020600020905b81548152906001019060200180831161047d57829003601f168201915b5050505050905090565b6000336104b281858561095e565b5060019392505050565b6000336104ca858285610a82565b6104d5858585610afc565b506001949350505050565b6104e8610904565b60005b8181101561040d5760006008600085858581811061050b5761050b610fcf565b90506020020160208101906105209190610f81565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061055281610ffb565b9150506104eb565b610562610904565b8060065410156105d05760405162461bcd60e51b815260206004820152602e60248201527f4c696d6974206578636565642863616e206e6f7420736574206d6f726520746860448201526d616e2031302070657263656e742960901b60648201526084015b60405180910390fd5b600a55565b6000336104b28185856105e88383610860565b6105f2919061104e565b61095e565b6105ff610904565b60005b8181101561040d5760016008600085858581811061062257610622610fcf565b90506020020160208101906106379190610f81565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061066981610ffb565b915050610602565b60006106896127106106838585610ca5565b90610cb1565b9392505050565b610698610904565b6106a26000610cbd565b565b6106ac610904565b60005b8181101561040d576001600760008585858181106106cf576106cf610fcf565b90506020020160208101906106e49190610f81565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061071681610ffb565b9150506106af565b610726610904565b6001600160a01b0381166107885760405162461bcd60e51b8152602060048201526024808201527f4665657320616464726573732063616e206e6f74206265207a65726f206164646044820152637265737360e01b60648201526084016105c7565b600980546001600160a01b039081166000908152600760205260409020805460ff19166001179055815492166001600160a01b0319909216919091179055565b60606004805461042190611014565b600033816107e58286610860565b9050838110156108455760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105c7565b6104d5828686840361095e565b6000336104b2818585610afc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610893610904565b6001600160a01b0381166108f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c7565b61090181610cbd565b50565b6005546001600160a01b031633146106a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105c7565b6001600160a01b0383166109c05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105c7565b6001600160a01b038216610a215760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105c7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a8e8484610860565b90506000198114610af65781811015610ae95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105c7565b610af6848484840361095e565b50505050565b6001600160a01b038316610b225760405162461bcd60e51b81526004016105c790611066565b6001600160a01b038216610b485760405162461bcd60e51b81526004016105c7906110ab565b6001600160a01b03831660009081526020819052604090205481811015610b815760405162461bcd60e51b81526004016105c7906110ee565b6001600160a01b03841660009081526008602052604090205460ff1680610bc057506001600160a01b03831660009081526008602052604090205460ff165b15610c185760405162461bcd60e51b815260206004820152602260248201527f6163636f756e74206973207265737472696374656420666f72207472616e736660448201526132b960f11b60648201526084016105c7565b6001600160a01b03841660009081526007602052604090205460ff1680610c4c57506005546001600160a01b038581169116145b15610c6157610c5c848484610d0f565b610af6565b6000610c6f83600a54610671565b600954909150610c8a9086906001600160a01b031683610d0f565b610c9e8585610c998487611134565b610d0f565b5050505050565b6000610689828461114b565b6000610689828461116a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610d355760405162461bcd60e51b81526004016105c790611066565b6001600160a01b038216610d5b5760405162461bcd60e51b81526004016105c7906110ab565b6001600160a01b03831660009081526020819052604090205481811015610d945760405162461bcd60e51b81526004016105c7906110ee565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610af6565b60008060208385031215610e0d57600080fd5b823567ffffffffffffffff80821115610e2557600080fd5b818501915085601f830112610e3957600080fd5b813581811115610e4857600080fd5b8660208260051b8501011115610e5d57600080fd5b60209290920196919550909350505050565b600060208083528351808285015260005b81811015610e9c57858101830151858201604001528201610e80565b81811115610eae576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610edb57600080fd5b919050565b60008060408385031215610ef357600080fd5b610efc83610ec4565b946020939093013593505050565b600080600060608486031215610f1f57600080fd5b610f2884610ec4565b9250610f3660208501610ec4565b9150604084013590509250925092565b600060208284031215610f5857600080fd5b5035919050565b60008060408385031215610f7257600080fd5b50508035926020909101359150565b600060208284031215610f9357600080fd5b61068982610ec4565b60008060408385031215610faf57600080fd5b610fb883610ec4565b9150610fc660208401610ec4565b90509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161100d5761100d610fe5565b5060010190565b600181811c9082168061102857607f821691505b60208210810361104857634e487b7160e01b600052602260045260246000fd5b50919050565b6000821982111561106157611061610fe5565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60008282101561114657611146610fe5565b500390565b600081600019048311821515161561116557611165610fe5565b500290565b60008261118757634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212205d7adc48933fdaf04c89f8c4966cd18c71d7f009696a6ca02fde2f59e3dc120064736f6c634300080e0033

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

000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000ab0c0ad9eaec76f795d0ac03d9c75b30869a89ab00000000000000000000000025b2348567b13097db1212dfe13bfeaf2b4d3a9f

-----Decoded View---------------
Arg [0] : supply (uint256): 1000000000
Arg [1] : _tax (uint256): 500
Arg [2] : owner (address): 0xAB0C0aD9eAec76f795D0ac03d9C75B30869A89ab
Arg [3] : _feeWallet (address): 0x25b2348567b13097db1212dfE13bFeaF2B4d3A9f

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [2] : 000000000000000000000000ab0c0ad9eaec76f795d0ac03d9c75b30869a89ab
Arg [3] : 00000000000000000000000025b2348567b13097db1212dfe13bfeaf2b4d3a9f


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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