ETH Price: $3,175.62 (-7.74%)
Gas: 3 Gwei

Token

StripCoin (STRIP)
 

Overview

Max Total Supply

500,000,000,000 STRIP

Holders

758

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,217,797.982352951377653176 STRIP

Value
$0.00
0x4DC5B8860F1D4194e45bdb88208360FE401B4adD
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

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

Contract Name:
StripToken

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-21
*/

// Sources flattened with hardhat v2.5.0 https://hardhat.org

// File @openzeppelin/contracts/token/ERC20/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/utils/[email protected]


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 @openzeppelin/contracts/token/ERC20/[email protected]


pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev 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 @openzeppelin/contracts/access/[email protected]


pragma solidity ^0.8.0;

/**
 * @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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/utils/math/[email protected]


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 no longer needed starting with Solidity 0.8. 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 substraction 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 contracts/StripToken.sol


/******************************************************************************
           ██                                                                
   ▒▓▓▒    ██     ▒▒                                                         
  ██████   ██ ▒▓█▓   ████  ██████ █████   █  ████     ███   ████   █  █    ██  
  ██████▒  ▓███▒    █▒▒▒█▒  ▒██▒▒ ██▒▒▒█  █▒ █▒▒██   █▒ ▒█  █▒▒██  █▒ ██▒  ██▒ 
   ▓██▓▒▒▓███▒      ██       ██▒  ██▒  █     █▒  █  ██▒    ██▒  █▒    ███▒ ██▒ 
      ▒██████       ▒████▒   ██▒  █████▒  █▒ ████▒  ██▒    ██▒  █▒ █▒ ██▒█▒██▒ 
    ▓█████ ▓█         ▒▒██▒  ██▒  ██▒▒██  █▒ ██▒    ██▒    ██▒  █▒ █▒ ██▒▒███▒ 
   ███████ ██      ▒█   ██▒  ██▒  ██▒  █▒ █▒ ██▒    ▒██  █ ██▒ ██▒ █▒ ██▒ ▒██▒ 
   ████████▓▓       █████▒   ██▒  ██▒  ██▒█▒ ██▒     ▒███▒  ████▒  █▒ ██▒  ▒█▒ 
    ▒███████████▓▒▒                                                          
       ▒▓█████████████▒    ===================================================
           ▓▓███████████▓       
           ██  ▒█████████▒      
           ██    ████████       Token..: STRIPCOIN
           ██  ▒███████▒        Version: 1.0
           ██▒██████▒           License: MIT
           ██████▒              
         ▒████▒                 
       ▓█████                   
    ▒▓█▓▒  ▓█                   
  ▒█▓▒     ██                   
▒▓▒        ██      
*******************************************************************************/             

pragma solidity ^0.8.0;




/**
 * @title StripToken Contract
 * @author 
 * @dev
 */

contract StripToken is ERC20, Ownable {
    using SafeMath for uint256;

    // modify token name
    string public constant NAME = 'StripCoin';
    // modify token symbol
    string public constant SYMBOL = 'STRIP';
    // modify token decimals
    uint8 public constant DECIMALS = 18;
    // modify initial token supply
    uint256 public constant TOTAL_SUPPLY = 500e9 * (10**uint256(DECIMALS)); // 500,000,000,000 tokens
    // multisig contract address
    address public multiSigAdmin;

    event MultiSigAdminUpdated(address _multiSigAdmin);

    /**
     * @dev Constructor that gives msg.sender all of existing tokens.
     */
    constructor() Ownable() ERC20(NAME, SYMBOL) {
        _mint(msg.sender, TOTAL_SUPPLY);
    }

    /**
     * @dev Override decimals() function to customize decimals
     */
    function decimals() public view virtual override returns (uint8) {
        return DECIMALS;
    }

    function setMultiSigAdminAddress(address _multiSigAdmin) external onlyOwner {
        require (_multiSigAdmin != address(0x00), "Invalid MultiSig admin address");
        multiSigAdmin = _multiSigAdmin;
        emit MultiSigAdminUpdated(multiSigAdmin);
    }
    
    /**
     * @dev Recovers the ERC20 token balance mistakenly sent to the contract. Only multisig contract can call this function
     * @param tokenAddress The token contract address
     * @param tokenAmount Number of tokens to be sent
     */
    function recoverERC20(address tokenAddress, uint256 tokenAmount) external onlyMultiSigAdmin {
        IERC20(tokenAddress).transfer(owner(), tokenAmount);
    }

    // modifier for multiSig only
    modifier onlyMultiSigAdmin() {
        require(msg.sender == multiSigAdmin, "Should be multiSig contract");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_multiSigAdmin","type":"address"}],"name":"MultiSigAdminUpdated","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":[],"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":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"multiSigAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_multiSigAdmin","type":"address"}],"name":"setMultiSigAdminAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600981526829ba3934b821b7b4b760b91b602080830191825283518085019094526005845264053545249560dc1b908401528151919291620000609160039162000201565b5080516200007690600490602084019062000201565b505050620000936200008d620000c360201b60201c565b620000c7565b620000bd33620000a66012600a6200030f565b620000b79064746a52880062000404565b62000119565b62000479565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001745760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001889190620002a7565b90915550506001600160a01b03821660009081526020819052604081208054839290620001b7908490620002a7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200020f9062000426565b90600052602060002090601f0160209004810192826200023357600085556200027e565b82601f106200024e57805160ff19168380011785556200027e565b828001600101855582156200027e579182015b828111156200027e57825182559160200191906001019062000261565b506200028c92915062000290565b5090565b5b808211156200028c576000815560010162000291565b60008219821115620002bd57620002bd62000463565b500190565b80825b6001808611620002d6575062000306565b818704821115620002eb57620002eb62000463565b80861615620002f957918102915b9490941c938002620002c5565b94509492505050565b600062000320600019848462000327565b9392505050565b600082620003385750600162000320565b81620003475750600062000320565b81600181146200036057600281146200036b576200039f565b600191505062000320565b60ff8411156200037f576200037f62000463565b6001841b91508482111562000398576200039862000463565b5062000320565b5060208310610133831016604e8410600b8410161715620003d7575081810a83811115620003d157620003d162000463565b62000320565b620003e68484846001620002c2565b808604821115620003fb57620003fb62000463565b02949350505050565b600081600019048311821515161562000421576200042162000463565b500290565b6002810460018216806200043b57607f821691505b602082108114156200045d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610ed980620004896000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80638980f11f116100b8578063a457c2d71161007c578063a457c2d714610276578063a9059cbb14610289578063dd62ed3e1461029c578063f2fde38b146102d5578063f76f8d78146102e8578063fd86feee1461030c57610137565b80638980f11f146102065780638da5cb5b14610219578063902d55a51461023e57806395d89b4114610246578063a3f4df7e1461024e57610137565b80632e0f2625116100ff5780632e0f2625146101b7578063313ce567146101d157806339509351146101d857806370a08231146101eb578063715018a6146101fe57610137565b806306fdde031461013c578063081c91a91461015a578063095ea7b31461016f57806318160ddd1461019257806323b872dd146101a4575b600080fd5b61014461031f565b6040516101519190610c7f565b60405180910390f35b61016d610168366004610baf565b6103b1565b005b61018261017d366004610c36565b610492565b6040519015158152602001610151565b6002545b604051908152602001610151565b6101826101b2366004610bfb565b6104a8565b6101bf601281565b60405160ff9091168152602001610151565b60126101bf565b6101826101e6366004610c36565b610554565b6101966101f9366004610baf565b610590565b61016d6105af565b61016d610214366004610c36565b6105e5565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610151565b6101966106e5565b610144610703565b6101446040518060400160405280600981526020016829ba3934b821b7b4b760b91b81525081565b610182610284366004610c36565b610712565b610182610297366004610c36565b6107ab565b6101966102aa366004610bc9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61016d6102e3366004610baf565b6107b8565b61014460405180604001604052806005815260200164053545249560dc1b81525081565b600654610226906001600160a01b031681565b60606003805461032e90610e52565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90610e52565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b6005546001600160a01b031633146103e45760405162461bcd60e51b81526004016103db90610cd2565b60405180910390fd5b6001600160a01b03811661043a5760405162461bcd60e51b815260206004820152601e60248201527f496e76616c6964204d756c74695369672061646d696e2061646472657373000060448201526064016103db565b600680546001600160a01b0319166001600160a01b038381169190911791829055604051911681527f04c0f452018d618c2f9ecb793beb897191bacffc7d8dfe2c55805b7d0517fe4d9060200160405180910390a150565b600061049f338484610853565b50600192915050565b60006104b5848484610977565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561053a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016103db565b6105478533858403610853565b60019150505b9392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161049f91859061058b908690610d07565b610853565b6001600160a01b0381166000908152602081905260409020545b919050565b6005546001600160a01b031633146105d95760405162461bcd60e51b81526004016103db90610cd2565b6105e36000610b46565b565b6006546001600160a01b0316331461063f5760405162461bcd60e51b815260206004820152601b60248201527f53686f756c64206265206d756c746953696720636f6e7472616374000000000060448201526064016103db565b816001600160a01b031663a9059cbb6106606005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b1580156106a857600080fd5b505af11580156106bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e09190610c5f565b505050565b6106f16012600a610d65565b6107009064746a528800610e33565b81565b60606004805461032e90610e52565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156107945760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103db565b6107a13385858403610853565b5060019392505050565b600061049f338484610977565b6005546001600160a01b031633146107e25760405162461bcd60e51b81526004016103db90610cd2565b6001600160a01b0381166108475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103db565b61085081610b46565b50565b6001600160a01b0383166108b55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103db565b6001600160a01b0382166109165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103db565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109db5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103db565b6001600160a01b038216610a3d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103db565b6001600160a01b03831660009081526020819052604090205481811015610ab55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103db565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610aec908490610d07565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b3891815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b03811681146105aa57600080fd5b600060208284031215610bc0578081fd5b61054d82610b98565b60008060408385031215610bdb578081fd5b610be483610b98565b9150610bf260208401610b98565b90509250929050565b600080600060608486031215610c0f578081fd5b610c1884610b98565b9250610c2660208501610b98565b9150604084013590509250925092565b60008060408385031215610c48578182fd5b610c5183610b98565b946020939093013593505050565b600060208284031215610c70578081fd5b8151801515811461054d578182fd5b6000602080835283518082850152825b81811015610cab57858101830151858201604001528201610c8f565b81811115610cbc5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610d1a57610d1a610e8d565b500190565b80825b6001808611610d315750610d5c565b818704821115610d4357610d43610e8d565b80861615610d5057918102915b9490941c938002610d22565b94509492505050565b600061054d6000198484600082610d7e5750600161054d565b81610d8b5750600061054d565b8160018114610da15760028114610dab57610dd8565b600191505061054d565b60ff841115610dbc57610dbc610e8d565b6001841b915084821115610dd257610dd2610e8d565b5061054d565b5060208310610133831016604e8410600b8410161715610e0b575081810a83811115610e0657610e06610e8d565b61054d565b610e188484846001610d1f565b808604821115610e2a57610e2a610e8d565b02949350505050565b6000816000190483118215151615610e4d57610e4d610e8d565b500290565b600281046001821680610e6657607f821691505b60208210811415610e8757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122088757e416162292f67c63dc94543ea2d48abdf9de2057692c83558735d79367764736f6c63430008020033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80638980f11f116100b8578063a457c2d71161007c578063a457c2d714610276578063a9059cbb14610289578063dd62ed3e1461029c578063f2fde38b146102d5578063f76f8d78146102e8578063fd86feee1461030c57610137565b80638980f11f146102065780638da5cb5b14610219578063902d55a51461023e57806395d89b4114610246578063a3f4df7e1461024e57610137565b80632e0f2625116100ff5780632e0f2625146101b7578063313ce567146101d157806339509351146101d857806370a08231146101eb578063715018a6146101fe57610137565b806306fdde031461013c578063081c91a91461015a578063095ea7b31461016f57806318160ddd1461019257806323b872dd146101a4575b600080fd5b61014461031f565b6040516101519190610c7f565b60405180910390f35b61016d610168366004610baf565b6103b1565b005b61018261017d366004610c36565b610492565b6040519015158152602001610151565b6002545b604051908152602001610151565b6101826101b2366004610bfb565b6104a8565b6101bf601281565b60405160ff9091168152602001610151565b60126101bf565b6101826101e6366004610c36565b610554565b6101966101f9366004610baf565b610590565b61016d6105af565b61016d610214366004610c36565b6105e5565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610151565b6101966106e5565b610144610703565b6101446040518060400160405280600981526020016829ba3934b821b7b4b760b91b81525081565b610182610284366004610c36565b610712565b610182610297366004610c36565b6107ab565b6101966102aa366004610bc9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61016d6102e3366004610baf565b6107b8565b61014460405180604001604052806005815260200164053545249560dc1b81525081565b600654610226906001600160a01b031681565b60606003805461032e90610e52565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90610e52565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b6005546001600160a01b031633146103e45760405162461bcd60e51b81526004016103db90610cd2565b60405180910390fd5b6001600160a01b03811661043a5760405162461bcd60e51b815260206004820152601e60248201527f496e76616c6964204d756c74695369672061646d696e2061646472657373000060448201526064016103db565b600680546001600160a01b0319166001600160a01b038381169190911791829055604051911681527f04c0f452018d618c2f9ecb793beb897191bacffc7d8dfe2c55805b7d0517fe4d9060200160405180910390a150565b600061049f338484610853565b50600192915050565b60006104b5848484610977565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561053a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016103db565b6105478533858403610853565b60019150505b9392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161049f91859061058b908690610d07565b610853565b6001600160a01b0381166000908152602081905260409020545b919050565b6005546001600160a01b031633146105d95760405162461bcd60e51b81526004016103db90610cd2565b6105e36000610b46565b565b6006546001600160a01b0316331461063f5760405162461bcd60e51b815260206004820152601b60248201527f53686f756c64206265206d756c746953696720636f6e7472616374000000000060448201526064016103db565b816001600160a01b031663a9059cbb6106606005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b1580156106a857600080fd5b505af11580156106bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e09190610c5f565b505050565b6106f16012600a610d65565b6107009064746a528800610e33565b81565b60606004805461032e90610e52565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156107945760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103db565b6107a13385858403610853565b5060019392505050565b600061049f338484610977565b6005546001600160a01b031633146107e25760405162461bcd60e51b81526004016103db90610cd2565b6001600160a01b0381166108475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103db565b61085081610b46565b50565b6001600160a01b0383166108b55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103db565b6001600160a01b0382166109165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103db565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109db5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103db565b6001600160a01b038216610a3d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103db565b6001600160a01b03831660009081526020819052604090205481811015610ab55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103db565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610aec908490610d07565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b3891815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b03811681146105aa57600080fd5b600060208284031215610bc0578081fd5b61054d82610b98565b60008060408385031215610bdb578081fd5b610be483610b98565b9150610bf260208401610b98565b90509250929050565b600080600060608486031215610c0f578081fd5b610c1884610b98565b9250610c2660208501610b98565b9150604084013590509250925092565b60008060408385031215610c48578182fd5b610c5183610b98565b946020939093013593505050565b600060208284031215610c70578081fd5b8151801515811461054d578182fd5b6000602080835283518082850152825b81811015610cab57858101830151858201604001528201610c8f565b81811115610cbc5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610d1a57610d1a610e8d565b500190565b80825b6001808611610d315750610d5c565b818704821115610d4357610d43610e8d565b80861615610d5057918102915b9490941c938002610d22565b94509492505050565b600061054d6000198484600082610d7e5750600161054d565b81610d8b5750600061054d565b8160018114610da15760028114610dab57610dd8565b600191505061054d565b60ff841115610dbc57610dbc610e8d565b6001841b915084821115610dd257610dd2610e8d565b5061054d565b5060208310610133831016604e8410600b8410161715610e0b575081810a83811115610e0657610e06610e8d565b61054d565b610e188484846001610d1f565b808604821115610e2a57610e2a610e8d565b02949350505050565b6000816000190483118215151615610e4d57610e4d610e8d565b500290565b600281046001821680610e6657607f821691505b60208210811415610e8757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122088757e416162292f67c63dc94543ea2d48abdf9de2057692c83558735d79367764736f6c63430008020033

Deployed Bytecode Sourcemap

28230:1811:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6509:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29179:262;;;;;;:::i;:::-;;:::i;:::-;;8676:169;;;;;;:::i;:::-;;:::i;:::-;;;2234:14:1;;2227:22;2209:41;;2197:2;2182:18;8676:169:0;2164:92:1;7629:108:0;7717:12;;7629:108;;;7338:25:1;;;7326:2;7311:18;7629:108:0;7293:76:1;9327:492:0;;;;;;:::i;:::-;;:::i;28488:35::-;;28521:2;28488:35;;;;;7546:4:1;7534:17;;;7516:36;;7504:2;7489:18;28488:35:0;7471:87:1;29072:99:0;28521:2;29072:99;;10228:215;;;;;;:::i;:::-;;:::i;7800:127::-;;;;;;:::i;:::-;;:::i;18123:94::-;;;:::i;29706:162::-;;;;;;:::i;:::-;;:::i;17472:87::-;17545:6;;-1:-1:-1;;;;;17545:6:0;17472:87;;;-1:-1:-1;;;;;1746:32:1;;;1728:51;;1716:2;1701:18;17472:87:0;1683:102:1;28566:70:0;;;:::i;6728:104::-;;;:::i;28336:41::-;;;;;;;;;;;;;;;-1:-1:-1;;;28336:41:0;;;;;10946:413;;;;;;:::i;:::-;;:::i;8140:175::-;;;;;;:::i;:::-;;:::i;8378:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8494:18:0;;;8467:7;8494:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8378:151;18372:192;;;;;;:::i;:::-;;:::i;28412:39::-;;;;;;;;;;;;;;;-1:-1:-1;;;28412:39:0;;;;;28703:28;;;;;-1:-1:-1;;;;;28703:28:0;;;6509:100;6563:13;6596:5;6589:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6509:100;:::o;29179:262::-;17545:6;;-1:-1:-1;;;;;17545:6:0;4309:10;17692:23;17684:68;;;;-1:-1:-1;;;17684:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;29275:31:0;::::1;29266:75;;;::::0;-1:-1:-1;;;29266:75:0;;4692:2:1;29266:75:0::1;::::0;::::1;4674:21:1::0;4731:2;4711:18;;;4704:30;4770:32;4750:18;;;4743:60;4820:18;;29266:75:0::1;4664:180:1::0;29266:75:0::1;29352:13;:30:::0;;-1:-1:-1;;;;;;29352:30:0::1;-1:-1:-1::0;;;;;29352:30:0;;::::1;::::0;;;::::1;::::0;;;;29398:35:::1;::::0;29419:13;::::1;1728:51:1::0;;29398:35:0::1;::::0;1716:2:1;1701:18;29398:35:0::1;;;;;;;29179:262:::0;:::o;8676:169::-;8759:4;8776:39;4309:10;8799:7;8808:6;8776:8;:39::i;:::-;-1:-1:-1;8833:4:0;8676:169;;;;:::o;9327:492::-;9467:4;9484:36;9494:6;9502:9;9513:6;9484:9;:36::i;:::-;-1:-1:-1;;;;;9560:19:0;;9533:24;9560:19;;;:11;:19;;;;;;;;4309:10;9560:33;;;;;;;;9612:26;;;;9604:79;;;;-1:-1:-1;;;9604:79:0;;5407:2:1;9604:79:0;;;5389:21:1;5446:2;5426:18;;;5419:30;5485:34;5465:18;;;5458:62;-1:-1:-1;;;5536:18:1;;;5529:38;5584:19;;9604:79:0;5379:230:1;9604:79:0;9719:57;9728:6;4309:10;9769:6;9750:16;:25;9719:8;:57::i;:::-;9807:4;9800:11;;;9327:492;;;;;;:::o;10228:215::-;4309:10;10316:4;10365:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10365:34:0;;;;;;;;;;10316:4;;10333:80;;10356:7;;10365:47;;10402:10;;10365:47;:::i;:::-;10333:8;:80::i;7800:127::-;-1:-1:-1;;;;;7901:18:0;;7874:7;7901:18;;;;;;;;;;;7800:127;;;;:::o;18123:94::-;17545:6;;-1:-1:-1;;;;;17545:6:0;4309:10;17692:23;17684:68;;;;-1:-1:-1;;;17684:68:0;;;;;;;:::i;:::-;18188:21:::1;18206:1;18188:9;:21::i;:::-;18123:94::o:0;29706:162::-;29973:13;;-1:-1:-1;;;;;29973:13:0;29959:10;:27;29951:67;;;;-1:-1:-1;;;29951:67:0;;5051:2:1;29951:67:0;;;5033:21:1;5090:2;5070:18;;;5063:30;5129:29;5109:18;;;5102:57;5176:18;;29951:67:0;5023:177:1;29951:67:0;29816:12:::1;-1:-1:-1::0;;;;;29809:29:0::1;;29839:7;17545:6:::0;;-1:-1:-1;;;;;17545:6:0;17472:87;;29839:7:::1;29809:51;::::0;-1:-1:-1;;;;;;29809:51:0::1;::::0;;;;;;-1:-1:-1;;;;;1982:32:1;;;29809:51:0::1;::::0;::::1;1964::1::0;2031:18;;;2024:34;;;1937:18;;29809:51:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29706:162:::0;;:::o;28566:70::-;28614:21;28521:2;28614;:21;:::i;:::-;28605:31;;:5;:31;:::i;:::-;28566:70;:::o;6728:104::-;6784:13;6817:7;6810:14;;;;;:::i;10946:413::-;4309:10;11039:4;11083:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11083:34:0;;;;;;;;;;11136:35;;;;11128:85;;;;-1:-1:-1;;;11128:85:0;;6988:2:1;11128:85:0;;;6970:21:1;7027:2;7007:18;;;7000:30;7066:34;7046:18;;;7039:62;-1:-1:-1;;;7117:18:1;;;7110:35;7162:19;;11128:85:0;6960:227:1;11128:85:0;11249:67;4309:10;11272:7;11300:15;11281:16;:34;11249:8;:67::i;:::-;-1:-1:-1;11347:4:0;;10946:413;-1:-1:-1;;;10946:413:0:o;8140:175::-;8226:4;8243:42;4309:10;8267:9;8278:6;8243:9;:42::i;18372:192::-;17545:6;;-1:-1:-1;;;;;17545:6:0;4309:10;17692:23;17684:68;;;;-1:-1:-1;;;17684:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18461:22:0;::::1;18453:73;;;::::0;-1:-1:-1;;;18453:73:0;;3475:2:1;18453:73:0::1;::::0;::::1;3457:21:1::0;3514:2;3494:18;;;3487:30;3553:34;3533:18;;;3526:62;-1:-1:-1;;;3604:18:1;;;3597:36;3650:19;;18453:73:0::1;3447:228:1::0;18453:73:0::1;18537:19;18547:8;18537:9;:19::i;:::-;18372:192:::0;:::o;14630:380::-;-1:-1:-1;;;;;14766:19:0;;14758:68;;;;-1:-1:-1;;;14758:68:0;;6583:2:1;14758:68:0;;;6565:21:1;6622:2;6602:18;;;6595:30;6661:34;6641:18;;;6634:62;-1:-1:-1;;;6712:18:1;;;6705:34;6756:19;;14758:68:0;6555:226:1;14758:68:0;-1:-1:-1;;;;;14845:21:0;;14837:68;;;;-1:-1:-1;;;14837:68:0;;3882:2:1;14837:68:0;;;3864:21:1;3921:2;3901:18;;;3894:30;3960:34;3940:18;;;3933:62;-1:-1:-1;;;4011:18:1;;;4004:32;4053:19;;14837:68:0;3854:224:1;14837:68:0;-1:-1:-1;;;;;14918:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14970:32;;7338:25:1;;;14970:32:0;;7311:18:1;14970:32:0;;;;;;;14630:380;;;:::o;11849:733::-;-1:-1:-1;;;;;11989:20:0;;11981:70;;;;-1:-1:-1;;;11981:70:0;;6177:2:1;11981:70:0;;;6159:21:1;6216:2;6196:18;;;6189:30;6255:34;6235:18;;;6228:62;-1:-1:-1;;;6306:18:1;;;6299:35;6351:19;;11981:70:0;6149:227:1;11981:70:0;-1:-1:-1;;;;;12070:23:0;;12062:71;;;;-1:-1:-1;;;12062:71:0;;3071:2:1;12062:71:0;;;3053:21:1;3110:2;3090:18;;;3083:30;3149:34;3129:18;;;3122:62;-1:-1:-1;;;3200:18:1;;;3193:33;3243:19;;12062:71:0;3043:225:1;12062:71:0;-1:-1:-1;;;;;12230:17:0;;12206:21;12230:17;;;;;;;;;;;12266:23;;;;12258:74;;;;-1:-1:-1;;;12258:74:0;;4285:2:1;12258:74:0;;;4267:21:1;4324:2;4304:18;;;4297:30;4363:34;4343:18;;;4336:62;-1:-1:-1;;;4414:18:1;;;4407:36;4460:19;;12258:74:0;4257:228:1;12258:74:0;-1:-1:-1;;;;;12368:17:0;;;:9;:17;;;;;;;;;;;12388:22;;;12368:42;;12432:20;;;;;;;;:30;;12404:6;;12368:9;12432:30;;12404:6;;12432:30;:::i;:::-;;;;;;;;12497:9;-1:-1:-1;;;;;12480:35:0;12489:6;-1:-1:-1;;;;;12480:35:0;;12508:6;12480:35;;;;7338:25:1;;7326:2;7311:18;;7293:76;12480:35:0;;;;;;;;11849:733;;;;:::o;18572:173::-;18647:6;;;-1:-1:-1;;;;;18664:17:0;;;-1:-1:-1;;;;;;18664:17:0;;;;;;;18697:40;;18647:6;;;18664:17;18647:6;;18697:40;;18628:16;;18697:40;18572:173;;:::o;14::1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:196;;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;;;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;;;;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;;;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:297::-;;1400:2;1388:9;1379:7;1375:23;1371:32;1368:2;;;1421:6;1413;1406:22;1368:2;1458:9;1452:16;1511:5;1504:13;1497:21;1490:5;1487:32;1477:2;;1538:6;1530;1523:22;2261:603;;2402:2;2431;2420:9;2413:21;2463:6;2457:13;2506:6;2501:2;2490:9;2486:18;2479:34;2531:4;2544:140;2558:6;2555:1;2552:13;2544:140;;;2653:14;;;2649:23;;2643:30;2619:17;;;2638:2;2615:26;2608:66;2573:10;;2544:140;;;2702:6;2699:1;2696:13;2693:2;;;2772:4;2767:2;2758:6;2747:9;2743:22;2739:31;2732:45;2693:2;-1:-1:-1;2848:2:1;2827:15;-1:-1:-1;;2823:29:1;2808:45;;;;2855:2;2804:54;;2382:482;-1:-1:-1;;;2382:482:1:o;5614:356::-;5816:2;5798:21;;;5835:18;;;5828:30;5894:34;5889:2;5874:18;;5867:62;5961:2;5946:18;;5788:182::o;7563:128::-;;7634:1;7630:6;7627:1;7624:13;7621:2;;;7640:18;;:::i;:::-;-1:-1:-1;7676:9:1;;7611:80::o;7696:453::-;7792:6;7815:5;7829:314;7878:1;7915:2;7905:8;7902:16;7892:2;;7922:5;;;7892:2;7963:4;7958:3;7954:14;7948:4;7945:24;7942:2;;;7972:18;;:::i;:::-;8022:2;8012:8;8008:17;8005:2;;;8037:16;;;;8005:2;8116:17;;;;;8076:15;;7829:314;;;7773:376;;;;;;;:::o;8154:139::-;;8243:44;-1:-1:-1;;8270:8:1;8264:4;8298:922;8382:8;8372:2;;-1:-1:-1;8423:1:1;8437:5;;8372:2;8471:4;8461:2;;-1:-1:-1;8508:1:1;8522:5;;8461:2;8553:4;8571:1;8566:59;;;;8639:1;8634:183;;;;8546:271;;8566:59;8596:1;8587:10;;8610:5;;;8634:183;8671:3;8661:8;8658:17;8655:2;;;8678:18;;:::i;:::-;8734:1;8724:8;8720:16;8711:25;;8762:3;8755:5;8752:14;8749:2;;;8769:18;;:::i;:::-;8802:5;;;8546:271;;8901:2;8891:8;8888:16;8882:3;8876:4;8873:13;8869:36;8863:2;8853:8;8850:16;8845:2;8839:4;8836:12;8832:35;8829:77;8826:2;;;-1:-1:-1;8938:19:1;;;8973:14;;;8970:2;;;8990:18;;:::i;:::-;9023:5;;8826:2;9070:42;9108:3;9098:8;9092:4;9089:1;9070:42;:::i;:::-;9145:6;9140:3;9136:16;9127:7;9124:29;9121:2;;;9156:18;;:::i;:::-;9194:20;;8362:858;-1:-1:-1;;;;8362:858:1:o;9225:168::-;;9331:1;9327;9323:6;9319:14;9316:1;9313:21;9308:1;9301:9;9294:17;9290:45;9287:2;;;9338:18;;:::i;:::-;-1:-1:-1;9378:9:1;;9277:116::o;9398:380::-;9483:1;9473:12;;9530:1;9520:12;;;9541:2;;9595:4;9587:6;9583:17;9573:27;;9541:2;9648;9640:6;9637:14;9617:18;9614:38;9611:2;;;9694:10;9689:3;9685:20;9682:1;9675:31;9729:4;9726:1;9719:15;9757:4;9754:1;9747:15;9611:2;;9453:325;;;:::o;9783:127::-;9844:10;9839:3;9835:20;9832:1;9825:31;9875:4;9872:1;9865:15;9899:4;9896:1;9889:15

Swarm Source

ipfs://88757e416162292f67c63dc94543ea2d48abdf9de2057692c83558735d793677
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.